package dbus_object; sub system_bus() { require Net::DBus; Net::DBus->system; } sub new { my ($type, $bus, $service, $path, $interface) = @_; my $o = { bus => $bus, service => $service, path => $path, interface => $interface, }; attach_object($o); bless $o, $type; } sub attach_object { my ($o) = @_; my $service = $o->{bus}->get_service($o->{service}); $o->{object} = $service->get_object($o->{path}, $o->{interface}); } sub dispatch { my ($o) = @_; $o->{bus}{connection}->dispatch; } sub call_method { my ($o, $method, @args) = @_; $o->{object}->$method(@args); } sub safe_call_method { my ($o, $method, @args) = @_; my @ret; eval { @ret = $o->call_method($method, @args); }; if ($@) { print STDERR "($method) exception: $@\n"; $o->dispatch; return; } @ret; } sub set_gtk2_watch { my ($o) = @_; $o->{bus}{connection}->set_watch_callbacks(sub { my ($con, $watch) = @_; my $flags = $watch->get_flags; require Net::DBus::Binding::Watch; require Gtk2::Helper; if ($flags & &Net::DBus::Binding::Watch::READABLE) { Gtk2::Helper->add_watch($watch->get_fileno, 'in', sub { $watch->handle(&Net::DBus::Binding::Watch::READABLE); $con->dispatch; 1; }); } #- do nothing for WRITABLE watch, we dispatch when needed }, undef, undef); #- do nothing when watch is disabled or toggled yet $o->dispatch; } 1; ue='distro/mga1'>distro/mga1 Mageia Installer and base platform for many utilitiesThierry Vignaud [tv]
summaryrefslogtreecommitdiffstats
path: root/perl-install
diff options
context:
space:
mode:
authorPablo Saratxaga <pablo@mandriva.com>2003-03-07 03:18:10 +0000
committerPablo Saratxaga <pablo@mandriva.com>2003-03-07 03:18:10 +0000
commit3ba28afb90b21e316f3a1a6909b61fd12f9dda60 (patch)
treed66ef05544c3ec29c02d20cd2cab471e57ae52c7 /perl-install
parent80e2d103c7baf8c559780cf4b64c7368ef8b7dfb (diff)
downloaddrakx-backup-do-not-use-3ba28afb90b21e316f3a1a6909b61fd12f9dda60.tar
drakx-backup-do-not-use-3ba28afb90b21e316f3a1a6909b61fd12f9dda60.tar.gz
drakx-backup-do-not-use-3ba28afb90b21e316f3a1a6909b61fd12f9dda60.tar.bz2
drakx-backup-do-not-use-3ba28afb90b21e316f3a1a6909b61fd12f9dda60.tar.xz
drakx-backup-do-not-use-3ba28afb90b21e316f3a1a6909b61fd12f9dda60.zip
updated pot file
Diffstat (limited to 'perl-install')
-rw-r--r--perl-install/share/po/DrakX.pot182
-rw-r--r--perl-install/share/po/af.po503
-rw-r--r--perl-install/share/po/ar.po1519
-rw-r--r--perl-install/share/po/az.po507
-rw-r--r--perl-install/share/po/be.po4221
-rw-r--r--perl-install/share/po/bg.po793
-rw-r--r--perl-install/share/po/br.po511
-rw-r--r--perl-install/share/po/bs.po879
-rw-r--r--perl-install/share/po/ca.po1029
-rw-r--r--perl-install/share/po/cs.po3898
-rw-r--r--perl-install/share/po/cy.po1145
-rw-r--r--perl-install/share/po/da.po1001
-rw-r--r--perl-install/share/po/de.po1626
-rw-r--r--perl-install/share/po/el.po769
-rw-r--r--perl-install/share/po/eo.po505
-rw-r--r--perl-install/share/po/es.po2090
-rw-r--r--perl-install/share/po/et.po793
-rw-r--r--perl-install/share/po/eu.po979
-rw-r--r--perl-install/share/po/fi.po1232
-rw-r--r--perl-install/share/po/fr.po1967
-rw-r--r--perl-install/share/po/ga.po485
-rw-r--r--perl-install/share/po/gl.po501
-rw-r--r--perl-install/share/po/he.po486
-rw-r--r--perl-install/share/po/hr.po905
-rw-r--r--perl-install/share/po/hu.po2033
-rw-r--r--perl-install/share/po/id.po934
-rw-r--r--perl-install/share/po/is.po492
-rw-r--r--perl-install/share/po/it.po6527
-rw-r--r--perl-install/share/po/ja.po946
-rw-r--r--perl-install/share/po/ko.po613
-rw-r--r--perl-install/share/po/lt.po505
-rw-r--r--perl-install/share/po/lv.po595
-rw-r--r--perl-install/share/po/mt.po978
-rw-r--r--perl-install/share/po/nl.po1183
-rw-r--r--perl-install/share/po/no.po810
-rw-r--r--perl-install/share/po/pt.po993
-rw-r--r--perl-install/share/po/pt_BR.po1018
-rw-r--r--perl-install/share/po/ro.po1765
-rw-r--r--perl-install/share/po/ru.po2438
-rw-r--r--perl-install/share/po/sk.po8453
-rw-r--r--perl-install/share/po/sl.po500
-rw-r--r--perl-install/share/po/sp.po387
-rw-r--r--perl-install/share/po/sq.po981
-rw-r--r--perl-install/share/po/sr.po1203
-rw-r--r--perl-install/share/po/sv.po1450
-rw-r--r--perl-install/share/po/ta.po1715
-rw-r--r--perl-install/share/po/tg.po785
-rw-r--r--perl-install/share/po/th.po523
-rw-r--r--perl-install/share/po/tr.po965
-rw-r--r--perl-install/share/po/uk.po505
-rw-r--r--perl-install/share/po/uz.po594
-rw-r--r--perl-install/share/po/vi.po2098
-rw-r--r--perl-install/share/po/wa.po1131
-rw-r--r--perl-install/share/po/zh_CN.po1555
-rw-r--r--perl-install/share/po/zh_TW.po857
55 files changed, 43091 insertions, 30967 deletions
diff --git a/perl-install/share/po/DrakX.pot b/perl-install/share/po/DrakX.pot
index e7a4cf24a..9637d8151 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: 2002-12-05 19:52+0100\n"
+"POT-Creation-Date: 2003-03-07 03:05+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"
@@ -3354,6 +3354,11 @@ msgstr ""
#: ../../install_steps_interactive.pm:1
#, c-format
+msgid "Encryption key for %s"
+msgstr ""
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
msgid "Upgrade %s"
msgstr ""
@@ -7905,11 +7910,6 @@ msgstr ""
#: ../../network/ethernet.pm:1
#, c-format
-msgid "no network card found"
-msgstr ""
-
-#: ../../network/ethernet.pm:1
-#, c-format
msgid "Please choose which network adapter you want to use to connect to Internet."
msgstr ""
@@ -10991,12 +10991,12 @@ msgstr ""
#: ../../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 on the part of the worldwide Linux Community"
+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 ""
#: ../../share/advertising/01-thanks.pl:1
#, c-format
-msgid "Welcome to the Open Source world"
+msgid "Welcome to the Open Source world."
msgstr ""
#: ../../share/advertising/01-thanks.pl:1
@@ -11006,199 +11006,149 @@ msgstr ""
#: ../../share/advertising/02-community.pl:1
#, c-format
-msgid "To share your own knowledge and help build Linux tools, join the discussion forums you'll find on our \"Community\" webpages"
+msgid "To share your own knowledge and help build Linux software, join our discussion forums on our \"Community\" webpages."
msgstr ""
#: ../../share/advertising/02-community.pl:1
#, c-format
-msgid "Want to know more about the Open Source community?"
+msgid "Want to know more and to contribute to the Open Source community? Get involved in the Free Software world!"
msgstr ""
#: ../../share/advertising/02-community.pl:1
#, c-format
-msgid "Get involved in the Free Software world"
+msgid "Build the future of Linux!"
msgstr ""
-#: ../../share/advertising/03-internet.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
-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"
+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 ""
-#: ../../share/advertising/03-internet.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
-msgid "Get the most from the Internet"
+msgid "Surf the Web with Mozilla or Konqueror, read your mail with Evolution or Kmail, create your documents with OpenOffice.org."
msgstr ""
-#: ../../share/advertising/04-multimedia.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
-msgid "Mandrake Linux 9.1 enables you to use the very latest software to play audio files, edit and handle your images or photos, and play videos"
+msgid "MandrakeSoft has selected the best software for you"
msgstr ""
-#: ../../share/advertising/04-multimedia.pl:1
+#: ../../share/advertising/04-configuration.pl:1
#, c-format
-msgid "Push multimedia to its limits!"
+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!"
msgstr ""
-#: ../../share/advertising/04-multimedia.pl:1
+#: ../../share/advertising/04-configuration.pl:1
#, c-format
-msgid "Discover the most up-to-date graphical and multimedia tools!"
+msgid "Mandrake's multipurpose configuration tool"
msgstr ""
-#: ../../share/advertising/05-games.pl:1
+#: ../../share/advertising/05-desktop.pl:1
#, c-format
-msgid "Mandrake Linux 9.1 provides the best Open Source games - arcade, action, strategy, ..."
+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 ""
-#: ../../share/advertising/05-games.pl:1
+#: ../../share/advertising/05-desktop.pl:1
#, c-format
-msgid "Games"
+msgid "A customizable environment"
msgstr ""
-#: ../../share/advertising/06-mcc.pl:1
+#: ../../share/advertising/06-development.pl:1
#, c-format
-msgid "Mandrake Linux 9.1 provides a powerful tool to fully customize and configure your machine"
+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 ""
-#: ../../share/advertising/06-mcc.pl:1 ../../standalone/drakbug:1
+#: ../../share/advertising/06-development.pl:1
#, c-format
-msgid "Mandrake Control Center"
+msgid "Mandrake Linux 9.1: the ultimate development platform"
msgstr ""
-#: ../../share/advertising/07-desktop.pl:1
+#: ../../share/advertising/07-server.pl:1
#, c-format
-msgid "Mandrake Linux 9.1 provides you with 11 user interfaces that can be fully modified: KDE 3, Gnome 2, WindowMaker, ..."
+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 ""
-#: ../../share/advertising/07-desktop.pl:1
+#: ../../share/advertising/07-server.pl:1
#, c-format
-msgid "User interfaces"
+msgid "Turn your computer into a reliable server"
msgstr ""
-#: ../../share/advertising/08-development.pl:1
+#: ../../share/advertising/08-store.pl:1
#, c-format
-msgid "Use the full power of the GNU gcc 3 compiler as well as the best Open Source development environments"
+msgid "Our full range of Linux solutions, as well as special offers on products and other \"goodies\", are available on our e-store:"
msgstr ""
-#: ../../share/advertising/08-development.pl:1
+#: ../../share/advertising/08-store.pl:1
#, c-format
-msgid "Mandrake Linux 9.1 is the ultimate development platform"
+msgid "The official MandrakeSoft Store"
msgstr ""
-#: ../../share/advertising/08-development.pl:1
+#: ../../share/advertising/09-mdksecure.pl:1
#, c-format
-msgid "Development simplified"
+msgid "Enhance your computer performance with the help of a selection of partners offering professional solutions compatible with Mandrake Linux"
msgstr ""
-#: ../../share/advertising/09-server.pl:1
+#: ../../share/advertising/09-mdksecure.pl:1
#, c-format
-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, ..."
+msgid "Get the best items with Mandrake Linux Strategic partners"
msgstr ""
-#: ../../share/advertising/09-server.pl:1
+#: ../../share/advertising/10-security.pl:1
#, c-format
-msgid "Turn your machine into a reliable server"
+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 ""
-#: ../../share/advertising/10-mnf.pl:1
+#: ../../share/advertising/10-security.pl:1
#, c-format
-msgid "This product is available on MandrakeStore website"
+msgid "Optimize your security by using Mandrake Linux"
msgstr ""
-#: ../../share/advertising/10-mnf.pl:1
+#: ../../share/advertising/11-mnf.pl:1
#, c-format
-msgid "This firewall product includes network features that allow you to fulfill all your security needs"
+msgid "This product is available on the MandrakeStore Web site."
msgstr ""
-#: ../../share/advertising/10-mnf.pl:1
+#: ../../share/advertising/11-mnf.pl:1
#, c-format
-msgid "The MandrakeSecurity range includes the Multi Network Firewall product (M.N.F.)"
+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 ""
-#: ../../share/advertising/10-mnf.pl:1
+#: ../../share/advertising/11-mnf.pl:1
#, c-format
-msgid "Optimize your security"
+msgid "Secure your networks with the Multi Network Firewall"
msgstr ""
-#: ../../share/advertising/11-mdkstore.pl:1
-#, c-format
-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 ""
-
-#: ../../share/advertising/11-mdkstore.pl:1
-#, c-format
-msgid "The official MandrakeSoft store"
-msgstr ""
-
-#: ../../share/advertising/12-mdkstore.pl:1
-#, c-format
-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 ""
-
-#: ../../share/advertising/12-mdkstore.pl:1
-#, c-format
-msgid "Strategic partners"
-msgstr ""
-
-#: ../../share/advertising/13-mdkcampus.pl:1
-#, c-format
-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 ""
-
-#: ../../share/advertising/13-mdkcampus.pl:1
-#, c-format
-msgid "Certify yourself on Linux"
-msgstr ""
-
-#: ../../share/advertising/13-mdkcampus.pl:1
-#, c-format
-msgid "The training program has been created to respond to the needs of both end users and experts (Network and System administrators)"
-msgstr ""
-
-#: ../../share/advertising/13-mdkcampus.pl:1
-#, c-format
-msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
-msgstr ""
-
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/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 ""
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, c-format
-msgid "Find the solutions of your problems via MandrakeSoft's online support platform"
+msgid "Find the solutions of your problems via MandrakeSoft's online support platform."
msgstr ""
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, c-format
msgid "Become a MandrakeExpert"
msgstr ""
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, c-format
msgid "All incidents will be followed up by a single qualified MandrakeSoft technical expert."
msgstr ""
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, c-format
-msgid "An online platform to respond to company's specific support needs"
+msgid "An online platform to respond to enterprise support needs."
msgstr ""
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, c-format
msgid "MandrakeExpert Corporate"
msgstr ""
-#: ../../share/advertising/17-mdkclub.pl:1
-#, c-format
-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 ""
-
-#: ../../share/advertising/17-mdkclub.pl:1
-#, c-format
-msgid "Discover MandrakeClub and Mandrake Corporate Club"
-msgstr ""
-
#: ../../standalone/XFdrake:1
#, c-format
msgid "Please relog into %s to activate the changes"
@@ -13399,6 +13349,11 @@ msgstr ""
#: ../../standalone/drakbug:1
#, c-format
+msgid "Mandrake Control Center"
+msgstr ""
+
+#: ../../standalone/drakbug:1
+#, c-format
msgid "Mandrake Bug Report Tool"
msgstr ""
@@ -14745,6 +14700,11 @@ msgstr ""
msgid "choose image file"
msgstr ""
+#: ../../standalone/draksplash:1
+#, c-format
+msgid "choose image"
+msgstr ""
+
#: ../../standalone/draksplash:1 ../../standalone/draksplash:1
#, c-format
msgid "Configure bootsplash picture"
@@ -16306,6 +16266,10 @@ msgid "Set of tools for mail, news, web, file transfer, and chat"
msgstr ""
#: ../../share/compssUsers:999
+msgid "Games"
+msgstr ""
+
+#: ../../share/compssUsers:999
msgid "Multimedia - Graphics"
msgstr ""
diff --git a/perl-install/share/po/af.po b/perl-install/share/po/af.po
index 4137d5350..714ba08d8 100644
--- a/perl-install/share/po/af.po
+++ b/perl-install/share/po/af.po
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2002-12-05 19:52+0100\n"
+"POT-Creation-Date: 2003-03-07 03:05+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"
@@ -1064,50 +1064,65 @@ 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"
+"or all of the following entries. Each entry is made up of the configuration\n"
+"item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"Configure\" button to change\n"
+"that.\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"
+" * \"Keyboard\": check the current keyboard map configuration and change\n"
+"that if necessary.\n"
"\n"
" * \"Country\": check the current country selection. If you are not in this\n"
-"country, click on the button and choose another one.\n"
+"country, click on the \"Configure\" button and choose another one. If your\n"
+"country is not in the first list shown, click the \"More\" button to get\n"
+"the complete country list.\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"
+"country you have chosen. You can click on the \"Configure\" button here if\n"
+"this is not correct.\n"
+"\n"
+" * \"Mouse\": check the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
"\n"
-" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+" * \"Printer\": clicking on the \"Configure\" 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"
+" * \"Graphical Interface\": by default, DrakX configures your graphical\n"
+"interface in \"800x600\" or \"1024x768\" resolution. If that does not suits\n"
+"you, click on \"Configure\" to reconfigure your graphical interface.\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"
+"here. If you have a TV card and it is not detected, click on \"Configure\"\n"
+"to 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."
+"displayed here. You can click on \"Configure\" to change the parameters\n"
+"associated with the card.\n"
+"\n"
+" * \"Network\": If you want to configure your Internet or local network\n"
+"access now.\n"
+"\n"
+" * \"Security Level\": this entry offers you to redefine the security level\n"
+"as set in a previous step ().\n"
+"\n"
+" * \"Firewall\": if you plan to connect your machine to the Internet, it's\n"
+"a good idea to protect you from intrusions by setting up a firewall.\n"
+"Consult the corresponding section of the ``Starter Guide'' for details\n"
+"about firewall settings.\n"
+"\n"
+" * \"Bootloader\": if you wish to change your bootloader configuration,\n"
+"click that button. This should be reserved to advanced users.\n"
+"\n"
+" * \"Services\": you'll be able here to control finely which services will\n"
+"be run on your machine. If you plan to use this machine as a server it's a\n"
+"good idea to review this setup."
msgstr ""
#: ../../help.pm:1
@@ -1211,13 +1226,8 @@ msgid ""
"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 \"Next ->\". Examine the list of hardware and then click on the \"Next\n"
-"->\" button to return to the SCSI interface question.\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"
@@ -1259,7 +1269,7 @@ msgid ""
"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"
+"used with networks.) It's recommended that you use \"pdq\" if this is your\n"
"first experience with GNU/Linux.\n"
"\n"
" * \"CUPS\" - `` Common Unix Printing System'', is an excellent choice for\n"
@@ -1297,32 +1307,7 @@ msgid ""
"\"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."
+"(\"On Floppy\")."
msgstr ""
#: ../../help.pm:1
@@ -1477,9 +1462,14 @@ msgid ""
"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 \"Next ->\" button to\n"
-"continue.\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 \"All\n"
+"languages\" box. Selecting support for a language means translations,\n"
+"fonts, spell checkers, etc. for that language will be installed.\n"
+"Additionally, the \"Use Unicode by default\" checkbox allows to force the\n"
+"system to use unicode (UTF-8). Note however that this is an experimental\n"
+"feature. If you select different languages requiring different encoding the\n"
+"unicode support will be 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"
@@ -1536,7 +1526,9 @@ msgstr ""
#, c-format
msgid ""
"\"Country\": check the current country selection. If you are not in this\n"
-"country, click on the button and choose another one."
+"country, click on the \"Configure\" button and choose another one. If your\n"
+"country is not in the first list shown, click the \"More\" button to get\n"
+"the complete country list."
msgstr ""
#: ../../help.pm:1
@@ -1658,9 +1650,7 @@ msgid ""
"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"
+"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 ""
@@ -1671,14 +1661,14 @@ 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"
+"updates, you are now able to download them from the Internet. Check \"Yes\"\n"
+"if you have a working Internet connection, or \"No\" if you prefer to\n"
+"install updated packages later.\n"
"\n"
-"Choosing \"Yes\" displays a list of places from which updates can be\n"
+"Choosing \"Yes\" will display 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."
+"the selected package(s), or \"Cancel\" to abort."
msgstr ""
#: ../../help.pm:1
@@ -1719,7 +1709,7 @@ msgid ""
"the bootloader menu, giving you the choice of which operating system to\n"
"start.\n"
"\n"
-"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
+"The \"Advanced\" button 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"
@@ -1777,7 +1767,7 @@ msgid ""
" * \"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"
+"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"
@@ -1802,42 +1792,13 @@ msgid ""
"\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 ""
-
-#: ../../help.pm:1
-#, c-format
-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."
+" * \"Custom disk partitioning\": choose this option if you want to manually\n"
+"partition your hard drive. Be careful -- it is a powerful but dangerous\n"
+"choice and you can very easily lose all your data. That's why this option\n"
+"is really only recommended if you have done something like this before and\n"
+"have some experience. For more instructions on how to use the DiskDrake\n"
+"utility, refer to the ``Managing Your Partitions '' section in the\n"
+"``Starter Guide''."
msgstr ""
#: ../../help.pm:1
@@ -1969,7 +1930,8 @@ msgstr ""
#: ../../help.pm:1
#, fuzzy, c-format
msgid ""
-"This step is used to choose which services you wish to start at boot time.\n"
+"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 always needed at\n"
@@ -1995,7 +1957,7 @@ msgstr ""
#: ../../help.pm:1
#, c-format
msgid ""
-"\"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+"\"Printer\": clicking on the \"Configure\" 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."
@@ -3286,6 +3248,12 @@ msgstr "Dienste"
msgid "System"
msgstr "Stelselmode"
+#. -PO: example: lilo-graphic on /dev/hda1
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "%s on %s"
+msgstr "Poort"
+
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Bootloader"
@@ -3710,6 +3678,11 @@ msgstr "Wat is u muistoestel?"
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
+msgid "Encryption key for %s"
+msgstr "Die wagwoorde stem nie ooreen nie."
+
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
msgid "Upgrade %s"
msgstr "Opgradeer"
@@ -8407,11 +8380,6 @@ msgstr "Stel netwerk op"
#: ../../network/ethernet.pm:1
#, c-format
-msgid "no network card found"
-msgstr "geen netwerkkaart gevind nie"
-
-#: ../../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."
@@ -9697,17 +9665,6 @@ msgstr ""
"U kan byvoeg or verwyder soos nodig."
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-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 is die bestaande drukkertoue.\n"
-"U kan byvoeg or verwyder soos nodig."
-
-#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printing system: "
msgstr "Drukkerstelsel:"
@@ -10232,6 +10189,11 @@ msgid "Option %s must be an integer number!"
msgstr "Opsie %s moet 'n heeltal wees!"
#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Printer default settings"
+msgstr "Drukkermodelkeuse"
+
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Printer default settings\n"
@@ -11885,13 +11847,13 @@ msgstr "Krakers welkom"
#, 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 on the part of "
-"the worldwide Linux Community"
+"Your new operating system is the result of collaborative work of the "
+"worldwide Linux Community."
msgstr ""
#: ../../share/advertising/01-thanks.pl:1
#, c-format
-msgid "Welcome to the Open Source world"
+msgid "Welcome to the Open Source world."
msgstr ""
#: ../../share/advertising/01-thanks.pl:1
@@ -11902,191 +11864,150 @@ msgstr ""
#: ../../share/advertising/02-community.pl:1
#, c-format
msgid ""
-"To share your own knowledge and help build Linux tools, join the discussion "
-"forums you'll find on our \"Community\" webpages"
+"To share your own knowledge and help build Linux software, join our "
+"discussion forums on our \"Community\" webpages."
msgstr ""
#: ../../share/advertising/02-community.pl:1
#, c-format
-msgid "Want to know more about the Open Source community?"
+msgid ""
+"Want to know more and to contribute to the Open Source community? Get "
+"involved in the Free Software world!"
msgstr ""
-#
#: ../../share/advertising/02-community.pl:1
-#, fuzzy, c-format
-msgid "Get involved in the Free Software world"
-msgstr "Protokol vir die res van die wкreld"
-
-#: ../../share/advertising/03-internet.pl:1
#, c-format
-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"
+msgid "Build the future of Linux!"
msgstr ""
-#: ../../share/advertising/03-internet.pl:1
-#, fuzzy, c-format
-msgid "Get the most from the Internet"
-msgstr "Konnekteer aan die internet"
-
-#: ../../share/advertising/04-multimedia.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
msgid ""
-"Mandrake Linux 9.1 enables you to use the very latest software to play audio "
-"files, edit and handle your images or photos, and play videos"
-msgstr ""
-
-#: ../../share/advertising/04-multimedia.pl:1
-#, c-format
-msgid "Push multimedia to its limits!"
-msgstr ""
-
-#: ../../share/advertising/04-multimedia.pl:1
-#, c-format
-msgid "Discover the most up-to-date graphical and multimedia tools!"
+"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 ""
-#: ../../share/advertising/05-games.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
msgid ""
-"Mandrake Linux 9.1 provides the best Open Source games - arcade, action, "
-"strategy, ..."
+"Surf the Web with Mozilla or Konqueror, read your mail with Evolution or "
+"Kmail, create your documents with OpenOffice.org."
msgstr ""
-#: ../../share/advertising/05-games.pl:1
-#, c-format
-msgid "Games"
-msgstr "Speletjies"
-
-#: ../../share/advertising/06-mcc.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
-msgid ""
-"Mandrake Linux 9.1 provides a powerful tool to fully customize and configure "
-"your machine"
+msgid "MandrakeSoft has selected the best software for you"
msgstr ""
-#: ../../share/advertising/06-mcc.pl:1 ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "Mandrake Control Center"
-msgstr "Beheersentrum"
-
-#: ../../share/advertising/07-desktop.pl:1
+#: ../../share/advertising/04-configuration.pl:1
#, c-format
msgid ""
-"Mandrake Linux 9.1 provides you with 11 user interfaces that can be fully "
-"modified: KDE 3, Gnome 2, WindowMaker, ..."
+"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!"
msgstr ""
-#: ../../share/advertising/07-desktop.pl:1
+#: ../../share/advertising/04-configuration.pl:1
#, fuzzy, c-format
-msgid "User interfaces"
-msgstr "Netwerkkoppelvlak"
+msgid "Mandrake's multipurpose configuration tool"
+msgstr "Dra drukkerkonfigurasie oor"
-#: ../../share/advertising/08-development.pl:1
+#: ../../share/advertising/05-desktop.pl:1
#, c-format
msgid ""
-"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
-"development environments"
+"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 ""
-#: ../../share/advertising/08-development.pl:1
+#: ../../share/advertising/05-desktop.pl:1
#, c-format
-msgid "Mandrake Linux 9.1 is the ultimate development platform"
+msgid "A customizable environment"
msgstr ""
-#: ../../share/advertising/08-development.pl:1
-#, fuzzy, c-format
-msgid "Development simplified"
-msgstr "Ontwikkeling"
-
-#: ../../share/advertising/09-server.pl:1
+#: ../../share/advertising/06-development.pl:1
#, c-format
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, ..."
+"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 ""
-#: ../../share/advertising/09-server.pl:1
+#: ../../share/advertising/06-development.pl:1
#, c-format
-msgid "Turn your machine into a reliable server"
+msgid "Mandrake Linux 9.1: the ultimate development platform"
msgstr ""
-#: ../../share/advertising/10-mnf.pl:1
+#: ../../share/advertising/07-server.pl:1
#, c-format
-msgid "This product is available on MandrakeStore website"
+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 ""
-#: ../../share/advertising/10-mnf.pl:1
+#: ../../share/advertising/07-server.pl:1
#, c-format
-msgid ""
-"This firewall product includes network features that allow you to fulfill "
-"all your security needs"
+msgid "Turn your computer into a reliable server"
msgstr ""
-#: ../../share/advertising/10-mnf.pl:1
+#: ../../share/advertising/08-store.pl:1
#, c-format
msgid ""
-"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
-"F.)"
+"Our full range of Linux solutions, as well as special offers on products and "
+"other \"goodies\", are available on our e-store:"
msgstr ""
-#: ../../share/advertising/10-mnf.pl:1
+#: ../../share/advertising/08-store.pl:1
#, c-format
-msgid "Optimize your security"
+msgid "The official MandrakeSoft Store"
msgstr ""
-#: ../../share/advertising/11-mdkstore.pl:1
+#: ../../share/advertising/09-mdksecure.pl:1
#, c-format
msgid ""
-"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies,\" are available online on our e-store:"
+"Enhance your computer performance with the help of a selection of partners "
+"offering professional solutions compatible with Mandrake Linux"
msgstr ""
-#: ../../share/advertising/11-mdkstore.pl:1
+#: ../../share/advertising/09-mdksecure.pl:1
#, c-format
-msgid "The official MandrakeSoft store"
+msgid "Get the best items with Mandrake Linux Strategic partners"
msgstr ""
-#: ../../share/advertising/12-mdkstore.pl:1
+#: ../../share/advertising/10-security.pl:1
#, c-format
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"
+"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 ""
-#: ../../share/advertising/12-mdkstore.pl:1
+#: ../../share/advertising/10-security.pl:1
#, c-format
-msgid "Strategic partners"
+msgid "Optimize your security by using Mandrake Linux"
msgstr ""
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/11-mnf.pl:1
#, c-format
-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)"
+msgid "This product is available on the MandrakeStore Web site."
msgstr ""
-#: ../../share/advertising/13-mdkcampus.pl:1
-#, c-format
-msgid "Certify yourself on Linux"
-msgstr ""
-
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/11-mnf.pl:1
#, c-format
msgid ""
-"The training program has been created to respond to the needs of both end "
-"users and experts (Network and System administrators)"
+"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 ""
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/11-mnf.pl:1
#, c-format
-msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
+msgid "Secure your networks with the Multi Network Firewall"
msgstr ""
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, c-format
msgid ""
"Join the MandrakeSoft support teams and the Linux Community online to share "
@@ -12094,51 +12015,35 @@ msgid ""
"technical support website:"
msgstr ""
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, c-format
msgid ""
"Find the solutions of your problems via MandrakeSoft's online support "
-"platform"
+"platform."
msgstr ""
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, fuzzy, c-format
msgid "Become a MandrakeExpert"
msgstr "Kundige"
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, c-format
msgid ""
"All incidents will be followed up by a single qualified MandrakeSoft "
"technical expert."
msgstr ""
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, c-format
-msgid "An online platform to respond to company's specific support needs"
+msgid "An online platform to respond to enterprise support needs."
msgstr ""
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, fuzzy, c-format
msgid "MandrakeExpert Corporate"
msgstr "Kundige"
-#: ../../share/advertising/17-mdkclub.pl:1
-#, c-format
-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 ""
-
-#: ../../share/advertising/17-mdkclub.pl:1
-#, c-format
-msgid "Discover MandrakeClub and Mandrake Corporate Club"
-msgstr ""
-
#: ../../standalone/XFdrake:1
#, c-format
msgid "Please relog into %s to activate the changes"
@@ -14344,6 +14249,11 @@ msgid "First Time Wizard"
msgstr ""
#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "Mandrake Control Center"
+msgstr "Beheersentrum"
+
+#: ../../standalone/drakbug:1
#, c-format
msgid "Mandrake Bug Report Tool"
msgstr ""
@@ -15222,6 +15132,22 @@ msgstr "Koppelvlak %s (met module %s)"
#: ../../standalone/drakgw:1
#, fuzzy, c-format
+msgid "Net Device"
+msgstr "Drukkerbediener"
+
+#: ../../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 ""
+
+#: ../../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 "
@@ -15570,7 +15496,7 @@ msgid ""
"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"
+"using this computer as source.\n"
"\n"
"Make sure you have configured your Network/Internet access using drakconnect "
"before going any further.\n"
@@ -15738,6 +15664,11 @@ msgstr "Kies 'n lкer"
#: ../../standalone/draksplash:1
#, fuzzy, c-format
+msgid "choose image"
+msgstr "Kies 'n lкer"
+
+#: ../../standalone/draksplash:1
+#, fuzzy, c-format
msgid "Configure bootsplash picture"
msgstr "Konfigureer dienste"
@@ -16176,12 +16107,22 @@ msgid "network printer port"
msgstr "Netwerkdrukker (sok)"
#: ../../standalone/harddrake2:1
+#, c-format
+msgid "the name of the CPU"
+msgstr ""
+
+#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "Name"
msgstr "Naam: "
#: ../../standalone/harddrake2:1
#, fuzzy, c-format
+msgid "the number of buttons the mouse has"
+msgstr "2 knoppies"
+
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
msgid "Number of buttons"
msgstr "2 knoppies"
@@ -16343,7 +16284,7 @@ msgstr ""
#: ../../standalone/harddrake2:1
#, c-format
msgid ""
-"The cpu frequency in Mhz (Mega herz which in first approximation may be "
+"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 ""
@@ -17330,6 +17271,10 @@ 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 "Games"
+msgstr "Speletjies"
+
+#: ../../share/compssUsers:999
msgid "Multimedia - Graphics"
msgstr "Multimedia - Grafika"
@@ -17385,6 +17330,36 @@ 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"
+
+#
+#, fuzzy
+#~ msgid "Get involved in the Free Software world"
+#~ msgstr "Protokol vir die res van die wкreld"
+
+#, fuzzy
+#~ msgid "Get the most from the Internet"
+#~ msgstr "Konnekteer aan die internet"
+
+#, fuzzy
+#~ msgid "User interfaces"
+#~ msgstr "Netwerkkoppelvlak"
+
+#, fuzzy
+#~ msgid "Development simplified"
+#~ msgstr "Ontwikkeling"
+
+#, 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 ""
+#~ "Hier is die bestaande drukkertoue.\n"
+#~ "U kan byvoeg or verwyder soos nodig."
+
#~ msgid ""
#~ "Please enter your host name if you know it.\n"
#~ "Some DHCP servers require the hostname to work.\n"
diff --git a/perl-install/share/po/ar.po b/perl-install/share/po/ar.po
index a0e991847..164e54935 100644
--- a/perl-install/share/po/ar.po
+++ b/perl-install/share/po/ar.po
@@ -6,14 +6,14 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2002-12-05 19:52+0100\n"
-"PO-Revision-Date: 2003-02-17 16:40GMT+3\n"
+"POT-Creation-Date: 2003-03-07 03:05+0100\n"
+"PO-Revision-Date: 2003-03-04 16:58-0300\n"
"Last-Translator: Mohammed Gamal <f2c2001@yahoo.com>\n"
-"Language-Team: Arabic <support@arabeyes.org>\n"
+"Language-Team: Arabic\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"
+"X-Generator: KBabel 0.9.6\n"
#: ../../any.pm:1
#, c-format
@@ -94,7 +94,7 @@ msgstr "Щ„Ш§ Щ…ШґШ§Ш±ЩѓШ©"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "More"
-msgstr "ШЈЩѓШ«Ш±"
+msgstr "Ш§Щ„Щ…ШІЩЉШЇ"
#: ../../any.pm:1
#, c-format
@@ -1053,9 +1053,8 @@ msgid ""
msgstr ""
"Ш§Ш¶ШєШ· \"Ш§Щ„ШЄШ§Щ„ЩЉ ->\" Ш§Ш°Ш§ ЩѓЩ†ШЄ ШЄШ±ЩЉШЇ Ш­Ш°ЩЃ ЩѓЩ„ Ш§Щ„ШЄШ¬ШІШ¦Ш§ШЄ Ш§Щ„Щ…Щ€Ш¬Щ€ШЇШ© Ш№Щ„Щ‰ Ш§Щ„Щ‚Ш±Шµ\n"
"Ш§Щ„ШµЩ„ШЁ. Ш®Ш° Ш­Ш°Ш±Щѓ, ШЁШ№ШЇ Щ†Щ‚Ш±Щѓ Щ„ШІШ± \"Ш§Щ„ШЄШ§Щ„ЩЉ ->\" Щ„Щ† ШЄШЄЩ…ЩѓЩ† Щ…Щ† Ш§ШіШЄШ№Ш§ШЇШ©\n"
-"ШЈЩЉ ШЁЩЉШ§Щ†Ш§ШЄ ШЈЩ€ ШЄШ¬ШІШ¦Ш§ШЄ ЩѓШ§Щ†ШЄ Щ…Щ€Ш¬Щ€ШЇШ© Ш№Щ„Щ‰ Щ‡Ш°Ш§ Ш§Щ„Щ‚Ш±Шµ Ш§Щ„ШµЩ„ШЁ,\n"
-"ШЁЩ…Ш§ ЩЃЩЉЩ‡Ш§ ШЁЩЉШ§Щ†Ш§ШЄ Windows.\n"
-"\n"
+"ШЈЩЉ ШЁЩЉШ§Щ†Ш§ШЄ ШЈЩ€ ШЄШ¬ШІШ¦Ш§ШЄ ЩѓШ§Щ†ШЄ Щ…Щ€Ш¬Щ€ШЇШ© Ш№Щ„Щ‰ Щ‡Ш°Ш§ Ш§Щ„Щ‚Ш±Шµ Ш§Щ„ШµЩ„ШЁ.\n"
+"ШЁЩ…Ш§ ЩЃЩЉЩ‡Ш§ ШЁЩЉШ§Щ†Ш§ШЄ Windows\n"
"Ш§Щ†Щ‚Ш± \"<- Ш§Щ„ШіШ§ШЁЩ‚\" Щ„ШҐЩЉЩ‚Ш§ЩЃ Щ‡Ш°Щ‡ Ш§Щ„Ш№Щ…Щ„ЩЉШ© ШЇЩ€Щ† Ш®ШіШ§Ш±Ш© ШЈЩЉ ШЁЩЉШ§Щ†Ш§ШЄ ШЈЩ€ ШЄШ¬ШІШ¦Ш§ШЄ\n"
"Щ…Щ€Ш¬Щ€ШЇШ© Ш№Щ„Щ‰ Ш§Щ„Щ‚Ш±Шµ Ш§Щ„ШµЩ„ШЁ."
@@ -1075,50 +1074,65 @@ 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"
+"or all of the following entries. Each entry is made up of the configuration\n"
+"item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"Configure\" button to change\n"
+"that.\n"
"\n"
-" * \"Keyboard\": check the current keyboard map configuration and click on\n"
-"the button to change that if necessary.\n"
+" * \"Keyboard\": check the current keyboard map configuration and change\n"
+"that if necessary.\n"
"\n"
" * \"Country\": check the current country selection. If you are not in this\n"
-"country, click on the button and choose another one.\n"
+"country, click on the \"Configure\" button and choose another one. If your\n"
+"country is not in the first list shown, click the \"More\" button to get\n"
+"the complete country list.\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"
+"country you have chosen. You can click on the \"Configure\" button here if\n"
+"this is not correct.\n"
"\n"
-" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+" * \"Mouse\": check the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
+"\n"
+" * \"Printer\": clicking on the \"Configure\" 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"
+" * \"Graphical Interface\": by default, DrakX configures your graphical\n"
+"interface in \"800x600\" or \"1024x768\" resolution. If that does not suits\n"
+"you, click on \"Configure\" to reconfigure your graphical interface.\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"
+"here. If you have a TV card and it is not detected, click on \"Configure\"\n"
+"to 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."
+"displayed here. You can click on \"Configure\" to change the parameters\n"
+"associated with the card.\n"
+"\n"
+" * \"Network\": If you want to configure your Internet or local network\n"
+"access now.\n"
+"\n"
+" * \"Security Level\": this entry offers you to redefine the security level\n"
+"as set in a previous step ().\n"
+"\n"
+" * \"Firewall\": if you plan to connect your machine to the Internet, it's\n"
+"a good idea to protect you from intrusions by setting up a firewall.\n"
+"Consult the corresponding section of the ``Starter Guide'' for details\n"
+"about firewall settings.\n"
+"\n"
+" * \"Bootloader\": if you wish to change your bootloader configuration,\n"
+"click that button. This should be reserved to advanced users.\n"
+"\n"
+" * \"Services\": you'll be able here to control finely which services will\n"
+"be run on your machine. If you plan to use this machine as a server it's a\n"
+"good idea to review this setup."
msgstr ""
#: ../../help.pm:1
@@ -1301,13 +1315,8 @@ msgid ""
"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 \"Next ->\". Examine the list of hardware and then click on the \"Next\n"
-"->\" button to return to the SCSI interface question.\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"
@@ -1319,6 +1328,28 @@ msgid ""
"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"
+"Ш§Щ„Щ…ШґШєЩ‘Щ„ ЩЉШЇЩ€ЩЉШ§Щ‹."
#: ../../help.pm:1
#, c-format
@@ -1331,7 +1362,7 @@ msgid ""
"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"
+"used with networks.) It's recommended that you use \"pdq\" if this is your\n"
"first experience with GNU/Linux.\n"
"\n"
" * \"CUPS\" - `` Common Unix Printing System'', is an excellent choice for\n"
@@ -1348,6 +1379,30 @@ msgid ""
"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"
+" * \"CUPS\" - ``Common UNIX Printing System'', Щ‡Щ€ Ш§Щ„Ш®ЩЉШ§Ш± Ш§?Щ…Ш«Щ„\n"
+"Щ„Щ„Ш·ШЁШ§Ш№Ш© Ш№Щ„Щ‰ Ш·Ш§ШЁШ№ШЄЩѓ Ш§Щ„Щ…Ш­Щ„ЩЉШ© ШЈЩ€ Ш­ШЄЩ‰ Ш№Щ„Щ‰ Ш·Ш§ШЁШ№Ш© ЩЃЩЉ Ш§Щ„Щ†ШµЩЃ Ш§?Ш®Ш± Щ…Щ† Ш§Щ„ЩѓЩ€ЩѓШЁ. Ш§Щ†Щ‡\n"
+"ШіЩ‡Щ„ Ш§?Ш№ШЇШ§ШЇ Щ€ ЩЉЩ…ЩѓЩ† ШЈЩ† ЩЉШЄШµШ±ЩЃ ЩѓШ®Ш§ШЇЩ… ШЈЩ€ ЩѓШ№Щ…ЩЉЩ„ ?Щ†ШёЩ…Ш© Ш·ШЁШ§Ш№Ш© \"lpd\"\n"
+"Ш§Щ„Щ‚ШЇЩЉЩ…Ш©, Щ„Ш°Ш§ ЩЃШҐЩ†Щ‡ Щ…ШЄЩ€Ш§ЩЃЩ‚ Щ…Ш№ ШЈЩ†ШёЩ…Ш© Ш§Щ„ШЄШґШєЩЉЩ„ Ш§Щ„Щ‚ШЇЩЉЩ…Ш©\n"
+"Ш§Щ„ШЄЩЉ ? ШЄШІШ§Щ„ ШЄШ­ШЄШ§Ш¬ Ш§Щ„Щ‰ Ш®ШЇЩ…Ш§ШЄ Ш§Щ„Ш·ШЁШ§Ш№Ш©.ШЁЩЉЩ†Щ…Ш§ Ш§Щ„ШЄЩ‡ЩЉШ¦Ш© ШіЩ‡Щ„Ш©\n"
+"Щ€ Щ‚Щ€ЩЉШ© Щ…Ш«Щ„ \"pdq\". Ш§Ш°Ш§ ЩѓЩ†ШЄ ШЄШ­ШЄШ§Ш¬ Ш§Щ„Щ‰ Щ…Ш­Ш§ЩѓШ§Ш© Ш®Ш§ШЇЩ… \"lpd\", ШЄШЈЩѓШЇ\n"
+"Щ…Щ† ШЄШґШєЩЉЩ„ Щ…Ш±Ш§Щ‚ШЁ \"cups-lpd\". ЩЉШ­ШЄЩ€ЩЉ CUPS Ш№Щ„Щ‰ Щ€Ш§Ш¬Щ‡Ш§ШЄ\n"
+"Ш±ШіЩ€Щ…ЩЉШ© Щ„Щ„Ш·ШЁШ§Ш№Ш© ШЈЩ€ Ш§Ш®ШЄЩЉШ§Ш± Ш®ЩЉШ§Ш±Ш§ШЄ Ш§Щ„Ш·Ш§ШЁШ№Ш© Щ€ ШҐШЇШ§Ш±Ш©\n"
+"Ш§Щ„Ш·Ш§ШЁШ№Ш©.\n"
+"\n"
+"Ш§Ш°Ш§ Щ‚Щ…ШЄ ЩЉШЄЩ‚Ш±ЩЉШ± Ш§Ш®ШЄЩЉШ§Ш±Щѓ Ш§?Щ†, Ш«Щ… Щ„Щ… ЩЉШ№Ш¬ШЁЩѓ Щ†ШёШ§Щ… Ш§Щ„Ш·ШЁШ§Ш№Ш©\n"
+"ЩЃЩЉЩ…Ш§ ШЁШ№ШЇ, ЩЉЩ…ЩѓЩ†Щѓ ШЄШєЩЉЩЉШ±Щ‡ Ш№Щ† Ш·Ш±ЩЉЩ‚ ШЄШґШєЩЉЩ„ PrinterDrake Щ…Щ† Щ…Ш±ЩѓШІ ШЄШ­ЩѓЩ… Mandrake\n"
+"Щ€ Ш§Щ„Щ†Щ‚Ш± Ш№Щ„Щ‰ ШІШ± Ш§Щ„Ш®ШЁЩЉШ±."
#: ../../help.pm:1
#, c-format
@@ -1369,32 +1424,7 @@ msgid ""
"\"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."
+"(\"On Floppy\")."
msgstr ""
#: ../../help.pm:1
@@ -1415,6 +1445,20 @@ msgid ""
"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"
+"Ш§Щ„ШЄШґШєЩЉЩ„ Ш§?Ш®Ш±Щ‰!"
#: ../../help.pm:1
#, c-format
@@ -1485,6 +1529,40 @@ msgid ""
"have \"No password\", if your computer won't be connected to the Internet,\n"
"and if you trust anybody having access to it."
msgstr ""
+"Щ‡Ш°Щ‡ Щ‡ЩЉ ШЈЩ‡Щ… Ш®Ш·Щ€Ш© ШЄШЄШ®Ш°Щ‡Ш§ ?Щ…Щ† Щ†ШёШ§Щ… Щ„ЩЉЩ†ЩѓШі Ш§Щ„Ш®Ш§Шµ\n"
+"ШЁЩѓ: Ш№Щ„ЩЉЩѓ Ш§ШЇШ®Ш§Щ„ ЩѓЩ„Щ…Ш© Щ…Ш±Щ€Ш± Ш§Щ„Щ…ШіШЄШ®ШЇЩ… \"Ш§Щ„Ш¬Ш°Ш±\" (root) Щ€ Щ‡Щ€\n"
+"Щ…ШЇЩЉШ± Ш§Щ„Щ†ШёШ§Щ… Щ€ Ш§Щ„Щ…ШіШЄШ®ШЇЩ… Ш§Щ„Щ€Ш­ЩЉШЇ Ш§Щ„Щ…Ш®Щ€Щ„ ШЁШЄШ­ШЇЩЉШ« Ш§Щ„Щ†ШёШ§Щ…, Ш§Ш¶Ш§ЩЃШ© Ш§Щ„Щ…ШіШЄШ®ШЇЩ…ЩЉЩ†,\n"
+"ШЄШєЩЉЩЉШ± ШЄЩ‡ЩЉШ¦Ш© Ш§Щ„Щ†ШёШ§Щ…, Ш§Щ„Ш®. ШЁШ§Ш®ШЄШµШ§Ш± ЩЉЩ…ЩѓЩ† Щ„Щ„Щ…ШіШЄШ®ШЇЩ… \"Ш§Щ„Ш¬Ш°Ш±\" ШЈЩ† ЩЉЩЃШ№Щ„\n"
+"ЩѓЩ„ ШґШ¦! Щ„Ш°Ш§ Ш№Щ„ЩЉЩѓ Ш§Ш®ШЄЩЉШ§Ш± ЩѓЩ„Щ…Ш© Ш§Щ„Щ…Ш±Щ€Ш± ШµШ№ШЁШ©\n"
+"Ш§Щ„ШЄШ®Щ…ЩЉЩ† - ШіЩЉШ®ШЁШ±Щѓ DrakX Ш§Ш°Ш§ ЩѓШ§Щ†ШЄ ЩѓЩ„Щ…Ш© Ш§Щ„Щ…Ш±Щ€Ш± Ш§Щ„ШЄЩЉ ШЄШіШЄШ®ШЇЩ…Щ‡Ш§ ШіЩ‡Щ„Ш©. ЩѓЩ…Ш§\n"
+"ШЄШ±Щ‰, Щ„ШіШЄ Щ…Ш¬ШЁШ±Ш§Щ‹ Ш№Щ„Щ‰ Ш§ШЇШ®Ш§Щ„ ЩѓЩ„Щ…Ш© Щ…Ш±Щ€Ш±, Щ„ЩѓЩ†Щ†Ш§ Щ†Щ†ШµШ­ ШЁШґШЇШ© ?Щ† Ш§Ш­ШЄЩ…Ш§Щ„ Ш­ШЇЩ€Ш«\n"
+"ШЈШ®Ш·Ш§ШЎ Щ…Ш№ Щ„ЩЉЩ†ЩѓШі Ш№Ш§ШЇЩЉ Щ…Ш«Щ„ ШЁШ§Щ‚ЩЉ ШЈЩ†ШёЩ…Ш© Ш§Щ„ШЄШґШєЩЉЩ„ Ш§?Ш®Ш±Щ‰. Щ€ ШЁЩ…Ш§ ШЈЩ† \"Ш§Щ„Ш¬Ш°Ш±\" ЩЉЩ…ЩѓЩ†Щ‡\n"
+"ШЄШ№ШЇЩЉ ЩѓЩ„ Ш§Щ„Ш­ШЇЩ€ШЇ Щ€ Щ‚ШЇ ЩЉШ­Ш°ЩЃ ЩѓЩ„ Ш§Щ„ШЁЩЉШ§Щ†Ш§ШЄ Щ…Щ† ШЇЩ€Щ† Щ‚ШµШЇ, Щ„Ш°Ш§ ЩЃЩЉШ¬ШЁ ШЈЩ† ЩЉЩѓЩ€Щ† Щ…Щ†\n"
+"Ш§Щ„ШµШ№ШЁ ШЈЩ† ШЄШµШЁШ­ Ш§Щ„Щ…ШіШЄШ®ШЇЩ… \"Ш§Щ„Ш¬Ш°Ш±\".\n"
+"\n"
+"ЩЉШ¬ШЁ ШЈЩ† ШЄЩѓЩ€Щ† ЩѓЩ„Щ…Ш© Ш§Щ„Щ…Ш±Щ€Ш± Ш®Щ„ЩЉШ·Ш§Щ‹ Щ…Щ† Ш§Щ„Ш­Ш±Щ€ЩЃ Щ€ Ш§?Ш±Щ‚Ш§Щ… ЩѓЩ…Ш§ ЩЉШ¬ШЁ ШЈЩ† ШЄШ­ШЄЩ€ЩЉ\n"
+"Ш№Щ„Щ‰ 8 Ш­Ш±Щ€ЩЃ Ш№Щ„Щ‰ Ш§?Щ‚Щ„. ? ШЄЩѓШЄШЁ ЩѓЩ„Щ…Ш© Щ…Ш±Щ€Ш± \"Ш§Щ„Ш¬Ш°Ш±\" Ш№Щ„Щ‰ Щ€Ш±Щ‚ -- Щ‡Ш°Ш§ ЩЉШіЩ‡Щ‘Щ„\n"
+"Ш§Ш®ШЄШ±Ш§Щ‚ Ш§Щ„Щ†ШёШ§Щ… Ш§Ш°Ш§ Ш±ШЈЩ‰ ШЈШ­ШЇ ЩѓЩ„Щ…Ш© Ш§Щ„Щ…Ш±Щ€Ш±.\n"
+"\n"
+"Щ†ШµЩЉШ­Ш© ШЈШ®Ш±Щ‰ -- ? ШЄШ¬Ш№Щ„ ЩѓЩ„Щ…Ш© Ш§Щ„Щ…Ш±Щ€Ш± Ш·Щ€ЩЉЩ„Ш© Ш¬ШЇШ§Щ‹ ШЈЩ€ Щ…Ш№Щ‚Щ‘ШЇШ© ?Щ†Щѓ ЩЉШ¬ШЁ ШЈЩ† ШЄЩѓЩ€Щ†\n"
+"Щ‚Ш§ШЇШ±Ш§Щ‹ Ш№Щ„Щ‰ ШЄШ°ЩѓШ±Щ‡Ш§!\n"
+"\n"
+"Щ„Щ† ЩЉШЄЩ… Ш№Ш±Ш¶ ЩѓЩ„Щ…Ш© Ш§Щ„Щ…Ш±Щ€Ш± Ш№Щ„Щ‰ Ш§Щ„ШґШ§ШґШ©. Щ„ШЄЩ‚Щ„ЩЉЩ„ ЩЃШ±ШµШ© Ш­ШЇЩ€Ш«\n"
+"Ш®Ш·ШЈ ШЈШ«Щ†Ш§ШЎ Ш§Щ„ЩѓШЄШ§ШЁШ©, ШіШЄШ­ШЄШ§Ш¬ Ш§Щ„Щ‰ Ш§ШЇШ®Ш§Щ„ ЩѓЩ„Щ…Ш© Ш§Щ„Щ…Ш±Щ€Ш± Щ…Ш±ШЄЩЉЩ†.\n"
+"Ш§Ш°Ш§ ШЈШ®Ш·ШЈШЄ ЩЃЩЉ Ш§Щ„ЩѓШЄШ§ШЁШ© ЩЃЩЉ Ш§Щ„Щ…Ш±ШЄЩЉЩ†, ЩЃШіЩЉШ¬ШЁ Ш§ШіШЄШ®ШЇШ§Щ… ЩѓЩ„Щ…Ш©\n"
+"Ш§Щ„Щ…Ш±Щ€Ш± \"Ш§Щ„Ш®Ш§Ш·Ш¦Ш©\" ЩЃЩЉ Ш§Щ„Щ…Ш±Ш© Ш§?Щ€Щ„Щ‰ Ш§Щ„ШЄЩЉ ШЄШЇШ®Щ„ ЩЃЩЉЩ‡Ш§ Ш§Щ„Щ‰ Ш§Щ„Щ†ШёШ§Щ….\n"
+"\n"
+"Ш§Ш°Ш§ ЩѓЩ†ШЄ ШЄШ±ЩЉШЇ Ш§Щ„Щ€ШµЩ€Щ„ Ш§Щ„Щ‰ Щ‡Ш°Ш§ Ш§Щ„ЩѓЩ…ШЁЩЉЩ€ШЄШ± Щ„ЩѓЩЉ ЩЉШЄЩ… Ш§Щ„ШЄШ­ЩѓЩ… ШЁЩѓ Ш№Щ† Ш·Ш±ЩЉЩ‚\n"
+"Ш®Ш§ШЇЩ… Щ…ШµШ§ШЇЩ‚Ш©, Ш§Ш¶ШєШ· ШІШ± \"Щ…ШЄЩ‚ШЇЩ…\".\n"
+"\n"
+"Ш§Ш°Ш§ ЩѓШ§Щ†ШЄ ШґШЁЩѓШЄЩѓ ШЄШіШЄШ®ШЇЩ… LDAP, NIS, ШЈЩ€ PDC Windows Domain Authentication "
+"Services\n"
+"Ш№Щ„ЩЉЩѓ Ш§Ш®ШЄЩЉШ§Ш± Ш§Щ„Ш®ЩЉШ§Ш± Ш§Щ„Щ…Щ†Ш§ШіШЁ ЩѓЩЂ\"Щ…ШµШ§ШЇЩ‚Ш©\". Ш§Ш°Ш§ Щ„Щ… ШЄШ№Щ„Щ… ШЈЩЉ Щ…Щ†Щ‡Ш§ ШЄШ±ЩЉШЇ\n"
+"Ш§ШіШЄШ®ШЇШ§Щ…Щ‡, Ш§ШіШЈЩ„ Щ…ШЇЩЉШ± Ш§Щ„ШґШЁЩѓШ© Щ„ШЇЩЉЩѓ.\n"
+"\n"
+"Ш§Ш°Ш§ ЩѓШ§Щ†ШЄ Щ„ШЇЩЉЩѓ Щ…ШґЩѓЩ„Ш© ЩЃЩЉ ШЄШ°ЩѓШ± ЩѓЩ„Щ…Ш§ШЄ Ш§Щ„Щ…Ш±Щ€Ш±, ЩЉЩ…ЩѓЩ†Щѓ Ш§Ш®ШЄЩЉШ§Ш±\n"
+"\"? ЩѓЩ„Щ…Ш© Щ…Ш±Щ€Ш±\" Ш§Ш°Ш§ Щ„Щ… ЩЉЩѓЩ† Ш§Щ„ЩѓЩ…ШЁЩЉЩ€ШЄШ± Ш§Щ„Ш®Ш§Шµ ШЁЩѓ Щ…ШЄШµЩ„Ш§Щ‹ ШЁШ§?Щ†ШЄШ±Щ†ШЄ,\n"
+"ШЈЩ€ ШЈЩ†Щѓ ШЄШ«Щ‚ ЩЃЩЉ Ш§Щ„Щ„Ш°ЩЉЩ† ЩЉШЇШ®Щ„Щ€Щ† Ш§Щ„Щ‰ Ш§Щ„Щ†ШёШ§Щ…."
#: ../../help.pm:1
#, c-format
@@ -1538,15 +1616,38 @@ msgid ""
"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 \"Next ->\" button to\n"
-"continue.\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 \"All\n"
+"languages\" box. Selecting support for a language means translations,\n"
+"fonts, spell checkers, etc. for that language will be installed.\n"
+"Additionally, the \"Use Unicode by default\" checkbox allows to force the\n"
+"system to use unicode (UTF-8). Note however that this is an experimental\n"
+"feature. If you select different languages requiring different encoding the\n"
+"unicode support will be 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"
+"ШіЩЉШєЩЉШ± ЩЃЩ‚Ш· Ш§Ш№ШЇШ§ШЇШ§ШЄ Ш§Щ„Щ„ШєШ© Щ„Щ‡Ш°Ш§ Ш§Щ„Щ…ШіШЄШ®ШЇЩ… ЩЃЩ‚Ш·."
#: ../../help.pm:1
#, c-format
@@ -1567,6 +1668,21 @@ msgid ""
"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"
+"ШіШЄШєЩЉШ± Щ€Ш¶Ш№ Щ„Щ€Ш­Ш© Ш§Щ„Щ…ЩЃШ§ШЄЩЉШ­ ШЁЩЉЩ† Ш§Щ„Ш­Ш±Щ€ЩЃ Ш§Щ„Щ„Ш§ШЄЩЉЩ†ЩЉШ© Щ€ Ш§Щ„ШєЩЉШ± ?ШЄЩЉЩ†ЩЉШ©."
#: ../../help.pm:1
#, c-format
@@ -1592,15 +1708,38 @@ msgid ""
"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\"."
#: ../../help.pm:1
#, c-format
msgid ""
"\"Country\": check the current country selection. If you are not in this\n"
-"country, click on the button and choose another one."
+"country, click on the \"Configure\" button and choose another one. If your\n"
+"country is not in the first list shown, click the \"More\" button to get\n"
+"the complete country list."
msgstr ""
"\"Ш§Щ„ШЁЩ„ШЇ\": ШЄШЈЩѓШЇ Щ…Щ† Ш§Ш®ШЄЩЉШ§Ш± Ш§Щ„ШЁЩ„ШЇ Ш§Щ„Ш­Ш§Щ„ЩЉ. Ш§Ш°Ш§ Щ„Щ… ШЄЩѓЩ† ЩЃЩЉ Щ‡Ш°Ш§\n"
-"Ш§Щ„ШЁЩ„ШЇ, Ш§Ш¶ШєШ· Ш№Щ„Щ‰ Ш§Щ„ШІШ± Щ€ Ш§Ш®ШЄШ± ШЁЩ„ШЇШ§Щ‹ ШўШ®Ш±."
+"Ш§Щ„ШЁЩ„ШЇ, Ш§Ш¶ШєШ· Ш№Щ„Щ‰ ШІШ± \"ШЄЩ‡ЩЉШ¦Ш©\" Щ€ Ш§Ш®ШЄШ± ШЁЩ„ШЇШ§Щ‹ ШўШ®Ш±. Ш§Ш°Ш§ Щ„Щѓ ШЄЩѓЩ†\n"
+"ШЁЩ„ШЇЩѓ ЩЃЩЉ Ш§Щ„Щ‚Ш§Ш¦Щ…Ш© Ш§Ш¶ШєШ· ШІШ± \"Ш§Щ„Щ…ШІЩЉШЇ\" Щ„ШҐШёЩ‡Ш± Щ‚Ш§Ш¦Щ…Ш© ЩѓШ§Щ…Щ„Ш©\n"
+"ШЁШ§Щ„ШЁЩ„ШЇШ§Щ†."
#: ../../help.pm:1
#, c-format
@@ -1721,9 +1860,7 @@ msgid ""
"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"
+"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 ""
@@ -1731,9 +1868,7 @@ msgstr ""
"Щ„Щ‡Ш°Щ‡ Ш§Щ„Щ…Ш§ЩѓЩЉЩ†Ш©. ШЁШЇЩЉЩ‡ЩЉШ§Щ‹, ЩЉШ¬ШЁ ШЄШ№ЩЉЩЉЩ† Щ…ШіШЄЩ€Щ‰ ШЈЩ…Щ†ЩЉ\n"
"Ш№Ш§Щ„ЩЌ Ш§Ш°Ш§ ЩѓШ§Щ†ШЄ Ш§Щ„Щ…Ш§ЩѓЩЉЩ†Ш© ШЄШ­ШЄЩ€ЩЉ Ш№Щ„Щ‰ Щ…Ш№Щ„Щ€Щ…Ш§ШЄ Щ‡Ш§Щ…Ш©, ШЈЩ€ Ш§Ш°Ш§ ЩѓШ§Щ†ШЄ Ш§Щ„Щ…Ш§ЩѓЩЉЩ†Ш©\n"
"ШіШЄЩЏШіШЄШ®ШЇЩ… Щ„Щ„ШҐШЄШµШ§Щ„ ШЁШ§Щ„ШҐЩ†ШЄШ±Щ†ШЄ. Ш§Щ† Ш§ШіШЄШ®ШЇШ§Щ… Щ…ШіШЄЩ€Щ‰ ШЈЩ…Щ†ЩЉ Ш№Ш§Щ„ЩЌ ЩЉШЈШЄЩЉ\n"
-"Ш№Ш§ШЇШ© Ш№Щ„Щ‰ Ш­ШіШ§ШЁ ШіЩ‡Щ€Щ„Ш© Ш§Щ„ШҐШіШЄШ®ШЇШ§Щ…. Ш±Ш§Ш¬Ш№ ЩЃШ¶Щ„ \"msec\"\n"
-"ЩЃЩЉ ``ШЇЩ„ЩЉЩ„ ШіШ·Ш± Ш§Щ„ШЈЩ€Ш§Щ…Ш±'' Щ„Щ„Ш­ШµЩ€Щ„ Ш№Щ„Щ‰ Щ…ШІЩЉШЇ Щ…Щ† Ш§Щ„Щ…Ш№Щ„Щ€Щ…Ш§ШЄ Ш­Щ€Щ„\n"
-"Щ…Ш№Щ†Щ‰ Щ‡Ш°Щ‡ Ш§Щ„Щ…ШіШЄЩ€ЩЉШ§ШЄ.\n"
+"Ш№Ш§ШЇШ© Ш№Щ„Щ‰ Ш­ШіШ§ШЁ ШіЩ‡Щ€Щ„Ш© Ш§Щ„ШҐШіШЄШ®ШЇШ§Щ….\n"
"\n"
"Ш§Ш°Ш§ Щ„Щ… ШЄЩѓЩ† ШЄШ±ЩЉШЇ Ш§Щ„ШҐШ®ШЄЩЉШ§Ш±, Ш§Ш­ЩЃШё Ш§Щ„Ш§Ш®ШЄЩЉШ§Ш± Ш§Щ„ШҐЩЃШЄШ±Ш§Ш¶ЩЉ."
@@ -1743,15 +1878,26 @@ 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"
+"updates, you are now able to download them from the Internet. Check \"Yes\"\n"
+"if you have a working Internet connection, or \"No\" if you prefer to\n"
+"install updated packages later.\n"
"\n"
-"Choosing \"Yes\" displays a list of places from which updates can be\n"
+"Choosing \"Yes\" will display 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."
+"the selected package(s), or \"Cancel\" to abort."
msgstr ""
+"ЩЃЩЉ Ш§Щ„Щ€Щ‚ШЄ Ш§Щ„Ш°ЩЉ ШЄЩ‚Щ€Щ… ЩЃЩЉЩ‡ ШЁШЄШ«ШЁЩЉШЄ Mandrake Linux, Щ‚ШЇ ЩЉЩѓЩ€Щ† ШЄЩ… ШЄШ­ШЇЩЉШ«\n"
+"ШЁШ№Ш¶ Ш§Щ„Ш­ШІЩ… Щ…Щ†Ш° Ш§?ШµШЇШ§Ш± Ш§Щ„Щ…ШЁШЇШ¦ЩЉ, Ш±ШЁЩ…Ш§ ЩЉЩѓЩ€Щ† ШЄЩ… Ш§ШµЩ„Ш§Ш­ ШЁШ№Ш¶ Ш§Щ„Ш№ЩЉЩ€ШЁ\n"
+"ШЈЩ€ ШЄЩ… Ш­Щ„ Ш§Щ„Щ…ШґШ§ЩѓЩ„ Ш§?Щ…Щ†ЩЉШ©. Щ„ЩѓЩЉ ШЄШіШЄЩЃЩЉШЇ Щ…Щ† Щ‡Ш°Щ‡ Ш§Щ„ШЄШ­ШЇЩЉШ«Ш§ШЄ,ЩЉЩ…ЩѓЩ†Щѓ\n"
+"Ш§?Щ† ШЄЩ†ШІЩЉЩ„ Щ‡Ш°Щ‡ Ш§Щ„ШЄШ­ШЇЩЉШ«Ш§ШЄ Ш№ШЁШ± Ш§?Щ†ШЄШ±Щ†ШЄ. Ш§Ш®ШЄШ±\n"
+"\"Щ†Ш№Щ…\" Ш§Ш°Ш§ ЩѓШ§Щ†ШЄ Щ„ШЇЩЉЩѓ Щ€ШµЩ„Ш© Ш§Щ†ШЄШ±Щ†ШЄ Ш№Ш§Щ…Щ„Ш©, ШЈЩ€ \"?\" Ш§Ш°Ш§ ЩѓЩ†ШЄ ШЄЩЃШ¶Щ„\n"
+"ШЄШ«ШЁЩЉШЄ Щ‡Ш°Щ‡ Ш§Щ„ШЄШ­ШЇЩЉШ«Ш§ШЄ ?Ш­Щ‚Ш§Щ‹.\n"
+"\n"
+"Ш§Ш®ШЄЩЉШ§Ш± \"Щ†Ш№Щ…\" ЩЉШ№Ш±Ш¶ Щ‚Ш§Ш¦Щ…Ш© ШЁШ§?Щ…Ш§ЩѓЩ† Ш§Щ„ШЄЩЉ ЩЉЩ…ЩѓЩ† Щ…Щ†Щ‡Ш§ Ш§Щ„Ш­ШµЩ€Щ„\n"
+"Ш№Щ„Щ‰ Ш§Щ„ШЄШ­ШЇЩЉШ«Ш§ШЄ. Ш§Ш®ШЄШ± Ш§Щ„Щ…ЩѓШ§Щ† Ш§Щ„ШЈЩ‚Ш±ШЁ Ш§Щ„ЩЉЩѓ. ШіЩЉШЄЩ… Ш№Ш±Ш¶ Щ‚Ш§Ш¦Щ…Ш© ШЁШ§Щ„Ш­ШІЩ…\n"
+"Ш±Ш§Ш¬Ш№ Ш§Ш®ШЄЩЉШ§Ш±Ш§ШЄЩѓ, Ш«Щ… Ш§Ш¶ШєШ· \"Ш«ШЁЩ‘ШЄ\" Щ„ШЄЩ†ШІЩЉЩ„ Щ€ ШЄШ«ШЁЩЉШЄ\n"
+"Ш§Щ„Ш­ШІЩ… Ш§Щ„Щ…Ш®ШЄШ§Ш±Ш©, ШЈЩ€ \"Ш§Щ„ШєШ§ШЎ\" ?Ш­ШЁШ§Ш· Ш§Щ„ШЄШ­ШЇЩЉШ«."
#: ../../help.pm:1
#, c-format
@@ -1791,7 +1937,7 @@ msgid ""
"the bootloader menu, giving you the choice of which operating system to\n"
"start.\n"
"\n"
-"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
+"The \"Advanced\" button 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"
@@ -1849,7 +1995,7 @@ msgid ""
" * \"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"
+"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"
@@ -1874,43 +2020,72 @@ msgid ""
"\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 ""
-
-#: ../../help.pm:1
-#, c-format
-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 ""
+" * \"Custom disk partitioning\": choose this option if you want to manually\n"
+"partition your hard drive. Be careful -- it is a powerful but dangerous\n"
+"choice and you can very easily lose all your data. That's why this option\n"
+"is really only recommended if you have done something like this before and\n"
+"have some experience. For more instructions on how to use the DiskDrake\n"
+"utility, refer to the ``Managing Your Partitions '' section in the\n"
+"``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"
+"``ШЇЩ„ЩЉЩ„ Ш§Щ„Щ…ШЁШЄШЇШ¦''."
#: ../../help.pm:1
#, c-format
@@ -2065,11 +2240,25 @@ msgid ""
"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"
+"ЩЉЩ…ЩѓЩ† Ш§ШіШЄШ®ШЇШ§Щ…Щ‡ Ш№Щ† Ш·Ш±ЩЉЩ‚ Ш§Щ„Щ…Ш§ЩѓЩЉЩ†Ш§ШЄ Ш§?Ш®Ш±Щ‰ Ш№Щ„Щ‰ Ш§Щ„ШґШЁЩѓШ© Ш§Щ„Щ…Ш­Щ„ЩЉШ©."
#: ../../help.pm:1
#, c-format
msgid ""
-"This step is used to choose which services you wish to start at boot time.\n"
+"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 always needed at\n"
@@ -2085,19 +2274,34 @@ msgid ""
"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"
+"!!"
#: ../../help.pm:1
#, c-format
msgid ""
-"\"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+"\"Printer\": clicking on the \"Configure\" 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"
"Щ„ЩѓШІЩЉШЇ Щ…Щ† Ш§Щ„Щ…Ш№Щ„Щ€Щ…Ш§ШЄ Ш№Щ† ЩѓЩЉЩЃЩЉШ© Ш§Ш№ШЇШ§ШЇ Ш·Ш§ШЁШ№Ш© Ш¬ШЇЩЉШЇШ©. Ш§Щ„Щ€Ш§Ш¬Щ‡Ш©\n"
-"Щ‡Щ†Ш§Щѓ Щ…Щ…Ш§Ш«Щ„Ш© Щ„ШЄЩ„Щѓ Ш§Щ„Щ…ШіШЄШ®ШЇЩ…Ш© ШЈШ«Щ†Ш§ШЎ Ш§Щ„ШЄШ«ШЁЩЉЩ†."
+"Щ‡Щ†Ш§Щѓ Щ…Щ…Ш§Ш«Щ„Ш© Щ„ШЄЩ„Щѓ Ш§Щ„Щ…ШіШЄШ®ШЇЩ…Ш© ШЈШ«Щ†Ш§ШЎ Ш§Щ„ШЄШ«ШЁЩЉШЄ."
#: ../../help.pm:1
#, c-format
@@ -2121,6 +2325,24 @@ msgid ""
"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"
+"ШЄШ«ШЁЩЉШЄ Ш§Щ„Щ†ШёШ§Щ… Щ€ Ш§ШіШЄШ®ШЇЩ… Ш§Щ„ШЁШ±Щ†Ш§Щ…Ш¬ Ш§Щ„Щ…Ш°ЩѓЩ€Ш± Щ‡Щ†Ш§Щѓ ?Ш№ШЇШ§ШЇ Ш§Щ„Щ€ШµЩ„Ш©."
#: ../../help.pm:1
#, c-format
@@ -3406,6 +3628,12 @@ msgstr "Ш§Щ„Ш®ШЇЩ…Ш§ШЄ"
msgid "System"
msgstr "Ш§Щ„Щ†ШёШ§Щ…"
+#. -PO: example: lilo-graphic on /dev/hda1
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "%s on %s"
+msgstr "%s Ш№Щ„Щ‰ %s"
+
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Bootloader"
@@ -3543,14 +3771,14 @@ msgid "Which is your timezone?"
msgstr "Щ…Ш§ Щ‡ЩЉ Щ…Щ†Ш·Щ‚ШЄЩѓ Ш§Щ„ШІЩ…Щ†ЩЉШ©Шџ"
#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Would you like to try again?"
-msgstr "Щ‡Щ„ ШЄШ±ЩЉШЇ ШЄЩ‡ЩЉШ¦Ш© Ш§Щ„Ш·ШЁШ§Ш№Ш©Шџ"
+msgstr "Щ‡Щ„ ШЄШ±ЩЉШЇ Ш§Щ„Щ…Ш­Ш§Щ€Щ„Ш© Щ…Ш±Ш©Щ‹ ШЈШ®Ш±Щ‰Шџ"
#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Unable to contact mirror %s"
-msgstr "ШЄШ№Ш°Ш± ШЄЩ†ЩЃЩЉШ°: %s"
+msgstr "ШЄШ№Ш°Ш± Ш§?ШЄШµШ§Щ„ ШЁШ§Щ„Щ…Ш±ШўШ© %s"
#: ../../install_steps_interactive.pm:1
#, c-format
@@ -3839,6 +4067,11 @@ msgid "Please choose your type of mouse."
msgstr "ЩЃШ¶Щ„Ш§Щ‹ Ш§Ш®ШЄШ± Щ†Щ€Ш№ Ш§Щ„ЩЃШЈШ±Ш©."
#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Encryption key for %s"
+msgstr "Щ…ЩЃШ§ШЄШ­ Ш§Щ„ШЄШґЩЃЩЉШ±"
+
+#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Upgrade %s"
msgstr "ШЄШ±Щ‚ЩЉШ© %s"
@@ -7959,9 +8192,9 @@ msgid "SCSI controllers"
msgstr "Щ…ШЄШ­ЩѓЩ…Ш§ШЄ SCSI"
#: ../../harddrake/data.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Firewire controllers"
-msgstr "Щ…ШЄШ­ЩѓЩ…Ш§ШЄ USB"
+msgstr "Щ…ШЄШ­ЩѓЩ…Ш§ШЄ Firewire"
#: ../../harddrake/data.pm:1
#, c-format
@@ -8217,6 +8450,21 @@ msgid ""
"- the new ALSA api that provides many enhanced features but requires using "
"the ALSA library.\n"
msgstr ""
+"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"
#: ../../harddrake/sound.pm:1
#, c-format
@@ -8710,11 +8958,6 @@ msgstr "Ш¬Ш§Ш±ЩЉ Ш§Ш№ШЇШ§ШЇ Ш§Щ„ШґШЁЩѓШ©"
#: ../../network/ethernet.pm:1
#, c-format
-msgid "no network card found"
-msgstr "Щ„Ш§ ШЁШ·Ш§Щ‚Ш© ШґШЁЩѓШ© Щ€Ш¬ШЇШЄ "
-
-#: ../../network/ethernet.pm:1
-#, c-format
msgid ""
"Please choose which network adapter you want to use to connect to Internet."
msgstr "ЩЃШ¶Щ„Ш§Щ‹ Ш§Ш®ШЄШ± Щ…Щ€Ш§Ш¦Щ… Ш§Щ„ШҐЩ†ШЄШ±Щ†ШЄ Ш§Щ„Ш°ЩЉ ШЄШ±ЩЉШЇ Ш§ШіШЄШ®ШЇШ§Щ…Щ‡ Щ„Щ„ШҐШЄШµШ§Щ„ ШЁШ§Щ„ШҐЩ†ШЄШ±Щ†ШЄ."
@@ -9355,9 +9598,9 @@ msgid "Start at boot"
msgstr "Ш§ШЁШЇШЈ Ш№Щ†ШЇ Ш§Щ„ШҐЩ‚Щ„Ш§Ш№"
#: ../../network/network.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Assign host name from DHCP address"
-msgstr "ЩЃШ¶Щ„Ш§ ШЈШЇШ®Щ„ Ш§ШіЩ… Ш§Щ„Щ…ШіШЄШ¶ЩЉЩЃ ШЈЩ€ Ш№Щ†Щ€Ш§Щ† IP.\n"
+msgstr "Ш№ЩЉЩ‘Щ† Ш§ШіЩ… Ш§Щ„Щ…ШіШЄШ¶ЩЉЩЃ Щ…Щ† Ш№Щ†Щ€Ш§Щ† DHCP"
#: ../../network/network.pm:1
#, c-format
@@ -9370,9 +9613,9 @@ msgid "Track network card id (useful for laptops)"
msgstr "ШЄШЄШЁШ№ Щ‡Щ€ЩЉШ© ШЁШ·Ш§Щ‚Ш© Ш§Щ„ШґШЁЩѓШ© (Щ…ЩЃЩЉШЇ Щ„Щ„Ш¬Ш§ШіШЁШ§ШЄ Ш§Щ„ШЇЩЃШЄШ±ЩЉШ©)"
#: ../../network/network.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "DHCP host name"
-msgstr "Ш§ШіЩ… Ш§Щ„Щ…ШіШЄШ¶ЩЉЩЃ"
+msgstr "Ш§ШіЩ… Щ…ШіШЄШ¶ЩЉЩЃ DHCP"
#: ../../network/network.pm:1 ../../standalone/drakconnect:1
#: ../../standalone/drakgw:1
@@ -10002,18 +10245,6 @@ 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; 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."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
msgid "Printing system: "
msgstr "Щ†ШёШ§Щ… Ш§Щ„Ш·ШЁШ§Ш№Ш©: "
@@ -10626,6 +10857,11 @@ msgstr "Ш§Щ„Ш®ЩЉШ§Ш± %s ЩЉШ¬ШЁ ШЈЩ† ЩЉЩѓЩ€Щ† Ш±Щ‚Щ…Ш§ ШµШ­ЩЉШ­Ш§Щ‹!"
#: ../../printer/printerdrake.pm:1
#, c-format
+msgid "Printer default settings"
+msgstr "Ш§Ш№ШЇШ§ШЇШ§ШЄ Ш§Щ„Ш·Ш§ШЁШ№Ш© Ш§Щ„ШҐЩЃШЄШ±Ш§Ш¶ЩЉШ©"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
"Printer default settings\n"
"\n"
@@ -11107,6 +11343,23 @@ msgid ""
"type in Printerdrake.\n"
"\n"
msgstr ""
+"ШЈЩ†ШЄ Ш№Щ„Щ‰ Щ€ШґЩѓ ШЄЩ‡ЩЉШ¦Ш© Ш§Щ„Ш·ШЁШ§Ш№Ш© Ш№Щ„Щ‰ Ш­ШіШ§ШЁ ЩЃЩЉ Windows Щ…Ш№ ЩѓЩ„Щ…Ш© Щ…Ш±Щ€Ш±. ШЁШіШЁШЁ Ш®Ш·ШЈ ЩЃЩЉ "
+"Щ‡ЩЉЩѓЩ„ЩЉШ© Ш№Щ…ЩЉЩ„ Samba, ЩЉШЄЩ… Щ€Ш¶Ш№ ЩѓЩ„Щ…Ш© Ш§Щ„Щ…Ш±Щ€Ш± ШЁЩ†Шµ Щ€Ш§Ш¶Ш­ ЩЃЩЉ ШіШ·Ш± ШЈЩ€Ш§Щ…Ш± Ш№Щ…ЩЉЩ„ Samba "
+"Ш§Щ„Щ…ШіШЄШ®ШЇЩ… Щ„Щ†Щ‚Щ„ Щ€ШёЩЉЩЃШ© Ш§Щ„Ш·ШЁШ§Ш№Ш© Ш§Щ„Щ‰ Ш®Ш§ШЇЩ… Windows. Щ„Ш°Ш§ ЩЃШҐЩ†Щ‡ ЩЉЩ…ЩѓЩ† Щ„ЩѓЩ„ Щ…ШіШЄШ®ШЇЩ… Ш№Щ„Щ‰ "
+"Щ‡Ш°Щ‡ Ш§Щ„Щ…Ш§ЩѓЩЉЩ†Ш© ШЈЩ† ЩЉШ№Ш±Ш¶ ЩѓЩ„Щ…Ш© Ш§Щ„Щ…Ш±Щ€Ш± Ш№Щ„Щ‰ Ш§Щ„ШґШ§ШґШ© ШЁШ§ШіШЄШ®ШЇШ§Щ… ЩѓЩ„Щ…Ш§ШЄ Щ…Ш±Щ€Ш± Щ…Ш«Щ„ \"ps "
+"auxwww\".\n"
+"\n"
+"Щ†Ш­Щ† Щ†Щ†ШµШ­ ШЁШ§ШіШЄШ№Щ…Ш§Щ„ Щ€Ш§Ш­ШЇ Щ…Щ† Ш§Щ„ШЁШЇШ§Ш¦Щ„ Ш§Щ„ШЄШ§Щ„ЩЉШ© (ЩЃЩЉ ЩѓЩ„ Ш§Щ„Ш­Ш§?ШЄ Ш№Щ„ЩЉЩѓ Ш§Щ„ШЄШЈЩѓШЇ ШЈЩ† "
+"Ш§Щ„Щ…Ш§ЩѓЩЉЩ†Ш§ШЄ Ш§Щ„Щ…Щ€Ш¬Щ€ШЇШ© ЩЃЩ‚Ш· Ш№Щ„Щ‰ Ш§Щ„ШґШЁЩѓШ© Ш§Щ„Щ…Ш­Щ„ЩЉШ© ШЄШіШЄШ·ЩЉШ№ Ш§Щ„Щ€ШµЩ€Щ„ Ш§Щ„Щ‰ Ш®Ш§ШЇЩ… Windows, Ш№Щ† "
+"Ш·Ш±ЩЉЩ‚ Ш§ШіШЄШ®ШЇШ§Щ… Ш¬ШЇШ§Ш± Щ†Ш§Ш±ЩЉ Щ…Ш«Щ„Ш§Щ‹):\n"
+"\n"
+"Ш§ШіШЄШ®ШЇЩ… Ш­ШіШ§ШЁ ШЇЩ€Щ† ЩѓЩ„Щ…Ш© Щ…Ш±Щ€Ш± Ш№Щ„Щ‰ Ш®Ш§ШЇЩ… Windows, Щ…Ш«Щ„ Ш­ШіШ§ШЁ \"GUEST\" ШЈЩ€ Ш­ШіШ§ШЁ Ш®Ш§Шµ "
+"Щ„Ш§ШіШЄШ®ШЇШ§Щ…Щ‡ Щ„Щ„Ш·ШЁШ§Ш№Ш©. ? ШЄЩ‚Щ… ШЁШҐШІШ§Щ„Ш© Ш§Щ„Ш­Щ…Ш§ЩЉШ© Ш№Щ† Ш·Ш±ЩЉЩ‚ ЩѓЩ„Щ…Ш§ШЄ Ш§Щ„Щ…Ш±Щ€Ш± Щ…Щ† Ш­ШіШ§ШЁЩѓ Ш§Щ„ШґШ®ШµЩЉ "
+"ШЈЩ€ Щ…Щ† Ш­ШіШ§ШЁ Щ…ШЇЩЉШ± Ш§Щ„Щ†ШёШ§Щ….\n"
+"\n"
+"Щ‚Щ… ШЁШҐШ№ШЇШ§ШЇ Ш®Ш§ШЇЩ… Windows Щ„Ш¬Ш№Щ„ Ш§Щ„Ш·Ш§ШЁШ№Ш© Щ…ШЄЩ€ЩЃШ±Ш© ШЄШ­ШЄ ШЁШ±Щ€ШЄЩ€ЩѓЩ€Щ„ LPD. Ш«Щ… Щ‚Щ… ШЁШҐШ№ШЇШ§ШЇ "
+"Ш§Щ„Ш·ШЁШ§Ш№Ш© Щ…Щ† Щ‡Ш°Щ‡ Ш§Щ„Щ…Ш§ЩѓЩЉЩ†Ш© Щ…Ш№ Щ†Щ€Ш№ Ш§Щ„Щ€ШµЩ„Ш© \"%s\" ЩЃЩЉ PrinterDrake.\n"
+"\n"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -12579,15 +12832,15 @@ msgstr "Щ…Ш±Ш­ШЁШ§ ШЁШ§Щ„Щ…Ш®ШЄШ±Щ‚ЩЉЩ†"
#, 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 on the part of "
-"the worldwide Linux Community"
+"Your new operating system is the result of collaborative work of the "
+"worldwide Linux Community."
msgstr ""
"Щ†Ш¬Ш§Ш­ MandrakeSoft Щ…ШЁЩ†ЩЉ Ш№Щ„Щ‰ Щ…ШЁШЇШЈ Ш­Ш±ЩЉШ© Ш§Щ„ШЁШ±Ш§Щ…Ш­. Щ†ШёШ§Щ… Ш§Щ„ШЄШґШєЩЉЩ„ Ш§Щ„Ш¬ШЇЩЉШЇ Ш§Щ„Ш®Ш§Шµ ШЁЩѓ "
"Щ‡Щ€ Щ†ШЄЩЉШ¬Ш© Щ„Щ„ШЄШ№Ш§Щ€Щ† Щ€ Ш§Щ„Ш№Щ…Щ„ Ш§Щ„Ш¬Ш§ШЇ Щ…Щ† Ш¬ШІШЎ Щ…Щ† Щ…Ш¬ШЄЩ…Ш№ Щ„ЩЉЩ†ЩѓШі Ш­Щ€Щ„ Ш§Щ„Ш№Ш§Щ„Щ…"
#: ../../share/advertising/01-thanks.pl:1
#, c-format
-msgid "Welcome to the Open Source world"
+msgid "Welcome to the Open Source world."
msgstr "ШЈЩ‡Щ„Ш§Щ‹ ШЁЩѓ ЩЃЩЉ Ш№Ш§Щ„Щ… Ш§Щ„Щ…ШµШ§ШЇШ± Ш§Щ„Щ…ЩЃШЄЩ€Ш­Ш©"
#: ../../share/advertising/01-thanks.pl:1
@@ -12598,215 +12851,164 @@ msgstr "ШґЩѓШ±Ш§Щ‹ Щ„Ш§Ш®ШЄЩЉШ§Ш±Щѓ Mandrake Linux 9.1"
#: ../../share/advertising/02-community.pl:1
#, c-format
msgid ""
-"To share your own knowledge and help build Linux tools, join the discussion "
-"forums you'll find on our \"Community\" webpages"
+"To share your own knowledge and help build Linux software, join our "
+"discussion forums on our \"Community\" webpages."
msgstr ""
"Щ„Щ…ШґШ§Ш±ЩѓШЄЩ†Ш§ ШЁЩ…Ш№Ш±ЩЃШЄЩѓ Щ€ Щ„Щ„Щ…ШіШ§Ш№ШЇШ© ЩЃЩЉ ШЁЩ†Ш§ШЎ ШЈШЇЩ€Ш§ШЄ Щ„ЩЉЩ†ЩѓШі, Ш§Щ†Ш¶Щ… Ш§Щ„Щ‰ Щ…Щ†ШЄШЇЩЉШ§ШЄ Ш§Щ„Щ†Щ‚Ш§Шґ "
"Ш§Щ„ШЄЩЉ ШіШЄШ¬ШЇЩ‡Ш§ ЩЃЩЉ ШµЩЃШ­Ш© \"Community\" Ш№Щ„Щ‰ Щ…Щ€Щ‚Ш№Щ†Ш§"
#: ../../share/advertising/02-community.pl:1
#, c-format
-msgid "Want to know more about the Open Source community?"
-msgstr "Щ‡Щ„ ШЄШ±ЩЉШЇ Щ…Ш№Ш±ЩЃШ© Ш§Щ„Щ…ШІЩЉШЇ Ш№Щ† Щ…Ш¬ШЄЩ…Ш№ Ш§Щ„Щ…ШµШ§ШЇШ± Ш§Щ„Щ…ЩЃШЄЩ€Ш­Ш©Шџ"
-
-#: ../../share/advertising/02-community.pl:1
-#, c-format
-msgid "Get involved in the Free Software world"
-msgstr "ЩѓЩ† Ш¬ШІШЎШ§Щ‹ Щ…Щ† Ш№Ш§Щ„Щ… Ш§Щ„ШЁШ±Щ…Ш¬ЩЉШ§ШЄ Ш§Щ„Ш­Ш±Ш©"
-
-#: ../../share/advertising/03-internet.pl:1
-#, c-format
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"
+"Want to know more and to contribute to the Open Source community? Get "
+"involved in the Free Software world!"
msgstr ""
-"Ш§Ш®ШЄШ§Ш± Mandrake Linux 9.1 ШЈЩЃШ¶Щ„ Ш§Щ„ШЁШ±Ш§Щ…Ш¬ Щ„Щѓ. ШЄШµЩЃШ­ Ш§Щ„ШҐЩ†ШЄШ±Щ†ШЄ Щ€ Ш§ШіШЄШ№Ш±Ш¶ Ш§Щ„ШµШ± "
-"Ш§Щ„Щ…ШЄШ­Ш±ЩѓШ© ШЁШ§ШіШЄШ®ШЇШ§Щ… Щ…Щ€ШІЩЉЩ„Щ„Ш§ Щ€ ЩѓЩ€Щ†ЩѓЩЉЩ€Ш±Ш±, ШЈЩ€ Ш§Щ‚Ш±ШЈ ШЁШ±ЩЉШЇЩѓ Ш§Щ„ШЈЩ„ЩѓШЄШ±Щ€Щ†ЩЉ Щ€ ШЄШ№Ш§Щ…Щ„ Щ…Ш№ "
-"Щ…Ш№Щ„Щ€Щ…Ш§ШЄЩѓ Ш§Щ„ШґШ®ШµЩЉШ© ШЁШ§ШіШЄШ®ШЇШ§Щ… KMail Щ€ Evolution"
+"Щ‡Щ„ ШЄШ±ЩЉШЇ Щ…Ш№Ш±ЩЃШ© Ш§Щ„Щ…ШІЩЉШЇ Ш№Щ† Щ…Ш¬ШЄЩ…Ш№ Ш§Щ„Щ…ШµШ§ШЇШ± Ш§Щ„Щ…ЩЃШЄЩ€Ш­Ш©Шџ ЩѓЩ† Ш¬ШІШЎШ§Щ‹ Щ…Щ† Ш№Ш§Щ„Щ… Ш§Щ„ШЁШ±Щ…Ш¬ЩЉШ§ШЄ "
+"Ш§Щ„Ш­Ш±Ш©"
-#: ../../share/advertising/03-internet.pl:1
+#: ../../share/advertising/02-community.pl:1
#, c-format
-msgid "Get the most from the Internet"
-msgstr "Ш§Ш­ШµЩ„ Ш№Щ„Щ‰ Щ…Ш§ ШЄШ±ЩЉШЇ Щ…Щ† Ш§Щ„ШҐЩ†ШЄШ±Щ†ШЄ"
+msgid "Build the future of Linux!"
+msgstr ""
-#: ../../share/advertising/04-multimedia.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
msgid ""
-"Mandrake Linux 9.1 enables you to use the very latest software to play audio "
-"files, edit and handle your images or photos, and play videos"
+"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.1 ЩЉЩ…ЩѓЩ‘Щ†Щѓ Щ…Щ† Ш§ШіШЄШ®ШЇШ§Щ… ШўШ®Ш± Ш§ШµШЇШ§Ш±Ш§ШЄ Ш§Щ„ШЁШ±Ш§Щ…Ш¬ Щ„ШЄШґШєЩЉЩ„ Ш§Щ„Щ…Щ„ЩЃШ§ШЄ "
"Ш§Щ„ШµЩ€ШЄЩЉШ©, Щ€ ШЄШ­Ш±ЩЉШ± Ш§Щ„ШµЩ€Ш±, Щ€ ШЄШґШєЩЉЩ„ Щ…Щ„ЩЃШ§ШЄ Ш§Щ„ЩЃЩЉШЇЩЉЩ€"
-#: ../../share/advertising/04-multimedia.pl:1
-#, c-format
-msgid "Push multimedia to its limits!"
-msgstr "Ш§ШіШЄЩ…ШЄШ№ ШЁШ§Щ„Щ€ШіШ§Ш¦Ш· Ш§Щ„Щ…ШЄШ№ШЇШЇШ© Ш§Щ„Щ‰ ШЈЩ‚ШµЩ‰ Ш­ШЇ!"
-
-#: ../../share/advertising/04-multimedia.pl:1
-#, c-format
-msgid "Discover the most up-to-date graphical and multimedia tools!"
-msgstr "Ш§ЩѓШЄШґЩЃ ШЈШ­ШЇШ« ШЈШЇЩ€Ш§ШЄ Ш§Щ„Щ€ШіШ§Ш¦Ш· Ш§Щ„Щ…ШЄШ№ШЇШЇШ© Щ€ ШЁШ±Ш§Щ…Ш¬ Ш§Щ„Ш±ШіЩ…!"
-
-#: ../../share/advertising/05-games.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
msgid ""
-"Mandrake Linux 9.1 provides the best Open Source games - arcade, action, "
-"strategy, ..."
+"Surf the Web with Mozilla or Konqueror, read your mail with Evolution or "
+"Kmail, create your documents with OpenOffice.org."
msgstr ""
-"Mandrake Linux 9.1 ЩЉЩ€ЩЃШ± ШЈЩЃШ¶Щ„ Ш§Щ„ШЈЩ„Ш№Ш§ШЁ Щ…ЩЃШЄЩ€Ш­Ш© Ш§Щ„Щ…ШµШЇШ± - ШЈШ±ЩѓЩЉШЇ, Ш­Ш±ЩѓШ©, "
-"Ш§ШіШЄШ±Ш§ШЄЩЉШ¬ЩЉШ©, ..."
-#: ../../share/advertising/05-games.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
-msgid "Games"
-msgstr "Ш§Щ„Ш§Щ„Ш№Ш§ШЁ"
+msgid "MandrakeSoft has selected the best software for you"
+msgstr ""
-#: ../../share/advertising/06-mcc.pl:1
+#: ../../share/advertising/04-configuration.pl:1
#, c-format
msgid ""
-"Mandrake Linux 9.1 provides a powerful tool to fully customize and configure "
-"your machine"
-msgstr "ЩЉЩ€ЩЃШ± Mandrake Linux 9.1 ШЈШЇШ§Ш© Щ‚Щ€ЩЉШ© Щ„ШЄШ®ШµЩЉШµ Щ€ ШЄЩ‡ЩЉШ¦Ш© Ш¬Щ‡Ш§ШІЩѓ"
+"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!"
+msgstr ""
-#: ../../share/advertising/06-mcc.pl:1 ../../standalone/drakbug:1
-#, c-format
-msgid "Mandrake Control Center"
-msgstr "Щ…Ш±ЩѓШІ ШЄШ­ЩѓЩ… Mandrake"
+#: ../../share/advertising/04-configuration.pl:1
+#, fuzzy, c-format
+msgid "Mandrake's multipurpose configuration tool"
+msgstr "ШЄЩ‡ЩЉШ¦Ш© Ш®Ш§ШЇЩ… Ш·Ш±ЩЃЩЉШ§ШЄ Mandrake"
-#: ../../share/advertising/07-desktop.pl:1
-#, c-format
+#: ../../share/advertising/05-desktop.pl:1
+#, fuzzy, c-format
msgid ""
-"Mandrake Linux 9.1 provides you with 11 user interfaces that can be fully "
-"modified: KDE 3, Gnome 2, WindowMaker, ..."
+"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 ""
"ЩЉЩ€ЩЃШ± Mandrake Linux 9.1 11 Щ€Ш§Ш¬Щ‡Ш© Ш§ШіШЄШ®ШЇШ§Щ… ЩЉЩ…ЩѓЩ† ШЄШ№ШЇЩЉЩ„Щ‡Ш§ ЩѓШ§Щ…Щ„Ш©Щ‹: ЩѓЩЉШЇЩЉ 3, Ш¬Щ†Щ€Щ… 2, "
"WindowsMaker, ..."
-#: ../../share/advertising/07-desktop.pl:1
+#: ../../share/advertising/05-desktop.pl:1
#, c-format
-msgid "User interfaces"
-msgstr "Щ€Ш§Ш¬Щ‡Ш§ШЄ Ш§Щ„ШҐШіШЄШ®ШЇШ§Щ…"
+msgid "A customizable environment"
+msgstr ""
-#: ../../share/advertising/08-development.pl:1
+#: ../../share/advertising/06-development.pl:1
#, c-format
msgid ""
-"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
-"development environments"
+"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 ""
-"Ш§ШіШЄЩЃЩЉШЇ Щ…Щ† ЩѓЩ„ Щ‚Щ€Ш© Ш§Щ„Щ…ШЄШ±Ш¬Щ… GNU gcc 3 ШЁШ§Щ„ШҐШ¶Ш§ЩЃШ© Ш§Щ„Щ‰ ШЈЩЃШ¶Щ„ ШЁЩЉШ¦Ш§ШЄ Ш§Щ„ШЄШ·Щ€ЩЉШ± Щ…ЩЃШЄЩ€Ш­Ш© "
-"Ш§Щ„Щ…ШµШ§ШЇШ±"
-#: ../../share/advertising/08-development.pl:1
+#: ../../share/advertising/06-development.pl:1
#, c-format
-msgid "Mandrake Linux 9.1 is the ultimate development platform"
+msgid "Mandrake Linux 9.1: the ultimate development platform"
msgstr "Mandrake Linux 9.1 Щ‡ЩЉ Ш§Щ„ШЁЩЉШ¦Ш© Ш§Щ„ШЈЩ…Ш«Щ„ Щ„ШЄШ·Щ€ЩЉШ± Ш§Щ„ШЁШ±Ш§Щ…Ш¬"
-#: ../../share/advertising/08-development.pl:1
-#, c-format
-msgid "Development simplified"
-msgstr "Ш§Щ„ШЁШ±Щ…Ш¬Ш© Щ€Щ„Ш§ ШЈШіЩ‡Щ„"
-
-#: ../../share/advertising/09-server.pl:1
+#: ../../share/advertising/07-server.pl:1
#, c-format
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, ..."
+"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 ""
"Ш­Щ€Щ‘Щ„ Ш¬Щ‡Ш§ШІЩѓ Ш§Щ„Щ‰ Ш®Ш§ШЇЩ… Щ„ЩЉЩ†ЩѓШі Щ‚Щ€ЩЉ ШЁЩ†Щ‚Ш±Ш§ШЄ Щ‚Щ„ЩЉЩ„Ш© Щ…Щ† Ш§Щ„ЩЃШЈШ±Ш©: Ш®Ш§ШЇЩ… Щ€ЩЉШЁ, ШЁШ±ЩЉШЇ, Ш¬ШЇШ§Ш± "
"Щ†Ш§Ш±ЩЉ, Щ…Щ€Ш¬Щ‘Щ‡, Ш®Ш§ШЇЩ… Щ…Щ„ЩЃШ§ШЄ Щ€ Ш·ШЁШ§Ш№Ш©, ..."
-#: ../../share/advertising/09-server.pl:1
+#: ../../share/advertising/07-server.pl:1
#, c-format
-msgid "Turn your machine into a reliable server"
+msgid "Turn your computer into a reliable server"
msgstr "Ш§Ш¬Ш№Щ„ Ш¬Щ‡Ш§ШІЩѓ Ш®Ш§ШЇЩ…Ш§Щ‹ ЩЉШ№ШЄЩ…ШЇ Ш№Щ„ЩЉЩ‡"
-#: ../../share/advertising/10-mnf.pl:1
-#, c-format
-msgid "This product is available on MandrakeStore website"
-msgstr "Щ‡Ш°Ш§ Ш§Щ„Щ…Щ†ШЄШ¬ Щ…ШЄЩ€ЩЃШ± Ш№Щ„Щ‰ Щ…Щ€Щ‚Ш№ MandrakeStore"
-
-#: ../../share/advertising/10-mnf.pl:1
-#, c-format
-msgid ""
-"This firewall product includes network features that allow you to fulfill "
-"all your security needs"
-msgstr ""
-"Щ…Щ†ШЄШ¬ Ш§Щ„Ш¬ШЇШ§Ш± Ш§Щ„Щ†Ш§Ш±ЩЉ Щ‡Ш°Ш§ ЩЉШ­ШЄЩ€ЩЉ Ш№Щ„Щ‰ Щ…ШІШ§ЩЉШ§ Щ„Щ„ШґШЁЩѓШ© ШЄЩ€ЩЃШ± ЩѓЩ„ Ш§Ш­ШЄЩЉШ§Ш¬Ш§ШЄЩѓ Ш§Щ„ШЈЩ…Щ†ЩЉШ©"
-
-#: ../../share/advertising/10-mnf.pl:1
-#, c-format
-msgid ""
-"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
-"F.)"
-msgstr "Щ…Щ†ШЄШ¬Ш§ШЄ MandrakeSecurity ШЄШЄШ¶Щ…Щ† Multi Network Firewall (M.N.F.)"
-
-#: ../../share/advertising/10-mnf.pl:1
-#, c-format
-msgid "Optimize your security"
-msgstr "Ш­ШіЩ‘Щ† Щ…ШіШЄЩ€Щ‰ Ш§Щ„ШЈЩ…Щ†"
-
-#: ../../share/advertising/11-mdkstore.pl:1
+#: ../../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 online on our e-store:"
+"other \"goodies\", are available on our e-store:"
msgstr ""
"Ш®ЩЉШ§Ш±Ш§ШЄЩ†Ш§ Ш§Щ„ЩѓШ«ЩЉШ± Щ…Щ† Ш­Щ„Щ€Щ„ Щ†ШёШ§Щ… Щ„ЩЉЩ†ЩѓШі ШЁШ§Щ„ШҐШ¶Ш§ЩЃШ© Ш§Щ„Щ‰ Ш§Щ„Ш№Ш±Щ€Ш¶ Ш§Щ„Ш®Ш§ШµШ© Щ€ Ш§Щ„Щ…Щ†ШЄШ¬Ш§ШЄ "
"Ш§Щ„ШЈШ®Ш±Щ‰Щ‰ Щ…ШЄЩ€ЩЃШ±Ш© ЩЃЩЉ Щ…ШЄШ¬Ш±Щ†Ш§ Ш§Щ„ШЈЩ„ЩѓШЄШ±Щ€Щ†ЩЉ:"
-#: ../../share/advertising/11-mdkstore.pl:1
+#: ../../share/advertising/08-store.pl:1
#, c-format
-msgid "The official MandrakeSoft store"
+msgid "The official MandrakeSoft Store"
msgstr "Щ…ШЄШ¬Ш± MandrakeSoft Ш§Щ„Ш±ШіЩ…ЩЉ"
-#: ../../share/advertising/12-mdkstore.pl:1
-#, c-format
+#: ../../share/advertising/09-mdksecure.pl:1
+#, fuzzy, c-format
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"
+"Enhance your computer performance with the help of a selection of partners "
+"offering professional solutions compatible with Mandrake Linux"
msgstr ""
"MandrakeSoft ШЄШ№Щ…Щ„ Ш¬Щ†ШЁШ§Щ‹ Ш§Щ„Щ‰ Ш¬Щ†ШЁ Щ…Ш№ ШЈЩЃШ¶Щ„ Ш§Щ„ШґШ±ЩѓШ§ШЄ Ш§Щ„ШЄЩЉ ШЄЩ€ЩЃШ± Ш­Щ„Щ€Щ„ Щ„Ш­ШЄШ±Ш§ЩЃЩЉШ© "
"Щ…ШЄЩ€Ш§ЩЃЩ‚Ш© Щ…Ш№ Mandrake Linux. ШЄЩ€Ш¬ШЇ Щ‚Ш§Ш¦Щ…Ш© ШЁЩ‡Ш¤Щ„Ш§ШЎ Ш§Щ„ШґШ±ЩѓШ§ШЎ ЩЃЩЉ MandrakeStore"
-#: ../../share/advertising/12-mdkstore.pl:1
+#: ../../share/advertising/09-mdksecure.pl:1
#, c-format
-msgid "Strategic partners"
-msgstr "ШґШ±ЩѓШ§Ш¤Щ†Ш§ Ш§Щ„Ш§ШіШЄШ±Ш§ШЄЩЉШ¬ЩЉЩ€Щ†"
+msgid "Get the best items with Mandrake Linux Strategic partners"
+msgstr ""
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/10-security.pl:1
#, c-format
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)"
+"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 ""
-"ШіЩ€Ш§ШЎ Ш§Ш®ШЄШ±ШЄ ШЈЩ† ШЄШ№Щ„Щ… Щ†ЩЃШіЩѓ ШЁЩ†ЩЃШіЩѓ Ш№ШЁШ± Ш§Щ„ШҐЩ†ШЄШ±Щ†ШЄ ШЈЩ€ Ш№ШЁШ± ШґШЁЩѓШЄЩ†Ш§ Щ…Щ† ШґШ±ЩѓШ§ШЎЩ†Ш§ ЩЃЩЉ Щ…Ш¬Ш§Щ„ "
-"Ш§Щ„ШЄШЁШ±ЩЉШЇ, ЩЉШ­Ш¶Ш±Щѓ ШЇЩ„ЩЉЩ„ Linux-Campus Щ„ШЁШ±Щ†Ш§Щ…Ш¬ ШґЩ‡Ш§ШЇШ© LPI Ш§Щ„Щ…Ш№ШЄШ±ЩЃ ЩЉЩ‡Ш§ ЩЃЩЉ Ш¬Щ…ЩЉШ№ "
-"ШЈЩ†Ш­Ш§ШЎ Ш§Щ„Ш№Ш§Щ„Щ…."
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/10-security.pl:1
+#, c-format
+msgid "Optimize your security by using Mandrake Linux"
+msgstr "Ш­ШіЩ‘Щ† Щ…ШіШЄЩ€Щ‰ Ш§Щ„ШЈЩ…Щ†"
+
+#: ../../share/advertising/11-mnf.pl:1
#, c-format
-msgid "Certify yourself on Linux"
-msgstr "Ш§Ш­ШµЩ„ Ш№Щ„Щ‰ ШґЩ‡Ш§ШЇШ© Щ…Ш№ШЄЩ…ШЇШ© ЩЃЩЉ Щ„ЩЉЩ†ЩѓШі"
+msgid "This product is available on the MandrakeStore Web site."
+msgstr "Щ‡Ш°Ш§ Ш§Щ„Щ…Щ†ШЄШ¬ Щ…ШЄЩ€ЩЃШ± Ш№Щ„Щ‰ Щ…Щ€Щ‚Ш№ MandrakeStore"
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/11-mnf.pl:1
#, c-format
msgid ""
-"The training program has been created to respond to the needs of both end "
-"users and experts (Network and System administrators)"
+"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 ""
-"ШЄЩ… Ш№Щ…Щ„ ШЁШ±Щ†Ш§Щ…Ш¬ Ш§Щ„ШЄШЇШ±ЩЉШЁ ЩѓЩЉ ЩЉШіШЄШ¬ЩЉШЁ Ш§Щ„Щ‰ Ш§Ш­ШЄЩЉШ§Ш¬Ш§ШЄ ЩѓЩ„ЩЌ Щ…Щ† Ш§Щ„Щ…ШіШЄШ®ШЇЩ…ЩЉЩ† Щ€ Ш§Щ„Ш®ШЁШ±Ш§ШЎ "
-"(Щ…ШЇШ±Ш§ШЎ Ш§Щ„ШґШЁЩѓШ© Щ€ Ш§Щ„ШЈЩ†ШёЩ…Ш©)"
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/11-mnf.pl:1
#, c-format
-msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
-msgstr "Ш§ЩѓШЄШґЩЃ ШЇЩ„ЩЉЩ„ ШЄШЇШ±ЩЉШЁ MandrakeSoft Linux-Campus"
+msgid "Secure your networks with the Multi Network Firewall"
+msgstr ""
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, c-format
msgid ""
"Join the MandrakeSoft support teams and the Linux Community online to share "
@@ -12817,57 +13019,36 @@ msgstr ""
"Щ…Ш№Щ„Щ€Щ…Ш§ШЄЩѓ Щ€ Щ…ШіШ§Ш№ШЇШ© Ш§Щ„ШўШ®Ш±ЩЉЩ† ШЁШЈЩ† ШЄШµШЁШ­ Ш®ШЁЩЉШ±Ш§Щ‹ Щ…Ш№ШЄЩ…ЩЋШЇШ§Щ‹ ЩЃЩЉ Щ…Щ€Щ‚Ш№Щ†Ш§ Щ„Щ„ШЇШ№Щ… Ш§Щ„ЩЃЩ†ЩЉ Ш№Щ„Щ‰ "
"Ш§Щ„ШҐЩ†ШЄШ±Щ†ШЄ:"
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, c-format
msgid ""
"Find the solutions of your problems via MandrakeSoft's online support "
-"platform"
+"platform."
msgstr ""
"Ш§Ш№Ш«Ш± Ш№Щ„Щ‰ Ш­Щ„Щ€Щ„ Щ„Щ…ШґШ§ЩѓЩ„Щѓ ШЁШ§ШіШЄШ®ШЇШ§Щ… ШЁЩЉШ¦Ш© Ш§Щ„ШЇШ№Щ… Ш§Щ„ЩЃЩ†ЩЉ Ш№Щ„Щ‰ Ш§Щ„ШҐЩ†ШЄШ±Щ†ШЄ ЩЃЩЉ MandrakeSoft"
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, c-format
msgid "Become a MandrakeExpert"
msgstr "ЩѓЩ† Ш®ШЁЩЉШ±Ш§Щ‹ ЩЃЩЉ MandrakeExpert"
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, c-format
msgid ""
"All incidents will be followed up by a single qualified MandrakeSoft "
"technical expert."
msgstr "ЩѓЩ„ Щ…ШґЩѓЩ„Ш© ШіЩЉШЄЩ… ШЄШЄШЁШ№Щ‡Ш§ Щ…Щ† Ш®ШЁЩЉШ± Щ€Ш§Ш­ШЇ Щ…Ш№ШЄЩ…ШЇ Щ…Щ† MandrakeSoft."
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, c-format
-msgid "An online platform to respond to company's specific support needs"
+msgid "An online platform to respond to enterprise support needs."
msgstr "ШЁЩЉШ¦Ш© Ш№Щ„Щ‰ Ш§Щ„ШҐЩ†ШЄШ±Щ†ШЄ Щ„Щ„ШҐШіШЄШ¬Ш§ШЁШ© Щ„Ш§Ш­ШЄЩЉШ§Ш¬Ш§ШЄ Ш§Щ„ШЇШ№Щ… Ш§Щ„ЩЃЩ†ЩЉ Щ„Щ„ШґШ±ЩѓШ§ШЄ"
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, c-format
msgid "MandrakeExpert Corporate"
msgstr "MandrakeExpert Щ„Щ„ШґШ±ЩѓШ§ШЄ"
-#: ../../share/advertising/17-mdkclub.pl:1
-#, c-format
-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!"
-
-#: ../../share/advertising/17-mdkclub.pl:1
-#, c-format
-msgid "Discover MandrakeClub and Mandrake Corporate Club"
-msgstr "Ш§ЩѓШЄШґЩЃ MandrakeClub Щ„Щ„ШЈЩЃШ±Ш§ШЇ Щ€ Mandrake Corporate Club Щ„Щ„ШґШ±ЩѓШ§ШЄ"
-
#: ../../standalone/XFdrake:1
#, c-format
msgid "Please relog into %s to activate the changes"
@@ -15506,6 +15687,11 @@ msgstr "Щ…Ш№Ш§Щ„Ш¬ First Time"
#: ../../standalone/drakbug:1
#, c-format
+msgid "Mandrake Control Center"
+msgstr "Щ…Ш±ЩѓШІ ШЄШ­ЩѓЩ… Mandrake"
+
+#: ../../standalone/drakbug:1
+#, c-format
msgid "Mandrake Bug Report Tool"
msgstr "ШЈШЇШ§Ш© ШЄЩ‚Ш±ЩЉШ± Ш§Щ„Ш№ЩЉЩ€ШЁ ЩЃЩЉ Mandrake"
@@ -16457,6 +16643,28 @@ msgstr "Ш§Щ„Щ€Ш§Ш¬Щ‡Ш© %s (ШЁШ§ШіШЄШ®ШЇШ§Щ… Ш§Щ„Щ€Ш­ШЇШ© %s)"
#: ../../standalone/drakgw:1
#, c-format
+msgid "Net Device"
+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"
+
+#: ../../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 "
@@ -16827,7 +17035,7 @@ msgid ""
"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"
+"using this computer as source.\n"
"\n"
"Make sure you have configured your Network/Internet access using drakconnect "
"before going any further.\n"
@@ -16998,7 +17206,7 @@ msgstr "Щ„Щ… ЩЉШЄЩ… Ш§Ш®ШЄЩЉШ§Ш± ШЁШ·Ш§Щ‚Ш© ШµЩ€ШЄ"
#: ../../standalone/draksplash:1
#, c-format
msgid "%s BootSplash (%s) preview"
-msgstr "Щ…Ш№Ш§ЩЉЩ†Ш© (%2$s) BootSplash %1$s"
+msgstr "%s BootSplash (%s) Щ…Ш№Ш§ЩЉЩ†Ш©"
#: ../../standalone/draksplash:1
#, c-format
@@ -17031,6 +17239,11 @@ msgid "choose image file"
msgstr "ШҐШ®ШЄШ± Щ…Щ„ЩЃ ШµЩ€Ш±Ш©"
#: ../../standalone/draksplash:1
+#, fuzzy, c-format
+msgid "choose image"
+msgstr "ШҐШ®ШЄШ± Щ…Щ„ЩЃ ШµЩ€Ш±Ш©"
+
+#: ../../standalone/draksplash:1
#, c-format
msgid "Configure bootsplash picture"
msgstr "ШЄЩ‡ЩЉШ¦Ш© ШµЩ€Ш±Ш© Ш§Щ„ШҐЩ‚Щ„Ш§Ш№"
@@ -17508,11 +17721,21 @@ msgstr "Щ…Щ†ЩЃШ° Ш·Ш§ШЁШ№Ш© Ш§Щ„ШґШЁЩѓШ©"
#: ../../standalone/harddrake2:1
#, c-format
+msgid "the name of the CPU"
+msgstr "Ш§ШіЩ… Ш§Щ„Щ…Ш№Ш§Щ„Ш¬"
+
+#: ../../standalone/harddrake2:1
+#, c-format
msgid "Name"
msgstr "Ш§Щ„Ш§ШіЩ…"
#: ../../standalone/harddrake2:1
#, c-format
+msgid "the number of buttons the mouse has"
+msgstr "Ш№ШЇШЇ ШЈШІШ±Ш§Ш± Ш§Щ„ЩЃШЈШ±Ш©"
+
+#: ../../standalone/harddrake2:1
+#, c-format
msgid "Number of buttons"
msgstr "Ш№ШЇШЇ Ш§Щ„ШЈШІШ±Ш§Ш±"
@@ -17679,7 +17902,7 @@ msgstr "Щ‡Ш°Ш§ Ш§Щ„Ш­Щ‚Щ„ ЩЉШµЩЃ Ш§Щ„Ш¬Щ‡Ш§ШІ"
#: ../../standalone/harddrake2:1
#, c-format
msgid ""
-"The cpu frequency in Mhz (Mega herz which in first approximation may be "
+"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 ""
@@ -18690,6 +18913,10 @@ msgid "Set of tools for mail, news, web, file transfer, and chat"
msgstr "Щ…Ш¬Щ…Щ€Ш№Ш© Щ…Щ† Ш§Щ„ШЈШЇЩ€Ш§ШЄ Щ„Щ„ШЁШ±ЩЉШЇ , Ш§Щ„ШЈШ®ШЁШ§Ш±, Ш§Щ„ШҐЩ†ШЄШ±Щ†ШЄ, Щ†Щ‚Щ„ Ш§Щ„Щ…Щ„ЩЃШ§ШЄ, Щ€ Ш§Щ„Щ…Ш­Ш§ШЇШ«Ш©"
#: ../../share/compssUsers:999
+msgid "Games"
+msgstr "Ш§Щ„Ш§Щ„Ш№Ш§ШЁ"
+
+#: ../../share/compssUsers:999
msgid "Multimedia - Graphics"
msgstr "Щ€ШіШ§Ш¦Ш· Щ…ШЄШ№ШЇШЇШ© - Ш±ШіЩ€Щ…ЩЉШ§ШЄ"
@@ -18745,6 +18972,662 @@ msgstr "Ш§Щ„Щ…ЩЉШІШ§Щ†ЩЉШ© Ш§Щ„ШґШ®ШµЩЉШ©"
msgid "Programs to manage your finances, such as gnucash"
msgstr "ШЁШ±Ш§Щ…Ш¬ Щ„ШҐШЇШ§Ш±Ш© Щ…ЩЉШІШ§Щ†ЩЉШЄЩѓ Щ…Ш«Щ„ gnucash"
+#~ msgid "no network card found"
+#~ msgstr "Щ„Ш§ ШЁШ·Ш§Щ‚Ш© ШґШЁЩѓШ© Щ€Ш¬ШЇШЄ "
+
+#~ 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.1 ШЈЩЃШ¶Щ„ Ш§Щ„ШЁШ±Ш§Щ…Ш¬ Щ„Щѓ. ШЄШµЩЃШ­ Ш§Щ„ШҐЩ†ШЄШ±Щ†ШЄ Щ€ Ш§ШіШЄШ№Ш±Ш¶ Ш§Щ„ШµШ± "
+#~ "Ш§Щ„Щ…ШЄШ­Ш±ЩѓШ© ШЁШ§ШіШЄШ®ШЇШ§Щ… Щ…Щ€ШІЩЉЩ„Щ„Ш§ Щ€ ЩѓЩ€Щ†ЩѓЩЉЩ€Ш±Ш±, ШЈЩ€ Ш§Щ‚Ш±ШЈ ШЁШ±ЩЉШЇЩѓ Ш§Щ„ШЈЩ„ЩѓШЄШ±Щ€Щ†ЩЉ Щ€ ШЄШ№Ш§Щ…Щ„ Щ…Ш№ "
+#~ "Щ…Ш№Щ„Щ€Щ…Ш§ШЄЩѓ Ш§Щ„ШґШ®ШµЩЉШ© ШЁШ§ШіШЄШ®ШЇШ§Щ… KMail Щ€ Evolution"
+
+#~ 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!"
+#~ msgstr "Ш§ЩѓШЄШґЩЃ ШЈШ­ШЇШ« ШЈШЇЩ€Ш§ШЄ Ш§Щ„Щ€ШіШ§Ш¦Ш· Ш§Щ„Щ…ШЄШ№ШЇШЇШ© Щ€ ШЁШ±Ш§Щ…Ш¬ Ш§Щ„Ш±ШіЩ…!"
+
+#~ msgid ""
+#~ "Mandrake Linux 9.1 provides the best Open Source games - arcade, action, "
+#~ "strategy, ..."
+#~ msgstr ""
+#~ "Mandrake Linux 9.1 ЩЉЩ€ЩЃШ± ШЈЩЃШ¶Щ„ Ш§Щ„ШЈЩ„Ш№Ш§ШЁ Щ…ЩЃШЄЩ€Ш­Ш© Ш§Щ„Щ…ШµШЇШ± - ШЈШ±ЩѓЩЉШЇ, Ш­Ш±ЩѓШ©, "
+#~ "Ш§ШіШЄШ±Ш§ШЄЩЉШ¬ЩЉШ©, ..."
+
+#~ msgid ""
+#~ "Mandrake Linux 9.1 provides a powerful tool to fully customize and "
+#~ "configure your machine"
+#~ msgstr "ЩЉЩ€ЩЃШ± Mandrake Linux 9.1 ШЈШЇШ§Ш© Щ‚Щ€ЩЉШ© Щ„ШЄШ®ШµЩЉШµ Щ€ ШЄЩ‡ЩЉШ¦Ш© Ш¬Щ‡Ш§ШІЩѓ"
+
+#~ msgid "User interfaces"
+#~ 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 "Development simplified"
+#~ msgstr "Ш§Щ„ШЁШ±Щ…Ш¬Ш© Щ€Щ„Ш§ ШЈШіЩ‡Щ„"
+
+#~ msgid ""
+#~ "This firewall product includes network features that allow you to fulfill "
+#~ "all your security needs"
+#~ msgstr ""
+#~ "Щ…Щ†ШЄШ¬ Ш§Щ„Ш¬ШЇШ§Ш± Ш§Щ„Щ†Ш§Ш±ЩЉ Щ‡Ш°Ш§ ЩЉШ­ШЄЩ€ЩЉ Ш№Щ„Щ‰ Щ…ШІШ§ЩЉШ§ Щ„Щ„ШґШЁЩѓШ© ШЄЩ€ЩЃШ± ЩѓЩ„ Ш§Ш­ШЄЩЉШ§Ш¬Ш§ШЄЩѓ Ш§Щ„ШЈЩ…Щ†ЩЉШ©"
+
+#~ msgid ""
+#~ "The MandrakeSecurity range includes the Multi Network Firewall product (M."
+#~ "N.F.)"
+#~ msgstr "Щ…Щ†ШЄШ¬Ш§ШЄ MandrakeSecurity ШЄШЄШ¶Щ…Щ† Multi Network Firewall (M.N.F.)"
+
+#~ msgid "Strategic partners"
+#~ msgstr "ШґШ±ЩѓШ§Ш¤Щ†Ш§ Ш§Щ„Ш§ШіШЄШ±Ш§ШЄЩЉШ¬ЩЉЩ€Щ†"
+
+#~ 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 "Ш§Ш­ШµЩ„ Ш№Щ„Щ‰ ШґЩ‡Ш§ШЇШ© Щ…Ш№ШЄЩ…ШЇШ© ЩЃЩЉ Щ„ЩЉЩ†ЩѓШі"
+
+#~ msgid ""
+#~ "The training program has been created to respond to the needs of both end "
+#~ "users and experts (Network and System administrators)"
+#~ msgstr ""
+#~ "ШЄЩ… Ш№Щ…Щ„ ШЁШ±Щ†Ш§Щ…Ш¬ Ш§Щ„ШЄШЇШ±ЩЉШЁ ЩѓЩЉ ЩЉШіШЄШ¬ЩЉШЁ Ш§Щ„Щ‰ Ш§Ш­ШЄЩЉШ§Ш¬Ш§ШЄ ЩѓЩ„ЩЌ Щ…Щ† Ш§Щ„Щ…ШіШЄШ®ШЇЩ…ЩЉЩ† Щ€ Ш§Щ„Ш®ШЁШ±Ш§ШЎ "
+#~ "(Щ…ШЇШ±Ш§ШЎ Ш§Щ„ШґШЁЩѓШ© Щ€ Ш§Щ„ШЈЩ†ШёЩ…Ш©)"
+
+#~ msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
+#~ msgstr "Ш§ЩѓШЄШґЩЃ ШЇЩ„ЩЉЩ„ ШЄШЇШ±ЩЉШЁ MandrakeSoft 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 ""
+#~ "ШЄЩ… Ш§Щ†ШґШ§ШЎ MandrakeClub Щ€ Mandrake Corporate Club Щ„Щ„ШґШ±ЩѓШ§ШЄ Щ€ Ш§Щ„Щ…ШіШЄШ®ШЇЩ…ЩЉЩ† "
+#~ "Ш§Щ„ШЈЩЃШ±Ш§ШЇ Ш§Щ„Ш°ЩЉЩ† ЩЉШ±ЩЉШЇЩ€Щ† ШЇШ№Щ… ШЄЩ€ШІЩЉШ№Ш© Щ„ЩЉЩ†ЩѓШі Ш§Щ„Щ…ЩЃШ¶Щ„Ш© Щ„ШЇЩЉЩ‡Щ… ШЁШґЩѓЩ„ Щ…ШЁШ§ШґШ± Щ…Ш№ ШЄЩ…ШЄШ№Щ‡Щ… "
+#~ "ШЁЩ…ШІШ§ЩЉШ§ Ш®Ш§ШµШ©. Ш§Ш°Ш§ ЩѓШ§Щ†ШЄ Щ…Щ†ШЄШ¬Ш§ШЄЩ†Ш§ Щ‚ШЇ Ш­Ш§ШІШЄ Ш№Щ„Щ‰ Ш§Ш№Ш¬Ш§ШЁЩѓ, Ш§Ш°Ш§ ЩѓШ§Щ†ШЄ ШґШ±ЩѓШЄЩѓ ШЄШіШЄЩЃЩЉШЇ "
+#~ "Щ…Щ† Щ…Щ†ШЄШ¬Ш§ШЄЩ†Ш§ Щ€ ШЄШіШ§Ш№ШЇЩ‡Ш§ Ш№Щ„Щ‰ ШІЩЉШ§ШЇШ© Щ‚ШЇШ±ШЄЩ‡Ш§ Ш§Щ„ШЄЩ†Ш§ЩЃШіЩЉШ©, Ш§Ш°Ш§ ЩѓЩ†ШЄ ШЄШ±ЩЉШЇ ШЇШ№Щ… ШЄШ·Щ€ЩЉШ± "
+#~ "Mandrake Linux, Ш§Щ„ШЄШ­Щ‚ ШЁЩ†Ш§ШЇЩЉ MandrakeClub!"
+
+#~ msgid "Discover MandrakeClub and Mandrake Corporate Club"
+#~ msgstr "Ш§ЩѓШЄШґЩЃ MandrakeClub Щ„Щ„ШЈЩЃШ±Ш§ШЇ Щ€ Mandrake Corporate Club Щ„Щ„ШґШ±ЩѓШ§ШЄ"
+
+#~ 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"
+#~ " * \"Keyboard\": check the current keyboard map configuration and click "
+#~ "on\n"
+#~ "the button to change that if necessary.\n"
+#~ "\n"
+#~ " * \"Country\": 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"
+#~ "Ш§Щ„Щ…Ш±ШЄШЁШ·Ш© ШЁШ§Щ„ШЁШ·Ш§Щ‚Ш©."
+
+#~ 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 \"Next ->\". 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"
+#~ "Ш§Щ„Щ…ШґШєЩ‘Щ„ ЩЉШЇЩ€ЩЉШ§Щ‹."
+
+#~ 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"
+#~ " * \"CUPS\" - `` 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. \"CUPS\" 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"
+#~ " * \"CUPS\" - ``Common UNIX Printing System'', Щ‡Щ€ Ш§Щ„Ш®ЩЉШ§Ш± Ш§?Щ…Ш«Щ„\n"
+#~ "Щ„Щ„Ш·ШЁШ§Ш№Ш© Ш№Щ„Щ‰ Ш·Ш§ШЁШ№ШЄЩѓ Ш§Щ„Щ…Ш­Щ„ЩЉШ© ШЈЩ€ Ш­ШЄЩ‰ Ш№Щ„Щ‰ Ш·Ш§ШЁШ№Ш© ЩЃЩЉ Ш§Щ„Щ†ШµЩЃ Ш§?Ш®Ш± Щ…Щ† Ш§Щ„ЩѓЩ€ЩѓШЁ. Ш§Щ†Щ‡\n"
+#~ "ШіЩ‡Щ„ Ш§?Ш№ШЇШ§ШЇ Щ€ ЩЉЩ…ЩѓЩ† ШЈЩ† ЩЉШЄШµШ±ЩЃ ЩѓШ®Ш§ШЇЩ… ШЈЩ€ ЩѓШ№Щ…ЩЉЩ„ ?Щ†ШёЩ…Ш© Ш·ШЁШ§Ш№Ш© \"lpd\"\n"
+#~ "Ш§Щ„Щ‚ШЇЩЉЩ…Ш©, Щ„Ш°Ш§ ЩЃШҐЩ†Щ‡ Щ…ШЄЩ€Ш§ЩЃЩ‚ Щ…Ш№ ШЈЩ†ШёЩ…Ш© Ш§Щ„ШЄШґШєЩЉЩ„ Ш§Щ„Щ‚ШЇЩЉЩ…Ш©\n"
+#~ "Ш§Щ„ШЄЩЉ ? ШЄШІШ§Щ„ ШЄШ­ШЄШ§Ш¬ Ш§Щ„Щ‰ Ш®ШЇЩ…Ш§ШЄ Ш§Щ„Ш·ШЁШ§Ш№Ш©.ШЁЩЉЩ†Щ…Ш§ Ш§Щ„ШЄЩ‡ЩЉШ¦Ш© ШіЩ‡Щ„Ш©\n"
+#~ "Щ€ Щ‚Щ€ЩЉШ© Щ…Ш«Щ„ \"pdq\". Ш§Ш°Ш§ ЩѓЩ†ШЄ ШЄШ­ШЄШ§Ш¬ Ш§Щ„Щ‰ Щ…Ш­Ш§ЩѓШ§Ш© Ш®Ш§ШЇЩ… \"lpd\", ШЄШЈЩѓШЇ\n"
+#~ "Щ…Щ† ШЄШґШєЩЉЩ„ Щ…Ш±Ш§Щ‚ШЁ \"cups-lpd\". ЩЉШ­ШЄЩ€ЩЉ CUPS Ш№Щ„Щ‰ Щ€Ш§Ш¬Щ‡Ш§ШЄ\n"
+#~ "Ш±ШіЩ€Щ…ЩЉШ© Щ„Щ„Ш·ШЁШ§Ш№Ш© ШЈЩ€ Ш§Ш®ШЄЩЉШ§Ш± Ш®ЩЉШ§Ш±Ш§ШЄ Ш§Щ„Ш·Ш§ШЁШ№Ш© Щ€ ШҐШЇШ§Ш±Ш©\n"
+#~ "Ш§Щ„Ш·Ш§ШЁШ№Ш©.\n"
+#~ "\n"
+#~ "Ш§Ш°Ш§ Щ‚Щ…ШЄ ЩЉШЄЩ‚Ш±ЩЉШ± Ш§Ш®ШЄЩЉШ§Ш±Щѓ Ш§?Щ†, Ш«Щ… Щ„Щ… ЩЉШ№Ш¬ШЁЩѓ Щ†ШёШ§Щ… Ш§Щ„Ш·ШЁШ§Ш№Ш©\n"
+#~ "ЩЃЩЉЩ…Ш§ ШЁШ№ШЇ, ЩЉЩ…ЩѓЩ†Щѓ ШЄШєЩЉЩЉШ±Щ‡ Ш№Щ† Ш·Ш±ЩЉЩ‚ ШЄШґШєЩЉЩ„ PrinterDrake Щ…Щ† Щ…Ш±ЩѓШІ ШЄШ­ЩѓЩ… Mandrake\n"
+#~ "Щ€ Ш§Щ„Щ†Щ‚Ш± Ш№Щ„Щ‰ ШІШ± Ш§Щ„Ш®ШЁЩЉШ±."
+
+#~ 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 \"Advanced\" 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 \"Next ->\" 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"
+#~ "ШіЩЉШєЩЉШ± ЩЃЩ‚Ш· Ш§Ш№ШЇШ§ШЇШ§ШЄ Ш§Щ„Щ„ШєШ© Щ„Щ‡Ш°Ш§ Ш§Щ„Щ…ШіШЄШ®ШЇЩ… ЩЃЩ‚Ш·."
+
+#~ msgid ""
+#~ "\"Country\": check the current country selection. If you are not in this\n"
+#~ "country, click on the button and choose another one."
+#~ msgstr ""
+#~ "\"Ш§Щ„ШЁЩ„ШЇ\": ШЄШЈЩѓШЇ Щ…Щ† Ш§Ш®ШЄЩЉШ§Ш± Ш§Щ„ШЁЩ„ШЇ Ш§Щ„Ш­Ш§Щ„ЩЉ. Ш§Ш°Ш§ Щ„Щ… ШЄЩѓЩ† ЩЃЩЉ Щ‡Ш°Ш§\n"
+#~ "Ш§Щ„ШЁЩ„ШЇ, Ш§Ш¶ШєШ· Ш№Щ„Щ‰ Ш§Щ„ШІШ± Щ€ Ш§Ш®ШЄШ± ШЁЩ„ШЇШ§Щ‹ ШўШ®Ш±."
+
+#~ 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"
+#~ "Ш§Ш°Ш§ Щ„Щ… ШЄЩѓЩ† ШЄШ±ЩЉШЇ Ш§Щ„ШҐШ®ШЄЩЉШ§Ш±, Ш§Ш­ЩЃШё Ш§Щ„Ш§Ш®ШЄЩЉШ§Ш± Ш§Щ„ШҐЩЃШЄШ±Ш§Ш¶ЩЉ."
+
+#~ 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"
+#~ "Ш§Щ„Ш­ШІЩ… Ш§Щ„Щ…Ш®ШЄШ§Ш±Ш©, ШЈЩ€ \"Ш§Щ„ШєШ§ШЎ\" ?Ш­ШЁШ§Ш· Ш§Щ„ШЄШ­ШЇЩЉШ«."
+
+#~ 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"
+#~ "``ШЇЩ„ЩЉЩ„ Ш§Щ„Щ…ШЁШЄШЇШ¦''."
+
+#~ 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 ""
+#~ "\"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"
+#~ "Щ‡Щ†Ш§Щѓ Щ…Щ…Ш§Ш«Щ„Ш© Щ„ШЄЩ„Щѓ Ш§Щ„Щ…ШіШЄШ®ШЇЩ…Ш© ШЈШ«Щ†Ш§ШЎ Ш§Щ„ШЄШ«ШЁЩЉЩ†."
+
+#~ 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 ""
+#~ "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 ""
+#~ "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 ""
#~ "Please enter your host name if you know it.\n"
#~ "Some DHCP servers require the hostname to work.\n"
diff --git a/perl-install/share/po/az.po b/perl-install/share/po/az.po
index 930b3d489..d41c83207 100644
--- a/perl-install/share/po/az.po
+++ b/perl-install/share/po/az.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2002-12-05 19:52+0100\n"
+"POT-Creation-Date: 2003-03-07 03:05+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"
@@ -1122,50 +1122,65 @@ 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"
+"or all of the following entries. Each entry is made up of the configuration\n"
+"item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"Configure\" button to change\n"
+"that.\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"
+" * \"Keyboard\": check the current keyboard map configuration and change\n"
+"that if necessary.\n"
"\n"
" * \"Country\": check the current country selection. If you are not in this\n"
-"country, click on the button and choose another one.\n"
+"country, click on the \"Configure\" button and choose another one. If your\n"
+"country is not in the first list shown, click the \"More\" button to get\n"
+"the complete country list.\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"
+"country you have chosen. You can click on the \"Configure\" button here if\n"
+"this is not correct.\n"
+"\n"
+" * \"Mouse\": check the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
"\n"
-" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+" * \"Printer\": clicking on the \"Configure\" 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"
+" * \"Graphical Interface\": by default, DrakX configures your graphical\n"
+"interface in \"800x600\" or \"1024x768\" resolution. If that does not suits\n"
+"you, click on \"Configure\" to reconfigure your graphical interface.\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"
+"here. If you have a TV card and it is not detected, click on \"Configure\"\n"
+"to 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."
+"displayed here. You can click on \"Configure\" to change the parameters\n"
+"associated with the card.\n"
+"\n"
+" * \"Network\": If you want to configure your Internet or local network\n"
+"access now.\n"
+"\n"
+" * \"Security Level\": this entry offers you to redefine the security level\n"
+"as set in a previous step ().\n"
+"\n"
+" * \"Firewall\": if you plan to connect your machine to the Internet, it's\n"
+"a good idea to protect you from intrusions by setting up a firewall.\n"
+"Consult the corresponding section of the ``Starter Guide'' for details\n"
+"about firewall settings.\n"
+"\n"
+" * \"Bootloader\": if you wish to change your bootloader configuration,\n"
+"click that button. This should be reserved to advanced users.\n"
+"\n"
+" * \"Services\": you'll be able here to control finely which services will\n"
+"be run on your machine. If you plan to use this machine as a server it's a\n"
+"good idea to review this setup."
msgstr ""
#: ../../help.pm:1
@@ -1375,13 +1390,8 @@ msgid ""
"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 \"Next ->\". Examine the list of hardware and then click on the \"Next\n"
-"->\" button to return to the SCSI interface question.\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"
@@ -1430,7 +1440,7 @@ msgid ""
"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"
+"used with networks.) It's recommended that you use \"pdq\" if this is your\n"
"first experience with GNU/Linux.\n"
"\n"
" * \"CUPS\" - `` Common Unix Printing System'', is an excellent choice for\n"
@@ -1468,32 +1478,7 @@ msgid ""
"\"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."
+"(\"On Floppy\")."
msgstr ""
#: ../../help.pm:1
@@ -1645,9 +1630,14 @@ msgid ""
"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 \"Next ->\" button to\n"
-"continue.\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 \"All\n"
+"languages\" box. Selecting support for a language means translations,\n"
+"fonts, spell checkers, etc. for that language will be installed.\n"
+"Additionally, the \"Use Unicode by default\" checkbox allows to force the\n"
+"system to use unicode (UTF-8). Note however that this is an experimental\n"
+"feature. If you select different languages requiring different encoding the\n"
+"unicode support will be 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"
@@ -1704,7 +1694,9 @@ msgstr ""
#, c-format
msgid ""
"\"Country\": check the current country selection. If you are not in this\n"
-"country, click on the button and choose another one."
+"country, click on the \"Configure\" button and choose another one. If your\n"
+"country is not in the first list shown, click the \"More\" button to get\n"
+"the complete country list."
msgstr ""
#: ../../help.pm:1
@@ -1924,9 +1916,7 @@ msgid ""
"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"
+"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 ""
@@ -1937,14 +1927,14 @@ 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"
+"updates, you are now able to download them from the Internet. Check \"Yes\"\n"
+"if you have a working Internet connection, or \"No\" if you prefer to\n"
+"install updated packages later.\n"
"\n"
-"Choosing \"Yes\" displays a list of places from which updates can be\n"
+"Choosing \"Yes\" will display 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."
+"the selected package(s), or \"Cancel\" to abort."
msgstr ""
#: ../../help.pm:1
@@ -2012,7 +2002,7 @@ msgid ""
"the bootloader menu, giving you the choice of which operating system to\n"
"start.\n"
"\n"
-"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
+"The \"Advanced\" button 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"
@@ -2070,7 +2060,7 @@ msgid ""
" * \"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"
+"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"
@@ -2095,13 +2085,13 @@ msgid ""
"\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''."
+" * \"Custom disk partitioning\": choose this option if you want to manually\n"
+"partition your hard drive. Be careful -- it is a powerful but dangerous\n"
+"choice and you can very easily lose all your data. That's why this option\n"
+"is really only recommended if you have done something like this before and\n"
+"have some experience. For more instructions on how to use the DiskDrake\n"
+"utility, refer to the ``Managing Your Partitions '' section in the\n"
+"``Starter 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"
@@ -2155,35 +2145,6 @@ msgstr ""
#: ../../help.pm:1
#, c-format
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 ""
-
-#: ../../help.pm:1
-#, c-format
-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"
@@ -2310,7 +2271,8 @@ msgstr ""
#: ../../help.pm:1
#, fuzzy, c-format
msgid ""
-"This step is used to choose which services you wish to start at boot time.\n"
+"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 always needed at\n"
@@ -2338,7 +2300,7 @@ msgstr ""
#: ../../help.pm:1
#, c-format
msgid ""
-"\"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+"\"Printer\": clicking on the \"Configure\" 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."
@@ -3281,9 +3243,9 @@ msgstr "BaЕџlanДџД±c addД±mД± `%s'\n"
#: ../../interactive/gtk.pm:1 ../../standalone/drakTermServ:1
#: ../../standalone/drakbackup:1 ../../standalone/drakbug:1
#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
+#, c-format
msgid "Help"
-msgstr "/_YardД±m"
+msgstr "YardД±m"
#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#, fuzzy, c-format
@@ -3768,6 +3730,12 @@ msgstr "avadanlД±q"
msgid "System"
msgstr "Sistem modu"
+#. -PO: example: lilo-graphic on /dev/hda1
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "%s on %s"
+msgstr "QapД±"
+
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Bootloader"
@@ -4189,6 +4157,11 @@ msgstr "Xahiş edirik siçanınızın növünü seçin."
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
+msgid "Encryption key for %s"
+msgstr "Parollar uyДџun gЙ™lmir"
+
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
msgid "Upgrade %s"
msgstr "GГјncЙ™llЙ™mЙ™"
@@ -8906,11 +8879,6 @@ msgstr "ЕћЙ™bЙ™kЙ™ QurДџularД±"
#: ../../network/ethernet.pm:1
#, c-format
-msgid "no network card found"
-msgstr "ЕџЙ™bЙ™kЙ™ kartД± tapД±lmadД±"
-
-#: ../../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."
@@ -10172,17 +10140,6 @@ msgstr ""
"Yenilərini əlavə edə bilər, və ya mövcud olanları dəyişdirə bilərsiniz."
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-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 ""
-"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."
-
-#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printing system: "
msgstr ""
@@ -10704,6 +10661,11 @@ msgid "Option %s must be an integer number!"
msgstr ""
#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Printer default settings"
+msgstr "Г‡ap Edici BaДџlantД±sД±"
+
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Printer default settings\n"
@@ -12336,13 +12298,13 @@ msgstr "KrakerlЙ™rЙ™ xoЕџgЙ™lmiЕџsiniz"
#, 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 on the part of "
-"the worldwide Linux Community"
+"Your new operating system is the result of collaborative work of the "
+"worldwide Linux Community."
msgstr ""
#: ../../share/advertising/01-thanks.pl:1
#, c-format
-msgid "Welcome to the Open Source world"
+msgid "Welcome to the Open Source world."
msgstr ""
#: ../../share/advertising/01-thanks.pl:1
@@ -12353,190 +12315,150 @@ msgstr ""
#: ../../share/advertising/02-community.pl:1
#, c-format
msgid ""
-"To share your own knowledge and help build Linux tools, join the discussion "
-"forums you'll find on our \"Community\" webpages"
+"To share your own knowledge and help build Linux software, join our "
+"discussion forums on our \"Community\" webpages."
msgstr ""
#: ../../share/advertising/02-community.pl:1
#, c-format
-msgid "Want to know more about the Open Source community?"
+msgid ""
+"Want to know more and to contribute to the Open Source community? Get "
+"involved in the Free Software world!"
msgstr ""
#: ../../share/advertising/02-community.pl:1
-#, fuzzy, c-format
-msgid "Get involved in the Free Software world"
-msgstr "BГјtГјn dГјnya"
-
-#: ../../share/advertising/03-internet.pl:1
#, c-format
-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"
+msgid "Build the future of Linux!"
msgstr ""
-#: ../../share/advertising/03-internet.pl:1
-#, fuzzy, c-format
-msgid "Get the most from the Internet"
-msgstr "Д°nternetЙ™ baДџlan"
-
-#: ../../share/advertising/04-multimedia.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
msgid ""
-"Mandrake Linux 9.1 enables you to use the very latest software to play audio "
-"files, edit and handle your images or photos, and play videos"
+"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 ""
-#: ../../share/advertising/04-multimedia.pl:1
-#, c-format
-msgid "Push multimedia to its limits!"
-msgstr ""
-
-#: ../../share/advertising/04-multimedia.pl:1
-#, c-format
-msgid "Discover the most up-to-date graphical and multimedia tools!"
-msgstr ""
-
-#: ../../share/advertising/05-games.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
msgid ""
-"Mandrake Linux 9.1 provides the best Open Source games - arcade, action, "
-"strategy, ..."
+"Surf the Web with Mozilla or Konqueror, read your mail with Evolution or "
+"Kmail, create your documents with OpenOffice.org."
msgstr ""
-#: ../../share/advertising/05-games.pl:1
-#, c-format
-msgid "Games"
-msgstr "Oyunlar"
-
-#: ../../share/advertising/06-mcc.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
-msgid ""
-"Mandrake Linux 9.1 provides a powerful tool to fully customize and configure "
-"your machine"
+msgid "MandrakeSoft has selected the best software for you"
msgstr ""
-#: ../../share/advertising/06-mcc.pl:1 ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "Mandrake Control Center"
-msgstr "Д°darЙ™ MЙ™rkЙ™zi"
-
-#: ../../share/advertising/07-desktop.pl:1
+#: ../../share/advertising/04-configuration.pl:1
#, c-format
msgid ""
-"Mandrake Linux 9.1 provides you with 11 user interfaces that can be fully "
-"modified: KDE 3, Gnome 2, WindowMaker, ..."
+"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!"
msgstr ""
-#: ../../share/advertising/07-desktop.pl:1
+#: ../../share/advertising/04-configuration.pl:1
#, fuzzy, c-format
-msgid "User interfaces"
-msgstr "ЕћЙ™bЙ™kЙ™ ara ГјzГј"
+msgid "Mandrake's multipurpose configuration tool"
+msgstr "Д°nternet qurДџularД±"
-#: ../../share/advertising/08-development.pl:1
+#: ../../share/advertising/05-desktop.pl:1
#, c-format
msgid ""
-"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
-"development environments"
+"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 ""
-#: ../../share/advertising/08-development.pl:1
+#: ../../share/advertising/05-desktop.pl:1
#, c-format
-msgid "Mandrake Linux 9.1 is the ultimate development platform"
+msgid "A customizable environment"
msgstr ""
-#: ../../share/advertising/08-development.pl:1
-#, fuzzy, c-format
-msgid "Development simplified"
-msgstr "TЙ™crГјbi"
-
-#: ../../share/advertising/09-server.pl:1
+#: ../../share/advertising/06-development.pl:1
#, c-format
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, ..."
+"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 ""
-#: ../../share/advertising/09-server.pl:1
+#: ../../share/advertising/06-development.pl:1
#, c-format
-msgid "Turn your machine into a reliable server"
+msgid "Mandrake Linux 9.1: the ultimate development platform"
msgstr ""
-#: ../../share/advertising/10-mnf.pl:1
+#: ../../share/advertising/07-server.pl:1
#, c-format
-msgid "This product is available on MandrakeStore website"
+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 ""
-#: ../../share/advertising/10-mnf.pl:1
+#: ../../share/advertising/07-server.pl:1
#, c-format
-msgid ""
-"This firewall product includes network features that allow you to fulfill "
-"all your security needs"
+msgid "Turn your computer into a reliable server"
msgstr ""
-#: ../../share/advertising/10-mnf.pl:1
+#: ../../share/advertising/08-store.pl:1
#, c-format
msgid ""
-"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
-"F.)"
+"Our full range of Linux solutions, as well as special offers on products and "
+"other \"goodies\", are available on our e-store:"
msgstr ""
-#: ../../share/advertising/10-mnf.pl:1
+#: ../../share/advertising/08-store.pl:1
#, c-format
-msgid "Optimize your security"
+msgid "The official MandrakeSoft Store"
msgstr ""
-#: ../../share/advertising/11-mdkstore.pl:1
+#: ../../share/advertising/09-mdksecure.pl:1
#, c-format
msgid ""
-"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies,\" are available online on our e-store:"
+"Enhance your computer performance with the help of a selection of partners "
+"offering professional solutions compatible with Mandrake Linux"
msgstr ""
-#: ../../share/advertising/11-mdkstore.pl:1
+#: ../../share/advertising/09-mdksecure.pl:1
#, c-format
-msgid "The official MandrakeSoft store"
+msgid "Get the best items with Mandrake Linux Strategic partners"
msgstr ""
-#: ../../share/advertising/12-mdkstore.pl:1
+#: ../../share/advertising/10-security.pl:1
#, c-format
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"
+"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 ""
-#: ../../share/advertising/12-mdkstore.pl:1
+#: ../../share/advertising/10-security.pl:1
#, c-format
-msgid "Strategic partners"
+msgid "Optimize your security by using Mandrake Linux"
msgstr ""
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/11-mnf.pl:1
#, c-format
-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)"
+msgid "This product is available on the MandrakeStore Web site."
msgstr ""
-#: ../../share/advertising/13-mdkcampus.pl:1
-#, c-format
-msgid "Certify yourself on Linux"
-msgstr ""
-
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/11-mnf.pl:1
#, c-format
msgid ""
-"The training program has been created to respond to the needs of both end "
-"users and experts (Network and System administrators)"
+"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 ""
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/11-mnf.pl:1
#, c-format
-msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
+msgid "Secure your networks with the Multi Network Firewall"
msgstr ""
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, c-format
msgid ""
"Join the MandrakeSoft support teams and the Linux Community online to share "
@@ -12544,51 +12466,35 @@ msgid ""
"technical support website:"
msgstr ""
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, c-format
msgid ""
"Find the solutions of your problems via MandrakeSoft's online support "
-"platform"
+"platform."
msgstr ""
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, fuzzy, c-format
msgid "Become a MandrakeExpert"
msgstr "Usta"
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, c-format
msgid ""
"All incidents will be followed up by a single qualified MandrakeSoft "
"technical expert."
msgstr ""
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, c-format
-msgid "An online platform to respond to company's specific support needs"
+msgid "An online platform to respond to enterprise support needs."
msgstr ""
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, fuzzy, c-format
msgid "MandrakeExpert Corporate"
msgstr "Usta"
-#: ../../share/advertising/17-mdkclub.pl:1
-#, c-format
-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 ""
-
-#: ../../share/advertising/17-mdkclub.pl:1
-#, c-format
-msgid "Discover MandrakeClub and Mandrake Corporate Club"
-msgstr ""
-
#: ../../standalone/XFdrake:1
#, c-format
msgid "Please relog into %s to activate the changes"
@@ -14783,6 +14689,11 @@ msgid "First Time Wizard"
msgstr "Д°lk DЙ™fЙ™ SehirbazД±na XoЕџ GЙ™ldiniz"
#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "Mandrake Control Center"
+msgstr "Д°darЙ™ MЙ™rkЙ™zi"
+
+#: ../../standalone/drakbug:1
#, c-format
msgid "Mandrake Bug Report Tool"
msgstr ""
@@ -15670,6 +15581,22 @@ msgstr "Ara Гњz %s (%s modulu iЕџlЙ™dilir)"
#: ../../standalone/drakgw:1
#, fuzzy, c-format
+msgid "Net Device"
+msgstr "Г‡ap Edici Vericisi"
+
+#: ../../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 ""
+
+#: ../../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 "
@@ -16018,7 +15945,7 @@ msgid ""
"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"
+"using this computer as source.\n"
"\n"
"Make sure you have configured your Network/Internet access using drakconnect "
"before going any further.\n"
@@ -16186,6 +16113,11 @@ msgstr "Monitorunuzu seçin"
#: ../../standalone/draksplash:1
#, fuzzy, c-format
+msgid "choose image"
+msgstr "Monitorunuzu seçin"
+
+#: ../../standalone/draksplash:1
+#, fuzzy, c-format
msgid "Configure bootsplash picture"
msgstr "XidmЙ™tlЙ™ri qur"
@@ -16459,7 +16391,7 @@ msgstr "Гњmumi"
#: ../../standalone/harddrake2:1
#, c-format
msgid "unknown"
-msgstr ""
+msgstr "bilinmЙ™yЙ™n"
#: ../../standalone/harddrake2:1
#, fuzzy, c-format
@@ -16623,12 +16555,22 @@ msgid "network printer port"
msgstr "ЕћЙ™bЙ™kЙ™ Г‡ap Edicisi (soket) "
#: ../../standalone/harddrake2:1
+#, c-format
+msgid "the name of the CPU"
+msgstr ""
+
+#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "Name"
msgstr "Ad: "
#: ../../standalone/harddrake2:1
#, fuzzy, c-format
+msgid "the number of buttons the mouse has"
+msgstr "2 dГјymЙ™li"
+
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
msgid "Number of buttons"
msgstr "2 dГјymЙ™li"
@@ -16790,7 +16732,7 @@ msgstr ""
#: ../../standalone/harddrake2:1
#, c-format
msgid ""
-"The cpu frequency in Mhz (Mega herz which in first approximation may be "
+"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 ""
@@ -17764,6 +17706,10 @@ 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 "Games"
+msgstr "Oyunlar"
+
+#: ../../share/compssUsers:999
msgid "Multimedia - Graphics"
msgstr "Multimedya - Qrafika"
@@ -17820,6 +17766,35 @@ msgstr "ЕћЙ™xsi MaliyyЙ™"
msgid "Programs to manage your finances, such as gnucash"
msgstr "ЕћЙ™xsi maliyyЙ™ idarЙ™Г§ilЙ™ri, mЙ™sЙ™lЙ™n gnucash"
+#~ msgid "no network card found"
+#~ msgstr "ЕџЙ™bЙ™kЙ™ kartД± tapД±lmadД±"
+
+#, fuzzy
+#~ msgid "Get involved in the Free Software world"
+#~ msgstr "BГјtГјn dГјnya"
+
+#, fuzzy
+#~ msgid "Get the most from the Internet"
+#~ msgstr "Д°nternetЙ™ baДџlan"
+
+#, fuzzy
+#~ msgid "User interfaces"
+#~ msgstr "ЕћЙ™bЙ™kЙ™ ara ГјzГј"
+
+#, fuzzy
+#~ msgid "Development simplified"
+#~ msgstr "TЙ™crГјbi"
+
+#, 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 ""
+#~ "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."
+
#~ msgid ""
#~ "Please enter your host name if you know it.\n"
#~ "Some DHCP servers require the hostname to work.\n"
diff --git a/perl-install/share/po/be.po b/perl-install/share/po/be.po
index f9e173aae..fadf39501 100644
--- a/perl-install/share/po/be.po
+++ b/perl-install/share/po/be.po
@@ -5,12 +5,12 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-12-05 19:52+0100\n"
+"POT-Creation-Date: 2003-03-07 03:05+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=windows-1251\n"
+"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../any.pm:1
@@ -34,7 +34,7 @@ msgstr ""
#: ../../standalone/net_monitor:1
#, c-format
msgid "Cancel"
-msgstr "Адмена"
+msgstr "Адмена"
#: ../../any.pm:1
#, c-format
@@ -65,28 +65,28 @@ msgstr ""
#: ../../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 "Выбар пакетаў для ўсталявання"
+msgstr "Выбар пакетаў для ўсталявання"
#: ../../any.pm:1 ../../Xconfig/main.pm:1 ../../Xconfig/monitor.pm:1
#, c-format
msgid "Custom"
-msgstr "Па выбару"
+msgstr "Па выбару"
#: ../../any.pm:1
#, fuzzy, c-format
msgid "Allow all users"
-msgstr "Дадаць карыстальнiка"
+msgstr "Дадаць карыстальнiка"
#: ../../any.pm:1
#, fuzzy, c-format
msgid "No sharing"
-msgstr "Чакаецца"
+msgstr "Чакаецца"
#: ../../any.pm:1 ../../install_steps_interactive.pm:1
#: ../../diskdrake/interactive.pm:1
#, fuzzy, c-format
msgid "More"
-msgstr "Перанос"
+msgstr "Перанос"
#: ../../any.pm:1
#, c-format
@@ -96,17 +96,17 @@ msgstr ""
#: ../../any.pm:1
#, fuzzy, c-format
msgid "Please choose your country."
-msgstr "калi ласка, пазначце тып вашай мышы."
+msgstr "калi ласка, пазначце тып вашай мышы."
#: ../../any.pm:1 ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Country"
-msgstr "Манцiраванне"
+msgstr "Манцiраванне"
#: ../../any.pm:1
#, fuzzy, c-format
msgid "All languages"
-msgstr "Выбар мовы"
+msgstr "Выбар мовы"
#: ../../any.pm:1
#, c-format
@@ -119,54 +119,54 @@ 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я будуць даступны пасля ўсталявання"
+msgstr "Вы можаце абраць іншыя мовы, якiя будуць даступны пасля ўсталявання"
#: ../../any.pm:1
#, fuzzy, c-format
msgid "Please choose a language to use."
-msgstr "Калi ласка, абярыце мову для карыстання."
+msgstr "Калi ласка, абярыце мову для карыстання."
#: ../../any.pm:1
#, c-format
msgid "Choose the window manager to run:"
-msgstr "Абярыце мэнэджар вокнаў:"
+msgstr "Абярыце мэнэджар вокнаў:"
#: ../../any.pm:1
#, c-format
msgid "Choose the default user:"
-msgstr "Абярыце асноўнага карыстальнiка:"
+msgstr "Абярыце асноўнага карыстальнiка:"
#: ../../any.pm:1
#, fuzzy, c-format
msgid "Do you want to use this feature?"
-msgstr "Вы жадаеце выкарыстоўваць aboot?"
+msgstr "Вы жадаеце выкарыстоўваць aboot?"
#: ../../any.pm:1
#, fuzzy, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
-"Можна настроiць сiстэму для аўтаматычнага ўваходу ў сiстэму для\n"
-"аднаго карыстальнiка. Калi Вы не жадаеце гэтага, нацiснiце \"Адмена\"."
+"Можна настроiць сiстэму для аўтаматычнага ўваходу ў сiстэму для\n"
+"аднаго карыстальнiка. Калi Вы не жадаеце гэтага, нацiснiце \"Адмена\"."
#: ../../any.pm:1
#, c-format
msgid "Autologin"
-msgstr "Аўтаматычны ўваход у сiстэму"
+msgstr "Аўтаматычны ўваход у сiстэму"
#: ../../any.pm:1
#, c-format
msgid "Icon"
-msgstr "Пiктаграма"
+msgstr "Пiктаграма"
#: ../../any.pm:1
#, c-format
msgid "Shell"
-msgstr "Абалонка:"
+msgstr "Абалонка:"
#: ../../any.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "Password (again)"
-msgstr "Паўтарыце пароль"
+msgstr "Паўтарыце пароль"
#: ../../any.pm:1 ../../install_steps_interactive.pm:1
#: ../../diskdrake/smbnfs_gtk.pm:1 ../../network/modem.pm:1
@@ -174,22 +174,22 @@ msgstr "Паўтарыце пароль"
#: ../../standalone/drakconnect:1
#, c-format
msgid "Password"
-msgstr "Пароль"
+msgstr "Пароль"
#: ../../any.pm:1 ../../printer/printerdrake.pm:1
#, c-format
msgid "User name"
-msgstr "Iмя карыстальнiку:"
+msgstr "Iмя карыстальнiку:"
#: ../../any.pm:1
#, c-format
msgid "Real name"
-msgstr "Уласнае iмя"
+msgstr "Уласнае iмя"
#: ../../any.pm:1
#, c-format
msgid "Accept user"
-msgstr "Прыняць карыстальнiка"
+msgstr "Прыняць карыстальнiка"
#: ../../any.pm:1 ../../diskdrake/dav.pm:1 ../../diskdrake/hd_gtk.pm:1
#: ../../diskdrake/removable.pm:1 ../../diskdrake/smbnfs_gtk.pm:1
@@ -197,7 +197,7 @@ msgstr "Прыняць карыстальнiка"
#: ../../standalone/drakbackup:1 ../../standalone/scannerdrake:1
#, c-format
msgid "Done"
-msgstr "Зроблена"
+msgstr "Зроблена"
#: ../../any.pm:1
#, c-format
@@ -205,57 +205,57 @@ msgid ""
"Enter a user\n"
"%s"
msgstr ""
-"Увядзiце iмя карыстальнiку\n"
+"Увядзiце iмя карыстальнiку\n"
"%s"
#: ../../any.pm:1
#, c-format
msgid "Add user"
-msgstr "Дадаць карыстальнiка"
+msgstr "Дадаць карыстальнiка"
#: ../../any.pm:1
#, c-format
msgid "This user name has already been added"
-msgstr "Гэта iмя карыстальнiку ўжо дададзена"
+msgstr "Гэта iмя карыстальнiку ўжо дададзена"
#: ../../any.pm:1
#, fuzzy, c-format
msgid "The user name is too long"
-msgstr "Гэта iмя карыстальнiку ўжо дададзена"
+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 `_'"
+"Iмя карыстальнiку павiнна змяшчаць лiтары толькi на нiжнiм рэгiстры, \n"
+"лiчбы, `-' i `_'"
#: ../../any.pm:1
#, c-format
msgid "Please give a user name"
-msgstr "Калi ласка, увядзiце iмя карыстальнiку"
+msgstr "Калi ласка, увядзiце iмя карыстальнiку"
#: ../../any.pm:1
#, c-format
msgid "This password is too simple"
-msgstr "Гэты пароль занадта просты"
+msgstr "Гэты пароль занадта просты"
#: ../../any.pm:1 ../../install_steps_interactive.pm:1
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Please try again"
-msgstr "Паспрабуйце яшчэ раз"
+msgstr "Паспрабуйце яшчэ раз"
#: ../../any.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "The passwords do not match"
-msgstr "Паролi не супадаюць"
+msgstr "Паролi не супадаюць"
#: ../../any.pm:1
#, c-format
msgid "(already added %s)"
-msgstr "(ужо дададзена %s)"
+msgstr "(ужо дададзена %s)"
#: ../../any.pm:1
#, c-format
@@ -293,23 +293,23 @@ msgid ""
"Here are the entries on your boot menu so far.\n"
"You can create additional entries or change the existing ones."
msgstr ""
-"У меню маюцца наступныя пункты.\n"
-"Вы можаце дадаць яшчэ, альбо змянiць iснуючыя."
+"У меню маюцца наступныя пункты.\n"
+"Вы можаце дадаць яшчэ, альбо змянiць iснуючыя."
#: ../../any.pm:1
#, c-format
msgid "Other OS (windows...)"
-msgstr "Iншая АС (windows...)"
+msgstr "Iншая АС (windows...)"
#: ../../any.pm:1
#, c-format
msgid "Other OS (MacOS...)"
-msgstr "Iншая АС (MacOS,...)"
+msgstr "Iншая АС (MacOS,...)"
#: ../../any.pm:1
#, c-format
msgid "Other OS (SunOS...)"
-msgstr "Iншая АС (SunOS,...)"
+msgstr "Iншая АС (SunOS,...)"
#: ../../any.pm:1 ../../standalone/drakbackup:1
#, c-format
@@ -319,17 +319,17 @@ msgstr "Linux"
#: ../../any.pm:1
#, c-format
msgid "Which type of entry do you want to add?"
-msgstr "Якi тып пункта жадаеце дадаць?"
+msgstr "Якi тып пункта жадаеце дадаць?"
#: ../../any.pm:1
#, c-format
msgid "This label is already used"
-msgstr "Гэтая метка ўжо выкарыстоўваецца"
+msgstr "Гэтая метка ўжо выкарыстоўваецца"
#: ../../any.pm:1
#, fuzzy, c-format
msgid "You must specify a root partition"
-msgstr "Вы павiнны мець раздзел swap"
+msgstr "Вы павiнны мець раздзел swap"
#: ../../any.pm:1
#, c-format
@@ -339,12 +339,12 @@ msgstr ""
#: ../../any.pm:1
#, c-format
msgid "Empty label not allowed"
-msgstr "Пустая метка не дазваляецца"
+msgstr "Пустая метка не дазваляецца"
#: ../../any.pm:1 ../../harddrake/v4l.pm:1
#, c-format
msgid "Default"
-msgstr "Па дамаўленню"
+msgstr "Па дамаўленню"
#: ../../any.pm:1
#, c-format
@@ -359,22 +359,22 @@ msgstr "Initrd"
#: ../../any.pm:1
#, c-format
msgid "Append"
-msgstr "Далучыць"
+msgstr "Далучыць"
#: ../../any.pm:1
#, c-format
msgid "Label"
-msgstr "Метка"
+msgstr "Метка"
#: ../../any.pm:1
#, c-format
msgid "Unsafe"
-msgstr "Ненадзейна"
+msgstr "Ненадзейна"
#: ../../any.pm:1
#, c-format
msgid "Table"
-msgstr "Таблiца"
+msgstr "Таблiца"
#: ../../any.pm:1
#, c-format
@@ -384,7 +384,7 @@ msgstr "Root"
#: ../../any.pm:1
#, c-format
msgid "Read-write"
-msgstr "Чытанне-запiс"
+msgstr "Чытанне-запiс"
#: ../../any.pm:1
#, c-format
@@ -394,17 +394,17 @@ msgstr "Initrd"
#: ../../any.pm:1
#, c-format
msgid "Video mode"
-msgstr "Вiдэа-рэжым"
+msgstr "Вiдэа-рэжым"
#: ../../any.pm:1
#, c-format
msgid "Image"
-msgstr "Вобраз"
+msgstr "Вобраз"
#: ../../any.pm:1
#, fuzzy, c-format
msgid "Default OS?"
-msgstr "Па дамаўленню"
+msgstr "Па дамаўленню"
#: ../../any.pm:1
#, c-format
@@ -429,7 +429,7 @@ msgstr ""
#: ../../any.pm:1
#, c-format
msgid "Boot device"
-msgstr "Загрузачная прылада"
+msgstr "Загрузачная прылада"
#: ../../any.pm:1
#, c-format
@@ -439,54 +439,54 @@ msgstr ""
#: ../../any.pm:1
#, fuzzy, c-format
msgid "Bootloader to use"
-msgstr "Галоўныя опцыi пачатковага загрузчыку"
+msgstr "Галоўныя опцыi пачатковага загрузчыку"
#: ../../any.pm:1
#, c-format
msgid "Bootloader main options"
-msgstr "Галоўныя опцыi пачатковага загрузчыку"
+msgstr "Галоўныя опцыi пачатковага загрузчыку"
#: ../../any.pm:1
#, c-format
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
-"Опцыя ``Абмежаванне опцыяў каманднага радку'' не выкарыстоўваецца без пароля"
+"Опцыя ``Абмежаванне опцыяў каманднага радку'' не выкарыстоўваецца без пароля"
#: ../../any.pm:1
#, c-format
msgid "Give the ram size in MB"
-msgstr "Пазначце памер RAM у Mб"
+msgstr "Пазначце памер RAM у Mб"
#: ../../any.pm:1
#, c-format
msgid "Enable multiple profiles"
-msgstr "Даступна шмат профiляў"
+msgstr "Даступна шмат профiляў"
#: ../../any.pm:1
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
-msgstr "Пазначце дакладны памер RAM (знойдзена %d Mб)"
+msgstr "Пазначце дакладны памер RAM (знойдзена %d Mб)"
#: ../../any.pm:1
#, c-format
msgid "Clean /tmp at each boot"
-msgstr "Ачышчаць /tmp пры кожнай загрузцы"
+msgstr "Ачышчаць /tmp пры кожнай загрузцы"
#: ../../any.pm:1
#, c-format
msgid "Create a bootdisk"
-msgstr "Стварыць загр. дыск"
+msgstr "Стварыць загр. дыск"
#: ../../any.pm:1
#, c-format
msgid "restrict"
-msgstr "абмежаванне"
+msgstr "абмежаванне"
#: ../../any.pm:1
#, c-format
msgid "Restrict command line options"
-msgstr "Абмежаванне опцыяў каманднага радка"
+msgstr "Абмежаванне опцыяў каманднага радка"
#: ../../any.pm:1
#, c-format
@@ -501,62 +501,62 @@ msgstr ""
#: ../../any.pm:1
#, c-format
msgid "Delay before booting default image"
-msgstr "Затрымка перад загрузкай вобразу па дамаўленню"
+msgstr "Затрымка перад загрузкай вобразу па дамаўленню"
#: ../../any.pm:1
#, c-format
msgid "compact"
-msgstr "кампактна"
+msgstr "кампактна"
#: ../../any.pm:1
#, c-format
msgid "Compact"
-msgstr "Кампактна"
+msgstr "Кампактна"
#: ../../any.pm:1
#, c-format
msgid "Bootloader installation"
-msgstr "Усталяванне загрузчыку"
+msgstr "Усталяванне загрузчыку"
#: ../../any.pm:1
#, c-format
msgid "First sector of boot partition"
-msgstr "Першы сектар загрузачнага раздзелу"
+msgstr "Першы сектар загрузачнага раздзелу"
#: ../../any.pm:1
#, c-format
msgid "First sector of drive (MBR)"
-msgstr "Першы сектар прылады (MBR)"
+msgstr "Першы сектар прылады (MBR)"
#: ../../any.pm:1
#, c-format
msgid "Where do you want to install the bootloader?"
-msgstr "Куды вы жадаеце ўсталяваць пачатковы загрузчык?"
+msgstr "Куды вы жадаеце ўсталяваць пачатковы загрузчык?"
#: ../../any.pm:1
#, c-format
msgid "LILO/grub Installation"
-msgstr "Усталяванне LILO/GRUB"
+msgstr "Усталяванне LILO/GRUB"
#: ../../any.pm:1
#, c-format
msgid "SILO Installation"
-msgstr "Усталяванне SILO"
+msgstr "Усталяванне SILO"
#: ../../any.pm:1 ../../printer/printerdrake.pm:1
#, c-format
msgid "Skip"
-msgstr "Прапусцiць"
+msgstr "Прапусцiць"
#: ../../any.pm:1
#, fuzzy, c-format
msgid "On Floppy"
-msgstr "Захаванне на дыскету"
+msgstr "Захаванне на дыскету"
#: ../../any.pm:1
#, fuzzy, c-format
msgid "First sector of the root partition"
-msgstr "Першы сектар загрузачнага раздзелу"
+msgstr "Першы сектар загрузачнага раздзелу"
#: ../../any.pm:1
#, c-format
@@ -571,32 +571,32 @@ msgstr ""
#: ../../any.pm:1
#, c-format
msgid "Creating bootdisk..."
-msgstr "Стварэнне загрузачнай дыскеты"
+msgstr "Стварэнне загрузачнай дыскеты"
#: ../../any.pm:1
#, fuzzy, c-format
msgid "Insert a floppy in %s"
-msgstr "Устаўце дыскету ў дыскавод %s"
+msgstr "Устаўце дыскету ў дыскавод %s"
#: ../../any.pm:1
#, c-format
msgid "Choose the floppy drive you want to use to make the bootdisk"
-msgstr "Абярыце дыскавод, у якiм будзе стварацца загрузачная дыскета"
+msgstr "Абярыце дыскавод, у якiм будзе стварацца загрузачная дыскета"
#: ../../any.pm:1
#, c-format
msgid "Second floppy drive"
-msgstr "Другi дыскавод"
+msgstr "Другi дыскавод"
#: ../../any.pm:1
#, c-format
msgid "First floppy drive"
-msgstr "Першы дыскавод"
+msgstr "Першы дыскавод"
#: ../../any.pm:1
#, c-format
msgid "Sorry, no floppy drive available"
-msgstr "Выбачайце, але дыскавод недаступны"
+msgstr "Выбачайце, але дыскавод недаступны"
#: ../../any.pm:1
#, c-format
@@ -613,15 +613,15 @@ msgid ""
"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"
+"З дапамогай загрузачнага дыску вы зможаце загружаць 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"
+"Жадаеце стварыць загрузачны дыск зараз?\n"
"%s"
#: ../../any.pm:1
@@ -652,25 +652,25 @@ msgid ""
"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"
+"З дапамогай загрузачнага дыска вы зможаце загружаць 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\"."
+"Калi жадаеце стварыць загрузачны дыск зараз, устаўце дыскету ў першы\n"
+"дыскавод i нацiснiце \"Ok\"."
#: ../../bootloader.pm:1
#, fuzzy, c-format
msgid "You can't install the bootloader on a %s partition\n"
-msgstr "Куды вы жадаеце ўсталяваць пачатковы загрузчык?"
+msgstr "Куды вы жадаеце ўсталяваць пачатковы загрузчык?"
#: ../../bootloader.pm:1
#, c-format
msgid "not enough room in /boot"
-msgstr "Не хапае дыскавай прасторы ў /boot"
+msgstr "Не хапае дыскавай прасторы ў /boot"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
@@ -756,27 +756,27 @@ msgstr ""
#: ../../common.pm:1
#, fuzzy, c-format
msgid "Screenshots will be available after install in %s"
-msgstr "Вы можаце абраць іншыя мовы, якiя будуць даступны пасля ўсталявання"
+msgstr "Вы можаце абраць іншыя мовы, якiя будуць даступны пасля ўсталявання"
#: ../../common.pm:1
#, fuzzy, c-format
msgid "Can't make screenshots before partitioning"
-msgstr "Дадаць раздзел немагчыма"
+msgstr "Дадаць раздзел немагчыма"
#: ../../common.pm:1
#, c-format
msgid "%d seconds"
-msgstr "%d секундаў"
+msgstr "%d секундаў"
#: ../../common.pm:1
#, c-format
msgid "1 minute"
-msgstr "1 хвiлiна"
+msgstr "1 С…РІiР»iРЅР°"
#: ../../common.pm:1
#, c-format
msgid "%d minutes"
-msgstr "%d хвiлiн"
+msgstr "%d С…РІiР»iРЅ"
#: ../../common.pm:1
#, c-format
@@ -791,7 +791,7 @@ msgstr ""
#: ../../common.pm:1
#, c-format
msgid "MB"
-msgstr "Мб"
+msgstr "РњР±"
#: ../../common.pm:1
#, c-format
@@ -806,13 +806,13 @@ msgstr ""
#: ../../crypto.pm:1 ../../lang.pm:1
#, fuzzy, c-format
msgid "Austria"
-msgstr "паслядоўная"
+msgstr "паслядоўная"
#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
#: ../../standalone/drakxtv:1
#, fuzzy, c-format
msgid "Italy"
-msgstr "Iтальянскi"
+msgstr "Iтальянскi"
#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
#, c-format
@@ -822,22 +822,22 @@ msgstr ""
#: ../../crypto.pm:1 ../../lang.pm:1
#, fuzzy, c-format
msgid "Sweden"
-msgstr "Гл."
+msgstr "Гл."
#: ../../crypto.pm:1 ../../lang.pm:1
#, fuzzy, c-format
msgid "Norway"
-msgstr "Нарвежскi"
+msgstr "Нарвежскi"
#: ../../crypto.pm:1 ../../lang.pm:1
#, fuzzy, c-format
msgid "Greece"
-msgstr "Грэчаскi"
+msgstr "Грэчаскi"
#: ../../crypto.pm:1 ../../lang.pm:1
#, c-format
msgid "Germany"
-msgstr "Нямецкi"
+msgstr "Нямецкi"
#: ../../crypto.pm:1 ../../lang.pm:1
#, c-format
@@ -847,12 +847,12 @@ msgstr ""
#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
#, fuzzy, c-format
msgid "Belgium"
-msgstr "Бельгiйскi"
+msgstr "Бельгiйскi"
#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
#, c-format
msgid "France"
-msgstr "Францыя"
+msgstr "Францыя"
#: ../../crypto.pm:1 ../../lang.pm:1
#, c-format
@@ -862,7 +862,7 @@ msgstr ""
#: ../../fsedit.pm:1
#, c-format
msgid "Error opening %s for writing: %s"
-msgstr "Памылка адкрыцця %s для запiсу: %s"
+msgstr "Памылка адкрыцця %s для запiсу: %s"
#: ../../fsedit.pm:1
#, c-format
@@ -872,14 +872,14 @@ msgstr ""
#: ../../fsedit.pm:1
#, fuzzy, c-format
msgid "Not enough free space for auto-allocating"
-msgstr "Не хапае прасторы для стварэння новых раздзелаў"
+msgstr "Не хапае прасторы для стварэння новых раздзелаў"
#: ../../fsedit.pm:1
#, fuzzy, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr ""
-"Вам неабходна задаць правiльны тып файлавай сiстэмы (ext2, reiserfs)\n"
-"для гэтай кропкi манцiравання\n"
+"Вам неабходна задаць правiльны тып файлавай сiстэмы (ext2, reiserfs)\n"
+"для гэтай кропкi манцiравання\n"
#: ../../fsedit.pm:1
#, fuzzy, c-format
@@ -887,13 +887,13 @@ msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
"point\n"
msgstr ""
-"Вам неабходна задаць правiльны тып файлавай сiстэмы (ext2, reiserfs)\n"
-"для гэтай кропкi манцiравання\n"
+"Вам неабходна задаць правiльны тып файлавай сiстэмы (ext2, reiserfs)\n"
+"для гэтай кропкi манцiравання\n"
#: ../../fsedit.pm:1
#, c-format
msgid "This directory should remain within the root filesystem"
-msgstr "Гэты каталог павінен знаходзіцца ўнутры каранёвай файлавай сістэмы"
+msgstr "Гэты каталог павінен знаходзіцца ўнутры каранёвай файлавай сістэмы"
#: ../../fsedit.pm:1
#, c-format
@@ -907,14 +907,14 @@ msgid ""
"No bootloader is able to handle this without a /boot partition.\n"
"Please be sure to add a /boot partition"
msgstr ""
-"Вы абралi RAID раздзел як каранёвы.\n"
-"Няма загрузчыку, якi б загрузiўся без /boot раздзела.\n"
-"Дадайце раздел /boot, калi ласка."
+"Вы абралi RAID раздзел як каранёвы.\n"
+"Няма загрузчыку, якi б загрузiўся без /boot раздзела.\n"
+"Дадайце раздел /boot, калi ласка."
#: ../../fsedit.pm:1
#, c-format
msgid "There is already a partition with mount point %s\n"
-msgstr "Ужо ёсць раздзел з пунктам манцiравання %s\n"
+msgstr "Ужо ёсць раздзел з пунктам манцiравання %s\n"
#: ../../fsedit.pm:1
#, c-format
@@ -924,17 +924,17 @@ msgstr ""
#: ../../fsedit.pm:1
#, c-format
msgid "Mount points must begin with a leading /"
-msgstr "Пункт манцiравання павiнен пачынацца з /"
+msgstr "Пункт манцiравання павiнен пачынацца з /"
#: ../../fsedit.pm:1
#, c-format
msgid "You can't use ReiserFS for partitions smaller than 32MB"
-msgstr "Вы не можаце разбiваць на разделы, памер якiх меней за 32 Мб"
+msgstr "Вы не можаце разбiваць на разделы, памер якiх меней за 32 Мб"
#: ../../fsedit.pm:1
#, fuzzy, c-format
msgid "You can't use JFS for partitions smaller than 16MB"
-msgstr "Вы не можаце разбiваць на разделы, памер якiх меней за 16 Мб"
+msgstr "Вы не можаце разбiваць на разделы, памер якiх меней за 16 Мб"
#: ../../fsedit.pm:1
#, fuzzy, c-format
@@ -946,13 +946,13 @@ msgid ""
"\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"
+"Таблiца раздзелаў не чытаецца, яна занадта сапсаваная для меня :(\n"
+"Паспрабую iсцi далей i буду прапускаць дрэнныя раздзелы (Усе ДАДЕЗЕНЫЯ\n"
+"будуць страчаны!). Iншае рашэнне не дазволiць DrakX змянiць таблiцу "
+"раздзелаў.\n"
+"(памылка ў %s)\n"
"\n"
-"Цi жадаеце страцiць усе раздзелы?\n"
+"Цi жадаеце страцiць усе раздзелы?\n"
#: ../../fsedit.pm:1 ../../install_steps_interactive.pm:1
#: ../../install_steps.pm:1 ../../diskdrake/dav.pm:1
@@ -961,12 +961,12 @@ msgstr ""
#: ../../standalone/drakboot:1 ../../standalone/draksplash:1
#, c-format
msgid "Error"
-msgstr "Памылка"
+msgstr "Памылка"
#: ../../fsedit.pm:1
#, c-format
msgid "server"
-msgstr "сервер"
+msgstr "сервер"
#: ../../fsedit.pm:1
#, c-format
@@ -981,12 +981,12 @@ msgstr ""
#: ../../fs.pm:1
#, fuzzy, c-format
msgid "Enabling swap partition %s"
-msgstr "Фарматаванне раздзелу %s"
+msgstr "Фарматаванне раздзелу %s"
#: ../../fs.pm:1 ../../partition_table.pm:1
#, c-format
msgid "error unmounting %s: %s"
-msgstr "памылка разманцiравання %s: %s"
+msgstr "памылка разманцiравання %s: %s"
#: ../../fs.pm:1
#, c-format
@@ -996,32 +996,32 @@ msgstr ""
#: ../../fs.pm:1
#, fuzzy, c-format
msgid "Mounting partition %s"
-msgstr "Фарматаванне раздзелу %s"
+msgstr "Фарматаванне раздзелу %s"
#: ../../fs.pm:1
#, fuzzy, c-format
msgid "Checking %s"
-msgstr "Памеры экрану: %s\n"
+msgstr "Памеры экрану: %s\n"
#: ../../fs.pm:1
#, c-format
msgid "Formatting partition %s"
-msgstr "Фарматаванне раздзелу %s"
+msgstr "Фарматаванне раздзелу %s"
#: ../../fs.pm:1
#, c-format
msgid "Creating and formatting file %s"
-msgstr "Стварэнне i фарматаванне файла %s"
+msgstr "Стварэнне i фарматаванне файла %s"
#: ../../fs.pm:1
#, c-format
msgid "I don't know how to format %s in type %s"
-msgstr "Не ведаю як адфарматаваць %s з тыпам %s"
+msgstr "Не ведаю як адфарматаваць %s з тыпам %s"
#: ../../fs.pm:1
#, c-format
msgid "%s formatting of %s failed"
-msgstr "%s памылка фарматавання %s"
+msgstr "%s памылка фарматавання %s"
#: ../../help.pm:1
#, fuzzy, c-format
@@ -1034,13 +1034,13 @@ msgid ""
"Click on \"<- Previous\" to stop this operation without losing any data and\n"
"partitions present on this hard drive."
msgstr ""
-"Націсніце \"Так\", калі жадаеце выдаліць усе дадзеныя\n"
-"і раздзелы на гэтым дыску. Будзце уважлівыя, пасля гэтай аперацыі вы не\n"
+"Націсніце \"Так\", калі жадаеце выдаліць усе дадзеныя\n"
+"і раздзелы на гэтым дыску. Будзце уважлівыя, пасля гэтай аперацыі вы не\n"
"\n"
-"здолееце аднавіць любыя дадзеныя і раздзелы, улічваючы і дадзеныя Windows\n"
+"здолееце аднавіць любыя дадзеныя і раздзелы, улічваючы і дадзеныя Windows\n"
"\n"
"\n"
-"Націсніце \"Адмена\" каб адмяніць аперацыю без страты дадзеных і раздзелаў"
+"Націсніце \"Адмена\" каб адмяніць аперацыю без страты дадзеных і раздзелаў"
#: ../../help.pm:1
#, fuzzy, c-format
@@ -1049,60 +1049,75 @@ msgid ""
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
"and will not be recoverable!"
msgstr ""
-"Абярыце жорскі дыск які жадаеце ачысціць для ўсталявання\n"
-"новага раздзелу Mandrake Linux. Будзце ўважлівыя, усе дадзеныя на дыску "
-"будуць\n"
-" знішчаны і іх немагчыма будзе аднавіць."
+"Абярыце жорскі дыск які жадаеце ачысціць для ўсталявання\n"
+"новага раздзелу Mandrake Linux. Будзце ўважлівыя, усе дадзеныя на дыску "
+"будуць\n"
+" знішчаны і іх немагчыма будзе аднавіць."
#: ../../help.pm:1
#, c-format
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"
+"or all of the following entries. Each entry is made up of the configuration\n"
+"item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"Configure\" button to change\n"
+"that.\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"
+" * \"Keyboard\": check the current keyboard map configuration and change\n"
+"that if necessary.\n"
"\n"
" * \"Country\": check the current country selection. If you are not in this\n"
-"country, click on the button and choose another one.\n"
+"country, click on the \"Configure\" button and choose another one. If your\n"
+"country is not in the first list shown, click the \"More\" button to get\n"
+"the complete country list.\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"
+"country you have chosen. You can click on the \"Configure\" button here if\n"
+"this is not correct.\n"
"\n"
-" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+" * \"Mouse\": check the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
+"\n"
+" * \"Printer\": clicking on the \"Configure\" 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"
+" * \"Graphical Interface\": by default, DrakX configures your graphical\n"
+"interface in \"800x600\" or \"1024x768\" resolution. If that does not suits\n"
+"you, click on \"Configure\" to reconfigure your graphical interface.\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"
+"here. If you have a TV card and it is not detected, click on \"Configure\"\n"
+"to 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."
+"displayed here. You can click on \"Configure\" to change the parameters\n"
+"associated with the card.\n"
+"\n"
+" * \"Network\": If you want to configure your Internet or local network\n"
+"access now.\n"
+"\n"
+" * \"Security Level\": this entry offers you to redefine the security level\n"
+"as set in a previous step ().\n"
+"\n"
+" * \"Firewall\": if you plan to connect your machine to the Internet, it's\n"
+"a good idea to protect you from intrusions by setting up a firewall.\n"
+"Consult the corresponding section of the ``Starter Guide'' for details\n"
+"about firewall settings.\n"
+"\n"
+" * \"Bootloader\": if you wish to change your bootloader configuration,\n"
+"click that button. This should be reserved to advanced users.\n"
+"\n"
+" * \"Services\": you'll be able here to control finely which services will\n"
+"be run on your machine. If you plan to use this machine as a server it's a\n"
+"good idea to review this setup."
msgstr ""
#: ../../help.pm:1
@@ -1206,13 +1221,8 @@ msgid ""
"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 \"Next ->\". Examine the list of hardware and then click on the \"Next\n"
-"->\" button to return to the SCSI interface question.\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"
@@ -1236,7 +1246,7 @@ msgid ""
"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"
+"used with networks.) It's recommended that you use \"pdq\" if this is your\n"
"first experience with GNU/Linux.\n"
"\n"
" * \"CUPS\" - `` Common Unix Printing System'', is an excellent choice for\n"
@@ -1274,32 +1284,7 @@ msgid ""
"\"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."
+"(\"On Floppy\")."
msgstr ""
#: ../../help.pm:1
@@ -1320,17 +1305,17 @@ msgid ""
"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"
+"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цца!"
+"Таксама вы можаце пажадаць i не дабаўляць iншыя аперацыйныя сiстэмы.\n"
+"У такiм выпадку патрэбна выдалiць адпаведныя запiсы. Але ж тады вам \n"
+"патрэбна будзе загрузачная дыскета, каб загрузiцца!"
#: ../../help.pm:1
#, c-format
@@ -1452,9 +1437,14 @@ msgid ""
"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 \"Next ->\" button to\n"
-"continue.\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 \"All\n"
+"languages\" box. Selecting support for a language means translations,\n"
+"fonts, spell checkers, etc. for that language will be installed.\n"
+"Additionally, the \"Use Unicode by default\" checkbox allows to force the\n"
+"system to use unicode (UTF-8). Note however that this is an experimental\n"
+"feature. If you select different languages requiring different encoding the\n"
+"unicode support will be 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"
@@ -1511,7 +1501,9 @@ msgstr ""
#, c-format
msgid ""
"\"Country\": check the current country selection. If you are not in this\n"
-"country, click on the button and choose another one."
+"country, click on the \"Configure\" button and choose another one. If your\n"
+"country is not in the first list shown, click the \"More\" button to get\n"
+"the complete country list."
msgstr ""
#: ../../help.pm:1
@@ -1547,33 +1539,33 @@ msgid ""
"\"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"
+"Windows. Калі ласка, абярыце той, памер якога жадаеце змяніць, "
+"кабусталяваць\n"
+"сістэму Mandrake Linux.\n"
"\n"
"\n"
-"Для iфармацыі, кожны раздзел адзначаны як: \"Linux імя\", \"Windows\n"
-"імя\" \"Cвойствы\".\n"
-"\"Linux Імя\" кадавана так - \"тып дыску\", \"нумар дыску\",\"нумар "
-"раздзелу\n"
-"(напрыклад, \"hda1\").\n"
+"Для iфармацыі, кожны раздзел адзначаны як: \"Linux імя\", \"Windows\n"
+"імя\" \"Cвойствы\".\n"
+"\"Linux Імя\" кадавана так - \"тып дыску\", \"нумар дыску\",\"нумар "
+"раздзелу\n"
+"(напрыклад, \"hda1\").\n"
"\n"
"\n"
-"\"Тып дыску\" кадаваны як \"hd\", калі гэта IDE, і \"sd\" калі SCSI.\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"
+"\"Нумар дыску\" - сімвал пасля \"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"
+"Для SCSI дыскаў - \"a\" гэта \"першасны жорскі дыск\", \"b\" - \"другасны "
+"жорскі дыск\", і г.д.\n"
"\n"
-"\"Windows Імя\" сімвал вашага дыску ў Windows (першы дыск ці\n"
-"раздзел пазначаецца як \"C:\")."
+"\"Windows Імя\" сімвал вашага дыску ў Windows (першы дыск ці\n"
+"раздзел пазначаецца як \"C:\")."
#: ../../help.pm:1
#, c-format
@@ -1660,9 +1652,7 @@ msgid ""
"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"
+"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 ""
@@ -1673,14 +1663,14 @@ 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"
+"updates, you are now able to download them from the Internet. Check \"Yes\"\n"
+"if you have a working Internet connection, or \"No\" if you prefer to\n"
+"install updated packages later.\n"
"\n"
-"Choosing \"Yes\" displays a list of places from which updates can be\n"
+"Choosing \"Yes\" will display 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."
+"the selected package(s), or \"Cancel\" to abort."
msgstr ""
#: ../../help.pm:1
@@ -1711,34 +1701,34 @@ msgid ""
"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"
+"якія жадаеце адфарматаваць.\n"
"\n"
"\n"
-"Заўважце, вы павінны перафарматаваць усе створаныя раздзелы. Вы павінны\n"
-"перафарматаваць раздзелы, якія ўтрымліваюць аперацыйную сістэму (тыпу \"/"
+"Заўважце, вы павінны перафарматаваць усе створаныя раздзелы. Вы павінны\n"
+"перафарматаваць раздзелы, якія ўтрымліваюць аперацыйную сістэму (тыпу \"/"
"\",\n"
-"\"/usr\" ці \"/var\"), але не павінны перафарматаваць раздзелы, якія "
-"утрымліваюць\n"
-"дадзеныя, якія вы жадаеце захаваць (звычайна /home).\n"
+"\"/usr\" ці \"/var\"), але не павінны перафарматаваць раздзелы, якія "
+"утрымліваюць\n"
+"дадзеныя, якія вы жадаеце захаваць (звычайна /home).\n"
"\n"
"\n"
-"Калі ласка, будзце ўважлівыя, абіраючы раздзелы, бо пасля фарматавання\n"
-"усе дадзеныя будуць незваротна выдаленыя.\n"
+"Калі ласка, будзце ўважлівыя, абіраючы раздзелы, бо пасля фарматавання\n"
+"усе дадзеныя будуць незваротна выдаленыя.\n"
"\n"
"\n"
-"Націсніце \"Так\" калі вы гатовыя фарматаваць раздзеля.\n"
+"Націсніце \"Так\" калі вы гатовыя фарматаваць раздзеля.\n"
"\n"
"\n"
-"Націсніце \"Адмена\" калі жадаеце абраць іншыя раздзелы для "
-"усталяваннявашай\n"
-"новай аперацыйнай сістэмы Mandrake Linux."
+"Націсніце \"Адмена\" калі жадаеце абраць іншыя раздзелы для "
+"усталяваннявашай\n"
+"новай аперацыйнай сістэмы Mandrake Linux."
#: ../../help.pm:1
#, c-format
@@ -1749,7 +1739,7 @@ msgid ""
"the bootloader menu, giving you the choice of which operating system to\n"
"start.\n"
"\n"
-"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
+"The \"Advanced\" button 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"
@@ -1807,7 +1797,7 @@ msgid ""
" * \"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"
+"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"
@@ -1832,101 +1822,72 @@ msgid ""
"\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"
-"ласка, да даведкі.\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"
-" лёгка згубіць свае дадзеныя. Таму не абірайце гэтую опцыю калі выне ведаеце "
-"што робіце."
-
-#: ../../help.pm:1
-#, c-format
-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 ""
+" * \"Custom disk partitioning\": choose this option if you want to manually\n"
+"partition your hard drive. Be careful -- it is a powerful but dangerous\n"
+"choice and you can very easily lose all your data. That's why this option\n"
+"is really only recommended if you have done something like this before and\n"
+"have some experience. For more instructions on how to use the DiskDrake\n"
+"utility, refer to the ``Managing Your Partitions '' section in the\n"
+"``Starter 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"
+" лёгка згубіць свае дадзеныя. Таму не абірайце гэтую опцыю калі выне ведаеце "
+"што робіце."
#: ../../help.pm:1
#, c-format
@@ -2057,7 +2018,8 @@ msgstr ""
#: ../../help.pm:1
#, c-format
msgid ""
-"This step is used to choose which services you wish to start at boot time.\n"
+"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 always needed at\n"
@@ -2077,7 +2039,7 @@ msgstr ""
#: ../../help.pm:1
#, c-format
msgid ""
-"\"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+"\"Printer\": clicking on the \"Configure\" 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."
@@ -2240,32 +2202,32 @@ msgid ""
"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
"\"second lowest SCSI ID\", etc."
msgstr ""
-"Далей адзначаны усе існуючыя раздзелы Linux, знойдзеныя на вашым дыску,\n"
-" якія зроблены майстрам вылучэння дыскаў. Вы можаце пакінуць іх так і "
-"выкарыстўваць\n"
-" далей, бо яны добра падыходзяць для звычайнага выкарыстання. Калі вы\n"
-" ўносіце змены, вы павінны, вылучыць хаця раздзел (\"/\"). Рабіце\n"
-" раздзел не вельмі малым, бо ў адваротным выпадку вы ня здолееце усталяваць\n"
-" дастаткова праграмнага забеспячэння.Калі вы жадаеце захаваць вашыя "
-"дадзеныя\n"
-" на асобным раздзеле, вы павінны абраць пункт манціравання \"/home\".\n"
+"Далей адзначаны усе існуючыя раздзелы Linux, знойдзеныя на вашым дыску,\n"
+" якія зроблены майстрам вылучэння дыскаў. Вы можаце пакінуць іх так і "
+"выкарыстўваць\n"
+" далей, бо яны добра падыходзяць для звычайнага выкарыстання. Калі вы\n"
+" ўносіце змены, вы павінны, вылучыць хаця раздзел (\"/\"). Рабіце\n"
+" раздзел не вельмі малым, бо ў адваротным выпадку вы ня здолееце усталяваць\n"
+" дастаткова праграмнага забеспячэння.Калі вы жадаеце захаваць вашыя "
+"дадзеныя\n"
+" на асобным раздзеле, вы павінны абраць пункт манціравання \"/home\".\n"
"\n"
-"Кожны раздзел пазначаны наступным чынам \"Імя\", \"Свойствы\".\n"
+"Кожны раздзел пазначаны наступным чынам \"Імя\", \"Свойствы\".\n"
"\n"
"\n"
-"\"Імя\" кадавана так - \"тып дыску\", \"нумар дыску\", \"нумар раздзелу\" \n"
-"(напрыклад, \"hda1\").\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"
+"\"Тып дыску\" кадаваны як \"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\" - \"другасны "
-"жорскі дыск\", і г.д."
+"Для SCSI дыскаў - \"a\" гэта \"першасны жорскі дыск\", \"b\" - \"другасны "
+"жорскі дыск\", і г.д."
#: ../../help.pm:1
#, c-format
@@ -2337,13 +2299,13 @@ 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 ""
-"Памылка: для стварэння новых файлавых сiстэмаў не знайдзены адпаведныя \n"
-"прылады. Праверце абсталяванне для пошуку iмавернай прычыны."
+"Памылка: для стварэння новых файлавых сiстэмаў не знайдзены адпаведныя \n"
+"прылады. Праверце абсталяванне для пошуку iмавернай прычыны."
#: ../../install_any.pm:1 ../../partition_table.pm:1
#, c-format
msgid "Error reading file %s"
-msgstr "Памылка чытання файлу %s"
+msgstr "Памылка чытання файлу %s"
#: ../../install_any.pm:1
#, c-format
@@ -2360,12 +2322,12 @@ msgstr ""
#: ../../install_any.pm:1
#, fuzzy, c-format
msgid "Insert a FAT formatted floppy in drive %s"
-msgstr "Устаўце дыскету ў дыскавод %s"
+msgstr "Устаўце дыскету ў дыскавод %s"
#: ../../install_any.pm:1
#, c-format
msgid "Can't use broadcast with no NIS domain"
-msgstr "Немагчыма выкарыстоўваць broadcast без дамена NIS"
+msgstr "Немагчыма выкарыстоўваць broadcast без дамена NIS"
#: ../../install_any.pm:1
#, c-format
@@ -2381,14 +2343,14 @@ msgstr ""
#: ../../standalone/harddrake2:1
#, c-format
msgid "No"
-msgstr "Не"
+msgstr "РќРµ"
#: ../../install_any.pm:1 ../../interactive.pm:1 ../../my_gtk.pm:1
#: ../../ugtk2.pm:1 ../../modules/interactive.pm:1 ../../standalone/drakgw:1
#: ../../standalone/harddrake2:1
#, c-format
msgid "Yes"
-msgstr "Так"
+msgstr "Так"
#: ../../install_any.pm:1
#, c-format
@@ -2407,37 +2369,37 @@ msgstr ""
#: ../../install_gtk.pm:1
#, fuzzy, c-format
msgid "System configuration"
-msgstr "Настройка"
+msgstr "Настройка"
#: ../../install_gtk.pm:1
#, fuzzy, c-format
msgid "System installation"
-msgstr "Усталяванне SILO"
+msgstr "Усталяванне SILO"
#: ../../install_interactive.pm:1
#, c-format
msgid "Bringing down the network"
-msgstr "Адлучэнне ад сеткi"
+msgstr "Адлучэнне ад сеткi"
#: ../../install_interactive.pm:1
#, c-format
msgid "Bringing up the network"
-msgstr "Далучэнне да сеткi"
+msgstr "Далучэнне да сеткi"
#: ../../install_interactive.pm:1
#, c-format
msgid "Partitioning failed: %s"
-msgstr "Падрыхтоўка разделаў не ўдалася: %s"
+msgstr "Падрыхтоўка разделаў не ўдалася: %s"
#: ../../install_interactive.pm:1
#, c-format
msgid "The DrakX Partitioning wizard found the following solutions:"
-msgstr "Майстар падрыхтоўкi раздзелаў DrakX знайшоў наступныя варыянты:"
+msgstr "Майстар падрыхтоўкi раздзелаў DrakX знайшоў наступныя варыянты:"
#: ../../install_interactive.pm:1
#, fuzzy, c-format
msgid "I can't find any room for installing"
-msgstr "Дадаць раздзел немагчыма"
+msgstr "Дадаць раздзел немагчыма"
#: ../../install_interactive.pm:1
#, c-format
@@ -2445,45 +2407,45 @@ msgid ""
"You can now partition %s.\n"
"When you are done, don't forget to save using `w'"
msgstr ""
-"Вы можаце цяпер разбiць ваш дыск %s\n"
-"Па заканчэннi не забудзьцеся захаваць змяненнi, скарыстаўшы `w'"
+"Вы можаце цяпер разбiць ваш дыск %s\n"
+"Па заканчэннi не забудзьцеся захаваць змяненнi, скарыстаўшы `w'"
#: ../../install_interactive.pm:1
#, c-format
msgid "Use fdisk"
-msgstr "Выкарыстоўваць fdisk"
+msgstr "Выкарыстоўваць fdisk"
#: ../../install_interactive.pm:1
#, fuzzy, c-format
msgid "Custom disk partitioning"
-msgstr "Выкарыстоўваць iснуючы раздзел"
+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х будуць страчаны"
+msgstr "Усе iснуючыя раздзелы на дыску %s i дадзеныя на iх будуць страчаны"
#: ../../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?"
+msgstr "На якi з маючыхся жорсткiх дыскаў Вы жадаеце ўсталяваць Linux?"
#: ../../install_interactive.pm:1
#, c-format
msgid "Erase entire disk"
-msgstr "Сцёрцi дадзеныя на ўсiм дыску"
+msgstr "Сцёрцi дадзеныя на ўсiм дыску"
#: ../../install_interactive.pm:1
#, c-format
msgid "Remove Windows(TM)"
-msgstr "Выдалiць Windows(TM)"
+msgstr "Выдалiць Windows(TM)"
#: ../../install_interactive.pm:1
#, fuzzy, c-format
msgid "There is no FAT partition to resize (or not enough space left)"
msgstr ""
-"Не знойдзена раздзелаў FAT для змянення памераў альбо выкарыстання\n"
-"ў якасцi вiртуальнай файлавай сiстэмы (цi недастаткова прасторы на дыску)"
+"Не знойдзена раздзелаў FAT для змянення памераў альбо выкарыстання\n"
+"ў якасцi вiртуальнай файлавай сiстэмы (цi недастаткова прасторы на дыску)"
#: ../../install_interactive.pm:1 ../../diskdrake/interactive.pm:1
#, c-format
@@ -2495,27 +2457,27 @@ msgstr ""
#: ../../install_interactive.pm:1
#, c-format
msgid "FAT resizing failed: %s"
-msgstr "Аўтазмяненне памераў не атрымалася для раздзелу FAT %s"
+msgstr "Аўтазмяненне памераў не атрымалася для раздзелу FAT %s"
#: ../../install_interactive.pm:1
#, c-format
msgid "Resizing Windows partition"
-msgstr "Вылiчэнне межаў файлавай сiстэмы Windows"
+msgstr "Вылiчэнне межаў файлавай сiстэмы Windows"
#: ../../install_interactive.pm:1 ../../diskdrake/interactive.pm:1
#, c-format
msgid "Resizing"
-msgstr "Змяненне памераў"
+msgstr "Змяненне памераў"
#: ../../install_interactive.pm:1
#, c-format
msgid "partition %s"
-msgstr "Раздзел %s"
+msgstr "Раздзел %s"
#: ../../install_interactive.pm:1
#, c-format
msgid "Which size do you want to keep for Windows on"
-msgstr "Якую прастору захаваць для Windows?"
+msgstr "Якую прастору захаваць для Windows?"
#: ../../install_interactive.pm:1
#, fuzzy, c-format
@@ -2529,14 +2491,14 @@ msgid ""
"installation. You should also backup your data.\n"
"When sure, press Ok."
msgstr ""
-"УВАГА!\n"
+"УВАГА!\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."
+"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."
#: ../../install_interactive.pm:1
#, c-format
@@ -2545,13 +2507,13 @@ msgid ""
"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
"installation."
msgstr ""
-"Ваш раздзел з Windows занадта фрагментаваны. \n"
-"Рэкамендуем спачатку запусцiць праграму ``defrag''"
+"Ваш раздзел з Windows занадта фрагментаваны. \n"
+"Рэкамендуем спачатку запусцiць праграму ``defrag''"
#: ../../install_interactive.pm:1
#, fuzzy, c-format
msgid "Computing the size of the Windows partition"
-msgstr "Выкарыстоўваць незанятую прастору на раздзеле Windows"
+msgstr "Выкарыстоўваць незанятую прастору на раздзеле Windows"
#: ../../install_interactive.pm:1
#, c-format
@@ -2559,75 +2521,75 @@ msgid ""
"The FAT resizer is unable to handle your partition, \n"
"the following error occured: %s"
msgstr ""
-"У праграмы змены памераў раздзела FAT не атрымалася\n"
-"апрацаваць Ваш раздзел, памылка: %s"
+"У праграмы змены памераў раздзела FAT не атрымалася\n"
+"апрацаваць Ваш раздзел, памылка: %s"
#: ../../install_interactive.pm:1
#, c-format
msgid "Which partition do you want to resize?"
-msgstr "Памеры якога раздзела вы жадаеце змянiць?"
+msgstr "Памеры якога раздзела вы жадаеце змянiць?"
#: ../../install_interactive.pm:1
#, c-format
msgid "Use the free space on the Windows partition"
-msgstr "Выкарыстоўваць незанятую прастору на раздзеле Windows"
+msgstr "Выкарыстоўваць незанятую прастору на раздзеле Windows"
#: ../../install_interactive.pm:1
#, fuzzy, c-format
msgid "There is no FAT partition to use as loopback (or not enough space left)"
msgstr ""
-"Не знойдзена раздзелаў FAT для змянення памераў альбо выкарыстання\n"
-"ў якасцi вiртуальнай файлавай сiстэмы (цi недастаткова прасторы на дыску)"
+"Не знойдзена раздзелаў FAT для змянення памераў альбо выкарыстання\n"
+"ў якасцi вiртуальнай файлавай сiстэмы (цi недастаткова прасторы на дыску)"
#: ../../install_interactive.pm:1
#, c-format
msgid "Swap partition size in MB: "
-msgstr "Памер swap раздзелу ў Mб:"
+msgstr "Памер swap раздзелу ў Mб:"
#: ../../install_interactive.pm:1
#, c-format
msgid "Root partition size in MB: "
-msgstr "Каранёвы раздзел ў Mб: "
+msgstr "Каранёвы раздзел ў Mб: "
#: ../../install_interactive.pm:1
#, c-format
msgid "Choose the sizes"
-msgstr "Выбар памераў"
+msgstr "Выбар памераў"
#: ../../install_interactive.pm:1
#, fuzzy, c-format
msgid "Which partition do you want to use for Linux4Win?"
-msgstr "Памеры якога раздзела вы жадаеце змянiць?"
+msgstr "Памеры якога раздзела вы жадаеце змянiць?"
#: ../../install_interactive.pm:1
#, c-format
msgid "Use the Windows partition for loopback"
-msgstr "Выкарыстоўваць раздзел Windows для вiртуальнай файлавай сiстэмы"
+msgstr "Выкарыстоўваць раздзел Windows для вiртуальнай файлавай сiстэмы"
#: ../../install_interactive.pm:1
#, c-format
msgid "There is no existing partition to use"
-msgstr "Няма iснуючых раздзелаў, якiя можна выкарыстаць"
+msgstr "Няма iснуючых раздзелаў, якiя можна выкарыстаць"
#: ../../install_interactive.pm:1
#, c-format
msgid "Use existing partitions"
-msgstr "Выкарыстоўваць iснуючы раздзел"
+msgstr "Выкарыстоўваць iснуючы раздзел"
#: ../../install_interactive.pm:1
#, c-format
msgid "Not enough free space to allocate new partitions"
-msgstr "Не хапае прасторы для стварэння новых раздзелаў"
+msgstr "Не хапае прасторы для стварэння новых раздзелаў"
#: ../../install_interactive.pm:1
#, c-format
msgid "Use free space"
-msgstr "Выкарыстоўваць незанятую прастору"
+msgstr "Выкарыстоўваць незанятую прастору"
#: ../../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"
+msgstr "Вы павiнны мець раздзел swap"
#: ../../install_interactive.pm:1
#, c-format
@@ -2636,9 +2598,9 @@ msgid ""
"\n"
"Continue anyway?"
msgstr ""
-"Няма раздзела swap.\n"
+"Няма раздзела swap.\n"
"\n"
-"Усё адно працягваць?"
+"Усё адно працягваць?"
#: ../../install_interactive.pm:1
#, c-format
@@ -2647,9 +2609,9 @@ msgid ""
"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це яе ў `/'"
+"Вы павiнны мець каранёвы раздзел.\n"
+"Для гэтага стварыце раздзел (альбо адзначце ўжо iснуючы).\n"
+"Потым абярыце ``Кропка манцiравання'' i ўстанавiце яе ў `/'"
#: ../../install_interactive.pm:1
#, c-format
@@ -2657,8 +2619,8 @@ msgid ""
"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
"You can find some information about them at: %s"
msgstr ""
-"Пэўнае абсталяванне патрабуе камерцыйных драйвераў для працы.\n"
-"Часткова інфармацыю пра іх можна атрымаць тут: %s"
+"Пэўнае абсталяванне патрабуе камерцыйных драйвераў для працы.\n"
+"Часткова інфармацыю пра іх можна атрымаць тут: %s"
#: ../../install_messages.pm:1
#, c-format
@@ -2678,19 +2640,19 @@ msgid ""
"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"
+"Вiншуем, усталяванне завершана.\n"
+"Выдалiце загрузачны дыск i нацiснiце enter для перазагрузкi.\n"
"\n"
"\n"
-"За iнфармацыяй пра змяненнi дадзенага выпуску Mandrake Linux,\n"
-"звяртайцесь на \n"
+"За iнфармацыяй пра змяненнi дадзенага выпуску Mandrake Linux,\n"
+"звяртайцесь на \n"
"\n"
"\n"
"%s\n"
"\n"
"\n"
-"Iнфармацыя па настройке вашай сiстэмы ёсть ў пасля-ўсталёвачнай\n"
-"главе вашага Дапаможнiка Карыстальнiку з Афiцыйнага Mandrake Linux."
+"Iнфармацыя па настройке вашай сiстэмы ёсть ў пасля-ўсталёвачнай\n"
+"главе вашага Дапаможнiка Карыстальнiку з Афiцыйнага Mandrake Linux."
#: ../../install_messages.pm:1
#, c-format
@@ -2855,7 +2817,7 @@ msgstr ""
#: ../../install_steps_auto_install.pm:1 ../../install_steps_stdio.pm:1
#, c-format
msgid "Entering step `%s'\n"
-msgstr "Пераход на крок `%s'\n"
+msgstr "Пераход на крок `%s'\n"
#: ../../install_steps_gtk.pm:1 ../../interactive.pm:1 ../../ugtk2.pm:1
#: ../../Xconfig/resolution_and_depth.pm:1 ../../diskdrake/hd_gtk.pm:1
@@ -2864,33 +2826,33 @@ msgstr "Пераход на крок `%s'\n"
#: ../../standalone/harddrake2:1
#, c-format
msgid "Help"
-msgstr ""
+msgstr "Дапамога"
#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "not configured"
-msgstr "Настройка X Window"
+msgstr "Настройка X Window"
#: ../../install_steps_gtk.pm:1 ../../standalone/drakbackup:1
#: ../../standalone/drakboot:1 ../../standalone/drakgw:1
#, fuzzy, c-format
msgid "Configure"
-msgstr "Настройка X Window"
+msgstr "Настройка X Window"
#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "Go on anyway?"
-msgstr "Усё роўна працягваць?"
+msgstr "Усё роўна працягваць?"
#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "There was an error installing packages:"
-msgstr "Атрымалася памылка ўпарадкавання пакетаў:"
+msgstr "Атрымалася памылка ўпарадкавання пакетаў:"
#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "There was an error ordering packages:"
-msgstr "Атрымалася памылка ўпарадкавання пакетаў:"
+msgstr "Атрымалася памылка ўпарадкавання пакетаў:"
#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#, c-format
@@ -2901,84 +2863,84 @@ msgid ""
"done.\n"
"If you don't have it, press Cancel to avoid installation from this Cd-Rom."
msgstr ""
-"Змянiце ваш Cd-Rom!\n"
+"Змянiце ваш Cd-Rom!\n"
"\n"
-"Калi ласка, устаўце Cd-Rom, пазначаны \"%s\", у ваш дыскавод i нацiснiце Oк "
-"пасля.\n"
-"Калi вы не маеце яго, нацiснiце Адмянiць, каб адмянiць усталяванне з гэтага "
+"Калi ласка, устаўце Cd-Rom, пазначаны \"%s\", у ваш дыскавод i нацiснiце Oк "
+"пасля.\n"
+"Калi вы не маеце яго, нацiснiце Адмянiць, каб адмянiць усталяванне з гэтага "
"Cd."
#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "Refuse"
-msgstr "Адказаць"
+msgstr "Адказаць"
#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#: ../../standalone/drakautoinst:1
#, c-format
msgid "Accept"
-msgstr "Прыняць"
+msgstr "Прыняць"
#: ../../install_steps_gtk.pm:1
#, c-format
msgid "Installing package %s"
-msgstr "Усталяванне пакету %s"
+msgstr "Усталяванне пакету %s"
#: ../../install_steps_gtk.pm:1
#, c-format
msgid "%d packages"
-msgstr "%d пакетаў"
+msgstr "%d пакетаў"
#: ../../install_steps_gtk.pm:1
#, fuzzy, c-format
msgid "No details"
-msgstr "Падрабязнасцi"
+msgstr "Падрабязнасцi"
#: ../../install_steps_gtk.pm:1 ../../diskdrake/hd_gtk.pm:1
#: ../../diskdrake/smbnfs_gtk.pm:1
#, c-format
msgid "Details"
-msgstr "Падрабязнасцi"
+msgstr "Падрабязнасцi"
#: ../../install_steps_gtk.pm:1
#, fuzzy, c-format
msgid "Please wait, preparing installation..."
-msgstr "Падрыхтоўка ўсталяваньня"
+msgstr "Падрыхтоўка ўсталяваньня"
#: ../../install_steps_gtk.pm:1
#, c-format
msgid "Time remaining "
-msgstr "Засталося часу "
+msgstr "Засталося часу "
#: ../../install_steps_gtk.pm:1
#, c-format
msgid "Estimating"
-msgstr "Чакаецца"
+msgstr "Чакаецца"
#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "Installing"
-msgstr "Усталёўваем"
+msgstr "Усталёўваем"
#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "Choose the packages you want to install"
-msgstr "Выбар пакетаў для ўсталявання"
+msgstr "Выбар пакетаў для ўсталявання"
#: ../../install_steps_gtk.pm:1
#, fuzzy, c-format
msgid "Minimal install"
-msgstr "Выдалiць з сiстэмы"
+msgstr "Выдалiць з сiстэмы"
#: ../../install_steps_gtk.pm:1
#, fuzzy, c-format
msgid "Updating package selection"
-msgstr "Асабiсты выбар пакетаў"
+msgstr "Асабiсты выбар пакетаў"
#: ../../install_steps_gtk.pm:1
#, fuzzy, c-format
msgid "Load/Save on floppy"
-msgstr "Захаванне на дыскету"
+msgstr "Захаванне на дыскету"
#: ../../install_steps_gtk.pm:1 ../../interactive.pm:1 ../../my_gtk.pm:1
#: ../../ugtk2.pm:1 ../../interactive/newt.pm:1
@@ -2991,7 +2953,7 @@ msgstr ""
#: ../../standalone/drakbackup:1
#, c-format
msgid "Install"
-msgstr "Усталёўка"
+msgstr "Усталёўка"
#: ../../install_steps_gtk.pm:1
#, c-format
@@ -3001,7 +2963,7 @@ msgstr ""
#: ../../install_steps_gtk.pm:1
#, c-format
msgid "You can't unselect this package. It must be upgraded"
-msgstr "Вы не можаце адмянiць вылучэнне гэтага пакету. Яго патрэбна абнавiць"
+msgstr "Вы не можаце адмянiць вылучэнне гэтага пакету. Яго патрэбна абнавiць"
#: ../../install_steps_gtk.pm:1
#, c-format
@@ -3009,93 +2971,93 @@ msgid ""
"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
-"Гэты пакет павiнен быць абноўлены\n"
-"Вы ўпэўнены, што хочаце адмянiць вылучэнне?"
+"Гэты пакет павiнен быць абноўлены\n"
+"Вы ўпэўнены, што хочаце адмянiць вылучэнне?"
#: ../../install_steps_gtk.pm:1
#, c-format
msgid "You can't unselect this package. It is already installed"
-msgstr "Вы не можаце адмянiць вылучэнне гэтага пакету. Ён ужо ўсталяваны"
+msgstr "Вы не можаце адмянiць вылучэнне гэтага пакету. Ён ужо ўсталяваны"
#: ../../install_steps_gtk.pm:1
#, c-format
msgid "This is a mandatory package, it can't be unselected"
-msgstr "Гэта абавязковы пакет, яго вылучэнне нельга адмянiць"
+msgstr "Гэта абавязковы пакет, яго вылучэнне нельга адмянiць"
#: ../../install_steps_gtk.pm:1
#, c-format
msgid "You can't select/unselect this package"
-msgstr "Вы не можаце вылучаць і адмяняць вылучэнне гэтага пакету"
+msgstr "Вы не можаце вылучаць і адмяняць вылучэнне гэтага пакету"
#: ../../install_steps_gtk.pm:1
#, c-format
msgid "The following packages are going to be removed"
-msgstr "Наступныя пакеты будуць выдалены"
+msgstr "Наступныя пакеты будуць выдалены"
#: ../../install_steps_gtk.pm:1
#, c-format
msgid "The following packages are going to be installed"
-msgstr "Наступныя пакеты будуць даданы да сiстэмы"
+msgstr "Наступныя пакеты будуць даданы да сiстэмы"
#: ../../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 ""
-"Вы не можаце выбраць гэты пакет, таму як не хапае месца для яго ўсталявання"
+"Вы не можаце выбраць гэты пакет, таму як не хапае месца для яго ўсталявання"
#: ../../install_steps_gtk.pm:1
#, c-format
msgid "Importance: %s\n"
-msgstr "Значнасць: %s\n"
+msgstr "Значнасць: %s\n"
#: ../../install_steps_gtk.pm:1
#, c-format
msgid "Size: %d KB\n"
-msgstr "Памер: %d Kб\n"
+msgstr "Памер: %d Kб\n"
#: ../../install_steps_gtk.pm:1
#, c-format
msgid "Version: %s\n"
-msgstr "Версiя: %s\n"
+msgstr "Версiя: %s\n"
#: ../../install_steps_gtk.pm:1
#, c-format
msgid "Name: %s\n"
-msgstr "Iмя: %s\n"
+msgstr "IРјСЏ: %s\n"
#: ../../install_steps_gtk.pm:1
#, c-format
msgid "Bad package"
-msgstr "Дрэнны пакет"
+msgstr "Дрэнны пакет"
#: ../../install_steps_gtk.pm:1 ../../mouse.pm:1 ../../services.pm:1
#: ../../diskdrake/hd_gtk.pm:1 ../../standalone/drakbackup:1
#, c-format
msgid "Other"
-msgstr "Іншыя"
+msgstr "Іншыя"
#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "Total size: %d / %d MB"
-msgstr "Агульны памер: %d / %d Mб"
+msgstr "Агульны памер: %d / %d Mб"
#: ../../install_steps_gtk.pm:1 ../../interactive.pm:1 ../../my_gtk.pm:1
#: ../../ugtk2.pm:1 ../../interactive/newt.pm:1
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Next ->"
-msgstr "Далей ->"
+msgstr "Далей ->"
#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "Individual package selection"
-msgstr "Асабiсты выбар пакетаў"
+msgstr "Асабiсты выбар пакетаў"
#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "Package Group Selection"
-msgstr "Выбар групы пакетаў"
+msgstr "Выбар групы пакетаў"
#: ../../install_steps_gtk.pm:1
#, c-format
@@ -3105,25 +3067,25 @@ msgid ""
"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>."
+"У Вашай сiстэме маецца недахоп рэсурсаў, таму магчымы праблемы\n"
+"пры ўсталяваннi Mandrake Linux. У гэтым выпадку паспрабуйце тэкставую\n"
+"праграму ўсталявання. Для гэтага нацiснiце `F1' у час загрузкi, а потым\n"
+"набярыце `text' i нацiснiце <ENTER>."
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Save packages selection"
-msgstr "Асабiсты выбар пакетаў"
+msgstr "Асабiсты выбар пакетаў"
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Automated"
-msgstr "Аўтаматычны"
+msgstr "Аўтаматычны"
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Replay"
-msgstr "Перазагрузiць"
+msgstr "Перазагрузiць"
#: ../../install_steps_interactive.pm:1
#, c-format
@@ -3138,7 +3100,7 @@ msgstr ""
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Generate auto install floppy"
-msgstr "Стварэнне дыскеты для ўсталявання"
+msgstr "Стварэнне дыскеты для ўсталявання"
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
@@ -3152,18 +3114,18 @@ msgid ""
"\n"
"Do you really want to quit now?"
msgstr ""
-"Некаторыя крокi не завершаны.\n"
-"Вы сапраўды жадаеце выйсцi зараз?"
+"Некаторыя крокi не завершаны.\n"
+"Вы сапраўды жадаеце выйсцi зараз?"
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Creating auto install floppy..."
-msgstr "Стварэнне дыскеты для ўсталявання"
+msgstr "Стварэнне дыскеты для ўсталявання"
#: ../../install_steps_interactive.pm:1 ../../standalone/drakautoinst:1
#, c-format
msgid "Insert a blank floppy in drive %s"
-msgstr "Устаўце дыскету ў дыскавод %s"
+msgstr "Устаўце дыскету ў дыскавод %s"
#: ../../install_steps_interactive.pm:1
#, c-format
@@ -3179,12 +3141,12 @@ msgstr ""
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Installation of bootloader failed. The following error occured:"
-msgstr "Працэс усталявання загрузчыка не атрымаўся. Узнiкла наступная памылка:"
+msgstr "Працэс усталявання загрузчыка не атрымаўся. Узнiкла наступная памылка:"
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Installing bootloader"
-msgstr "Усталяванне загрузчыку"
+msgstr "Усталяванне загрузчыку"
#: ../../install_steps_interactive.pm:1
#, c-format
@@ -3192,13 +3154,13 @@ msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
msgstr ""
-"Памылка ўсталявання аboot, \n"
-"спрабаваць усталёўваць, негледзячы на магчымасць парушэння першага разделу?"
+"Памылка ўсталявання аboot, \n"
+"спрабаваць усталёўваць, негледзячы на магчымасць парушэння першага разделу?"
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Do you want to use aboot?"
-msgstr "Вы жадаеце выкарыстоўваць aboot?"
+msgstr "Вы жадаеце выкарыстоўваць aboot?"
#: ../../install_steps_interactive.pm:1
#, c-format
@@ -3212,27 +3174,27 @@ msgstr ""
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Preparing bootloader..."
-msgstr "Падрыхтоўка загрузчыка"
+msgstr "Падрыхтоўка загрузчыка"
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Domain Admin Password"
-msgstr "Падцвердзiць пароль"
+msgstr "Падцвердзiць пароль"
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Domain Admin User Name"
-msgstr "Iмя дамену"
+msgstr "Iмя дамену"
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Windows Domain"
-msgstr "Навуковыя прыкладанні"
+msgstr "Навуковыя прыкладанні"
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Authentication Windows Domain"
-msgstr "Аўтэнтыфiкацыя"
+msgstr "Аўтэнтыфiкацыя"
#: ../../install_steps_interactive.pm:1
#, c-format
@@ -3254,7 +3216,7 @@ msgstr ""
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "NIS Server"
-msgstr "NIS сервер:"
+msgstr "NIS сервер:"
#: ../../install_steps_interactive.pm:1
#, c-format
@@ -3264,17 +3226,17 @@ msgstr "NIS Domain"
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Authentication NIS"
-msgstr "Аўтэнтыфiкацыя NIS"
+msgstr "Аўтэнтыфiкацыя NIS"
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "NIS"
-msgstr "Выкарыстоўваць NIS"
+msgstr "Выкарыстоўваць NIS"
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "LDAP Server"
-msgstr "сервер"
+msgstr "сервер"
#: ../../install_steps_interactive.pm:1
#, c-format
@@ -3284,7 +3246,7 @@ msgstr ""
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Authentication LDAP"
-msgstr "Аўтэнтыфiкацыя"
+msgstr "Аўтэнтыфiкацыя"
#: ../../install_steps_interactive.pm:1
#, c-format
@@ -3294,30 +3256,30 @@ msgstr ""
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Local files"
-msgstr "Лакальны прынтэр"
+msgstr "Лакальны прынтэр"
#: ../../install_steps_interactive.pm:1 ../../network/modem.pm:1
#: ../../standalone/drakconnect:1 ../../standalone/logdrake:1
#, c-format
msgid "Authentication"
-msgstr "Аўтэнтыфiкацыя"
+msgstr "Аўтэнтыфiкацыя"
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
-"Гэты пароль занадта просты (яго даўжыня павiнна быць не меней за %d лiтараў)"
+"Гэты пароль занадта просты (яго даўжыня павiнна быць не меней за %d лiтараў)"
#. -PO: keep this short or else the buttons will not fit in the window
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "No password"
-msgstr "Няма паролю"
+msgstr "Няма паролю"
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Set root password"
-msgstr "Пароль для root"
+msgstr "Пароль для root"
#: ../../install_steps_interactive.pm:1
#, c-format
@@ -3332,7 +3294,7 @@ msgstr ""
#: ../../install_steps_interactive.pm:1 ../../services.pm:1
#, fuzzy, c-format
msgid "Services"
-msgstr "прылада"
+msgstr "прылада"
#: ../../install_steps_interactive.pm:1 ../../services.pm:1
#: ../../standalone/drakbackup:1
@@ -3340,10 +3302,16 @@ msgstr "прылада"
msgid "System"
msgstr "Mouse Systems"
+#. -PO: example: lilo-graphic on /dev/hda1
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "%s on %s"
+msgstr "РџРѕСЂС‚"
+
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Bootloader"
-msgstr "Галоўныя опцыi пачатковага загрузчыку"
+msgstr "Галоўныя опцыi пачатковага загрузчыку"
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
@@ -3353,12 +3321,12 @@ msgstr "Root"
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "disabled"
-msgstr "Таблiца"
+msgstr "Таблiца"
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "activated"
-msgstr "Актыўны"
+msgstr "Актыўны"
#: ../../install_steps_interactive.pm:1
#, c-format
@@ -3368,27 +3336,27 @@ msgstr ""
#: ../../install_steps_interactive.pm:1 ../../steps.pm:1
#, fuzzy, c-format
msgid "Security"
-msgstr "кучаравы"
+msgstr "кучаравы"
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Security Level"
-msgstr "Настройкi ўзроўня бяспекi"
+msgstr "Настройкi ўзроўня бяспекi"
#: ../../install_steps_interactive.pm:1 ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Network"
-msgstr "Сетка:"
+msgstr "Сетка:"
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Network & Internet"
-msgstr "Сеткавы iнтэрфейс"
+msgstr "Сеткавы iнтэрфейс"
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Graphical interface"
-msgstr "Запуск X пры старце сiстэмы"
+msgstr "Запуск X пры старце сiстэмы"
#: ../../install_steps_interactive.pm:1
#, c-format
@@ -3413,33 +3381,33 @@ msgstr ""
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Do you have an ISA sound card?"
-msgstr "Цi ёсць у вас iншы?"
+msgstr "Цi ёсць у вас iншы?"
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Sound card"
-msgstr "Стандартны"
+msgstr "Стандартны"
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Remote CUPS server"
-msgstr "Аддалены сервер CUPS"
+msgstr "Аддалены сервер CUPS"
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "No printer"
-msgstr "Iмя друкаркi"
+msgstr "Iмя друкаркi"
#: ../../install_steps_interactive.pm:1 ../../harddrake/data.pm:1
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printer"
-msgstr "Прынтэр"
+msgstr "Прынтэр"
#: ../../install_steps_interactive.pm:1 ../../harddrake/data.pm:1
#, fuzzy, c-format
msgid "Mouse"
-msgstr "Порт мышы"
+msgstr "Порт мышы"
#: ../../install_steps_interactive.pm:1
#, c-format
@@ -3449,7 +3417,7 @@ msgstr ""
#: ../../install_steps_interactive.pm:1 ../../standalone/keyboarddrake:1
#, c-format
msgid "Keyboard"
-msgstr "Клавiятура"
+msgstr "Клавiятура"
#: ../../install_steps_interactive.pm:1 ../../steps.pm:1
#, c-format
@@ -3459,7 +3427,7 @@ msgstr ""
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "NTP Server"
-msgstr "NIS сервер:"
+msgstr "NIS сервер:"
#: ../../install_steps_interactive.pm:1
#, c-format
@@ -3469,38 +3437,38 @@ msgstr ""
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Hardware clock set to GMT"
-msgstr "Ваш сiстэмны гадзiннiк усталяваны на GMT?"
+msgstr "Ваш сiстэмны гадзiннiк усталяваны на GMT?"
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Which is your timezone?"
-msgstr "Якi ваш часавы пояс?"
+msgstr "Якi ваш часавы пояс?"
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Would you like to try again?"
-msgstr "Жадаеце настроiць прынтэр?"
+msgstr "Жадаеце настроiць прынтэр?"
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Unable to contact mirror %s"
-msgstr "Зрабiць неактыўным сеткавае злучэнне"
+msgstr "Зрабiць неактыўным сеткавае злучэнне"
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Contacting the mirror to get the list of available packages..."
-msgstr "Сувязь з люрам для атрымання спiсу даступных пакетаў"
+msgstr "Сувязь з люрам для атрымання спiсу даступных пакетаў"
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Choose a mirror from which to get the packages"
-msgstr "Выбар люстра для атрымання пакетаў"
+msgstr "Выбар люстра для атрымання пакетаў"
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
-msgstr "Сувязь з люрам для атрымання спiсу даступных пакетаў"
+msgstr "Сувязь з люрам для атрымання спiсу даступных пакетаў"
#: ../../install_steps_interactive.pm:1
#, c-format
@@ -3518,17 +3486,17 @@ msgstr ""
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Please insert the Update Modules floppy in drive %s"
-msgstr "Устаўце дыскету ў дыскавод %s"
+msgstr "Устаўце дыскету ў дыскавод %s"
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Please insert the Boot floppy used in drive %s"
-msgstr "Устаўце дыскету ў дыскавод %s"
+msgstr "Устаўце дыскету ў дыскавод %s"
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Post-install configuration"
-msgstr "Настройка пасля ўсталявання"
+msgstr "Настройка пасля ўсталявання"
#: ../../install_steps_interactive.pm:1
#, c-format
@@ -3536,18 +3504,18 @@ msgid ""
"Installing package %s\n"
"%d%%"
msgstr ""
-"Усталяванне пакету %s\n"
+"Усталяванне пакету %s\n"
"%d%%"
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Preparing installation"
-msgstr "Падрыхтоўка ўсталяваньня"
+msgstr "Падрыхтоўка ўсталяваньня"
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Cd-Rom labeled \"%s\""
-msgstr "Cd-Rom пазначаны \"%s\""
+msgstr "Cd-Rom пазначаны \"%s\""
#: ../../install_steps_interactive.pm:1
#, c-format
@@ -3556,14 +3524,14 @@ msgid ""
"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це Ок."
+"Калi вы маеце ўсе CD дыскi са спiса нiжэй, нацiснiце Ок.\n"
+"Калi вы не маеце анi воднага з гэтых CD дыскаў, нацiснiце Адмянiць.\n"
+"Калi некаторых з CD дыскаў не маеце, адмянiце iх выдзяленне i нацiснiце Ок."
#: ../../install_steps_interactive.pm:1 ../../standalone/drakxtv:1
#, c-format
msgid "All"
-msgstr "Усё"
+msgstr "РЈСЃС‘"
#: ../../install_steps_interactive.pm:1
#, c-format
@@ -3578,7 +3546,7 @@ msgstr ""
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "With X"
-msgstr "Чакайце"
+msgstr "Чакайце"
#: ../../install_steps_interactive.pm:1
#, c-format
@@ -3590,7 +3558,7 @@ msgstr ""
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Type of install"
-msgstr "Выбар пакетаў для усталявання"
+msgstr "Выбар пакетаў для усталявання"
#: ../../install_steps_interactive.pm:1
#, c-format
@@ -3600,27 +3568,27 @@ msgstr ""
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Insert a floppy containing package selection"
-msgstr "Устаўце дыскету ў дыскавод %s"
+msgstr "Устаўце дыскету ў дыскавод %s"
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Loading from floppy"
-msgstr "Аднаўленне з дыскеты"
+msgstr "Аднаўленне з дыскеты"
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Package selection"
-msgstr "Выбар групы пакетаў"
+msgstr "Выбар групы пакетаў"
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Save on floppy"
-msgstr "Захаванне на дыскету"
+msgstr "Захаванне на дыскету"
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Load from floppy"
-msgstr "Аднаўленне з дыскеты"
+msgstr "Аднаўленне з дыскеты"
#: ../../install_steps_interactive.pm:1
#, c-format
@@ -3635,33 +3603,33 @@ msgid ""
"Your system does not have enough space left for installation or upgrade (%d "
"> %d)"
msgstr ""
-"Ваша сiстэма не мае дастакова месца для ўсталявання цi абнаўлення (%d > %d)"
+"Ваша сiстэма не мае дастакова месца для ўсталявання цi абнаўлення (%d > %d)"
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Looking for available packages..."
-msgstr "Прагляд даступных пакетаў"
+msgstr "Прагляд даступных пакетаў"
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Finding packages to upgrade..."
-msgstr "Пошук пакетаў для абнаўлення"
+msgstr "Пошук пакетаў для абнаўлення"
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Looking at packages already installed..."
-msgstr "Вы не можаце адмянiць вылучэнне гэтага пакету. Ён ужо ўсталяваны"
+msgstr "Вы не можаце адмянiць вылучэнне гэтага пакету. Ён ужо ўсталяваны"
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Looking for available packages and rebuilding rpm database..."
-msgstr "Прагляд даступных пакетаў"
+msgstr "Прагляд даступных пакетаў"
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
-"Не хапае месца ў буферы падкачкi (swap) для ўсталявання, павялiчце яго."
+"Не хапае месца ў буферы падкачкi (swap) для ўсталявання, павялiчце яго."
#: ../../install_steps_interactive.pm:1
#, c-format
@@ -3673,17 +3641,17 @@ msgstr ""
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Check bad blocks?"
-msgstr "Праверыць на наяўнасць дрэнных блокаў?"
+msgstr "Праверыць на наяўнасць дрэнных блокаў?"
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Choose the partitions you want to format"
-msgstr "Выбар раздзелаў для фарматавання"
+msgstr "Выбар раздзелаў для фарматавання"
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "You need to reboot for the partition table modifications to take place"
-msgstr "Каб мадыфiкацыя таблiцы раздзелаў здейснiлася, патрэбна перазагрузка."
+msgstr "Каб мадыфiкацыя таблiцы раздзелаў здейснiлася, патрэбна перазагрузка."
#: ../../install_steps_interactive.pm:1
#, c-format
@@ -3695,7 +3663,7 @@ msgstr ""
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Choose the mount points"
-msgstr "Абярыце пункты манцiравання"
+msgstr "Абярыце пункты манцiравання"
#: ../../install_steps_interactive.pm:1
#, c-format
@@ -3705,12 +3673,12 @@ msgstr ""
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "No partition available"
-msgstr "няма даступных раздзелаў"
+msgstr "няма даступных раздзелаў"
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Configuring IDE"
-msgstr "Настройка IDE"
+msgstr "Настройка IDE"
#: ../../install_steps_interactive.pm:1
#, c-format
@@ -3720,7 +3688,7 @@ msgstr "IDE"
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Configuring PCMCIA cards..."
-msgstr "Настройка карт PCMCIA ..."
+msgstr "Настройка карт PCMCIA ..."
#: ../../install_steps_interactive.pm:1
#, c-format
@@ -3745,32 +3713,37 @@ msgstr ""
#: ../../install_steps_interactive.pm:1 ../../standalone/mousedrake:1
#, c-format
msgid "Please choose which serial port your mouse is connected to."
-msgstr "Калi ласка, пазначце послядоўны порт, да якога падключана вашая мыш."
+msgstr "Калi ласка, пазначце послядоўны порт, да якога падключана вашая мыш."
#: ../../install_steps_interactive.pm:1 ../../standalone/mousedrake:1
#, c-format
msgid "Mouse Port"
-msgstr "Порт мышы"
+msgstr "Порт мышы"
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Please choose your type of mouse."
-msgstr "калi ласка, пазначце тып вашай мышы."
+msgstr "калi ласка, пазначце тып вашай мышы."
+
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Encryption key for %s"
+msgstr "Паролi не супадаюць"
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Upgrade %s"
-msgstr "Раздзел %s"
+msgstr "Раздзел %s"
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Is this an install or an upgrade?"
-msgstr "Абярыце ўсталяванне цi абнаўленне"
+msgstr "Абярыце ўсталяванне цi абнаўленне"
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Install/Upgrade"
-msgstr "Усталёўка"
+msgstr "Усталёўка"
#: ../../install_steps_interactive.pm:1
#, c-format
@@ -3780,7 +3753,7 @@ msgstr ""
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Please choose your keyboard layout."
-msgstr "Калi ласка, абярыце тып клавiятуры."
+msgstr "Калi ласка, абярыце тып клавiятуры."
#: ../../install_steps_interactive.pm:1 ../../Xconfig/main.pm:1
#: ../../diskdrake/dav.pm:1 ../../printer/printerdrake.pm:1
@@ -3789,39 +3762,39 @@ msgstr "Калi ласка, абярыце тып клавiятуры."
#: ../../standalone/scannerdrake:1
#, c-format
msgid "Quit"
-msgstr "Выхад"
+msgstr "Выхад"
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "License agreement"
-msgstr "Ліцэнзійная дамова"
+msgstr "Ліцэнзійная дамова"
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "An error occurred"
-msgstr "Адбылася памылка"
+msgstr "Адбылася памылка"
#: ../../install_steps_newt.pm:1
#, c-format
msgid ""
" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
-" <Tab>/<Alt-Tab> памiж элементамi | <Space> выбар | <F12> наступны экран "
+" <Tab>/<Alt-Tab> памiж элементамi | <Space> выбар | <F12> наступны экран "
#: ../../install_steps_newt.pm:1
#, c-format
msgid "Mandrake Linux Installation %s"
-msgstr "Усталяванне Mandrake Linux %s"
+msgstr "Усталяванне Mandrake Linux %s"
#: ../../install_steps.pm:1
#, c-format
msgid "No floppy drive available"
-msgstr "Дыскавод недаступны"
+msgstr "Дыскавод недаступны"
#: ../../install_steps.pm:1
#, c-format
msgid "Welcome to %s"
-msgstr "Сардэчна запрашаем у %s"
+msgstr "Сардэчна Р В·Р В°Р С—РЎР‚Р В°РЎв‚¬Р В°Р ВµР С РЎС“ %s"
#: ../../install_steps.pm:1
#, c-format
@@ -3831,15 +3804,15 @@ msgid ""
"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/*."
+"Некаторыя важныя пакеты не былi ўсталяваны карэктна.\n"
+"Другi ваш cdrom дыск цi ваш cdrom маюць дэфекты.\n"
+"Праверце cdrom на вашым кампутары, выкарыстоўваючы\"rpm -qpl Mandrake/RPMS/*."
"rpm\"\n"
#: ../../install_steps.pm:1
#, c-format
msgid "Duplicate mount point %s"
-msgstr "Дубляванне пункту манцiравання %s"
+msgstr "Дубляванне пункту манцiравання %s"
#: ../../install_steps.pm:1
#, c-format
@@ -3847,15 +3820,15 @@ msgid ""
"An error occurred, but I don't know how to handle it nicely.\n"
"Continue at your own risk."
msgstr ""
-"Узнiкла памылка, якую не атрымліваецца карэктна апрацаваць,\n"
-"таму працягвайце на сваю рызыку."
+"Узнiкла памылка, якую не атрымліваецца карэктна апрацаваць,\n"
+"таму працягвайце на сваю рызыку."
#: ../../interactive.pm:1 ../../harddrake/sound.pm:1
#: ../../standalone/drakxtv:1 ../../standalone/harddrake2:1
#: ../../standalone/service_harddrake:1
#, c-format
msgid "Please wait"
-msgstr "Калi ласка, пачакайце"
+msgstr "Калi ласка, пачакайце"
#: ../../interactive.pm:1 ../../my_gtk.pm:1 ../../ugtk2.pm:1
#: ../../Xconfig/resolution_and_depth.pm:1 ../../interactive/http.pm:1
@@ -3863,18 +3836,18 @@ msgstr "Калi ласка, пачакайце"
#: ../../standalone/drakbackup:1 ../../standalone/draksec:1
#, c-format
msgid "Ok"
-msgstr "Ок"
+msgstr "РћРє"
#: ../../interactive.pm:1 ../../my_gtk.pm:1 ../../ugtk2.pm:1
#: ../../interactive/newt.pm:1
#, fuzzy, c-format
msgid "Finish"
-msgstr "Фiнскi"
+msgstr "Р¤iРЅСЃРєi"
#: ../../interactive.pm:1 ../../standalone/draksec:1
#, c-format
msgid "Basic"
-msgstr ""
+msgstr "Простые"
#: ../../interactive.pm:1
#, c-format
@@ -3884,23 +3857,23 @@ msgstr ""
#: ../../interactive.pm:1 ../../interactive/gtk.pm:1
#, fuzzy, c-format
msgid "Remove"
-msgstr "Аддалены прынтэр"
+msgstr "Аддалены прынтэр"
#: ../../interactive.pm:1 ../../interactive/gtk.pm:1
#, fuzzy, c-format
msgid "Modify"
-msgstr "Змянiць RAID"
+msgstr "Змянiць RAID"
#: ../../interactive.pm:1 ../../interactive/gtk.pm:1
#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
#, c-format
msgid "Add"
-msgstr "Дадаць"
+msgstr "Дадаць"
#: ../../interactive.pm:1
#, fuzzy, c-format
msgid "Choose a file"
-msgstr "Абярыце дзеянне"
+msgstr "Абярыце дзеянне"
#: ../../keyboard.pm:1
#, c-format
@@ -3958,57 +3931,57 @@ msgstr ""
#: ../../keyboard.pm:1
#, fuzzy, c-format
msgid "Yugoslavian (latin)"
-msgstr "Азербайджанскі (latin)"
+msgstr "Азербайджанскі (latin)"
#: ../../keyboard.pm:1
#, c-format
msgid "Vietnamese \"numeric row\" QWERTY"
-msgstr "Вьетнамскi \"нумар радка\" QWERTY"
+msgstr "Вьетнамскi \"нумар радка\" QWERTY"
#: ../../keyboard.pm:1
#, c-format
msgid "US keyboard (international)"
-msgstr "US клавiятура (мiжнародная)"
+msgstr "US клавiятура (мiжнародная)"
#: ../../keyboard.pm:1
#, c-format
msgid "US keyboard"
-msgstr "US клавiятура"
+msgstr "US клавiятура"
#: ../../keyboard.pm:1
#, c-format
msgid "UK keyboard"
-msgstr "UK клавiятура"
+msgstr "UK клавiятура"
#: ../../keyboard.pm:1
#, c-format
msgid "Ukrainian"
-msgstr "Украiнскi"
+msgstr "РЈРєСЂР°iРЅСЃРєi"
#: ../../keyboard.pm:1
#, c-format
msgid "Turkish (modern \"Q\" model)"
-msgstr "Турэцкi (сучасная \"Q\" мадэль)"
+msgstr "Турэцкi (сучасная \"Q\" мадэль)"
#: ../../keyboard.pm:1
#, c-format
msgid "Turkish (traditional \"F\" model)"
-msgstr "Турэцкi (традыцыёная \"F\" мадэль)"
+msgstr "Турэцкi (традыцыёная \"F\" мадэль)"
#: ../../keyboard.pm:1
#, fuzzy, c-format
msgid "Tajik keyboard"
-msgstr "Тайская клавiятура"
+msgstr "Тайская клавiятура"
#: ../../keyboard.pm:1
#, c-format
msgid "Thai keyboard"
-msgstr "Тайская клавiятура"
+msgstr "Тайская клавiятура"
#: ../../keyboard.pm:1
#, fuzzy, c-format
msgid "Tamil (Typewriter-layout)"
-msgstr "Армянскi (typewriter)"
+msgstr "РђСЂРјСЏРЅСЃРєi (typewriter)"
#: ../../keyboard.pm:1
#, c-format
@@ -4018,77 +3991,77 @@ msgstr ""
#: ../../keyboard.pm:1
#, fuzzy, c-format
msgid "Serbian (cyrillic)"
-msgstr "Азербайджанскі (кірыліца)"
+msgstr "Азербайджанскі (кірыліца)"
#: ../../keyboard.pm:1
#, c-format
msgid "Slovakian (QWERTY)"
-msgstr "Славацкi (QWERTY)"
+msgstr "Славацкi (QWERTY)"
#: ../../keyboard.pm:1
#, c-format
msgid "Slovakian (QWERTZ)"
-msgstr "Славацкi (QWERTZ)"
+msgstr "Славацкi (QWERTZ)"
#: ../../keyboard.pm:1
#, c-format
msgid "Slovenian"
-msgstr "Славенскi"
+msgstr "Славенскi"
#: ../../keyboard.pm:1
#, c-format
msgid "Swedish"
-msgstr "Швецкi"
+msgstr "Швецкi"
#: ../../keyboard.pm:1
#, c-format
msgid "Russian (Yawerty)"
-msgstr "Рускi (Я-В-Е-Р-Т-И)"
+msgstr "Р СѓСЃРєi (РЇ-Р’-Р•-Р -Рў-Р)"
#: ../../keyboard.pm:1
#, c-format
msgid "Russian"
-msgstr "Рускi"
+msgstr "Р СѓСЃРєi"
#: ../../keyboard.pm:1
#, fuzzy, c-format
msgid "Romanian (qwerty)"
-msgstr "Рускi (Я-В-Е-Р-Т-И)"
+msgstr "Р СѓСЃРєi (РЇ-Р’-Р•-Р -Рў-Р)"
#: ../../keyboard.pm:1
#, fuzzy, c-format
msgid "Romanian (qwertz)"
-msgstr "Рускi (Я-В-Е-Р-Т-И)"
+msgstr "Р СѓСЃРєi (РЇ-Р’-Р•-Р -Рў-Р)"
#: ../../keyboard.pm:1
#, c-format
msgid "Canadian (Quebec)"
-msgstr "Канадскi (Квебэк)"
+msgstr "Канадскi (Квебэк)"
#: ../../keyboard.pm:1
#, c-format
msgid "Portuguese"
-msgstr "Партугальскi"
+msgstr "Партугальскi"
#: ../../keyboard.pm:1
#, c-format
msgid "Polish (qwertz layout)"
-msgstr "Польскi (qwertz раскладка)"
+msgstr "Польскi (qwertz раскладка)"
#: ../../keyboard.pm:1
#, c-format
msgid "Polish (qwerty layout)"
-msgstr "Польскi (стандартная раскладка)"
+msgstr "Польскi (стандартная раскладка)"
#: ../../keyboard.pm:1
#, c-format
msgid "Norwegian"
-msgstr "Нарвежскi"
+msgstr "Нарвежскi"
#: ../../keyboard.pm:1
#, c-format
msgid "Dutch"
-msgstr "Галандскi"
+msgstr "Галандскi"
#: ../../keyboard.pm:1
#, c-format
@@ -4103,7 +4076,7 @@ msgstr ""
#: ../../keyboard.pm:1
#, fuzzy, c-format
msgid "Mongolian (cyrillic)"
-msgstr "Азербайджанскі (кірыліца)"
+msgstr "Азербайджанскі (кірыліца)"
#: ../../keyboard.pm:1
#, c-format
@@ -4123,47 +4096,47 @@ msgstr ""
#: ../../keyboard.pm:1
#, fuzzy, c-format
msgid "Latvian"
-msgstr "Размеркаванне"
+msgstr "Размеркаванне"
#: ../../keyboard.pm:1
#, c-format
msgid "Lithuanian \"phonetic\" QWERTY"
-msgstr "Лiтоўскi \"фанетычны\" QWERTY"
+msgstr "Лiтоўскi \"фанетычны\" QWERTY"
#: ../../keyboard.pm:1
#, c-format
msgid "Lithuanian \"number row\" QWERTY"
-msgstr "Лiтоўскi \"нумар радка\" QWERTY"
+msgstr "Лiтоўскi \"нумар радка\" QWERTY"
#: ../../keyboard.pm:1
#, c-format
msgid "Lithuanian AZERTY (new)"
-msgstr "Лiтоўскi AZERTY (новы)"
+msgstr "Лiтоўскi AZERTY (новы)"
#: ../../keyboard.pm:1
#, c-format
msgid "Lithuanian AZERTY (old)"
-msgstr "Лiтоўскi AZERTY (стары)"
+msgstr "Лiтоўскi AZERTY (стары)"
#: ../../keyboard.pm:1
#, fuzzy, c-format
msgid "Laotian"
-msgstr "Размеркаванне"
+msgstr "Размеркаванне"
#: ../../keyboard.pm:1
#, c-format
msgid "Latin American"
-msgstr "Лацiна-Амерыканскi"
+msgstr "Лацiна-Амерыканскi"
#: ../../keyboard.pm:1
#, fuzzy, c-format
msgid "Korean keyboard"
-msgstr "UK клавiятура"
+msgstr "UK клавiятура"
#: ../../keyboard.pm:1
#, c-format
msgid "Japanese 106 keys"
-msgstr "Японскi 106 клавiш"
+msgstr "Японскi 106 клавiш"
#: ../../keyboard.pm:1
#, c-format
@@ -4173,37 +4146,37 @@ msgstr ""
#: ../../keyboard.pm:1
#, c-format
msgid "Italian"
-msgstr "Iтальянскi"
+msgstr "Iтальянскi"
#: ../../keyboard.pm:1
#, c-format
msgid "Icelandic"
-msgstr "Iсландскi"
+msgstr "Iсландскi"
#: ../../keyboard.pm:1
#, c-format
msgid "Iranian"
-msgstr "Iранскi"
+msgstr "Iранскi"
#: ../../keyboard.pm:1
#, c-format
msgid "Israeli (Phonetic)"
-msgstr "Iўрыт (фанетычны)"
+msgstr "Iўрыт (фанетычны)"
#: ../../keyboard.pm:1
#, c-format
msgid "Israeli"
-msgstr "Iўрыт"
+msgstr "Iўрыт"
#: ../../keyboard.pm:1
#, c-format
msgid "Croatian"
-msgstr "Харвацкi"
+msgstr "Харвацкi"
#: ../../keyboard.pm:1
#, c-format
msgid "Hungarian"
-msgstr "Мадьярскi"
+msgstr "Мадьярскi"
#: ../../keyboard.pm:1
#, c-format
@@ -4218,37 +4191,37 @@ msgstr ""
#: ../../keyboard.pm:1
#, c-format
msgid "Greek"
-msgstr "Грэчаскi"
+msgstr "Грэчаскi"
#: ../../keyboard.pm:1
#, c-format
msgid "Georgian (\"Latin\" layout)"
-msgstr "Грузiнскi (\"Лацiнская\" раскладка)"
+msgstr "Грузiнскi (\"Лацiнская\" раскладка)"
#: ../../keyboard.pm:1
#, c-format
msgid "Georgian (\"Russian\" layout)"
-msgstr "Грузiнскi (\"Руская\" раскладка)"
+msgstr "Грузiнскi (\"Руская\" раскладка)"
#: ../../keyboard.pm:1
#, c-format
msgid "French"
-msgstr "Французскi"
+msgstr "Французскi"
#: ../../keyboard.pm:1
#, c-format
msgid "Finnish"
-msgstr "Фiнскi"
+msgstr "Р¤iРЅСЃРєi"
#: ../../keyboard.pm:1
#, c-format
msgid "Spanish"
-msgstr "Iспанскi"
+msgstr "Iспанскi"
#: ../../keyboard.pm:1
#, c-format
msgid "Estonian"
-msgstr "Эстонскi"
+msgstr "Эстонскi"
#: ../../keyboard.pm:1
#, fuzzy, c-format
@@ -4258,7 +4231,7 @@ msgstr "Dvorak (US)"
#: ../../keyboard.pm:1
#, c-format
msgid "Dvorak (Norwegian)"
-msgstr "Dvorak (Нарвежскi)"
+msgstr "Dvorak (Нарвежскi)"
#: ../../keyboard.pm:1
#, c-format
@@ -4268,7 +4241,7 @@ msgstr "Dvorak (US)"
#: ../../keyboard.pm:1
#, c-format
msgid "Danish"
-msgstr "Дацкi"
+msgstr "Дацкi"
#: ../../keyboard.pm:1
#, c-format
@@ -4278,72 +4251,72 @@ msgstr ""
#: ../../keyboard.pm:1
#, c-format
msgid "German (no dead keys)"
-msgstr "Нямецкi (няма заблакiраваных клавiш)"
+msgstr "Нямецкi (няма заблакiраваных клавiш)"
#: ../../keyboard.pm:1
#, c-format
msgid "German"
-msgstr "Нямецкi"
+msgstr "Нямецкi"
#: ../../keyboard.pm:1
#, c-format
msgid "Czech (QWERTY)"
-msgstr "Чешскi (QWERTY)"
+msgstr "Чешскi (QWERTY)"
#: ../../keyboard.pm:1
#, c-format
msgid "Czech (QWERTZ)"
-msgstr "Чешскi (QWERTZ)"
+msgstr "Чешскi (QWERTZ)"
#: ../../keyboard.pm:1
#, c-format
msgid "Swiss (French layout)"
-msgstr "Швейцарскi (Французская раскладка)"
+msgstr "Швейцарскi (Французская раскладка)"
#: ../../keyboard.pm:1
#, c-format
msgid "Swiss (German layout)"
-msgstr "Швейцарскi (Нямецкая раскладка)"
+msgstr "Швейцарскi (Нямецкая раскладка)"
#: ../../keyboard.pm:1
#, c-format
msgid "Belarusian"
-msgstr "Беларускі"
+msgstr "Беларускі"
#: ../../keyboard.pm:1
#, fuzzy, c-format
msgid "Bosnian"
-msgstr "Эстонскi"
+msgstr "Эстонскi"
#: ../../keyboard.pm:1
#, c-format
msgid "Brazilian (ABNT-2)"
-msgstr "Бразiльскi (ABNT-2)"
+msgstr "Бразiльскi (ABNT-2)"
#: ../../keyboard.pm:1
#, fuzzy, c-format
msgid "Bulgarian (BDS)"
-msgstr "Балгарскi"
+msgstr "Балгарскi"
#: ../../keyboard.pm:1
#, fuzzy, c-format
msgid "Bulgarian (phonetic)"
-msgstr "Армянскi (фанетычны)"
+msgstr "Армянскi (фанетычны)"
#: ../../keyboard.pm:1
#, fuzzy, c-format
msgid "Bengali"
-msgstr "Таблiца"
+msgstr "Таблiца"
#: ../../keyboard.pm:1
#, c-format
msgid "Belgian"
-msgstr "Бельгiйскi"
+msgstr "Бельгiйскi"
#: ../../keyboard.pm:1
#, c-format
msgid "Azerbaidjani (latin)"
-msgstr "Азербайджанскі (latin)"
+msgstr "Азербайджанскі (latin)"
#: ../../keyboard.pm:1
#, c-format
@@ -4353,27 +4326,27 @@ msgstr ""
#: ../../keyboard.pm:1
#, c-format
msgid "Armenian (phonetic)"
-msgstr "Армянскi (фанетычны)"
+msgstr "Армянскi (фанетычны)"
#: ../../keyboard.pm:1
#, c-format
msgid "Armenian (typewriter)"
-msgstr "Армянскi (typewriter)"
+msgstr "РђСЂРјСЏРЅСЃРєi (typewriter)"
#: ../../keyboard.pm:1
#, c-format
msgid "Armenian (old)"
-msgstr "Армянскi (стары)"
+msgstr "Армянскi (стары)"
#: ../../keyboard.pm:1
#, fuzzy, c-format
msgid "Albanian"
-msgstr "Iранскi"
+msgstr "Iранскi"
#: ../../keyboard.pm:1
#, c-format
msgid "Polish"
-msgstr "Польскi"
+msgstr "Польскi"
#: ../../keyboard.pm:1
#, c-format
@@ -4383,7 +4356,7 @@ msgstr "Dvorak"
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Zimbabwe"
-msgstr "можа быць"
+msgstr "можа быць"
#: ../../lang.pm:1
#, c-format
@@ -4398,7 +4371,7 @@ msgstr ""
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Serbia"
-msgstr "паслядоўная"
+msgstr "паслядоўная"
#: ../../lang.pm:1
#, c-format
@@ -4453,7 +4426,7 @@ msgstr ""
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Vatican"
-msgstr "Размеркаванне"
+msgstr "Размеркаванне"
#: ../../lang.pm:1
#, c-format
@@ -4473,12 +4446,12 @@ msgstr ""
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Uganda"
-msgstr "Адкат"
+msgstr "Адкат"
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Ukraine"
-msgstr "Украiнскi"
+msgstr "РЈРєСЂР°iРЅСЃРєi"
#: ../../lang.pm:1
#, c-format
@@ -4488,7 +4461,7 @@ msgstr ""
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Taiwan"
-msgstr "Размеркаванне"
+msgstr "Размеркаванне"
#: ../../lang.pm:1
#, c-format
@@ -4583,7 +4556,7 @@ msgstr ""
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Suriname"
-msgstr "Iмя для размеркаванага рэсурсу"
+msgstr "Iмя для размеркаванага рэсурсу"
#: ../../lang.pm:1
#, fuzzy, c-format
@@ -4593,7 +4566,7 @@ msgstr "NIS Domain"
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Senegal"
-msgstr "Таблiца"
+msgstr "Таблiца"
#: ../../lang.pm:1
#, c-format
@@ -4608,7 +4581,7 @@ msgstr ""
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Slovakia"
-msgstr "Славенскi"
+msgstr "Славенскi"
#: ../../lang.pm:1
#, c-format
@@ -4618,7 +4591,7 @@ msgstr ""
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Slovenia"
-msgstr "Славенскi"
+msgstr "Славенскi"
#: ../../lang.pm:1
#, c-format
@@ -4638,7 +4611,7 @@ msgstr "SunOS"
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Seychelles"
-msgstr "Абалонка:"
+msgstr "Абалонка:"
#: ../../lang.pm:1
#, c-format
@@ -4658,7 +4631,7 @@ msgstr ""
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Russia"
-msgstr "Рускi"
+msgstr "Р СѓСЃРєi"
#: ../../lang.pm:1
#, fuzzy, c-format
@@ -4668,12 +4641,12 @@ msgstr "NIS Domain"
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Reunion"
-msgstr "Памеры экрану"
+msgstr "Памеры экрану"
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Qatar"
-msgstr "Стартавае меню"
+msgstr "Стартавае меню"
#: ../../lang.pm:1
#, c-format
@@ -4688,12 +4661,12 @@ msgstr ""
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Portugal"
-msgstr "Порт"
+msgstr "РџРѕСЂС‚"
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Palestine"
-msgstr "Асабiсты выбар пакетаў"
+msgstr "Асабiсты выбар пакетаў"
#: ../../lang.pm:1
#, c-format
@@ -4703,7 +4676,7 @@ msgstr ""
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Pitcairn"
-msgstr "Прынтэр"
+msgstr "Прынтэр"
#: ../../lang.pm:1
#, c-format
@@ -4713,7 +4686,7 @@ msgstr ""
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Poland"
-msgstr "Iсландскi"
+msgstr "Iсландскi"
#: ../../lang.pm:1
#, c-format
@@ -4758,7 +4731,7 @@ msgstr ""
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Niue"
-msgstr "гальштук"
+msgstr "гальштук"
#: ../../lang.pm:1
#, c-format
@@ -4778,7 +4751,7 @@ msgstr ""
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Nigeria"
-msgstr "паслядоўная"
+msgstr "паслядоўная"
#: ../../lang.pm:1
#, c-format
@@ -4788,7 +4761,7 @@ msgstr ""
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Niger"
-msgstr "Высокi"
+msgstr "Высокi"
#: ../../lang.pm:1
#, c-format
@@ -4813,7 +4786,7 @@ msgstr ""
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Mexico"
-msgstr "Порт мышы"
+msgstr "Порт мышы"
#: ../../lang.pm:1
#, c-format
@@ -4838,7 +4811,7 @@ msgstr ""
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Montserrat"
-msgstr "Порт мышы"
+msgstr "Порт мышы"
#: ../../lang.pm:1
#, c-format
@@ -4893,7 +4866,7 @@ msgstr ""
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Monaco"
-msgstr "Манiтор"
+msgstr "Манiтор"
#: ../../lang.pm:1
#, c-format
@@ -4908,7 +4881,7 @@ msgstr ""
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Latvia"
-msgstr "Размеркаванне"
+msgstr "Размеркаванне"
#: ../../lang.pm:1
#, c-format
@@ -4928,7 +4901,7 @@ msgstr ""
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Liberia"
-msgstr "паслядоўная"
+msgstr "паслядоўная"
#: ../../lang.pm:1
#, c-format
@@ -4968,12 +4941,12 @@ msgstr ""
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Kuwait"
-msgstr "Выхад"
+msgstr "Выхад"
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Korea"
-msgstr "Перанос"
+msgstr "Перанос"
#: ../../lang.pm:1
#, c-format
@@ -5008,7 +4981,7 @@ msgstr ""
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Kenya"
-msgstr "Клавiятура"
+msgstr "Клавiятура"
#: ../../lang.pm:1
#, c-format
@@ -5018,7 +4991,7 @@ msgstr ""
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Jordan"
-msgstr "Iранскi"
+msgstr "Iранскi"
#: ../../lang.pm:1
#, c-format
@@ -5028,12 +5001,12 @@ msgstr ""
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Iceland"
-msgstr "Iсландскi"
+msgstr "Iсландскi"
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Iran"
-msgstr "Iранскi"
+msgstr "Iранскi"
#: ../../lang.pm:1
#, c-format
@@ -5048,27 +5021,27 @@ msgstr ""
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "India"
-msgstr "Iранскi"
+msgstr "Iранскi"
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Israel"
-msgstr "Iўрыт"
+msgstr "Iўрыт"
#: ../../lang.pm:1 ../../standalone/drakxtv:1
#, fuzzy, c-format
msgid "Ireland"
-msgstr "Iсландскi"
+msgstr "Iсландскi"
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Indonesia"
-msgstr "няма"
+msgstr "РЅСЏРјР°"
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Hungary"
-msgstr "Мадьярскi"
+msgstr "Мадьярскi"
#: ../../lang.pm:1
#, c-format
@@ -5078,7 +5051,7 @@ msgstr ""
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Croatia"
-msgstr "Харвацкi"
+msgstr "Харвацкi"
#: ../../lang.pm:1
#, c-format
@@ -5108,12 +5081,12 @@ msgstr ""
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Guam"
-msgstr "Забавы"
+msgstr "Забавы"
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Guatemala"
-msgstr "Шлюз"
+msgstr "Шлюз"
#: ../../lang.pm:1
#, c-format
@@ -5133,7 +5106,7 @@ msgstr ""
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Guinea"
-msgstr "Агульны"
+msgstr "Агульны"
#: ../../lang.pm:1
#, c-format
@@ -5143,7 +5116,7 @@ msgstr ""
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Greenland"
-msgstr "Iсландскi"
+msgstr "Iсландскi"
#: ../../lang.pm:1
#, c-format
@@ -5158,12 +5131,12 @@ msgstr ""
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "French Guiana"
-msgstr "Французскi"
+msgstr "Французскi"
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Georgia"
-msgstr "Нарвежскi"
+msgstr "Нарвежскi"
#: ../../lang.pm:1
#, c-format
@@ -5183,7 +5156,7 @@ msgstr ""
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Faroe Islands"
-msgstr "Iсландскi"
+msgstr "Iсландскi"
#: ../../lang.pm:1
#, c-format
@@ -5198,7 +5171,7 @@ msgstr ""
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Fiji"
-msgstr "Фiнскi"
+msgstr "Р¤iРЅСЃРєi"
#: ../../lang.pm:1
#, c-format
@@ -5208,17 +5181,17 @@ msgstr ""
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Ethiopia"
-msgstr "Эстонскi"
+msgstr "Эстонскi"
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Spain"
-msgstr "Iспанскi"
+msgstr "Iспанскi"
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Eritrea"
-msgstr "Эксперт"
+msgstr "Эксперт"
#: ../../lang.pm:1
#, c-format
@@ -5228,12 +5201,12 @@ msgstr ""
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Egypt"
-msgstr "Пуста"
+msgstr "Пуста"
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Estonia"
-msgstr "Эстонскi"
+msgstr "Эстонскi"
#: ../../lang.pm:1
#, c-format
@@ -5243,7 +5216,7 @@ msgstr ""
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Algeria"
-msgstr "паслядоўная"
+msgstr "паслядоўная"
#: ../../lang.pm:1
#, c-format
@@ -5263,7 +5236,7 @@ msgstr ""
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Djibouti"
-msgstr "Адмянiць"
+msgstr "Адмянiць"
#: ../../lang.pm:1
#, c-format
@@ -5278,7 +5251,7 @@ msgstr ""
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Cape Verde"
-msgstr "Згарнуць дрэва"
+msgstr "Згарнуць дрэва"
#: ../../lang.pm:1
#, c-format
@@ -5303,7 +5276,7 @@ msgstr ""
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Chile"
-msgstr "Порт мышы"
+msgstr "Порт мышы"
#: ../../lang.pm:1
#, c-format
@@ -5343,22 +5316,22 @@ msgstr ""
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Canada"
-msgstr "Канадскi (Квебэк)"
+msgstr "Канадскi (Квебэк)"
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Belize"
-msgstr "Змяненне памераў"
+msgstr "Змяненне памераў"
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Belarus"
-msgstr "Беларускі"
+msgstr "Беларускі"
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Botswana"
-msgstr "Эстонскi"
+msgstr "Эстонскi"
#: ../../lang.pm:1
#, c-format
@@ -5393,12 +5366,12 @@ msgstr ""
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Bermuda"
-msgstr "Нямецкi"
+msgstr "Нямецкi"
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Benin"
-msgstr "Бельгiйскi"
+msgstr "Бельгiйскi"
#: ../../lang.pm:1
#, c-format
@@ -5413,7 +5386,7 @@ msgstr ""
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Bulgaria"
-msgstr "Мадьярскi"
+msgstr "Мадьярскi"
#: ../../lang.pm:1
#, c-format
@@ -5438,7 +5411,7 @@ msgstr ""
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Azerbaijan"
-msgstr "Iранскi"
+msgstr "Iранскi"
#: ../../lang.pm:1
#, fuzzy, c-format
@@ -5448,7 +5421,7 @@ msgstr "Grub"
#: ../../lang.pm:1 ../../standalone/drakxtv:1
#, fuzzy, c-format
msgid "Australia"
-msgstr "паслядоўная"
+msgstr "паслядоўная"
#: ../../lang.pm:1
#, c-format
@@ -5478,12 +5451,12 @@ msgstr ""
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Armenia"
-msgstr "Армянскi (стары)"
+msgstr "Армянскi (стары)"
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Albania"
-msgstr "Iранскi"
+msgstr "Iранскi"
#: ../../lang.pm:1
#, c-format
@@ -5503,12 +5476,12 @@ msgstr ""
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Andorra"
-msgstr "Адкат"
+msgstr "Адкат"
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Afghanistan"
-msgstr "Iранскi"
+msgstr "Iранскi"
#: ../../lang.pm:1
#, c-format
@@ -5518,7 +5491,7 @@ msgstr "default:LTR"
#: ../../loopback.pm:1
#, c-format
msgid "Circular mounts %s\n"
-msgstr "Манцiраванне дыску %s\n"
+msgstr "Манцiраванне дыску %s\n"
#: ../../lvm.pm:1
#, c-format
@@ -5534,47 +5507,47 @@ msgstr ""
#: ../../mouse.pm:1
#, c-format
msgid "MOVE YOUR WHEEL!"
-msgstr "Рушце колам мышы!"
+msgstr "Рушце колам мышы!"
#: ../../mouse.pm:1
#, fuzzy, c-format
msgid "To activate the mouse,"
-msgstr "Калі ласка, зрабіце некалькі рухаў мышшу."
+msgstr "Калі ласка, зрабіце некалькі рухаў мышшу."
#: ../../mouse.pm:1
#, c-format
msgid "Please test the mouse"
-msgstr "Калі ласка, зрабіце некалькі рухаў мышшу."
+msgstr "Калі ласка, зрабіце некалькі рухаў мышшу."
#: ../../mouse.pm:1
#, c-format
msgid "No mouse"
-msgstr "Няма мышы"
+msgstr "Няма мышы"
#: ../../mouse.pm:1
#, c-format
msgid "none"
-msgstr "няма"
+msgstr "РЅСЏРјР°"
#: ../../mouse.pm:1
#, c-format
msgid "3 buttons"
-msgstr "3 кнопкi"
+msgstr "3 РєРЅРѕРїРєi"
#: ../../mouse.pm:1
#, c-format
msgid "2 buttons"
-msgstr "2 кнопкi"
+msgstr "2 РєРЅРѕРїРєi"
#: ../../mouse.pm:1
#, fuzzy, c-format
msgid "1 button"
-msgstr "2 кнопкi"
+msgstr "2 РєРЅРѕРїРєi"
#: ../../mouse.pm:1
#, fuzzy, c-format
msgid "busmouse"
-msgstr "Няма мышы"
+msgstr "Няма мышы"
#: ../../mouse.pm:1
#, c-format
@@ -5584,7 +5557,7 @@ msgstr "Kensington Thinking Mouse"
#: ../../mouse.pm:1
#, c-format
msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Logitech Mouse (паслядоўная, стары тып C7)"
+msgstr "Logitech Mouse (паслядоўная, стары тып C7)"
#: ../../mouse.pm:1
#, c-format
@@ -5629,17 +5602,17 @@ msgstr "Microsoft IntelliMouse"
#: ../../mouse.pm:1
#, c-format
msgid "Generic 3 Button Mouse"
-msgstr "Звычайная мыш з 3 кнопкамі"
+msgstr "Звычайная мыш з 3 кнопкамі"
#: ../../mouse.pm:1
#, c-format
msgid "Generic 2 Button Mouse"
-msgstr "Звычайная мыш з 2 кнопкамі"
+msgstr "Звычайная мыш з 2 кнопкамі"
#: ../../mouse.pm:1
#, c-format
msgid "serial"
-msgstr "паслядоўная"
+msgstr "паслядоўная"
#: ../../mouse.pm:1
#, fuzzy, c-format
@@ -5649,12 +5622,12 @@ msgstr "Microsoft IntelliMouse"
#: ../../mouse.pm:1
#, c-format
msgid "Wheel"
-msgstr "З колам"
+msgstr "З колам"
#: ../../mouse.pm:1 ../../Xconfig/monitor.pm:1
#, c-format
msgid "Generic"
-msgstr "Агульны"
+msgstr "Агульны"
#: ../../mouse.pm:1
#, c-format
@@ -5669,7 +5642,7 @@ msgstr "GlidePoint"
#: ../../mouse.pm:1
#, fuzzy, c-format
msgid "Generic PS2 Wheel Mouse"
-msgstr "Звычайная мыш з 2 кнопкамі"
+msgstr "Звычайная мыш з 2 кнопкамі"
#: ../../mouse.pm:1
#, c-format
@@ -5679,37 +5652,37 @@ msgstr "Logitech MouseMan+"
#: ../../mouse.pm:1 ../../security/level.pm:1
#, c-format
msgid "Standard"
-msgstr "Стандартны"
+msgstr "Стандартны"
#: ../../mouse.pm:1
#, c-format
msgid "Sun - Mouse"
-msgstr "Sun - Мыш"
+msgstr "Sun - Мыш"
#: ../../my_gtk.pm:1 ../../ugtk2.pm:1
#, c-format
msgid "Toggle between flat and group sorted"
-msgstr "Пераключэнне памiж упарадкаваннем па групе i асобках"
+msgstr "Пераключэнне памiж упарадкаваннем па групе i асобках"
#: ../../my_gtk.pm:1 ../../ugtk2.pm:1
#, c-format
msgid "Collapse Tree"
-msgstr "Згарнуць дрэва"
+msgstr "Згарнуць дрэва"
#: ../../my_gtk.pm:1 ../../ugtk2.pm:1
#, c-format
msgid "Expand Tree"
-msgstr "Разгарнуць дрэва"
+msgstr "Разгарнуць дрэва"
#: ../../my_gtk.pm:1 ../../services.pm:1 ../../ugtk2.pm:1
#, c-format
msgid "Info"
-msgstr "Iнфармацыя"
+msgstr "Iнфармацыя"
#: ../../my_gtk.pm:1 ../../ugtk2.pm:1
#, c-format
msgid "Is this correct?"
-msgstr "Гэта дакладна?"
+msgstr "Гэта дакладна?"
#: ../../my_gtk.pm:1
#, c-format
@@ -5719,17 +5692,17 @@ msgstr ""
#: ../../partition_table.pm:1
#, c-format
msgid "Error writing to file %s"
-msgstr "Памылка запiсу ў файл %s"
+msgstr "Памылка запiсу ў файл %s"
#: ../../partition_table.pm:1
#, c-format
msgid "Bad backup file"
-msgstr "Дрэнны файл рэзервовай копii"
+msgstr "Дрэнны файл рэзервовай копii"
#: ../../partition_table.pm:1
#, c-format
msgid "Restoring from file %s failed: %s"
-msgstr "Аднаўленне з файла %s не атрымалася: %s"
+msgstr "Аднаўленне з файла %s не атрымалася: %s"
#: ../../partition_table.pm:1
#, c-format
@@ -5738,74 +5711,74 @@ msgid ""
"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) раздзелам"
+"Вы маеце дзiрку ў таблiцы радзелаў, але я не маю магчымасцi яе скарыстаць.\n"
+"Адзiны выхад у тым, каб перамясцiць першасныя раздзелы так, каб дзiрка iшла\n"
+"адразу за пашыраным (extended) раздзелам"
#: ../../partition_table.pm:1
#, c-format
msgid "Extended partition not supported on this platform"
-msgstr "Пашыраны раздзел не падтрымлiваецца гэтай платформай"
+msgstr "Пашыраны раздзел не падтрымлiваецца гэтай платформай"
#: ../../partition_table.pm:1
#, c-format
msgid "mount failed: "
-msgstr "памылка манцiравання: "
+msgstr "памылка манцiравання: "
#: ../../pkgs.pm:1
#, c-format
msgid "maybe"
-msgstr "можа быць"
+msgstr "можа быць"
#: ../../pkgs.pm:1
#, c-format
msgid "nice"
-msgstr "добра"
+msgstr "РґРѕР±СЂР°"
#: ../../pkgs.pm:1
#, c-format
msgid "very nice"
-msgstr "вельмi добра"
+msgstr "вельмi добра"
#: ../../pkgs.pm:1
#, c-format
msgid "important"
-msgstr "важна"
+msgstr "важна"
#: ../../pkgs.pm:1
#, c-format
msgid "must have"
-msgstr "павiнны мець"
+msgstr "павiнны мець"
#: ../../raid.pm:1
#, c-format
msgid "Not enough partitions for RAID level %d\n"
-msgstr "Недастаткова раздзелаў для RAID узроўня %d\n"
+msgstr "Недастаткова раздзелаў для RAID узроўня %d\n"
#: ../../raid.pm:1
#, c-format
msgid "mkraid failed"
-msgstr "mkraid не працаздольны"
+msgstr "mkraid не працаздольны"
#: ../../raid.pm:1
#, c-format
msgid "mkraid failed (maybe raidtools are missing?)"
-msgstr "mkraid не працаздольны (можа raid прылады адсутнiчаюць?)"
+msgstr "mkraid не працаздольны (можа raid прылады адсутнiчаюць?)"
#: ../../raid.pm:1
#, c-format
msgid "Can't add a partition to _formatted_ RAID md%d"
-msgstr "Не атрымлiваецца дадаць раздзел на _адфармацiраваны_ RAID md%d"
+msgstr "Не атрымлiваецца дадаць раздзел на _адфармацiраваны_ RAID md%d"
#: ../../services.pm:1
#, fuzzy, c-format
msgid "Stop"
-msgstr "Сектар"
+msgstr "Сектар"
#: ../../services.pm:1
#, fuzzy, c-format
msgid "Start"
-msgstr "Стартавае меню"
+msgstr "Стартавае меню"
#: ../../services.pm:1
#, fuzzy, c-format
@@ -5827,27 +5800,27 @@ msgstr ""
#: ../../services.pm:1
#, fuzzy, c-format
msgid "stopped"
-msgstr "Далучыць"
+msgstr "Далучыць"
#: ../../services.pm:1
#, fuzzy, c-format
msgid "running"
-msgstr "Увага!"
+msgstr "Увага!"
#: ../../services.pm:1
#, c-format
msgid "Choose which services should be automatically started at boot time"
-msgstr "Абярыце, якiя сервiсы запускаць аўтаматычна пры загрузцы"
+msgstr "Абярыце, якiя сервiсы запускаць аўтаматычна пры загрузцы"
#: ../../services.pm:1
#, fuzzy, c-format
msgid "Database Server"
-msgstr "Сервер друку"
+msgstr "Сервер друку"
#: ../../services.pm:1
#, fuzzy, c-format
msgid "Remote Administration"
-msgstr "Опцыi аддаленага прынтэру lpd"
+msgstr "Опцыi аддаленага прынтэру lpd"
#: ../../services.pm:1
#, c-format
@@ -5857,17 +5830,17 @@ msgstr ""
#: ../../services.pm:1
#, fuzzy, c-format
msgid "Internet"
-msgstr "цiкава"
+msgstr "цiкава"
#: ../../services.pm:1
#, fuzzy, c-format
msgid "Printing"
-msgstr "Прынтэр"
+msgstr "Прынтэр"
#: ../../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."
+msgstr "Запускае i прыпыняе X Font Server пры загрузцы i выключэннi."
#: ../../services.pm:1
#, c-format
@@ -5880,9 +5853,9 @@ 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я дэманы запiсваюць "
-"паведамленнi\n"
-"ў розныя файлы статыстыкi. Гэта вельмi добра для агляду працы розных службаў."
+"Syslog - гэта сродак, з дапамогай якога многiя дэманы запiсваюць "
+"паведамленнi\n"
+"ў розныя файлы статыстыкi. Гэта вельмi добра для агляду працы розных службаў."
#: ../../services.pm:1
#, c-format
@@ -5895,8 +5868,8 @@ 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)."
+"Пратакол rwho дае магчымасць карыстальнiкам атрымаць спiс ўсiх\n"
+"карыстальнiкаў, увайшоўшых на машыну, выканаў rwho дэман (падобны на finger)."
#: ../../services.pm:1
#, c-format
@@ -5904,8 +5877,8 @@ 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 працуе на машынах ў сетцы."
+"Пратакол rusers дазваляе карыстальнiкам сеткi вызначаць, хто\n"
+"ўвайшоў i працуе на машынах ў сетцы."
#: ../../services.pm:1
#, c-format
@@ -5913,8 +5886,8 @@ 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."
+"Пратакол rstat дазваляе карыстальнiкам сеткi атрымлiваць\n"
+"памеры нагрузкi для кожнай машыны сеткi."
#: ../../services.pm:1
#, c-format
@@ -5923,9 +5896,9 @@ msgid ""
"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х сетках."
+"Дэман маршрутызацыi дазваляе дынамiчным таблiцам IP маршрутызацыi\n"
+"аднаўляцца праз RIP пратакол. RIP выкарыстоўваецца ў малых сетках, больш\n"
+"складаныя пратаколы маршрутызацыi - у вялiкiх сетках."
#: ../../services.pm:1
#, c-format
@@ -5940,8 +5913,8 @@ msgid ""
"Saves and restores system entropy pool for higher quality random\n"
"number generation."
msgstr ""
-"Захаваць i аднавiць сiстэмны энтрапiйны пул для высокай якасцi\n"
-"генерацыі выпадковых лікаў."
+"Захаваць i аднавiць сiстэмны энтрапiйны пул для высокай якасцi\n"
+"генерацыі выпадковых лікаў."
#: ../../services.pm:1
#, fuzzy, c-format
@@ -5949,8 +5922,8 @@ msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
"one machine to another."
msgstr ""
-"Postfix - гэта паштовы транспартны агент, праграма, якая\n"
-"перамяшчае пошту з адной машыны на йншую."
+"Postfix - гэта паштовы транспартны агент, праграма, якая\n"
+"перамяшчае пошту з адной машыны на йншую."
#: ../../services.pm:1
#, c-format
@@ -5960,10 +5933,10 @@ msgid ""
"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."
+"Portmapper (аглядальнiк партоў) кiруе RPC злучэннямi, якiя звычайна\n"
+"выкарыстоўваюцца такiмi пратаколамi як NFS i NIS. Portmap сервер павiнен "
+"выконвацца\n"
+"на машынах якiя працуюць як серверы для пратаколаў, якiя скарыстоўваюць RPC."
#: ../../services.pm:1
#, c-format
@@ -5973,9 +5946,9 @@ msgid ""
"have\n"
"it installed on machines that don't need it."
msgstr ""
-"Падтрымка PCMCIA - гэта звычайна падтрымка такiх рэчаў, як Ethernet i\n"
-"мадэмы ў наўтбуках. Вам няма неабходнасцi канфiгураваць iх, калi на вашай\n"
-"машыне iх няма, цi яна не наўтбук."
+"Падтрымка PCMCIA - гэта звычайна падтрымка такiх рэчаў, як Ethernet i\n"
+"мадэмы ў наўтбуках. Вам няма неабходнасцi канфiгураваць iх, калi на вашай\n"
+"машыне iх няма, цi яна не наўтбук."
#: ../../services.pm:1
#, c-format
@@ -5995,8 +5968,8 @@ 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."
+"NFS - гэта вядомы пратакол для доступу да файлаў праз TCP/IP\n"
+"сеткi. Гэтая служба ўплывае на наяўнасць сувязi памiж NFS файламi."
#: ../../services.pm:1
#, c-format
@@ -6005,9 +5978,9 @@ msgid ""
"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 файл."
+"NFS - гэта вядомы пратакол для доступу да файлаў праз TCP/IP сеткi.\n"
+"Гэтая служба забяспечваецца NFS серверам, якi канфiгурыруеца праз\n"
+"/etc/exports файл."
#: ../../services.pm:1
#, c-format
@@ -6015,8 +5988,8 @@ msgid ""
"Activates/Deactivates all network interfaces configured to start\n"
"at boot time."
msgstr ""
-"Актывiзаваць/дэактывiзаваць усе сеткавыя iнтэрфейсы, сканфiгураваныя для\n"
-"старту пры загрузцы сiстэмы."
+"Актывiзаваць/дэактывiзаваць усе сеткавыя iнтэрфейсы, сканфiгураваныя для\n"
+"старту пры загрузцы сiстэмы."
#: ../../services.pm:1
#, c-format
@@ -6024,8 +5997,8 @@ 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равання."
+"Манцiраваць i разманцiраваць усе сеткавыя файлавыя сiстэмы (NFS),\n"
+" SMB (Lan Manager/Windows) i NCP (Netware) пункты манцiравання."
#: ../../services.pm:1
#, fuzzy, c-format
@@ -6033,8 +6006,8 @@ 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 адрасы."
+"named (BIND) - гэта сервер даменных iмёнаў, якi выкарыстоўваецца для\n"
+"перакладання iмён вузлоў у IP адрасы."
#: ../../services.pm:1
#, c-format
@@ -6049,8 +6022,8 @@ 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руе працай прынтэру(аў)."
+"lpd - гэты дэман друку, патрэбны для карэктнай працы lpr. Гэта\n"
+"сервер, якi кiруе працай прынтэру(аў)."
#: ../../services.pm:1
#, c-format
@@ -6078,10 +6051,10 @@ msgid ""
"/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. Ёна можа быць абрана таксама з дапамогай "
+"Гэты пакет загружае абраную раскладку клавiятуры як набор з\n"
+"/etc/sysconfig/keyboard. Ёна можа быць абрана таксама з дапамогай "
"kbdconfig.\n"
-"Вы можаце зрабiць даступнай яе для шматлікіх машынаў."
+"Вы можаце зрабiць даступнай яе для шматлікіх машынаў."
#: ../../services.pm:1
#, c-format
@@ -6100,20 +6073,20 @@ msgid ""
"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я ён адказвае."
+"Iнтэрнэт суперсервер-дэман (завецца inetd) запускае пры старце \n"
+"колькасць розных iнтэрнэт службаў, якiя неабходны. Яго можна выкарыстоўваць "
+"для пуску\n"
+"шматлікіх службаў, уключаючы telnet, ftp, rsh i rlogin. Блакуючы inetd, "
+"блакуем\n"
+"усе службы, за якiя ён адказвае."
#: ../../services.pm:1
#, c-format
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
-"Apache - гэта World Wide Web сервер. Ён выкарыстоўзваеца для абслугоўвання\n"
-"HTML файлаў i CGI."
+"Apache - гэта World Wide Web сервер. Ён выкарыстоўзваеца для абслугоўвання\n"
+"HTML файлаў i CGI."
#: ../../services.pm:1
#, c-format
@@ -6130,10 +6103,10 @@ msgid ""
"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) меню ў тэкставым рэжыме."
+"GPM дадае падтрымку мышы да праграмаў, якiя працуюць у тэкставым рэжыме,\n"
+"такiх як Midnight Commander. Гэта дазваляе выкарыстоўваць мыш пры "
+"капiраваннi i ўстаўцы,\n"
+"i ўключае падтрымку ўсплываючых (pop-up) меню ў тэкставым рэжыме."
#: ../../services.pm:1
#, c-format
@@ -6143,10 +6116,10 @@ msgid ""
"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."
+"cron - стандартная UNIX праграма, якая выконвае праграмы карыстальнiка\n"
+"праз пазначаныя перыяды часу. Vixie cron дадае рад дапаўненняў да "
+"стандартнага\n"
+"UNIX cron, уключаючы лепшы ўзровень бяспекi i моцныя канфiгурацыйныя опцыi."
#: ../../services.pm:1
#, c-format
@@ -6154,8 +6127,8 @@ 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 ""
-"Каманды, якiя выконваюцца, фiксуюцца па камандзе i часе яе выканання\n"
-"i выконваюцца групы каманд, калi загрузка памяцi нiжэй дастатковай."
+"Каманды, якiя выконваюцца, фiксуюцца па камандзе i часе яе выканання\n"
+"i выконваюцца групы каманд, калi загрузка памяцi нiжэй дастатковай."
#: ../../services.pm:1
#, c-format
@@ -6163,14 +6136,14 @@ 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 ""
-"ampd выкарыстоўваецца для адслежвання статусу батарэi i вядзення "
-"статыстыкi.\n"
-"Яго можна выкарыстоўваць для выключэння машыны пры нiзкiм зарадзе батарэi."
+"ampd выкарыстоўваецца для адслежвання статусу батарэi i вядзення "
+"статыстыкi.\n"
+"Яго можна выкарыстоўваць для выключэння машыны пры нiзкiм зарадзе батарэi."
#: ../../services.pm:1
#, c-format
msgid "Anacron is a periodic command scheduler."
-msgstr "Anacron, перыядычны камандны планавальнiк."
+msgstr "Anacron, перыядычны камандны планавальнiк."
#: ../../services.pm:1
#, c-format
@@ -6180,7 +6153,7 @@ msgstr ""
#: ../../standalone.pm:1
#, fuzzy, c-format
msgid "Installing packages..."
-msgstr "Усталяванне пакету %s"
+msgstr "Усталяванне пакету %s"
#: ../../standalone.pm:1
#, c-format
@@ -6244,7 +6217,7 @@ msgstr ""
#: ../../standalone.pm:1
#, fuzzy, c-format
msgid "[keyboard]"
-msgstr "Клавiятура"
+msgstr "Клавiятура"
#: ../../standalone.pm:1
#, c-format
@@ -6329,82 +6302,82 @@ msgstr ""
#: ../../steps.pm:1
#, c-format
msgid "Exit install"
-msgstr "Заканчэнне ўсталявання"
+msgstr "Заканчэнне ўсталявання"
#: ../../steps.pm:1
#, fuzzy, c-format
msgid "Install updates"
-msgstr "Усталяванне сiстэмы"
+msgstr "Усталяванне сiстэмы"
#: ../../steps.pm:1
#, c-format
msgid "Configure services"
-msgstr "Настройка службаў"
+msgstr "Настройка службаў"
#: ../../steps.pm:1
#, c-format
msgid "Configure X"
-msgstr "Настройка X Window"
+msgstr "Настройка X Window"
#: ../../steps.pm:1
#, c-format
msgid "Install bootloader"
-msgstr "Усталяванне загрузчыку"
+msgstr "Усталяванне загрузчыку"
#: ../../steps.pm:1
#, c-format
msgid "Configure networking"
-msgstr "Настройка сеткi"
+msgstr "Настройка сеткi"
#: ../../steps.pm:1
#, c-format
msgid "Add a user"
-msgstr "Дадаць карыстальнiка"
+msgstr "Дадаць карыстальнiка"
#: ../../steps.pm:1
#, c-format
msgid "Root password"
-msgstr "Пароль для root"
+msgstr "Пароль для root"
#: ../../steps.pm:1
#, c-format
msgid "Install system"
-msgstr "Усталяванне сiстэмы"
+msgstr "Усталяванне сiстэмы"
#: ../../steps.pm:1
#, c-format
msgid "Choose packages to install"
-msgstr "Выбар пакетаў"
+msgstr "Выбар пакетаў"
#: ../../steps.pm:1
#, c-format
msgid "Format partitions"
-msgstr "Фарматаванне раздзелаў"
+msgstr "Фарматаванне раздзелаў"
#: ../../steps.pm:1
#, fuzzy, c-format
msgid "Partitioning"
-msgstr "Прынтэр"
+msgstr "Прынтэр"
#: ../../steps.pm:1
#, c-format
msgid "Choose your keyboard"
-msgstr "Выбар клавiятуры"
+msgstr "Выбар клавiятуры"
#: ../../steps.pm:1
#, c-format
msgid "Select installation class"
-msgstr "Клас усталявання"
+msgstr "Клас усталявання"
#: ../../steps.pm:1
#, c-format
msgid "Hard drive detection"
-msgstr "Вызначэнне жорсткага дыску"
+msgstr "Вызначэнне жорсткага дыску"
#: ../../steps.pm:1
#, c-format
msgid "Configure mouse"
-msgstr "Настройка мышы"
+msgstr "Настройка мышы"
#: ../../steps.pm:1
#, c-format
@@ -6414,7 +6387,7 @@ msgstr ""
#: ../../steps.pm:1
#, c-format
msgid "Language"
-msgstr "Выбар мовы"
+msgstr "Выбар мовы"
#: ../../ugtk2.pm:1
#, c-format
@@ -6450,27 +6423,27 @@ msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
msgstr ""
-"Ваша вiдэакарта можа мець 3D-паскарэнне, якое падтрымлiваецца толькi XFree %"
+"Ваша вiдэакарта можа мець 3D-паскарэнне, якое падтрымлiваецца толькi XFree %"
"s.\n"
-"МАЙЦЕ НА ЎВАЗЕ, ШТО ГЭТА ЭКСПЕРЫМЕНТАЛЬНАЯ ПАДТРЫМКА I МОЖА ПРЫВЕСЦI ДА\n"
-"ЗАВIСАННЯ ВАШАГА КАМП'ЮТЭРУ."
+"МАЙЦЕ НА ЎВАЗЕ, ШТО ГЭТА ЭКСПЕРЫМЕНТАЛЬНАЯ ПАДТРЫМКА I МОЖА ПРЫВЕСЦI ДА\n"
+"ЗАВIСАННЯ ВАШАГА КАМП'ЮТЭРУ."
#: ../../Xconfig/card.pm:1
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
-msgstr "XFree %s з эксперыментальнай падтрымкай 3D-паскарэння"
+msgstr "XFree %s з эксперыментальнай падтрымкай 3D-паскарэння"
#: ../../Xconfig/card.pm:1
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
-"Ваша вiдэакарта можа мець 3D-паскарэнне, якое падтрымлiваецца толькi XFree %"
+"Ваша вiдэакарта можа мець 3D-паскарэнне, якое падтрымлiваецца толькi XFree %"
"s."
#: ../../Xconfig/card.pm:1 ../../Xconfig/various.pm:1
#, c-format
msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s з падтрымкай 3D-паскарэння"
+msgstr "XFree %s з падтрымкай 3D-паскарэння"
#: ../../Xconfig/card.pm:1
#, c-format
@@ -6479,11 +6452,11 @@ msgid ""
"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 %"
+"Ваша вiдэакарта можа мець 3D-паскарэнне, якое падтрымлiваецца толькi XFree %"
"s.\n"
-"МАЙЦЕ НА ЎВАЗЕ, ШТО ГЭТА ЭКСПЕРЫМЕНТАЛЬНАЯ ПАДТРЫМКА I МОЖА ПРЫВЕСЦI ДА\n"
-"ЗАВIСАННЯ ВАШАГА КАМП'ЮТЭРУ. Ваша вiдэакарта падтрымлiваецца XFree %s, якi\n"
-"лепей падтрымлiвае карты з 2D-паскарэннем."
+"МАЙЦЕ НА ЎВАЗЕ, ШТО ГЭТА ЭКСПЕРЫМЕНТАЛЬНАЯ ПАДТРЫМКА I МОЖА ПРЫВЕСЦI ДА\n"
+"ЗАВIСАННЯ ВАШАГА КАМП'ЮТЭРУ. Ваша вiдэакарта падтрымлiваецца XFree %s, якi\n"
+"лепей падтрымлiвае карты з 2D-паскарэннем."
#: ../../Xconfig/card.pm:1
#, c-format
@@ -6491,18 +6464,18 @@ 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-паскарэнне для гэтай відэакарты."
+"Падтрымка 3D-паскарэння ў Вашай відэакарце выканана толькі ў XFree %s.\n"
+"XFree %s можа выкарыстоўваць толькі 2D-паскарэнне для гэтай відэакарты."
#: ../../Xconfig/card.pm:1 ../../Xconfig/various.pm:1
#, c-format
msgid "XFree %s"
-msgstr "Сервер XFree86 %s"
+msgstr "Сервер XFree86 %s"
#: ../../Xconfig/card.pm:1
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
-msgstr "Канфiгураваць маю карту"
+msgstr "Канфiгураваць маю карту"
#: ../../Xconfig/card.pm:1
#, c-format
@@ -6517,17 +6490,17 @@ msgstr ""
#: ../../Xconfig/card.pm:1
#, c-format
msgid "Which configuration of XFree do you want to have?"
-msgstr "Якую канфiгурацыю XFree вы жадаеце атрымаць?"
+msgstr "Якую канфiгурацыю XFree вы жадаеце атрымаць?"
#: ../../Xconfig/card.pm:1
#, c-format
msgid "XFree configuration"
-msgstr "Настройка XFree"
+msgstr "Настройка XFree"
#: ../../Xconfig/card.pm:1
#, c-format
msgid "Select the memory size of your graphics card"
-msgstr "Пазначце памер вiдэапамяцi"
+msgstr "Пазначце памер вiдэапамяцi"
#: ../../Xconfig/card.pm:1
#, c-format
@@ -6539,62 +6512,62 @@ msgstr ""
#: ../../Xconfig/card.pm:1
#, fuzzy, c-format
msgid "Multi-head configuration"
-msgstr "чытанне настройкi"
+msgstr "чытанне настройкi"
#: ../../Xconfig/card.pm:1
#, fuzzy, c-format
msgid "Choose an X server"
-msgstr "Абярыце X сервер"
+msgstr "Абярыце X сервер"
#: ../../Xconfig/card.pm:1
#, c-format
msgid "X server"
-msgstr "X сервер"
+msgstr "X сервер"
#: ../../Xconfig/card.pm:1
#, c-format
msgid "64 MB or more"
-msgstr "64 Мб цi болей"
+msgstr "64 Мб цi болей"
#: ../../Xconfig/card.pm:1
#, c-format
msgid "32 MB"
-msgstr "32 Мб"
+msgstr "32 РњР±"
#: ../../Xconfig/card.pm:1
#, c-format
msgid "16 MB"
-msgstr "16 Мб"
+msgstr "16 РњР±"
#: ../../Xconfig/card.pm:1
#, c-format
msgid "8 MB"
-msgstr "8 Мб"
+msgstr "8 РњР±"
#: ../../Xconfig/card.pm:1
#, c-format
msgid "4 MB"
-msgstr "4 Мб"
+msgstr "4 РњР±"
#: ../../Xconfig/card.pm:1
#, c-format
msgid "2 MB"
-msgstr "2 Мб"
+msgstr "2 РњР±"
#: ../../Xconfig/card.pm:1
#, c-format
msgid "1 MB"
-msgstr "1 Мб"
+msgstr "1 РњР±"
#: ../../Xconfig/card.pm:1
#, c-format
msgid "512 kB"
-msgstr "512 Кб"
+msgstr "512 РљР±"
#: ../../Xconfig/card.pm:1
#, c-format
msgid "256 kB"
-msgstr "256 Кб"
+msgstr "256 РљР±"
#: ../../Xconfig/main.pm:1
#, c-format
@@ -6604,8 +6577,8 @@ msgid ""
"\n"
"%s"
msgstr ""
-"Ці жадаеце Вы захаваць змяненні?\n"
-"Бягучая канфігурацыя:\n"
+"Ці жадаеце Вы захаваць змяненні?\n"
+"Бягучая канфігурацыя:\n"
"\n"
"%s"
@@ -6614,7 +6587,7 @@ msgstr ""
#: ../../diskdrake/smbnfs_gtk.pm:1 ../../standalone/harddrake2:1
#, c-format
msgid "Options"
-msgstr "Опцыi"
+msgstr "Опцыi"
#: ../../Xconfig/main.pm:1
#, c-format
@@ -6624,27 +6597,27 @@ msgstr ""
#: ../../Xconfig/main.pm:1 ../../Xconfig/resolution_and_depth.pm:1
#, c-format
msgid "Resolution"
-msgstr "Памеры экрану"
+msgstr "Памеры экрану"
#: ../../Xconfig/main.pm:1 ../../Xconfig/monitor.pm:1
#, c-format
msgid "Monitor"
-msgstr "Манiтор"
+msgstr "Манiтор"
#: ../../Xconfig/main.pm:1
#, fuzzy, c-format
msgid "Graphic Card"
-msgstr "Вiдэакарта"
+msgstr "Вiдэакарта"
#: ../../Xconfig/monitor.pm:1
#, c-format
msgid "Vertical refresh rate"
-msgstr "Часціня вертыкальнай разгорткi"
+msgstr "Часціня вертыкальнай разгорткi"
#: ../../Xconfig/monitor.pm:1
#, c-format
msgid "Horizontal refresh rate"
-msgstr "Часціня гарызантальный разгорткi"
+msgstr "Часціня гарызантальный разгорткi"
#: ../../Xconfig/monitor.pm:1
#, c-format
@@ -6660,15 +6633,15 @@ msgid ""
"monitor.\n"
" If in doubt, choose a conservative setting."
msgstr ""
-"Два крытычных параметры - гэта часціня вертыкальнай разгорткi, цi\n"
-"часціня аднаўлення ўсяго экрану, а таксама болей важны параметр -\n"
-"часціня гарызантальнай сiнхранiзацыi разгорткi, цi часціня вываду\n"
-"радкоў экрану.\n"
+"Два крытычных параметры - гэта часціня вертыкальнай разгортк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."
+"ВЕЛЬМI ВАЖНА, каб абраны вамi манiтор меў часціню сiнхранiзацыi, якая\n"
+"не перавышае фактычныя магчымасцi вашага манiтору: у процiлеглым выпадку\n"
+"вы можаце сапсаваць манiтор.\n"
+"Калi вы сумняваецеся, абярыце кансерватыўныя настройкi."
#: ../../Xconfig/monitor.pm:1
#, c-format
@@ -6678,7 +6651,7 @@ msgstr ""
#: ../../Xconfig/monitor.pm:1 ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "Vendor"
-msgstr "Адкат"
+msgstr "Адкат"
#: ../../Xconfig/monitor.pm:1
#, c-format
@@ -6688,57 +6661,57 @@ msgstr ""
#: ../../Xconfig/monitor.pm:1
#, c-format
msgid "Choose a monitor"
-msgstr "Абярыце манiтор"
+msgstr "Абярыце манiтор"
#: ../../Xconfig/resolution_and_depth.pm:1
#, c-format
msgid "Graphics card: %s"
-msgstr "Вiдэакарта: %s"
+msgstr "Вiдэакарта: %s"
#: ../../Xconfig/resolution_and_depth.pm:1
#, c-format
msgid "Choose the resolution and the color depth"
-msgstr "Выбар памераў экрану i глыбiнi колеру"
+msgstr "Выбар памераў экрану i глыбiнi колеру"
#: ../../Xconfig/resolution_and_depth.pm:1
#, c-format
msgid "Resolutions"
-msgstr "Памеры экрану"
+msgstr "Памеры экрану"
#: ../../Xconfig/resolution_and_depth.pm:1
#, c-format
msgid "4 billion colors (32 bits)"
-msgstr "4 мiлiярда колераў (24 бiты)"
+msgstr "4 мiлiярда колераў (24 бiты)"
#: ../../Xconfig/resolution_and_depth.pm:1
#, c-format
msgid "16 million colors (24 bits)"
-msgstr "16 мiльёнаў колераў (24 бiты)"
+msgstr "16 мiльёнаў колераў (24 бiты)"
#: ../../Xconfig/resolution_and_depth.pm:1
#, c-format
msgid "65 thousand colors (16 bits)"
-msgstr "65 тысяч колераў (16 бiтаў)"
+msgstr "65 тысяч колераў (16 бiтаў)"
#: ../../Xconfig/resolution_and_depth.pm:1
#, c-format
msgid "32 thousand colors (15 bits)"
-msgstr "32 тысячы колераў (15 бiтаў)"
+msgstr "32 тысячы колераў (15 бiтаў)"
#: ../../Xconfig/resolution_and_depth.pm:1
#, c-format
msgid "256 colors (8 bits)"
-msgstr "256 колераў (8 бiтаў)"
+msgstr "256 колераў (8 бiтаў)"
#: ../../Xconfig/test.pm:1
#, fuzzy, c-format
msgid "Is this the correct setting?"
-msgstr "Гэта дакладна?"
+msgstr "Гэта дакладна?"
#: ../../Xconfig/test.pm:1
#, fuzzy, c-format
msgid "Leaving in %d seconds"
-msgstr "%d секундаў"
+msgstr "%d секундаў"
#: ../../Xconfig/test.pm:1
#, c-format
@@ -6751,22 +6724,22 @@ msgstr ""
#: ../../Xconfig/test.pm:1
#, fuzzy, c-format
msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Папярэджанне: тэсцiраванне на гэтай вiдэакарце небяспечна"
+msgstr "Папярэджанне: тэсцiраванне на гэтай вiдэакарце небяспечна"
#: ../../Xconfig/test.pm:1
#, c-format
msgid "Do you want to test the configuration?"
-msgstr "Цi жадаеце пратэсцiраваць настройкi?"
+msgstr "Цi жадаеце пратэсцiраваць настройкi?"
#: ../../Xconfig/test.pm:1
#, c-format
msgid "Test of the configuration"
-msgstr "Праверка параметраў настройкi"
+msgstr "Праверка параметраў настройкi"
#: ../../Xconfig/various.pm:1
#, fuzzy, c-format
msgid "What norm is your TV using?"
-msgstr "Якi тып вашага ISDN злучэння?"
+msgstr "Якi тып вашага ISDN злучэння?"
#: ../../Xconfig/various.pm:1
#, c-format
@@ -6788,88 +6761,88 @@ msgid ""
"(XFree) upon booting.\n"
"Would you like XFree to start when you reboot?"
msgstr ""
-"Можна настроiць сiстэму для аўтаматычнага запуску X пасля старту сiстэмы.\n"
-"Жадаеце, каб X стартаваў пры рэстарце?"
+"Можна настроiць сiстэму для аўтаматычнага запуску X пасля старту сiстэмы.\n"
+"Жадаеце, каб X стартаваў пры рэстарце?"
#: ../../Xconfig/various.pm:1
#, c-format
msgid "Graphical interface at startup"
-msgstr "Запуск X пры старце сiстэмы"
+msgstr "Запуск X пры старце сiстэмы"
#: ../../Xconfig/various.pm:1
#, c-format
msgid "XFree86 driver: %s\n"
-msgstr "Сервер XFree86: %s\n"
+msgstr "Сервер XFree86: %s\n"
#: ../../Xconfig/various.pm:1
#, c-format
msgid "XFree86 server: %s\n"
-msgstr "Сервер XFree86: %s\n"
+msgstr "Сервер XFree86: %s\n"
#: ../../Xconfig/various.pm:1
#, c-format
msgid "Resolution: %s\n"
-msgstr "Памеры экрану: %s\n"
+msgstr "Памеры экрану: %s\n"
#: ../../Xconfig/various.pm:1
#, c-format
msgid "Color depth: %s\n"
-msgstr "Параметры глыбiнi колеру: %s\n"
+msgstr "Параметры глыбiнi колеру: %s\n"
#: ../../Xconfig/various.pm:1
#, c-format
msgid "Graphics memory: %s kB\n"
-msgstr "Вiдэапамяць: %s Кб\n"
+msgstr "Вiдэапамяць: %s Кб\n"
#: ../../Xconfig/various.pm:1
#, c-format
msgid "Graphics card: %s\n"
-msgstr "Вiдэакарта: %s\n"
+msgstr "Вiдэакарта: %s\n"
#: ../../Xconfig/various.pm:1
#, c-format
msgid "Monitor VertRefresh: %s\n"
-msgstr "Часціня верт.разг. манiтору: %s\n"
+msgstr "Часціня верт.разг. манiтору: %s\n"
#: ../../Xconfig/various.pm:1
#, c-format
msgid "Monitor HorizSync: %s\n"
-msgstr "Часціня гар.разг. манiтору: %s\n"
+msgstr "Часціня гар.разг. манiтору: %s\n"
#: ../../Xconfig/various.pm:1
#, c-format
msgid "Monitor: %s\n"
-msgstr "Манiтор: %s\n"
+msgstr "Манiтор: %s\n"
#: ../../Xconfig/various.pm:1
#, c-format
msgid "Mouse device: %s\n"
-msgstr "Мыш: %s\n"
+msgstr "Мыш: %s\n"
#: ../../Xconfig/various.pm:1
#, c-format
msgid "Mouse type: %s\n"
-msgstr "Тып мышы: %s\n"
+msgstr "Тып мышы: %s\n"
#: ../../Xconfig/various.pm:1
#, c-format
msgid "Keyboard layout: %s\n"
-msgstr "Тып клавiятуры: %s\n"
+msgstr "Тып клавiятуры: %s\n"
#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
#, c-format
msgid "Options: %s"
-msgstr "Опцыi: %s"
+msgstr "Опцыi: %s"
#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
#, c-format
msgid "Mount point: "
-msgstr "Пункт манцiравання:"
+msgstr "Пункт манцiравання:"
#: ../../diskdrake/dav.pm:1
#, fuzzy, c-format
msgid "Server: "
-msgstr "сервер"
+msgstr "сервер"
#: ../../diskdrake/dav.pm:1
#, c-format
@@ -6879,35 +6852,35 @@ msgstr ""
#: ../../diskdrake/dav.pm:1
#, fuzzy, c-format
msgid "Please enter the WebDAV server URL"
-msgstr "Калі ласка, зрабіце некалькі рухаў мышшу."
+msgstr "Калі ласка, зрабіце некалькі рухаў мышшу."
#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
#: ../../diskdrake/removable.pm:1 ../../diskdrake/smbnfs_gtk.pm:1
#, c-format
msgid "Mount point"
-msgstr "Кропка манцiравання"
+msgstr "Кропка манцiравання"
#: ../../diskdrake/dav.pm:1
#, fuzzy, c-format
msgid "Server"
-msgstr "сервер"
+msgstr "сервер"
#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
#: ../../diskdrake/smbnfs_gtk.pm:1
#, c-format
msgid "Mount"
-msgstr "Манцiраванне"
+msgstr "Манцiраванне"
#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
#: ../../diskdrake/smbnfs_gtk.pm:1
#, c-format
msgid "Unmount"
-msgstr "Разманцiраваць"
+msgstr "Разманцiраваць"
#: ../../diskdrake/dav.pm:1
#, c-format
msgid "New"
-msgstr "Новы"
+msgstr "РќРѕРІС‹"
#: ../../diskdrake/dav.pm:1
#, c-format
@@ -6921,43 +6894,43 @@ msgstr ""
#: ../../diskdrake/hd_gtk.pm:1
#, c-format
msgid "Use ``%s'' instead"
-msgstr "Выкарыстоўвайце ``%s'' замест"
+msgstr "Выкарыстоўвайце ``%s'' замест"
#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
#: ../../diskdrake/removable.pm:1 ../../standalone/harddrake2:1
#, c-format
msgid "Type"
-msgstr "Тып"
+msgstr "Тып"
#: ../../diskdrake/hd_gtk.pm:1
#, c-format
msgid "Use ``Unmount'' first"
-msgstr "Спачатку зрабiце ``Unmount''"
+msgstr "Спачатку зрабiце ``Unmount''"
#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
#, c-format
msgid "Delete"
-msgstr "Знiшчыць"
+msgstr "Знiшчыць"
#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
#, c-format
msgid "Create"
-msgstr "Стварыць"
+msgstr "Стварыць"
#: ../../diskdrake/hd_gtk.pm:1
#, c-format
msgid "Filesystem types:"
-msgstr "Тыпы файлавых сiстэмаў:"
+msgstr "Тыпы файлавых сiстэмаў:"
#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
#, c-format
msgid "Empty"
-msgstr "Пуста"
+msgstr "Пуста"
#: ../../diskdrake/hd_gtk.pm:1
#, fuzzy, c-format
msgid "Windows"
-msgstr "Навуковыя прыкладанні"
+msgstr "Навуковыя прыкладанні"
#: ../../diskdrake/hd_gtk.pm:1
#, c-format
@@ -6977,7 +6950,7 @@ msgstr "Swap"
#: ../../diskdrake/hd_gtk.pm:1
#, fuzzy, c-format
msgid "Journalised FS"
-msgstr "памылка манцiравання"
+msgstr "памылка манцiравання"
#: ../../diskdrake/hd_gtk.pm:1
#, c-format
@@ -6987,12 +6960,12 @@ msgstr "Ext2"
#: ../../diskdrake/hd_gtk.pm:1
#, fuzzy, c-format
msgid "No hard drives found"
-msgstr "Лакальны прынтэр"
+msgstr "Лакальны прынтэр"
#: ../../diskdrake/hd_gtk.pm:1
#, c-format
msgid "Please click on a partition"
-msgstr "Націсніце на раздзел"
+msgstr "Націсніце на раздзел"
#: ../../diskdrake/hd_gtk.pm:1
#, fuzzy, c-format
@@ -7001,20 +6974,20 @@ msgid ""
"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це на яго, а потым на \"змяненне памераў\")"
+"Зараз вы маеце толькi адзiн вялiкi раздзел FAT\n"
+"(які звычайна выкарыстоўвае MS Dos/Windows).\n"
+"Прапаную, па-першае, змянiць памеры раздзела\n"
+"(клiкнiце на яго, а потым на \"змяненне памераў\")"
#: ../../diskdrake/hd_gtk.pm:1
#, c-format
msgid "Choose action"
-msgstr "Абярыце дзеянне"
+msgstr "Абярыце дзеянне"
#: ../../diskdrake/hd_gtk.pm:1
#, c-format
msgid "Wizard"
-msgstr "Майстар стварэння"
+msgstr "Майстар стварэння"
#: ../../diskdrake/hd_gtk.pm:1
#, c-format
@@ -7023,18 +6996,18 @@ msgid ""
"enough)\n"
"at the beginning of the disk"
msgstr ""
-"Калi вы плануеце выкарыстоўваць boot вобласць, тады размясцiце яе\n"
-" не далей за 2048 сектароў ад пачатку дыска"
+"Калi вы плануеце выкарыстоўваць boot вобласць, тады размясцiце яе\n"
+" не далей за 2048 сектароў ад пачатку дыска"
#: ../../diskdrake/hd_gtk.pm:1
#, c-format
msgid "Please make a backup of your data first"
-msgstr "Па-першае, зрабiце рэзервовую копiю вашых дадзеных"
+msgstr "Па-першае, зрабiце рэзервовую копiю вашых дадзеных"
#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
#, c-format
msgid "Read carefully!"
-msgstr "Чытайце ўважлiва!"
+msgstr "Чытайце ўважлiва!"
#: ../../diskdrake/interactive.pm:1
#, c-format
@@ -7049,13 +7022,13 @@ msgstr ""
#: ../../diskdrake/interactive.pm:1
#, fuzzy, c-format
msgid "The encryption keys do not match"
-msgstr "Паролi не супадаюць"
+msgstr "Паролi не супадаюць"
#: ../../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тараў)"
+"Гэты пароль занадта просты (яго даўжыня павiнна быць не меней за %d лiтараў)"
#: ../../diskdrake/interactive.pm:1
#, c-format
@@ -7065,42 +7038,42 @@ msgstr ""
#: ../../diskdrake/interactive.pm:1
#, fuzzy, c-format
msgid "Filesystem encryption key"
-msgstr "Тып файлавай сiстэмы:"
+msgstr "Тып файлавай сiстэмы:"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Type: "
-msgstr "Тып: "
+msgstr "Тып: "
#: ../../diskdrake/interactive.pm:1
#, fuzzy, c-format
msgid "on channel %d id %d\n"
-msgstr "на шыне %d id %d\n"
+msgstr "на шыне %d id %d\n"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Partition table type: %s\n"
-msgstr "Тып таблiцы раздзелаў: %s\n"
+msgstr "Тып таблiцы раздзелаў: %s\n"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "LVM-disks %s\n"
-msgstr "LVM-дыскi %s\n"
+msgstr "LVM-дыскi %s\n"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Info: "
-msgstr "Iнфармацыя: "
+msgstr "Iнфармацыя: "
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
-msgstr "Геаметрыя: %s цылiндраў, %s галовак, %s сектараў\n"
+msgstr "Геаметрыя: %s цылiндраў, %s галовак, %s сектараў\n"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Size: %s\n"
-msgstr "Памер: %s\n"
+msgstr "Памер: %s\n"
#: ../../diskdrake/interactive.pm:1
#, c-format
@@ -7110,7 +7083,7 @@ msgstr ""
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Device: "
-msgstr "Прылада:"
+msgstr "Прылада:"
#: ../../diskdrake/interactive.pm:1
#, c-format
@@ -7133,22 +7106,22 @@ msgstr ""
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Loopback file name: %s"
-msgstr "Iмя файлу вiртуальнай файлавай сiстэмы: %s"
+msgstr "Iмя файлу вiртуальнай файлавай сiстэмы: %s"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "RAID-disks %s\n"
-msgstr "RAID-дыскi %s\n"
+msgstr "RAID-дыскi %s\n"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Chunk size %s\n"
-msgstr "Памер фрагменту %s\n"
+msgstr "Памер фрагменту %s\n"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Level %s\n"
-msgstr "Узровень %s\n"
+msgstr "Узровень %s\n"
#: ../../diskdrake/interactive.pm:1
#, c-format
@@ -7156,15 +7129,15 @@ msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
msgstr ""
-"Загрузачны раздзел па дамаўленню\n"
-" (для загрузкi MS-DOS, а не для lilo)\n"
+"Загрузачны раздзел па дамаўленню\n"
+" (для загрузкi MS-DOS, а не для lilo)\n"
#: ../../diskdrake/interactive.pm:1
#, fuzzy, c-format
msgid ""
"Loopback file(s):\n"
" %s\n"
-msgstr "Файл(ы) вiртуальнай файлавай сiстэмы: %s\n"
+msgstr "Файл(ы) вiртуальнай файлавай сiстэмы: %s\n"
#: ../../diskdrake/interactive.pm:1
#, c-format
@@ -7174,47 +7147,47 @@ msgstr "RAID md%s\n"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Mounted\n"
-msgstr "Заманцiравана\n"
+msgstr "Заманцiравана\n"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Not formatted\n"
-msgstr "Не адфарматавана\n"
+msgstr "Не адфарматавана\n"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Formatted\n"
-msgstr "Фарматаванне\n"
+msgstr "Фарматаванне\n"
#: ../../diskdrake/interactive.pm:1
#, fuzzy, c-format
msgid "Cylinder %d to %d\n"
-msgstr "Цылiндры з %d па %d\n"
+msgstr "Цылiндры з %d па %d\n"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid ", %s sectors"
-msgstr ", %s сектараў"
+msgstr ", %s сектараў"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Size: %s"
-msgstr "Памер: %s"
+msgstr "Памер: %s"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Start: sector %s\n"
-msgstr "Пачатак: сектар %s\n"
+msgstr "Пачатак: сектар %s\n"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Name: "
-msgstr "Iмя: "
+msgstr "IРјСЏ: "
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
-msgstr "Лiтара для DOS-дыску: %s (наўгад)\n"
+msgstr "Лiтара для DOS-дыску: %s (наўгад)\n"
#: ../../diskdrake/interactive.pm:1
#, c-format
@@ -7224,7 +7197,7 @@ msgstr ""
#: ../../diskdrake/interactive.pm:1
#, fuzzy, c-format
msgid "Removing %s"
-msgstr "Памеры экрану: %s\n"
+msgstr "Памеры экрану: %s\n"
#: ../../diskdrake/interactive.pm:1
#, c-format
@@ -7234,7 +7207,7 @@ msgstr ""
#: ../../diskdrake/interactive.pm:1
#, fuzzy, c-format
msgid "Moving files to the new partition"
-msgstr "Не хапае прасторы для стварэння новых раздзелаў"
+msgstr "Не хапае прасторы для стварэння новых раздзелаў"
#: ../../diskdrake/interactive.pm:1
#, c-format
@@ -7246,57 +7219,57 @@ msgstr ""
#: ../../diskdrake/interactive.pm:1
#, fuzzy, c-format
msgid "Hide files"
-msgstr "mkraid не працаздольны"
+msgstr "mkraid не працаздольны"
#: ../../diskdrake/interactive.pm:1
#, fuzzy, c-format
msgid "Move files to the new partition"
-msgstr "Не хапае прасторы для стварэння новых раздзелаў"
+msgstr "Не хапае прасторы для стварэння новых раздзелаў"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
-msgstr "Усе дадзеные ў раздзеле %s будуць страчаны пасля фарматавання"
+msgstr "Усе дадзеные ў раздзеле %s будуць страчаны пасля фарматавання"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "You'll need to reboot before the modification can take place"
-msgstr "Каб змяненнi ўступiлi ў дзеянне, необходна перазагрузiцца"
+msgstr "Каб змяненнi ўступiлi ў дзеянне, необходна перазагрузiцца"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
-msgstr "Таблiца размяшчэння прылады %s будзе запiсана на дыск!"
+msgstr "Таблiца размяшчэння прылады %s будзе запiсана на дыск!"
#: ../../diskdrake/interactive.pm:1
#, fuzzy, c-format
msgid "The package %s is needed. Install it?"
-msgstr "Выбар пакетаў для ўсталявання"
+msgstr "Выбар пакетаў для ўсталявання"
#: ../../diskdrake/interactive.pm:1
#, fuzzy, c-format
msgid "What type of partitioning?"
-msgstr "Якi тып друкаркi вы маеце?"
+msgstr "Якi тып друкаркi вы маеце?"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Be careful: this operation is dangerous."
-msgstr "Будзьце уважлiвы. Гэтую аперацыю нельга адмянiць"
+msgstr "Будзьце уважлiвы. Гэтую аперацыю нельга адмянiць"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "chunk size"
-msgstr "памер блоку"
+msgstr "памер блоку"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "level"
-msgstr "узровень"
+msgstr "узровень"
#: ../../diskdrake/interactive.pm:1 ../../standalone/drakfloppy:1
#, c-format
msgid "device"
-msgstr "прылада"
+msgstr "прылада"
#: ../../diskdrake/interactive.pm:1
#, c-format
@@ -7306,49 +7279,49 @@ msgstr ""
#: ../../diskdrake/interactive.pm:1
#, fuzzy, c-format
msgid "Mount options"
-msgstr "Опцыi модулю:"
+msgstr "Опцыi модулю:"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "File already exists. Use it?"
-msgstr "Файл ужо iснуе. Выкарыстаць яго?"
+msgstr "Файл ужо iснуе. Выкарыстаць яго?"
#: ../../diskdrake/interactive.pm:1
#, fuzzy, c-format
msgid "File is already used by another loopback, choose another one"
msgstr ""
-"Файл ужо выкарыстоўваецца iншай вiртуальнай сiстэмай. Калi ласка, \n"
-"абярыце iншую назву"
+"Файл ужо выкарыстоўваецца iншай вiртуальнай сiстэмай. Калi ласка, \n"
+"абярыце iншую назву"
#: ../../diskdrake/interactive.pm:1
#, fuzzy, c-format
msgid "Give a file name"
-msgstr "Уласнае iмя"
+msgstr "Уласнае iмя"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Filesystem type: "
-msgstr "Тып файлавай сiстэмы:"
+msgstr "Тып файлавай сiстэмы:"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Size in MB: "
-msgstr "Памер у Мб:"
+msgstr "Памер у Мб:"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Loopback file name: "
-msgstr "Iмя вiртуальнага раздзелу"
+msgstr "Iмя вiртуальнага раздзелу"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Loopback"
-msgstr "Вiртуальная файлавая сiстэма (loopback)"
+msgstr "Вiртуальная файлавая сiстэма (loopback)"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "This partition can't be used for loopback"
-msgstr "Гэты раздзел не можа быць выкарыстаны пад вiртуальную файлавую сiстэму"
+msgstr "Гэты раздзел не можа быць выкарыстаны пад вiртуальную файлавую сiстэму"
#: ../../diskdrake/interactive.pm:1
#, c-format
@@ -7358,87 +7331,87 @@ msgstr ""
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "new"
-msgstr "новы"
+msgstr "РЅРѕРІС‹"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Choose an existing LVM to add to"
-msgstr "Выбярыце iснуючы LVM для дабаўлення"
+msgstr "Выбярыце iснуючы LVM для дабаўлення"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Choose an existing RAID to add to"
-msgstr "Абярыце iснуючы RAID для дадання"
+msgstr "Абярыце iснуючы RAID для дадання"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Moving partition..."
-msgstr "Пераносіцца раздзел..."
+msgstr "Пераносіцца раздзел..."
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Moving"
-msgstr "Пераносім"
+msgstr "Пераносім"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Which sector do you want to move it to?"
-msgstr "На якi сектар перанесці?"
+msgstr "На якi сектар перанесці?"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Sector"
-msgstr "Сектар"
+msgstr "Сектар"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Which disk do you want to move it to?"
-msgstr "На якi дыск перанесці?"
+msgstr "На якi дыск перанесці?"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Move"
-msgstr "Перанос"
+msgstr "Перанос"
#: ../../diskdrake/interactive.pm:1
#, fuzzy, c-format
msgid "New size in MB: "
-msgstr "Памер у Мб:"
+msgstr "Памер у Мб:"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Choose the new size"
-msgstr "Выбар новых памераў"
+msgstr "Выбар новых памераў"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Resize"
-msgstr "Змяненне памераў"
+msgstr "Змяненне памераў"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
-msgstr "Усе дадзеныя ў раздзеле %s будуць страчаны"
+msgstr "Усе дадзеныя ў раздзеле %s будуць страчаны"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "All data on this partition should be backed-up"
-msgstr "Усе дадзеныя ў гэтым раздзеле павiнны быць зархiваваныя"
+msgstr "Усе дадзеныя ў гэтым раздзеле павiнны быць зархiваваныя"
#: ../../diskdrake/interactive.pm:1
#, fuzzy, c-format
msgid "This partition is not resizeable"
-msgstr "Памеры якога раздзела вы жадаеце змянiць?"
+msgstr "Памеры якога раздзела вы жадаеце змянiць?"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Computing FAT filesystem bounds"
-msgstr "Падлік межаў файлавай сiстэмы FAT"
+msgstr "Падлік межаў файлавай сiстэмы FAT"
#: ../../diskdrake/interactive.pm:1
#, fuzzy, c-format
msgid "Where do you want to mount %s?"
-msgstr "Куды вы жадаеце манцiраваць прыладу %s?"
+msgstr "Куды вы жадаеце манцiраваць прыладу %s?"
#: ../../diskdrake/interactive.pm:1
#, c-format
@@ -7446,19 +7419,19 @@ msgid ""
"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стэму"
+"Нельга ўсталяваць пункт манцiравання, таму што раздел выкарыстоўваецца для\n"
+"вiртуальнай файлавай сiстэмы.\n"
+"Спачатку выдалiце вiртуальную сiстэму"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Where do you want to mount device %s?"
-msgstr "Куды вы жадаеце манцiраваць прыладу %s?"
+msgstr "Куды вы жадаеце манцiраваць прыладу %s?"
#: ../../diskdrake/interactive.pm:1
#, fuzzy, c-format
msgid "Where do you want to mount the loopback file %s?"
-msgstr "Куды вы жадаеце манцiраваць вiртуальную прыладу %s?"
+msgstr "Куды вы жадаеце манцiраваць вiртуальную прыладу %s?"
#: ../../diskdrake/interactive.pm:1
#, c-format
@@ -7468,23 +7441,23 @@ msgstr ""
#: ../../diskdrake/interactive.pm:1 ../../diskdrake/removable.pm:1
#, fuzzy, c-format
msgid "Which filesystem do you want?"
-msgstr "Якую сiстэму друку Вы жадаеце выкарыстоўваць?"
+msgstr "Якую сiстэму друку Вы жадаеце выкарыстоўваць?"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Change partition type"
-msgstr "Змянiць тып раздзелу"
+msgstr "Змянiць тып раздзелу"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
-msgstr "Усе дадзеныя ў раздзеле %s будуць страчаны пасля змены яго тыпу"
+msgstr "Усе дадзеныя ў раздзеле %s будуць страчаны пасля змены яго тыпу"
#: ../../diskdrake/interactive.pm:1
#, fuzzy, c-format
msgid "Remove the loopback file?"
-msgstr "Фарматаванне вiртуальнага раздзелу %s"
+msgstr "Фарматаванне вiртуальнага раздзелу %s"
#: ../../diskdrake/interactive.pm:1
#, c-format
@@ -7497,62 +7470,62 @@ msgstr ""
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Preference: "
-msgstr "Параметры: "
+msgstr "Параметры: "
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Start sector: "
-msgstr "Пачатковы сектар:"
+msgstr "Пачатковы сектар:"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Create a new partition"
-msgstr "Стварэнне новага раздзелу"
+msgstr "Стварэнне новага раздзелу"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Use for loopback"
-msgstr "Выкарыстоўваць для вiртуальнай файлавай сiстэмы"
+msgstr "Выкарыстоўваць для вiртуальнай файлавай сiстэмы"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Modify RAID"
-msgstr "Змянiць RAID"
+msgstr "Змянiць RAID"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Remove from LVM"
-msgstr "Выдалiць з LVM"
+msgstr "Выдалiць з LVM"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Remove from RAID"
-msgstr "Выдалiць з RAID"
+msgstr "Выдалiць з RAID"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Add to LVM"
-msgstr "Дадаць да LVM"
+msgstr "Дадаць да LVM"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Add to RAID"
-msgstr "Дадаць да RAID"
+msgstr "Дадаць да RAID"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Format"
-msgstr "Фарматаванне"
+msgstr "Фарматаванне"
#: ../../diskdrake/interactive.pm:1
#, fuzzy, c-format
msgid "Detailed information"
-msgstr "Iнфармацыя"
+msgstr "Iнфармацыя"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Trying to rescue partition table"
-msgstr "Паспрабуем выратаваць таблiцу раздзелаў"
+msgstr "Паспрабуем выратаваць таблiцу раздзелаў"
#: ../../diskdrake/interactive.pm:1
#, c-format
@@ -7560,19 +7533,19 @@ msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
msgstr ""
-"Устаўце дыскету ў дыскавод\n"
-"Усе дадзеныя на гэтай дыскеце будуць страчаны"
+"Устаўце дыскету ў дыскавод\n"
+"Усе дадзеныя на гэтай дыскеце будуць страчаны"
#: ../../diskdrake/interactive.pm:1 ../../harddrake/sound.pm:1
#: ../../network/modem.pm:1
#, c-format
msgid "Warning"
-msgstr "Увага!"
+msgstr "Увага!"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Select file"
-msgstr "Абярыце файл"
+msgstr "Абярыце файл"
#: ../../diskdrake/interactive.pm:1
#, c-format
@@ -7580,33 +7553,33 @@ msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
msgstr ""
-"Таблiца размяшчэння рэзервовага дыску мае iншы памер\n"
-"Працягваць далей?"
+"Таблiца размяшчэння рэзервовага дыску мае iншы памер\n"
+"Працягваць далей?"
#: ../../diskdrake/interactive.pm:1
#, fuzzy, c-format
msgid "Removable media automounting"
-msgstr "Аўтаманцiраванне зменных назапашвальнікаў"
+msgstr "Аўтаманцiраванне зменных назапашвальнікаў"
#: ../../diskdrake/interactive.pm:1
#, fuzzy, c-format
msgid "Reload partition table"
-msgstr "Дадатковая таблiца раздзелаў"
+msgstr "Дадатковая таблiца раздзелаў"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Rescue partition table"
-msgstr "Дадатковая таблiца раздзелаў"
+msgstr "Дадатковая таблiца раздзелаў"
#: ../../diskdrake/interactive.pm:1
#, fuzzy, c-format
msgid "Restore partition table"
-msgstr "Дадатковая таблiца раздзелаў"
+msgstr "Дадатковая таблiца раздзелаў"
#: ../../diskdrake/interactive.pm:1
#, fuzzy, c-format
msgid "Save partition table"
-msgstr "Запiс таблiцы раздзелаў"
+msgstr "Запiс таблiцы раздзелаў"
#: ../../diskdrake/interactive.pm:1
#, c-format
@@ -7614,68 +7587,68 @@ msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
msgstr ""
-"Каб зрабiць больш разделаў, выдалiце адзiн i стварыце пашыраны раздзел "
+"Каб зрабiць больш разделаў, выдалiце адзiн i стварыце пашыраны раздзел "
"(extended)"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "I can't add any more partition"
-msgstr "Дадаць раздзел немагчыма"
+msgstr "Дадаць раздзел немагчыма"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "All primary partitions are used"
-msgstr "Усе першасныя раздзелы выкарыстаны"
+msgstr "Усе першасныя раздзелы выкарыстаны"
#: ../../diskdrake/interactive.pm:1
#, fuzzy, c-format
msgid "Hard drive information"
-msgstr "Iнфармацыя"
+msgstr "Iнфармацыя"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Auto allocate"
-msgstr "Размеркаваць аўтаматычна"
+msgstr "Размеркаваць аўтаматычна"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Clear all"
-msgstr "Ачысцiць усё"
+msgstr "Ачысцiць усё"
#: ../../diskdrake/interactive.pm:1
#, fuzzy, c-format
msgid "Do you want to save /etc/fstab modifications"
-msgstr "Цi жадаеце пратэсцiраваць настройкi?"
+msgstr "Цi жадаеце пратэсцiраваць настройкi?"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Quit without writing the partition table?"
-msgstr "Выйсцi без запiсу таблiцы раздзелаў"
+msgstr "Выйсцi без запiсу таблiцы раздзелаў"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Quit without saving"
-msgstr "Выйсцi без захавання"
+msgstr "Выйсцi без захавання"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Continue anyway?"
-msgstr "Сапраўды працягваць?"
+msgstr "Сапраўды працягваць?"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Toggle to expert mode"
-msgstr "Рэжым эксперту"
+msgstr "Рэжым эксперту"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Toggle to normal mode"
-msgstr "Звычайны рэжым"
+msgstr "Звычайны рэжым"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Undo"
-msgstr "Адкат"
+msgstr "Адкат"
#: ../../diskdrake/interactive.pm:1
#, fuzzy, c-format
@@ -7685,22 +7658,22 @@ msgstr "Ext2"
#: ../../diskdrake/interactive.pm:1
#, fuzzy, c-format
msgid "Choose a partition"
-msgstr "Абярыце дзеянне"
+msgstr "Абярыце дзеянне"
#: ../../diskdrake/interactive.pm:1
#, fuzzy, c-format
msgid "Choose another partition"
-msgstr "Стварэнне новага раздзелу"
+msgstr "Стварэнне новага раздзелу"
#: ../../diskdrake/removable.pm:1
#, fuzzy, c-format
msgid "Change type"
-msgstr "Змянiць тып раздзелу"
+msgstr "Змянiць тып раздзелу"
#: ../../diskdrake/smbnfs_gtk.pm:1
#, fuzzy, c-format
msgid "Search servers"
-msgstr "DNS сервер"
+msgstr "DNS сервер"
#: ../../diskdrake/smbnfs_gtk.pm:1
#, fuzzy, c-format
@@ -7710,7 +7683,7 @@ msgstr "NIS Domain"
#: ../../diskdrake/smbnfs_gtk.pm:1 ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Username"
-msgstr "Iмя карыстальнiку:"
+msgstr "Iмя карыстальнiку:"
#: ../../diskdrake/smbnfs_gtk.pm:1
#, c-format
@@ -7721,17 +7694,17 @@ msgstr ""
#: ../../diskdrake/smbnfs_gtk.pm:1
#, fuzzy, c-format
msgid "Domain Authentication Required"
-msgstr "Аўтэнтыфiкацыя"
+msgstr "Аўтэнтыфiкацыя"
#: ../../diskdrake/smbnfs_gtk.pm:1
#, fuzzy, c-format
msgid "Another one"
-msgstr "цiкава"
+msgstr "цiкава"
#: ../../diskdrake/smbnfs_gtk.pm:1
#, fuzzy, c-format
msgid "Which username"
-msgstr "Iмя карыстальнiку:"
+msgstr "Iмя карыстальнiку:"
#: ../../diskdrake/smbnfs_gtk.pm:1
#, c-format
@@ -7776,12 +7749,12 @@ msgstr ""
#: ../../harddrake/data.pm:1
#, fuzzy, c-format
msgid "Scanner"
-msgstr "Абярыце вiдэакарту"
+msgstr "Абярыце вiдэакарту"
#: ../../harddrake/data.pm:1 ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "Unknown/Others"
-msgstr "Агульны"
+msgstr "Агульны"
#: ../../harddrake/data.pm:1
#, c-format
@@ -7791,12 +7764,12 @@ msgstr ""
#: ../../harddrake/data.pm:1
#, fuzzy, c-format
msgid "Modem"
-msgstr "Порт мышы"
+msgstr "Порт мышы"
#: ../../harddrake/data.pm:1
#, fuzzy, c-format
msgid "Ethernetcard"
-msgstr "цiкава"
+msgstr "цiкава"
#: ../../harddrake/data.pm:1
#, c-format
@@ -7811,12 +7784,12 @@ msgstr ""
#: ../../harddrake/data.pm:1
#, fuzzy, c-format
msgid "Soundcard"
-msgstr "Стандартны"
+msgstr "Стандартны"
#: ../../harddrake/data.pm:1
#, fuzzy, c-format
msgid "Other MultiMedia devices"
-msgstr "Іншыя"
+msgstr "Іншыя"
#: ../../harddrake/data.pm:1
#, c-format
@@ -7826,12 +7799,12 @@ msgstr ""
#: ../../harddrake/data.pm:1
#, fuzzy, c-format
msgid "Videocard"
-msgstr "Вiдэа-рэжым"
+msgstr "Вiдэа-рэжым"
#: ../../harddrake/data.pm:1 ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Tape"
-msgstr "Тып: "
+msgstr "Тып: "
#: ../../harddrake/data.pm:1
#, c-format
@@ -7851,7 +7824,7 @@ msgstr ""
#: ../../harddrake/data.pm:1
#, fuzzy, c-format
msgid "Disk"
-msgstr "Дацкi"
+msgstr "Дацкi"
#: ../../harddrake/data.pm:1
#, c-format
@@ -7861,7 +7834,7 @@ msgstr ""
#: ../../harddrake/data.pm:1
#, fuzzy, c-format
msgid "Floppy"
-msgstr "Захаванне на дыскету"
+msgstr "Захаванне на дыскету"
#: ../../harddrake/sound.pm:1
#, c-format
@@ -7871,7 +7844,7 @@ msgstr ""
#: ../../harddrake/sound.pm:1
#, fuzzy, c-format
msgid "Driver:"
-msgstr "сервер"
+msgstr "сервер"
#: ../../harddrake/sound.pm:1
#, c-format
@@ -7952,7 +7925,7 @@ msgstr ""
#: ../../harddrake/sound.pm:1 ../../standalone/drakconnect:1
#, fuzzy, c-format
msgid "Please Wait... Applying the configuration"
-msgstr "Праверка параметраў настройкi"
+msgstr "Праверка параметраў настройкi"
#: ../../harddrake/sound.pm:1
#, c-format
@@ -8008,7 +7981,7 @@ msgstr ""
#: ../../harddrake/sound.pm:1
#, fuzzy, c-format
msgid "Sound configuration"
-msgstr "Настройка"
+msgstr "Настройка"
#: ../../harddrake/sound.pm:1
#, c-format
@@ -8035,7 +8008,7 @@ msgstr ""
#: ../../harddrake/v4l.pm:1
#, fuzzy, c-format
msgid "PLL setting:"
-msgstr "фарматаванне"
+msgstr "фарматаванне"
#: ../../harddrake/v4l.pm:1
#, c-format
@@ -8050,12 +8023,12 @@ msgstr ""
#: ../../harddrake/v4l.pm:1
#, fuzzy, c-format
msgid "Tuner type:"
-msgstr "Змянiць тып раздзелу"
+msgstr "Змянiць тып раздзелу"
#: ../../harddrake/v4l.pm:1
#, fuzzy, c-format
msgid "Card model:"
-msgstr "Адрасы памяці карты (DMA)"
+msgstr "Адрасы памяці карты (DMA)"
#: ../../harddrake/v4l.pm:1
#, c-format
@@ -8069,7 +8042,7 @@ msgstr ""
#: ../../harddrake/v4l.pm:1
#, fuzzy, c-format
msgid "Unknown|Generic"
-msgstr "Агульны"
+msgstr "Агульны"
#: ../../harddrake/v4l.pm:1
#, c-format
@@ -8084,22 +8057,22 @@ msgstr ""
#: ../../harddrake/v4l.pm:1
#, fuzzy, c-format
msgid "Auto-detect"
-msgstr "Аддалены прынтэр"
+msgstr "Аддалены прынтэр"
#: ../../interactive/newt.pm:1
#, fuzzy, c-format
msgid "Do"
-msgstr "Зроблена"
+msgstr "Зроблена"
#: ../../interactive/stdio.pm:1
#, c-format
msgid "Your choice? (default %s) "
-msgstr "Ваш выбар? (змоўчанне %s) "
+msgstr "Ваш выбар? (змоўчанне %s) "
#: ../../interactive/stdio.pm:1
#, c-format
msgid "Bad choice, try again\n"
-msgstr "Дрэнны выбар, паспрабуйце яшче\n"
+msgstr "Дрэнны выбар, паспрабуйце яшче\n"
#: ../../interactive/stdio.pm:1
#, c-format
@@ -8129,7 +8102,7 @@ msgstr ""
#: ../../interactive/stdio.pm:1
#, fuzzy, c-format
msgid "Your choice? (default `%s'%s) "
-msgstr "Ваш выбар? (змоўчанне %s) "
+msgstr "Ваш выбар? (змоўчанне %s) "
#: ../../interactive/stdio.pm:1
#, c-format
@@ -8139,17 +8112,17 @@ msgstr ""
#: ../../interactive/stdio.pm:1
#, fuzzy, c-format
msgid "Do you want to click on this button?"
-msgstr "Вы жадаеце выкарыстоўваць aboot?"
+msgstr "Вы жадаеце выкарыстоўваць aboot?"
#: ../../interactive/stdio.pm:1
#, fuzzy, c-format
msgid "Button `%s': %s"
-msgstr "Опцыi: %s"
+msgstr "Опцыi: %s"
#: ../../interactive/stdio.pm:1
#, fuzzy, c-format
msgid "Your choice? (0/1, default `%s') "
-msgstr "Ваш выбар? (змоўчанне %s) "
+msgstr "Ваш выбар? (змоўчанне %s) "
#: ../../interactive/stdio.pm:1
#, c-format
@@ -8164,18 +8137,18 @@ msgid ""
"Loading module %s failed.\n"
"Do you want to try again with other parameters?"
msgstr ""
-"Загрузка модулю %s не прайшла.\n"
-"Жадаеце паспрабаваць з iншымi параметрамi?"
+"Загрузка модулю %s не прайшла.\n"
+"Жадаеце паспрабаваць з iншымi параметрамi?"
#: ../../modules/interactive.pm:1
#, c-format
msgid "Specify options"
-msgstr "Пазначце параметры"
+msgstr "Пазначце параметры"
#: ../../modules/interactive.pm:1
#, c-format
msgid "Autoprobe"
-msgstr "Аўтапошук"
+msgstr "Аўтапошук"
#: ../../modules/interactive.pm:1
#, c-format
@@ -8188,22 +8161,22 @@ msgid ""
"should\n"
"not cause any damage."
msgstr ""
-"У некаторых выпадках %s драйверу патрэбна некаторая дадатковая iнфармацыя,\n"
-"але звычайна гэта не патрабуецца. Цi не жадаеце вы задаць для яго\n"
-"дадатковыя опцыi, цi дазволiце драйверу пратэсцiраваць машыну\n"
-"ў пошуках неабходнай iнфармацыi? Магчыма, тэсцiраванне прывядзе\n"
-"да спынення камп'ютэру, але яно нiчога не сапсуе."
+"У некаторых выпадках %s драйверу патрэбна некаторая дадатковая iнфармацыя,\n"
+"але звычайна гэта не патрабуецца. Цi не жадаеце вы задаць для яго\n"
+"дадатковыя опцыi, цi дазволiце драйверу пратэсцiраваць машыну\n"
+"ў пошуках неабходнай iнфармацыi? Магчыма, тэсцiраванне прывядзе\n"
+"да спынення камп'ютэру, але яно н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 паспрабаваць?"
+msgstr "Якi драйвер %s паспрабаваць?"
#: ../../modules/interactive.pm:1
#, c-format
msgid "Module options:"
-msgstr "Опцыi модулю:"
+msgstr "Опцыi модулю:"
#: ../../modules/interactive.pm:1
#, c-format
@@ -8212,9 +8185,9 @@ msgid ""
"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''"
+"Вы не можаце задаць опцыi модулю %s.\n"
+"Опцыi - у фармаце ``iмя=значэнне iмя2=значэнне2 ...''.\n"
+"Напрыклад, ``io=0x300 irq=7''"
#: ../../modules/interactive.pm:1
#, c-format
@@ -8226,34 +8199,34 @@ msgstr ""
#: ../../modules/interactive.pm:1
#, c-format
msgid "(module %s)"
-msgstr "(модуль %s)"
+msgstr "(модуль %s)"
#. -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"
+msgstr "Усталяванне драйверу для %s карты %s"
#: ../../modules/interactive.pm:1
#, c-format
msgid "See hardware info"
-msgstr "Гл. апiсанне абсталявання"
+msgstr "Гл. апiсанне абсталявання"
#: ../../modules/interactive.pm:1
#, c-format
msgid "Do you have any %s interfaces?"
-msgstr "Цi ёсць у вас %s iнтэрфейс?"
+msgstr "Цi ёсць у вас %s iнтэрфейс?"
#: ../../modules/interactive.pm:1
#, c-format
msgid "Do you have another one?"
-msgstr "Цi ёсць у вас iншы?"
+msgstr "Цi ёсць у вас iншы?"
#: ../../modules/interactive.pm:1
#, c-format
msgid "Found %s %s interfaces"
-msgstr "Знойдзены %s %s iнтэрфейсы"
+msgstr "Знойдзены %s %s iнтэрфейсы"
#: ../../modules/interactive.pm:1
#, c-format
@@ -8263,7 +8236,7 @@ msgstr ""
#: ../../modules/parameters.pm:1
#, fuzzy, c-format
msgid "comma separated strings"
-msgstr "Фарматаванне раздзелаў"
+msgstr "Фарматаванне раздзелаў"
#: ../../modules/parameters.pm:1
#, c-format
@@ -8283,7 +8256,7 @@ msgstr ""
#: ../../modules/parameters.pm:1
#, fuzzy, c-format
msgid "a number"
-msgstr "Нумар тэлефону"
+msgstr "Нумар тэлефону"
#: ../../network/adsl.pm:1
#, c-format
@@ -8305,7 +8278,7 @@ msgstr ""
#: ../../network/adsl.pm:1 ../../network/ethernet.pm:1
#, c-format
msgid "Connect to the Internet"
-msgstr "Далучэнне да Iнтэрнэту"
+msgstr "Далучэнне да Iнтэрнэту"
#: ../../network/adsl.pm:1
#, c-format
@@ -8325,22 +8298,22 @@ msgstr ""
#: ../../network/adsl.pm:1
#, fuzzy, c-format
msgid "use pptp"
-msgstr "выкарыстоўваць pppoe"
+msgstr "выкарыстоўваць pppoe"
#: ../../network/adsl.pm:1
#, c-format
msgid "use pppoe"
-msgstr "выкарыстоўваць pppoe"
+msgstr "выкарыстоўваць pppoe"
#: ../../network/drakfirewall.pm:1
#, fuzzy, c-format
msgid "Other ports"
-msgstr "Iншыя краiны"
+msgstr "Iншыя краiны"
#: ../../network/drakfirewall.pm:1
#, fuzzy, c-format
msgid "Everything (no firewall)"
-msgstr "Ўсё сканфiгуравана!"
+msgstr "Ўсё сканфiгуравана!"
#: ../../network/drakfirewall.pm:1
#, c-format
@@ -8385,27 +8358,27 @@ msgstr ""
#: ../../network/drakfirewall.pm:1
#, fuzzy, c-format
msgid "No network card"
-msgstr "сеткавая карта не знойдзена"
+msgstr "сеткавая карта не знойдзена"
#: ../../network/drakfirewall.pm:1
#, fuzzy, c-format
msgid "POP and IMAP Server"
-msgstr "сервер"
+msgstr "сервер"
#: ../../network/drakfirewall.pm:1
#, fuzzy, c-format
msgid "Mail Server"
-msgstr "Сервер друку"
+msgstr "Сервер друку"
#: ../../network/drakfirewall.pm:1
#, fuzzy, c-format
msgid "Domain Name Server"
-msgstr "Iмя дамену"
+msgstr "Iмя дамену"
#: ../../network/drakfirewall.pm:1
#, fuzzy, c-format
msgid "Web Server"
-msgstr "сервер"
+msgstr "сервер"
#: ../../network/ethernet.pm:1 ../../network/network.pm:1
#, c-format
@@ -8415,12 +8388,12 @@ msgstr ""
#: ../../network/ethernet.pm:1 ../../network/network.pm:1
#, c-format
msgid "Host name"
-msgstr "Iмя машыны"
+msgstr "Iмя машыны"
#: ../../network/ethernet.pm:1 ../../network/network.pm:1
#, fuzzy, c-format
msgid "Zeroconf Host name"
-msgstr "Iмя машыны"
+msgstr "Iмя машыны"
#: ../../network/ethernet.pm:1 ../../network/network.pm:1
#, c-format
@@ -8434,26 +8407,21 @@ msgstr ""
#: ../../network/ethernet.pm:1 ../../network/network.pm:1
#, c-format
msgid "Configuring network"
-msgstr "Настройка сеткi"
-
-#: ../../network/ethernet.pm:1
-#, c-format
-msgid "no network card found"
-msgstr "сеткавая карта не знойдзена"
+msgstr "Настройка сеткi"
#: ../../network/ethernet.pm:1
#, c-format
msgid ""
"Please choose which network adapter you want to use to connect to Internet."
msgstr ""
-"Калi ласка, пазначце сеткавы адаптар, якi плануеце выкарыстоўваць для "
-"далучэння да iнтэрнэт"
+"Калi ласка, пазначце сеткавы адаптар, якi плануеце выкарыстоўваць для "
+"далучэння да iнтэрнэт"
#: ../../network/ethernet.pm:1 ../../standalone/drakgw:1
#: ../../standalone/drakpxe:1
#, c-format
msgid "Choose the network interface"
-msgstr "Пазначце сеткавы iнтэрфейс"
+msgstr "Пазначце сеткавы iнтэрфейс"
#: ../../network/ethernet.pm:1
#, fuzzy, c-format
@@ -8461,8 +8429,8 @@ msgid ""
"No ethernet network adapter has been detected on your system.\n"
"I cannot set up this connection type."
msgstr ""
-"Нi водны ethernet сеткавы адаптар у вашай сiстэме не вызначаны. Калi ласка, "
-"скарыстайце канфiгурацыйны iнструмэнт."
+"Нi водны ethernet сеткавы адаптар у вашай сiстэме не вызначаны. Калi ласка, "
+"скарыстайце канфiгурацыйны iнструмэнт."
#: ../../network/ethernet.pm:1
#, c-format
@@ -8470,13 +8438,13 @@ msgid ""
"Which dhcp client do you want to use?\n"
"Default is dhcp-client."
msgstr ""
-"Якi dhcp клiент вы плануеце выкарыстоўваць?\n"
-"Па змоўчанню, гэта dhcp-client"
+"Якi dhcp клiент вы плануеце выкарыстоўваць?\n"
+"Па змоўчанню, гэта dhcp-client"
#: ../../network/isdn.pm:1
#, c-format
msgid "No ISDN PCI card found. Please select one on the next screen."
-msgstr "Карта ISDN PCI не знойдзена. Калi ласка, пазначце на наступным экране."
+msgstr "Карта ISDN PCI не знойдзена. Калi ласка, пазначце на наступным экране."
#: ../../network/isdn.pm:1
#, c-format
@@ -8484,28 +8452,28 @@ 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 карта, але невядомы яе тып. Калi ласка, пазначце PCI "
-"карту на наступным экране."
+"Вызначана ISDN PCI карта, але невядомы яе тып. Калi ласка, пазначце PCI "
+"карту на наступным экране."
#: ../../network/isdn.pm:1
#, fuzzy, c-format
msgid "Which of the following is your ISDN card?"
-msgstr "Якая ў вас ISDN карта?"
+msgstr "Якая ў вас ISDN карта?"
#: ../../network/isdn.pm:1
#, c-format
msgid "ISDN Configuration"
-msgstr "Настройка ISDN"
+msgstr "Настройка ISDN"
#: ../../network/isdn.pm:1
#, c-format
msgid "Abort"
-msgstr "Адмянiць"
+msgstr "Адмянiць"
#: ../../network/isdn.pm:1
#, c-format
msgid "Continue"
-msgstr "Працягнуць"
+msgstr "Працягнуць"
#: ../../network/isdn.pm:1
#, c-format
@@ -8517,15 +8485,15 @@ msgid ""
"card.\n"
msgstr ""
"\n"
-"Калi вы маеце ISA карту, велiчынi на наступным экране павiнны быць "
-"сапраўднымi.\n"
+"Калi вы маеце ISA карту, велiчынi на наступным экране павiнны быць "
+"сапраўднымi.\n"
"\n"
-"Калi вы маеце PCMCIA карту, вы павiнны ведаць irq i io вашай карты.\n"
+"Калi вы маеце PCMCIA карту, вы павiнны ведаць irq i io вашай карты.\n"
#: ../../network/isdn.pm:1
#, c-format
msgid "I don't know"
-msgstr "Не вядома"
+msgstr "РќРµ РІСЏРґРѕРјР°"
#: ../../network/isdn.pm:1
#, c-format
@@ -8540,7 +8508,7 @@ msgstr "ISA / PCMCIA"
#: ../../network/isdn.pm:1
#, c-format
msgid "What kind of card do you have?"
-msgstr "Якi тып карты вы маеце?"
+msgstr "Якi тып карты вы маеце?"
#: ../../network/isdn.pm:1
#, c-format
@@ -8550,12 +8518,12 @@ msgstr ""
#: ../../network/isdn.pm:1
#, c-format
msgid "Which protocol do you want to use?"
-msgstr "Якi пратакол вы жадаеце выкарыстоўваць?"
+msgstr "Якi пратакол вы жадаеце выкарыстоўваць?"
#: ../../network/isdn.pm:1
#, fuzzy, c-format
msgid "Protocol for the rest of the world"
-msgstr "Падключэнне"
+msgstr "Падключэнне"
#: ../../network/isdn.pm:1
#, fuzzy, c-format
@@ -8563,18 +8531,18 @@ msgid ""
"Protocol for the rest of the world\n"
"No D-Channel (leased lines)"
msgstr ""
-"Падключэнне \n"
-" не праз D-канал (вылучаныя каналы)"
+"Падключэнне \n"
+" не праз D-канал (вылучаныя каналы)"
#: ../../network/isdn.pm:1
#, fuzzy, c-format
msgid "European protocol"
-msgstr "Еўропа (EDSS1)"
+msgstr "Еўропа (EDSS1)"
#: ../../network/isdn.pm:1
#, fuzzy, c-format
msgid "European protocol (EDSS1)"
-msgstr "Еўропа (EDSS1)"
+msgstr "Еўропа (EDSS1)"
#: ../../network/isdn.pm:1
#, c-format
@@ -8582,38 +8550,38 @@ msgid ""
"Select your provider.\n"
"If it isn't listed, choose Unlisted."
msgstr ""
-"Абярыце вашага правайдара.\n"
-"калi яго няма ў гэтым спiсе, абярыце тып ``Iншы''"
+"Абярыце вашага правайдара.\n"
+"калi яго няма ў гэтым спiсе, абярыце тып ``Iншы''"
#: ../../network/isdn.pm:1
#, fuzzy, c-format
msgid "External ISDN modem"
-msgstr "Унутраная ISDN карта"
+msgstr "Унутраная ISDN карта"
#: ../../network/isdn.pm:1
#, c-format
msgid "Internal ISDN card"
-msgstr "Унутраная ISDN карта"
+msgstr "Унутраная ISDN карта"
#: ../../network/isdn.pm:1
#, c-format
msgid "What kind is your ISDN connection?"
-msgstr "Якi тып вашага ISDN злучэння?"
+msgstr "Якi тып вашага ISDN злучэння?"
#: ../../network/isdn.pm:1 ../../network/netconnect.pm:1
#, fuzzy, c-format
msgid "Network Configuration Wizard"
-msgstr "Канфiгурацыя сеткi"
+msgstr "Канфiгурацыя сеткi"
#: ../../network/isdn.pm:1
#, fuzzy, c-format
msgid "Old configuration (isdn4net)"
-msgstr "Знойдзена сістэма сеткавай бяспекі (firewall)!"
+msgstr "Знойдзена сістэма сеткавай бяспекі (firewall)!"
#: ../../network/isdn.pm:1
#, fuzzy, c-format
msgid "New configuration (isdn-light)"
-msgstr "Знойдзена сістэма сеткавай бяспекі (firewall)!"
+msgstr "Знойдзена сістэма сеткавай бяспекі (firewall)!"
#: ../../network/isdn.pm:1
#, c-format
@@ -8632,12 +8600,12 @@ msgstr ""
#: ../../network/modem.pm:1
#, fuzzy, c-format
msgid "Do nothing"
-msgstr "Чакаецца"
+msgstr "Чакаецца"
#: ../../network/modem.pm:1
#, fuzzy, c-format
msgid "Install rpm"
-msgstr "Усталёўка"
+msgstr "Усталёўка"
#: ../../network/modem.pm:1
#, c-format
@@ -8648,7 +8616,7 @@ msgstr ""
#: ../../network/modem.pm:1
#, fuzzy, c-format
msgid "Title"
-msgstr "Таблiца"
+msgstr "Таблiца"
#: ../../network/modem.pm:1
#, c-format
@@ -8660,17 +8628,17 @@ msgstr ""
#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
#, fuzzy, c-format
msgid "Second DNS Server (optional)"
-msgstr "Другi сервер DNS:"
+msgstr "Другi сервер DNS:"
#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
#, fuzzy, c-format
msgid "First DNS Server (optional)"
-msgstr "Першы сервер DNS"
+msgstr "Першы сервер DNS"
#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Domain name"
-msgstr "Iмя дамену"
+msgstr "Iмя дамену"
#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
#, c-format
@@ -8680,12 +8648,12 @@ msgstr "CHAP"
#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Script-based"
-msgstr "на аснове скрыпту"
+msgstr "на аснове скрыпту"
#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Terminal-based"
-msgstr "на аснове тэрмiналу"
+msgstr "на аснове тэрмiналу"
#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
#, c-format
@@ -8695,32 +8663,32 @@ msgstr "PAP"
#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Login ID"
-msgstr "Iмя (login ID)"
+msgstr "IРјСЏ (login ID)"
#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Phone number"
-msgstr "Нумар тэлефону"
+msgstr "Нумар тэлефону"
#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Connection name"
-msgstr "Iмя злучэння"
+msgstr "Iмя злучэння"
#: ../../network/modem.pm:1
#, c-format
msgid "Dialup options"
-msgstr "Параметры камутаванага злучэння (Dialup)"
+msgstr "Параметры камутаванага злучэння (Dialup)"
#: ../../network/modem.pm:1
#, c-format
msgid "Please choose which serial port your modem is connected to."
-msgstr "Да якога паслядоўнага порту далучаны мадэм?"
+msgstr "Да якога паслядоўнага порту далучаны мадэм?"
#: ../../network/netconnect.pm:1 ../../network/tools.pm:1
#, c-format
msgid "Network Configuration"
-msgstr "Канфiгурацыя сеткi"
+msgstr "Канфiгурацыя сеткi"
#: ../../network/netconnect.pm:1
#, c-format
@@ -8751,27 +8719,27 @@ msgid ""
"A problem occured while restarting the network: \n"
"\n"
"%s"
-msgstr "Цi жадаеце пратэсцiраваць настройкi?"
+msgstr "Цi жадаеце пратэсцiраваць настройкi?"
#: ../../network/netconnect.pm:1
#, fuzzy, c-format
msgid "The network needs to be restarted. Do you want to restart it ?"
-msgstr "Выбар пакетаў для ўсталявання"
+msgstr "Выбар пакетаў для ўсталявання"
#: ../../network/netconnect.pm:1
#, fuzzy, c-format
msgid "Network configuration"
-msgstr "Канфiгурацыя сеткi"
+msgstr "Канфiгурацыя сеткi"
#: ../../network/netconnect.pm:1
#, c-format
msgid "Do you want to start the connection at boot?"
-msgstr "Вы жадаеце, каб гэтае злучэнне стартавала пры загрузцы?"
+msgstr "Вы жадаеце, каб гэтае злучэнне стартавала пры загрузцы?"
#: ../../network/netconnect.pm:1
#, fuzzy, c-format
msgid "Internet connection"
-msgstr "Сумеснае Iнтэрнэт-злучэнне"
+msgstr "Сумеснае Iнтэрнэт-злучэнне"
#: ../../network/netconnect.pm:1
#, c-format
@@ -8784,7 +8752,7 @@ msgstr ""
#: ../../network/netconnect.pm:1
#, fuzzy, c-format
msgid "Choose the connection you want to configure"
-msgstr "Абярыце iнструмент, якi жадаеце скарыстаць"
+msgstr "Абярыце iнструмент, якi жадаеце скарыстаць"
#: ../../network/netconnect.pm:1
#, c-format
@@ -8794,27 +8762,27 @@ msgstr ""
#: ../../network/netconnect.pm:1
#, fuzzy, c-format
msgid "LAN connection"
-msgstr "Размеркаванне"
+msgstr "Размеркаванне"
#: ../../network/netconnect.pm:1
#, fuzzy, c-format
msgid "cable connection detected"
-msgstr "Злучэнне прынтэру"
+msgstr "Злучэнне прынтэру"
#: ../../network/netconnect.pm:1
#, fuzzy, c-format
msgid "Cable connection"
-msgstr "Злучэнне прынтэру"
+msgstr "Злучэнне прынтэру"
#: ../../network/netconnect.pm:1
#, fuzzy, c-format
msgid "detected"
-msgstr "Аддалены прынтэр"
+msgstr "Аддалены прынтэр"
#: ../../network/netconnect.pm:1
#, fuzzy, c-format
msgid "ADSL connection"
-msgstr "Размеркаванне"
+msgstr "Размеркаванне"
#: ../../network/netconnect.pm:1
#, c-format
@@ -8824,17 +8792,17 @@ msgstr ""
#: ../../network/netconnect.pm:1
#, fuzzy, c-format
msgid "ISDN connection"
-msgstr "Настройка ISDN"
+msgstr "Настройка ISDN"
#: ../../network/netconnect.pm:1
#, fuzzy, c-format
msgid "Winmodem connection"
-msgstr "Злучэнне прынтэру"
+msgstr "Злучэнне прынтэру"
#: ../../network/netconnect.pm:1
#, fuzzy, c-format
msgid "detected on port %s"
-msgstr "Дубляванне пункту манцiравання %s"
+msgstr "Дубляванне пункту манцiравання %s"
#: ../../network/netconnect.pm:1
#, c-format
@@ -8844,13 +8812,13 @@ msgstr ""
#: ../../network/netconnect.pm:1 ../../printer/printerdrake.pm:1
#, c-format
msgid "Detecting devices..."
-msgstr "Вызначэнне прыладаў..."
+msgstr "Вызначэнне прыладаў..."
#: ../../network/netconnect.pm:1 ../../printer/printerdrake.pm:1
#: ../../standalone/drakconnect:1 ../../standalone/drakfloppy:1
#, fuzzy, c-format
msgid "Expert Mode"
-msgstr "Эксперт"
+msgstr "Эксперт"
#: ../../network/netconnect.pm:1
#, c-format
@@ -8860,7 +8828,7 @@ msgstr ""
#: ../../network/netconnect.pm:1
#, fuzzy, c-format
msgid "Choose the profile to configure"
-msgstr "Абярыце асноўнага карыстальнiка:"
+msgstr "Абярыце асноўнага карыстальнiка:"
#: ../../network/netconnect.pm:1
#, c-format
@@ -8892,34 +8860,34 @@ msgid ""
"Press OK to continue."
msgstr ""
"\n"
-"Вы можаце адключыцца ці пераканфігураваць вашае злучэнне."
+"Вы можаце адключыцца ці пераканфігураваць вашае злучэнне."
#: ../../network/netconnect.pm:1
#, fuzzy, c-format
msgid "We are now going to configure the %s connection."
msgstr ""
"\n"
-"Вы можаце адключыцца ці пераканфігураваць вашае злучэнне."
+"Вы можаце адключыцца ці пераканфігураваць вашае злучэнне."
#: ../../network/netconnect.pm:1
#, c-format
msgid "Internet connection & configuration"
-msgstr "Iнтэрнэт злучэнне i канфiгурацыя"
+msgstr "Iнтэрнэт злучэнне i канфiгурацыя"
#: ../../network/netconnect.pm:1
#, fuzzy, c-format
msgid "Configure the connection"
-msgstr "Настройка сеткi"
+msgstr "Настройка сеткi"
#: ../../network/netconnect.pm:1
#, fuzzy, c-format
msgid "Disconnect"
-msgstr "Настройка ISDN"
+msgstr "Настройка ISDN"
#: ../../network/netconnect.pm:1
#, fuzzy, c-format
msgid "Connect"
-msgstr "Iмя злучэння"
+msgstr "Iмя злучэння"
#: ../../network/netconnect.pm:1
#, fuzzy, c-format
@@ -8928,7 +8896,7 @@ msgid ""
"You can reconfigure your connection."
msgstr ""
"\n"
-"Вы можаце адключыцца ці пераканфігураваць вашае злучэнне."
+"Вы можаце адключыцца ці пераканфігураваць вашае злучэнне."
#: ../../network/netconnect.pm:1
#, fuzzy, c-format
@@ -8937,12 +8905,12 @@ msgid ""
"You can connect to the Internet or reconfigure your connection."
msgstr ""
"\n"
-"Вы можаце адключыцца ці пераканфігураваць вашае злучэнне."
+"Вы можаце адключыцца ці пераканфігураваць вашае злучэнне."
#: ../../network/netconnect.pm:1
#, fuzzy, c-format
msgid "You are not currently connected to the Internet."
-msgstr "Як вы плануеце далучыцца да Iнтэрнэту?"
+msgstr "Як вы плануеце далучыцца да Iнтэрнэту?"
#: ../../network/netconnect.pm:1
#, c-format
@@ -8951,22 +8919,22 @@ msgid ""
"You can disconnect or reconfigure your connection."
msgstr ""
"\n"
-"Вы можаце адключыцца ці пераканфігураваць вашае злучэнне."
+"Вы можаце адключыцца ці пераканфігураваць вашае злучэнне."
#: ../../network/netconnect.pm:1
#, fuzzy, c-format
msgid "You are currently connected to the Internet."
-msgstr "Як вы плануеце далучыцца да Iнтэрнэту?"
+msgstr "Як вы плануеце далучыцца да Iнтэрнэту?"
#: ../../network/network.pm:1
#, fuzzy, c-format
msgid "URL should begin with 'ftp:' or 'http:'"
-msgstr "Proxy павiнен быць http://..."
+msgstr "Proxy павiнен быць http://..."
#: ../../network/network.pm:1
#, c-format
msgid "Proxy should be http://..."
-msgstr "Proxy павiнен быць http://..."
+msgstr "Proxy павiнен быць http://..."
#: ../../network/network.pm:1
#, c-format
@@ -8981,22 +8949,22 @@ msgstr "HTTP proxy"
#: ../../network/network.pm:1
#, c-format
msgid "Proxies configuration"
-msgstr "Настройка proxy кэшуючых сервераў"
+msgstr "Настройка proxy кэшуючых сервераў"
#: ../../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"
+msgstr "IP адрас павiнен быць у фармаце 1.2.3.4"
#: ../../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"
+msgstr "IP адрас павiнен быць у фармаце 1.2.3.4"
#: ../../network/network.pm:1
#, c-format
msgid "Gateway device"
-msgstr "Прылада-шлюз"
+msgstr "Прылада-шлюз"
#: ../../network/network.pm:1
#, c-format
@@ -9006,7 +8974,7 @@ msgstr ""
#: ../../network/network.pm:1
#, c-format
msgid "DNS server"
-msgstr "DNS сервер"
+msgstr "DNS сервер"
#: ../../network/network.pm:1
#, c-format
@@ -9016,10 +8984,10 @@ msgid ""
"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 ён у вас ёсць."
+"Увядзiце iмя сваёй машыны (host).\n"
+"Iмя вашай машыны павiнна быць зададзена поўнасцю,\n"
+"напрыклад ``mybox.mylab.myco.com''.\n"
+"Вы можаце таксама ўвесцi IP адрас шлюзу, калi ён у вас ёсць."
#: ../../network/network.pm:1
#, c-format
@@ -9038,22 +9006,22 @@ 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"
+msgstr "IP адрас павiнен быць у фармаце 1.2.3.4"
#: ../../network/network.pm:1
#, fuzzy, c-format
msgid "Start at boot"
-msgstr "Стварыць загр. дыск"
+msgstr "Стварыць загр. дыск"
#: ../../network/network.pm:1
#, fuzzy, c-format
msgid "Assign host name from DHCP address"
-msgstr "Калі ласка, зрабіце некалькі рухаў мышшу."
+msgstr "Калі ласка, зрабіце некалькі рухаў мышшу."
#: ../../network/network.pm:1
#, fuzzy, c-format
msgid "Network Hotplugging"
-msgstr "Канфiгурацыя сеткi"
+msgstr "Канфiгурацыя сеткi"
#: ../../network/network.pm:1
#, c-format
@@ -9063,19 +9031,19 @@ msgstr ""
#: ../../network/network.pm:1
#, fuzzy, c-format
msgid "DHCP host name"
-msgstr "Iмя машыны"
+msgstr "Iмя машыны"
#: ../../network/network.pm:1 ../../standalone/drakconnect:1
#: ../../standalone/drakgw:1
#, c-format
msgid "Netmask"
-msgstr "Маска сеткi"
+msgstr "Маска сеткi"
#: ../../network/network.pm:1 ../../printer/printerdrake.pm:1
#: ../../standalone/drakconnect:1
#, c-format
msgid "IP address"
-msgstr "IP адрас"
+msgstr "IP адрас"
#: ../../network/network.pm:1
#, fuzzy, c-format
@@ -9085,17 +9053,17 @@ msgstr "(bootp/dhcp)"
#: ../../network/network.pm:1
#, c-format
msgid "Automatic IP"
-msgstr "Аўтаматычны IP"
+msgstr "Аўтаматычны IP"
#: ../../network/network.pm:1
#, fuzzy, c-format
msgid " (driver %s)"
-msgstr "Сервер XFree86: %s\n"
+msgstr "Сервер XFree86: %s\n"
#: ../../network/network.pm:1
#, c-format
msgid "Configuring network device %s"
-msgstr "Настройка сеткавай прылады %s"
+msgstr "Настройка сеткавай прылады %s"
#: ../../network/network.pm:1
#, c-format
@@ -9104,9 +9072,9 @@ msgid ""
"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)."
+"Калi ласка, увядзiце IP канфiгурацыю для вашай машыны.\n"
+"Кожны пункт павiнен быць запоўнены як IP адрас ў дзесяткова-кропкавай \n"
+"натацыi (напрыклад, 1.2.3.4)."
#: ../../network/network.pm:1
#, c-format
@@ -9123,103 +9091,103 @@ msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fixes after installation."
msgstr ""
-"Увага! Знойдзена існуючая сiстэма сеткавай бяспекi (firewall). Вам магчыма "
-"спатрэбіцца скарэктаваць яе пасля ўсталявання."
+"Увага! Знойдзена існуючая сiстэма сеткавай бяспекi (firewall). Вам магчыма "
+"спатрэбіцца скарэктаваць яе пасля ўсталявання."
#: ../../network/shorewall.pm:1
#, c-format
msgid "Firewalling configuration detected!"
-msgstr "Знойдзена сістэма сеткавай бяспекі (firewall)!"
+msgstr "Знойдзена сістэма сеткавай бяспекі (firewall)!"
#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Account Password"
-msgstr "Пароль для ўваходу"
+msgstr "Пароль для ўваходу"
#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Account Login (user name)"
-msgstr "Iмя для ўваходу (iмя карыстальнiку)"
+msgstr "Iмя для ўваходу (iмя карыстальнiку)"
#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, fuzzy, c-format
msgid "Connection timeout (in sec)"
-msgstr "Iмя злучэння"
+msgstr "Iмя злучэння"
#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, fuzzy, c-format
msgid "Connection speed"
-msgstr "Iмя злучэння"
+msgstr "Iмя злучэння"
#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Dialing mode"
-msgstr "Рэжым злучэння"
+msgstr "Рэжым злучэння"
#: ../../network/tools.pm:1
#, fuzzy, c-format
msgid "Choose your country"
-msgstr "Выбар клавiятуры"
+msgstr "Выбар клавiятуры"
#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, fuzzy, c-format
msgid "Provider dns 2 (optional)"
-msgstr "DNS 2 правайдару"
+msgstr "DNS 2 правайдару"
#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, fuzzy, c-format
msgid "Provider dns 1 (optional)"
-msgstr "DNS 1 правайдару"
+msgstr "DNS 1 правайдару"
#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Provider phone number"
-msgstr "Нумар тэлефону правайдара"
+msgstr "Нумар тэлефону правайдара"
#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Provider name (ex provider.net)"
-msgstr "Iмя правайдару, напрыклад правайдар.net"
+msgstr "Iмя правайдару, напрыклад правайдар.net"
#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Your personal phone number"
-msgstr "Ваш асабiсты тэлефонны нумар"
+msgstr "Ваш асабiсты тэлефонны нумар"
#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Card IO_1"
-msgstr "IO_1 карты"
+msgstr "IO_1 карты"
#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Card IO_0"
-msgstr "IO_0 карты"
+msgstr "IO_0 карты"
#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Card IO"
-msgstr "IO карты"
+msgstr "IO карты"
#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Card mem (DMA)"
-msgstr "Адрасы памяці карты (DMA)"
+msgstr "Адрасы памяці карты (DMA)"
#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Card IRQ"
-msgstr "IRQ карты"
+msgstr "IRQ карты"
#: ../../network/tools.pm:1
#, c-format
msgid "Please fill or check the field below"
-msgstr "Калi ласка, запоўнiце цi пазначце поле нiжэй"
+msgstr "Калi ласка, запоўнiце цi пазначце поле нiжэй"
#: ../../network/tools.pm:1
#, c-format
msgid "Connection Configuration"
-msgstr "Настройка далучэння да Iнтэрнэту"
+msgstr "Настройка далучэння да Iнтэрнэту"
#: ../../network/tools.pm:1
#, fuzzy, c-format
@@ -9228,7 +9196,7 @@ msgid ""
"Try to reconfigure your connection."
msgstr ""
"\n"
-"Вы можаце адключыцца ці пераканфігураваць вашае злучэнне."
+"Вы можаце адключыцца ці пераканфігураваць вашае злучэнне."
#: ../../network/tools.pm:1
#, c-format
@@ -9238,22 +9206,22 @@ msgstr ""
#: ../../network/tools.pm:1
#, fuzzy, c-format
msgid "The system is now connected to the Internet."
-msgstr "Як вы плануеце далучыцца да Iнтэрнэту?"
+msgstr "Як вы плануеце далучыцца да Iнтэрнэту?"
#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, fuzzy, c-format
msgid "Testing your connection..."
-msgstr "Якi тып вашага ISDN злучэння?"
+msgstr "Якi тып вашага ISDN злучэння?"
#: ../../network/tools.pm:1
#, c-format
msgid "Do you want to try to connect to the Internet now?"
-msgstr "Цi жадаеце зараз паспрабаваць далучыцца да Iнтэрнэту?"
+msgstr "Цi жадаеце зараз паспрабаваць далучыцца да Iнтэрнэту?"
#: ../../network/tools.pm:1
#, c-format
msgid "Internet configuration"
-msgstr "Настройка злучэння з Iнтэрнэтам"
+msgstr "Настройка злучэння з Iнтэрнэтам"
#: ../../partition_table/raw.pm:1
#, c-format
@@ -9267,17 +9235,17 @@ msgstr ""
#: ../../printer/cups.pm:1 ../../printer/printerdrake.pm:1
#, c-format
msgid " (Default)"
-msgstr " (Па дамаўленню)"
+msgstr " (Па дамаўленню)"
#: ../../printer/cups.pm:1
#, fuzzy, c-format
msgid "On CUPS server \"%s\""
-msgstr "IP сервера SMB"
+msgstr "IP сервера SMB"
#: ../../printer/cups.pm:1 ../../printer/main.pm:1
#, fuzzy, c-format
msgid "Remote Printers"
-msgstr "Аддалены прынтэр"
+msgstr "Аддалены прынтэр"
#: ../../printer/cups.pm:1 ../../printer/data.pm:1
#, c-format
@@ -9292,7 +9260,7 @@ msgstr ""
#: ../../printer/cups.pm:1
#, fuzzy, c-format
msgid "(on %s)"
-msgstr "(модуль %s)"
+msgstr "(модуль %s)"
#: ../../printer/data.pm:1
#, c-format
@@ -9342,27 +9310,27 @@ msgstr ""
#: ../../printer/main.pm:1
#, fuzzy, c-format
msgid "%s (Port %s)"
-msgstr "Порт"
+msgstr "РџРѕСЂС‚"
#: ../../printer/main.pm:1
#, fuzzy, c-format
msgid "Host %s"
-msgstr "Iмя машыны"
+msgstr "Iмя машыны"
#: ../../printer/main.pm:1
#, fuzzy, c-format
msgid "Network %s"
-msgstr "Сетка:"
+msgstr "Сетка:"
#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Interface \"%s\""
-msgstr "Сеткавы iнтэрфейс"
+msgstr "Сеткавы iнтэрфейс"
#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Local network(s)"
-msgstr "сеткавая карта не знойдзена"
+msgstr "сеткавая карта не знойдзена"
#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
#, c-format
@@ -9397,7 +9365,7 @@ msgstr ""
#: ../../printer/main.pm:1
#, fuzzy, c-format
msgid ", printing to %s"
-msgstr "Памылка запiсу ў файл %s"
+msgstr "Памылка запiсу ў файл %s"
#: ../../printer/main.pm:1
#, c-format
@@ -9422,7 +9390,7 @@ msgstr ""
#: ../../printer/main.pm:1
#, fuzzy, c-format
msgid ", USB printer"
-msgstr "Iмя друкаркi"
+msgstr "Iмя друкаркi"
#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
#, c-format
@@ -9437,7 +9405,7 @@ msgstr ""
#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Local Printers"
-msgstr "Лакальны прынтэр"
+msgstr "Лакальны прынтэр"
#: ../../printer/main.pm:1
#, c-format
@@ -9447,12 +9415,12 @@ msgstr ""
#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Enter a printer device URI"
-msgstr "URI прынтэру"
+msgstr "URI прынтэру"
#: ../../printer/main.pm:1
#, fuzzy, c-format
msgid "Printer on NetWare server"
-msgstr "Сервер друку"
+msgstr "Сервер друку"
#: ../../printer/main.pm:1
#, fuzzy, c-format
@@ -9462,62 +9430,62 @@ msgstr "SMB/Windows 95/98/NT"
#: ../../printer/main.pm:1
#, c-format
msgid "Network printer (TCP/Socket)"
-msgstr "Сеткавы прынтэр (TCP/Socket)"
+msgstr "Сеткавы прынтэр (TCP/Socket)"
#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Printer on remote lpd server"
-msgstr "Аддалены сервер lpd"
+msgstr "Аддалены сервер lpd"
#: ../../printer/main.pm:1
#, fuzzy, c-format
msgid "Printer on remote CUPS server"
-msgstr "Аддалены сервер CUPS"
+msgstr "Аддалены сервер CUPS"
#: ../../printer/main.pm:1
#, c-format
msgid "Remote printer"
-msgstr "Аддалены прынтэр"
+msgstr "Аддалены прынтэр"
#: ../../printer/main.pm:1
#, c-format
msgid "Local printer"
-msgstr "Лакальны прынтэр"
+msgstr "Лакальны прынтэр"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Configuring applications..."
-msgstr "Настройка прынтэру"
+msgstr "Настройка прынтэру"
#: ../../printer/printerdrake.pm:1 ../../standalone/printerdrake:1
#, fuzzy, c-format
msgid "Printerdrake"
-msgstr "Прынтэр"
+msgstr "Прынтэр"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Removing printer \"%s\"..."
-msgstr "Чытаю базу дадзеных драйвероў CUPS"
+msgstr "Чытаю базу дадзеных драйвероў CUPS"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Do you really want to remove the printer \"%s\"?"
-msgstr "Цi жадаеце пратэсцiраваць настройкi?"
+msgstr "Цi жадаеце пратэсцiраваць настройкi?"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Remove printer"
-msgstr "Аддалены прынтэр"
+msgstr "Аддалены прынтэр"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Learn how to use this printer"
-msgstr "Цi жадаеце пратэсцiраваць настройкi?"
+msgstr "Цi жадаеце пратэсцiраваць настройкi?"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Print test pages"
-msgstr "Друк тэставых старонак"
+msgstr "Друк тэставых старонак"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -9571,7 +9539,7 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Default printer"
-msgstr "Лакальны прынтэр"
+msgstr "Лакальны прынтэр"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -9581,7 +9549,7 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printer options"
-msgstr "Опцыi прынтэру"
+msgstr "Опцыi прынтэру"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -9596,22 +9564,22 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Removing old printer \"%s\"..."
-msgstr "Чытаю базу дадзеных драйвероў CUPS"
+msgstr "Чытаю базу дадзеных драйвероў CUPS"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Printer name, description, location"
-msgstr "Злучэнне прынтэру"
+msgstr "Злучэнне прынтэру"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Printer connection type"
-msgstr "Сумеснае Iнтэрнэт-злучэнне"
+msgstr "Сумеснае Iнтэрнэт-злучэнне"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Raw printer"
-msgstr "Iмя друкаркi"
+msgstr "Iмя друкаркi"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -9623,45 +9591,45 @@ msgstr ""
#: ../../standalone/drakfont:1 ../../standalone/net_monitor:1
#, fuzzy, c-format
msgid "Close"
-msgstr "Порт мышы"
+msgstr "Порт мышы"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid ""
"Printer %s\n"
"What do you want to modify on this printer?"
-msgstr "Цi жадаеце пратэсцiраваць настройкi?"
+msgstr "Цi жадаеце пратэсцiраваць настройкi?"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Modify printer configuration"
-msgstr "Настройка злучэння з Iнтэрнэтам"
+msgstr "Настройка злучэння з Iнтэрнэтам"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Add a new printer"
-msgstr "Iмя друкаркi"
+msgstr "Iмя друкаркi"
#: ../../printer/printerdrake.pm:1 ../../standalone/drakconnect:1
#: ../../standalone/drakfloppy:1
#, fuzzy, c-format
msgid "Normal Mode"
-msgstr "Звычайны"
+msgstr "Звычайны"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Change the printing system"
-msgstr "Настройка сеткi"
+msgstr "Настройка сеткi"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Printer sharing"
-msgstr "Прынтэр"
+msgstr "Прынтэр"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "CUPS configuration"
-msgstr "Настройка"
+msgstr "Настройка"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -9680,19 +9648,8 @@ msgid ""
"its settings; to make it the default printer; or to view information about "
"it."
msgstr ""
-"Тут змяшчаюцца чэргi друку.\n"
-"Вы можаце дадаць яшчэ, альбо змянiць iснуючыя."
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-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снуючыя."
+"Тут змяшчаюцца чэргi друку.\n"
+"Вы можаце дадаць яшчэ, альбо змянiць iснуючыя."
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -9707,47 +9664,47 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Installing Foomatic..."
-msgstr "Усталяванне пакету %s"
+msgstr "Усталяванне пакету %s"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Failed to configure printer \"%s\"!"
-msgstr "Настройка прынтэру"
+msgstr "Настройка прынтэру"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Configuring printer \"%s\"..."
-msgstr "Настройка прынтэру"
+msgstr "Настройка прынтэру"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Reading printer data..."
-msgstr "Чытаю базу дадзеных драйвероў CUPS"
+msgstr "Чытаю базу дадзеных драйвероў CUPS"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Which printing system (spooler) do you want to use?"
-msgstr "Якую сiстэму друку Вы жадаеце выкарыстоўваць?"
+msgstr "Якую сiстэму друку Вы жадаеце выкарыстоўваць?"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Select Printer Spooler"
-msgstr "Выбар тыпу злучэння прынтэру"
+msgstr "Выбар тыпу злучэння прынтэру"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Setting Default Printer..."
-msgstr "Лакальны прынтэр"
+msgstr "Лакальны прынтэр"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Installing %s ..."
-msgstr "Усталяванне пакету %s"
+msgstr "Усталяванне пакету %s"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Removing %s ..."
-msgstr "Памеры экрану: %s\n"
+msgstr "Памеры экрану: %s\n"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -9766,7 +9723,7 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Starting the printing system at boot time"
-msgstr "Якую сiстэму друку Вы жадаеце выкарыстоўваць?"
+msgstr "Якую сiстэму друку Вы жадаеце выкарыстоўваць?"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -9791,22 +9748,22 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "paranoid"
-msgstr "Паранаiдальны"
+msgstr "Паранаiдальны"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "high"
-msgstr "Высокi"
+msgstr "Высокi"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Restarting printing system..."
-msgstr "Якую сiстэму друку Вы жадаеце выкарыстоўваць?"
+msgstr "Якую сiстэму друку Вы жадаеце выкарыстоўваць?"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Configuration of a remote printer"
-msgstr "Настройка прынтэру"
+msgstr "Настройка прынтэру"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -9830,12 +9787,12 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Configure the network now"
-msgstr "Настройка сеткi"
+msgstr "Настройка сеткi"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Go on without configuring the network"
-msgstr "Настройка сеткi"
+msgstr "Настройка сеткi"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -9849,17 +9806,17 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Network functionality not configured"
-msgstr "Манiтор пакуль не настроены"
+msgstr "Манiтор пакуль не настроены"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Starting network..."
-msgstr "Якi тып вашага ISDN злучэння?"
+msgstr "Якi тып вашага ISDN злучэння?"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Refreshing printer data..."
-msgstr "Чытаю базу дадзеных драйвероў CUPS"
+msgstr "Чытаю базу дадзеных драйвероў CUPS"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -9871,7 +9828,7 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Transfer printer configuration"
-msgstr "Настройка злучэння з Iнтэрнэтам"
+msgstr "Настройка злучэння з Iнтэрнэтам"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -9881,7 +9838,7 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "New printer name"
-msgstr "Iмя друкаркi"
+msgstr "Iмя друкаркi"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -9996,32 +9953,32 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printing test page(s)..."
-msgstr "Друк тэставых старонак"
+msgstr "Друк тэставых старонак"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Print option list"
-msgstr "Опцыi прынтэру"
+msgstr "Опцыi прынтэру"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Printing on the printer \"%s\""
-msgstr "Адлучэнне ад сеткi"
+msgstr "Адлучэнне ад сеткi"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Printing/Photo Card Access on \"%s\""
-msgstr "Адлучэнне ад сеткi"
+msgstr "Адлучэнне ад сеткi"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Printing/Scanning on \"%s\""
-msgstr "Адлучэнне ад сеткi"
+msgstr "Адлучэнне ад сеткi"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Printing/Scanning/Photo Cards on \"%s\""
-msgstr "Адлучэнне ад сеткi"
+msgstr "Адлучэнне ад сеткi"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -10124,9 +10081,9 @@ msgid ""
"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"
-"Ён працуе нармальна?"
+"Тэставыя старонкi адпраўлены дэману друку.\n"
+"Перад тым, як прынтэр запрацуе, можа прайсцi пэўны час.\n"
+"Ён працуе нармальна?"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
@@ -10137,27 +10094,27 @@ msgid ""
"%s\n"
"\n"
msgstr ""
-"Тэставыя старонкi адпраўлены дэману друку.\n"
-"Перад тым, як прынтэр запрацуе, можа прайсцi пэўны час.\n"
-"Статус друку:\n"
+"Тэставыя старонкi адпраўлены дэману друку.\n"
+"Перад тым, як прынтэр запрацуе, можа прайсцi пэўны час.\n"
+"Статус друку:\n"
"%s\n"
"\n"
-"Ён працуе нармальна?"
+"Ён працуе нармальна?"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Do not print any test page"
-msgstr "Друк тэставых старонак"
+msgstr "Друк тэставых старонак"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Photo test page"
-msgstr "Друк тэставых старонак"
+msgstr "Друк тэставых старонак"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Alternative test page (A4)"
-msgstr "Друк тэставых старонак"
+msgstr "Друк тэставых старонак"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -10167,17 +10124,17 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Standard test page"
-msgstr "Стандартны"
+msgstr "Стандартны"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Print"
-msgstr "Прынтэр"
+msgstr "Прынтэр"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "No test pages"
-msgstr "Так, надрукаваць абедзве старонкi тэксту"
+msgstr "Так, надрукаваць абедзве старонкi тэксту"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -10191,14 +10148,14 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Test pages"
-msgstr "Праверка партоў"
+msgstr "Праверка партоў"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
"as the default printer?"
-msgstr "Жадаеце пратэсцiраваць друк?"
+msgstr "Жадаеце пратэсцiраваць друк?"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -10216,6 +10173,11 @@ msgid "Option %s must be an integer number!"
msgstr ""
#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Printer default settings"
+msgstr "Злучэнне прынтэру"
+
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Printer default settings\n"
@@ -10271,7 +10233,7 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Lexmark inkjet configuration"
-msgstr "Настройка злучэння з Iнтэрнэтам"
+msgstr "Настройка злучэння з Iнтэрнэтам"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -10296,7 +10258,7 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "OKI winprinter configuration"
-msgstr "Настройка злучэння з Iнтэрнэтам"
+msgstr "Настройка злучэння з Iнтэрнэтам"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -10318,27 +10280,27 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Which printer model do you have?"
-msgstr "Якi тып друкаркi вы маеце?"
+msgstr "Якi тып друкаркi вы маеце?"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Printer model selection"
-msgstr "Злучэнне прынтэру"
+msgstr "Злучэнне прынтэру"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Reading printer database..."
-msgstr "Чытаю базу дадзеных драйвероў CUPS"
+msgstr "Чытаю базу дадзеных драйвероў CUPS"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Select model manually"
-msgstr "Аддалены прынтэр"
+msgstr "Аддалены прынтэр"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "The model is correct"
-msgstr "Гэта дакладна?"
+msgstr "Гэта дакладна?"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -10358,27 +10320,27 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Your printer model"
-msgstr "Аддалены прынтэр"
+msgstr "Аддалены прынтэр"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Preparing printer database..."
-msgstr "Чытаю базу дадзеных драйвероў CUPS"
+msgstr "Чытаю базу дадзеных драйвероў CUPS"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Location"
-msgstr "Размеркаванне"
+msgstr "Размеркаванне"
#: ../../printer/printerdrake.pm:1 ../../standalone/harddrake2:1
#, c-format
msgid "Description"
-msgstr "Апiсанне"
+msgstr "Апiсанне"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Name of printer"
-msgstr "Iмя друкаркi"
+msgstr "Iмя друкаркi"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -10410,12 +10372,12 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Installing mtools packages..."
-msgstr "Усталяванне пакету %s"
+msgstr "Усталяванне пакету %s"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Installing SANE packages..."
-msgstr "Усталяванне пакету %s"
+msgstr "Усталяванне пакету %s"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -10425,7 +10387,7 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Installing HPOJ package..."
-msgstr "Усталяванне пакету %s"
+msgstr "Усталяванне пакету %s"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -10443,7 +10405,7 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Command line"
-msgstr "Iмя дамену"
+msgstr "Iмя дамену"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -10460,7 +10422,7 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Detected model: %s %s"
-msgstr "Дубляванне пункту манцiравання %s"
+msgstr "Дубляванне пункту манцiравання %s"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -10470,7 +10432,7 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printer Device URI"
-msgstr "URI прынтэру"
+msgstr "URI прынтэру"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -10483,12 +10445,12 @@ msgstr ""
#: ../../printer/printerdrake.pm:1 ../../standalone/harddrake2:1
#, c-format
msgid "Port"
-msgstr "Порт"
+msgstr "РџРѕСЂС‚"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Printer host name or IP"
-msgstr "Iмя прынтэру"
+msgstr "Iмя прынтэру"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -10498,7 +10460,7 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Printer host name or IP missing!"
-msgstr "Iмя прынтэру"
+msgstr "Iмя прынтэру"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
@@ -10508,8 +10470,8 @@ msgid ""
"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 магчыма яго нумар порту."
+"Каб друкаваць праз сокет друкаркi, вам неабходна забяспечыць\n"
+"iмя прынтэру i магчыма яго нумар порту."
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -10521,7 +10483,7 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "TCP/Socket Printer Options"
-msgstr "Опцыi сокету прынтэру"
+msgstr "Опцыi сокету прынтэру"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -10536,12 +10498,12 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Scanning network..."
-msgstr "Якi тып вашага ISDN злучэння?"
+msgstr "Якi тып вашага ISDN злучэння?"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Printer auto-detection"
-msgstr "Аддалены прынтэр"
+msgstr "Аддалены прынтэр"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -10556,12 +10518,12 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Print Queue Name"
-msgstr "Iмя чаргi друку"
+msgstr "Iмя чаргi друку"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printer Server"
-msgstr "Сервер друку"
+msgstr "Сервер друку"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
@@ -10571,14 +10533,14 @@ msgid ""
"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 пароль."
+"Для друку на прынтэры NetWare неабходна пазначыць iмя серверу друку NetWare "
+"(не заўсёды супадае з iменем у сетцы TCP/IP) i iмя чаргi друку, якая "
+"адпавядае абранаму прынтэру, а таксама iмя карыстальнiку i пароль."
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "NetWare Printer Options"
-msgstr "Опцыi прынтэру NetWare"
+msgstr "Опцыi прынтэру NetWare"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -10640,27 +10602,27 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Auto-detected"
-msgstr "Аддалены прынтэр"
+msgstr "Аддалены прынтэр"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Workgroup"
-msgstr "Працоўная група"
+msgstr "Працоўная група"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Share name"
-msgstr "Iмя для размеркаванага рэсурсу"
+msgstr "Iмя для размеркаванага рэсурсу"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "SMB server IP"
-msgstr "IP сервера SMB"
+msgstr "IP сервера SMB"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "SMB server host"
-msgstr "Iмя серверу SMB"
+msgstr "Iмя серверу SMB"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -10677,20 +10639,20 @@ msgid ""
"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нфармацыю аб працоўнай групе."
+"Для друку на прынтэры SMB неабходна пазначыць iмя хосту SMB (не заўсёды "
+"супадае з iменем у сетцы TCP/IP) i адрас IP сервера друку, а таксама iмя "
+"рэсурсу, якi спалучаны з выбраным прынтэрам, iмя карыстальнiку, пароль i "
+"iнфармацыю аб працоўнай групе."
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "SMB (Windows 9x/NT) Printer Options"
-msgstr "Опцыi прынтэру SMB (Windows 9x/NT)"
+msgstr "Опцыi прынтэру SMB (Windows 9x/NT)"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Printer \"%s\" on server \"%s\""
-msgstr "Адлучэнне ад сеткi"
+msgstr "Адлучэнне ад сеткi"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -10700,22 +10662,22 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Remote printer name missing!"
-msgstr "Аддалены вузел"
+msgstr "Аддалены вузел"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Remote host name missing!"
-msgstr "Аддалены вузел"
+msgstr "Аддалены вузел"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Remote printer name"
-msgstr "Аддалены прынтэр"
+msgstr "Аддалены прынтэр"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Remote host name"
-msgstr "Аддалены вузел"
+msgstr "Аддалены вузел"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
@@ -10723,24 +10685,24 @@ 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."
+"Для настройкi аддаленай чаргi друку вам патрэбна\n"
+"пазначыць iмя аддаленага сервера i iмя чаргi друку,\n"
+"у якую аддалены сервер будзе адпраўляць заданнi."
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Remote lpd Printer Options"
-msgstr "Опцыi аддаленага прынтэру lpd"
+msgstr "Опцыi аддаленага прынтэру lpd"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Manual configuration"
-msgstr "Настройка"
+msgstr "Настройка"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "You must choose/enter a printer/device!"
-msgstr "URI прынтэру"
+msgstr "URI прынтэру"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -10752,7 +10714,7 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Please choose the port that your printer is connected to."
-msgstr "Да якога паслядоўнага порту далучаны мадэм?"
+msgstr "Да якога паслядоўнага порту далучаны мадэм?"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -10764,7 +10726,7 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Please choose the printer to which the print jobs should go."
-msgstr "Да якога паслядоўнага порту далучаны мадэм?"
+msgstr "Да якога паслядоўнага порту далучаны мадэм?"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -10796,7 +10758,7 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "The following printer was auto-detected. "
-msgstr "Наступныя пакеты будуць выдалены"
+msgstr "Наступныя пакеты будуць выдалены"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -10828,17 +10790,17 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Available printers"
-msgstr "Даступныя пакеты"
+msgstr "Даступныя пакеты"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "No printer found!"
-msgstr "Лакальны прынтэр"
+msgstr "Лакальны прынтэр"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "You must enter a device or file name!"
-msgstr "URI прынтэру"
+msgstr "URI прынтэру"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -10852,17 +10814,17 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Local Printer"
-msgstr "Лакальны прынтэр"
+msgstr "Лакальны прынтэр"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "USB printer \\#%s"
-msgstr "Iмя друкаркi"
+msgstr "Iмя друкаркi"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Printer on parallel port \\#%s"
-msgstr "Iмя прынтэру"
+msgstr "Iмя прынтэру"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
@@ -10872,12 +10834,12 @@ msgstr "SMB/Windows 95/98/NT"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Network printer \"%s\", port %s"
-msgstr "Сеткавы прынтэр (TCP/Socket)"
+msgstr "Сеткавы прынтэр (TCP/Socket)"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Detected %s"
-msgstr "Дубляванне пункту манцiравання %s"
+msgstr "Дубляванне пункту манцiравання %s"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
@@ -10917,7 +10879,7 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Auto-detect printers connected to this machine"
-msgstr "Аддалены прынтэр"
+msgstr "Аддалены прынтэр"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -11020,12 +10982,12 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Configuring printer ..."
-msgstr "Настройка прынтэру"
+msgstr "Настройка прынтэру"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Searching for new printers..."
-msgstr "Даступныя пакеты"
+msgstr "Даступныя пакеты"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -11042,12 +11004,12 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Do you want to enable printing on the printers mentioned above?\n"
-msgstr "Вы жадаеце, каб гэтае злучэнне стартавала пры загрузцы?"
+msgstr "Вы жадаеце, каб гэтае злучэнне стартавала пры загрузцы?"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Do you want to enable printing on printers in the local network?\n"
-msgstr "Жадаеце пратэсцiраваць друк?"
+msgstr "Жадаеце пратэсцiраваць друк?"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -11059,7 +11021,7 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid " (Make sure that all your printers are connected and turned on).\n"
-msgstr "Да якога паслядоўнага порту далучаны мадэм?"
+msgstr "Да якога паслядоўнага порту далучаны мадэм?"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -11088,7 +11050,7 @@ msgid ""
"\n"
"%s%s\n"
"is directly connected to your system"
-msgstr "У вашай сістэме няма нiводнага сеткавага адаптара!"
+msgstr "У вашай сістэме няма нiводнага сеткавага адаптара!"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
@@ -11097,7 +11059,7 @@ msgid ""
"\n"
"%s%s\n"
"are directly connected to your system"
-msgstr "У вашай сістэме няма нiводнага сеткавага адаптара!"
+msgstr "У вашай сістэме няма нiводнага сеткавага адаптара!"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
@@ -11106,27 +11068,27 @@ msgid ""
"\n"
"%s%s\n"
"are directly connected to your system"
-msgstr "У вашай сістэме няма нiводнага сеткавага адаптара!"
+msgstr "У вашай сістэме няма нiводнага сеткавага адаптара!"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "and %d unknown printers"
-msgstr "Iмя друкаркi"
+msgstr "Iмя друкаркi"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "and one unknown printer"
-msgstr "Iмя друкаркi"
+msgstr "Iмя друкаркi"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Checking your system..."
-msgstr "Якую сiстэму друку Вы жадаеце выкарыстоўваць?"
+msgstr "Якую сiстэму друку Вы жадаеце выкарыстоўваць?"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Restarting CUPS..."
-msgstr "абмежаванне"
+msgstr "абмежаванне"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -11141,12 +11103,12 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "The entered IP is not correct.\n"
-msgstr "Гэта дакладна?"
+msgstr "Гэта дакладна?"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Server IP missing!"
-msgstr "Iмя прынтэру"
+msgstr "Iмя прынтэру"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -11156,22 +11118,22 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Accessing printers on remote CUPS servers"
-msgstr "Аддалены сервер CUPS"
+msgstr "Аддалены сервер CUPS"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Remove selected server"
-msgstr "Выдалiць чаргу друку"
+msgstr "Выдалiць чаргу друку"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Edit selected server"
-msgstr "Выдалiць чаргу друку"
+msgstr "Выдалiць чаргу друку"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Add server"
-msgstr "Дадаць карыстальнiка"
+msgstr "Дадаць карыстальнiка"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -11211,12 +11173,12 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Sharing of local printers"
-msgstr "Даступныя пакеты"
+msgstr "Даступныя пакеты"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Remove selected host/network"
-msgstr "Выдалiць чаргу друку"
+msgstr "Выдалiць чаргу друку"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -11255,7 +11217,7 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Automatic correction of CUPS configuration"
-msgstr "Настройка мадэму"
+msgstr "Настройка мадэму"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -11273,27 +11235,27 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "None"
-msgstr "Зроблена"
+msgstr "Зроблена"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Additional CUPS servers: "
-msgstr "IP сервера SMB"
+msgstr "IP сервера SMB"
#: ../../printer/printerdrake.pm:1 ../../standalone/scannerdrake:1
#, fuzzy, c-format
msgid "No remote machines"
-msgstr "Аддалены прынтэр"
+msgstr "Аддалены прынтэр"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Custom configuration"
-msgstr "Настройка"
+msgstr "Настройка"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Printer sharing on hosts/networks: "
-msgstr "Прынтэр"
+msgstr "Прынтэр"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -11322,7 +11284,7 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "CUPS printer sharing configuration"
-msgstr "Настройка злучэння з Iнтэрнэтам"
+msgstr "Настройка злучэння з Iнтэрнэтам"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -11336,19 +11298,19 @@ msgid ""
"Printers on remote CUPS servers do not need to be configured here; these "
"printers will be automatically detected."
msgstr ""
-"Аддалены CUPS сервер не патрабуе ад Вас настройкі прынтэру\n"
-"на гэтай машыне, ён будзе знойдзены аўтаматычна.\n"
-"Калі Вы не ўпэўнены, абярыце \"Аддалены сервер CUPS\"."
+"Аддалены CUPS сервер не патрабуе ад Вас настройкі прынтэру\n"
+"на гэтай машыне, ён будзе знойдзены аўтаматычна.\n"
+"Калі Вы не ўпэўнены, абярыце \"Аддалены сервер CUPS\"."
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "How is the printer connected?"
-msgstr "Як прынтар далучаны?"
+msgstr "Як прынтар далучаны?"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Select Printer Connection"
-msgstr "Выбар тыпу злучэння прынтэру"
+msgstr "Выбар тыпу злучэння прынтэру"
#: ../../security/help.pm:1
#, c-format
@@ -11740,22 +11702,22 @@ msgstr ""
#: ../../security/level.pm:1
#, fuzzy, c-format
msgid "Use libsafe for servers"
-msgstr "Абярыце дадатковыя настройкi для сервера"
+msgstr "Абярыце дадатковыя настройкi для сервера"
#: ../../security/level.pm:1
#, fuzzy, c-format
msgid "Security level"
-msgstr "Настройкi ўзроўня бяспекi"
+msgstr "Настройкi ўзроўня бяспекi"
#: ../../security/level.pm:1
#, fuzzy, c-format
msgid "Please choose the desired security level"
-msgstr "Узровень бяспекi"
+msgstr "Узровень бяспекi"
#: ../../security/level.pm:1
#, fuzzy, c-format
msgid "DrakSec Basic Options"
-msgstr "Опцыi"
+msgstr "Опцыi"
#: ../../security/level.pm:1
#, fuzzy, c-format
@@ -11763,8 +11725,8 @@ msgid ""
"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мум."
+"Прымаюцца ўласцiвасцi 4 узроўня, але зараз сiстэма поўнасцю зачынена.\n"
+"Параметры бяспекi ўстаноўлены на максiмум."
#: ../../security/level.pm:1
#, fuzzy, c-format
@@ -11776,9 +11738,9 @@ msgid ""
"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."
+"На гэтам узроўне бяспекi магчыма выкарыстанне сiстэмы ў якасцi\n"
+"серверу. Узровень бяспекi дастаткова высокi для работы\n"
+"серверу, якi дапускае злучэннi са шматлiкiмi клiентамi."
#: ../../security/level.pm:1
#, c-format
@@ -11793,9 +11755,9 @@ 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."
+"Гэта стандартны узровень бяспекi, якi рэкамендаваны для камп'ютэру,\n"
+"якi далучаны да Internet у якасцi клiенту. Даданыя новыя праверкi\n"
+"бяспекi."
#: ../../security/level.pm:1
#, c-format
@@ -11803,8 +11765,8 @@ msgid ""
"Passwords are now enabled, but use as a networked computer is still not "
"recommended."
msgstr ""
-"Пароль зараз уключаны, але выкарыстанне камп'ютэру ў якасцi сеткавага\n"
-"таксама не рэкамендавана."
+"Пароль зараз уключаны, але выкарыстанне камп'ютэру ў якасцi сеткавага\n"
+"таксама не рэкамендавана."
#: ../../security/level.pm:1
#, c-format
@@ -11813,48 +11775,48 @@ msgid ""
"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. Уваход не абаронены "
-"паролем."
+"Гэты узровень неабходна выкарыстоўваць з асцярогай. Сiстэма будзе прасцей\n"
+"у карыстаннi, але i больш чутнай: гэты узровень бяспекi нельга "
+"выкарыстоўваць\n"
+"на машынах, якiя далучаны да сеткi цi да Internet. Уваход не абаронены "
+"паролем."
#: ../../security/level.pm:1
#, c-format
msgid "Paranoid"
-msgstr "Паранаiдальны"
+msgstr "Паранаiдальны"
#: ../../security/level.pm:1
#, fuzzy, c-format
msgid "Higher"
-msgstr "Высокi"
+msgstr "Высокi"
#: ../../security/level.pm:1
#, c-format
msgid "High"
-msgstr "Высокi"
+msgstr "Высокi"
#: ../../security/level.pm:1
#, c-format
msgid "Poor"
-msgstr "Зусім слабы"
+msgstr "Зусім слабы"
#: ../../security/level.pm:1
#, c-format
msgid "Welcome To Crackers"
-msgstr "Сардэчна запрашаем у Crackers"
+msgstr "Сардэчна запрашаем у Crackers"
#: ../../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 on the part of "
-"the worldwide Linux Community"
+"Your new operating system is the result of collaborative work of the "
+"worldwide Linux Community."
msgstr ""
#: ../../share/advertising/01-thanks.pl:1
#, c-format
-msgid "Welcome to the Open Source world"
+msgid "Welcome to the Open Source world."
msgstr ""
#: ../../share/advertising/01-thanks.pl:1
@@ -11865,190 +11827,150 @@ msgstr ""
#: ../../share/advertising/02-community.pl:1
#, c-format
msgid ""
-"To share your own knowledge and help build Linux tools, join the discussion "
-"forums you'll find on our \"Community\" webpages"
+"To share your own knowledge and help build Linux software, join our "
+"discussion forums on our \"Community\" webpages."
msgstr ""
#: ../../share/advertising/02-community.pl:1
#, c-format
-msgid "Want to know more about the Open Source community?"
+msgid ""
+"Want to know more and to contribute to the Open Source community? Get "
+"involved in the Free Software world!"
msgstr ""
#: ../../share/advertising/02-community.pl:1
-#, fuzzy, c-format
-msgid "Get involved in the Free Software world"
-msgstr "Падключэнне"
-
-#: ../../share/advertising/03-internet.pl:1
#, c-format
-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"
+msgid "Build the future of Linux!"
msgstr ""
-#: ../../share/advertising/03-internet.pl:1
-#, fuzzy, c-format
-msgid "Get the most from the Internet"
-msgstr "Далучэнне да Iнтэрнэту"
-
-#: ../../share/advertising/04-multimedia.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
msgid ""
-"Mandrake Linux 9.1 enables you to use the very latest software to play audio "
-"files, edit and handle your images or photos, and play videos"
-msgstr ""
-
-#: ../../share/advertising/04-multimedia.pl:1
-#, c-format
-msgid "Push multimedia to its limits!"
+"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 ""
-#: ../../share/advertising/04-multimedia.pl:1
-#, c-format
-msgid "Discover the most up-to-date graphical and multimedia tools!"
-msgstr ""
-
-#: ../../share/advertising/05-games.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
msgid ""
-"Mandrake Linux 9.1 provides the best Open Source games - arcade, action, "
-"strategy, ..."
+"Surf the Web with Mozilla or Konqueror, read your mail with Evolution or "
+"Kmail, create your documents with OpenOffice.org."
msgstr ""
-#: ../../share/advertising/05-games.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
-msgid "Games"
-msgstr "Забавы"
-
-#: ../../share/advertising/06-mcc.pl:1
-#, c-format
-msgid ""
-"Mandrake Linux 9.1 provides a powerful tool to fully customize and configure "
-"your machine"
+msgid "MandrakeSoft has selected the best software for you"
msgstr ""
-#: ../../share/advertising/06-mcc.pl:1 ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "Mandrake Control Center"
-msgstr "Далучэнне да Iнтэрнэту"
-
-#: ../../share/advertising/07-desktop.pl:1
+#: ../../share/advertising/04-configuration.pl:1
#, c-format
msgid ""
-"Mandrake Linux 9.1 provides you with 11 user interfaces that can be fully "
-"modified: KDE 3, Gnome 2, WindowMaker, ..."
+"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!"
msgstr ""
-#: ../../share/advertising/07-desktop.pl:1
+#: ../../share/advertising/04-configuration.pl:1
#, fuzzy, c-format
-msgid "User interfaces"
-msgstr "Сеткавы iнтэрфейс"
+msgid "Mandrake's multipurpose configuration tool"
+msgstr "Настройка злучэння з Iнтэрнэтам"
-#: ../../share/advertising/08-development.pl:1
+#: ../../share/advertising/05-desktop.pl:1
#, c-format
msgid ""
-"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
-"development environments"
+"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 ""
-#: ../../share/advertising/08-development.pl:1
+#: ../../share/advertising/05-desktop.pl:1
#, c-format
-msgid "Mandrake Linux 9.1 is the ultimate development platform"
+msgid "A customizable environment"
msgstr ""
-#: ../../share/advertising/08-development.pl:1
-#, fuzzy, c-format
-msgid "Development simplified"
-msgstr "распрацоўшчык"
-
-#: ../../share/advertising/09-server.pl:1
+#: ../../share/advertising/06-development.pl:1
#, c-format
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, ..."
+"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 ""
-#: ../../share/advertising/09-server.pl:1
+#: ../../share/advertising/06-development.pl:1
#, c-format
-msgid "Turn your machine into a reliable server"
+msgid "Mandrake Linux 9.1: the ultimate development platform"
msgstr ""
-#: ../../share/advertising/10-mnf.pl:1
+#: ../../share/advertising/07-server.pl:1
#, c-format
-msgid "This product is available on MandrakeStore website"
+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 ""
-#: ../../share/advertising/10-mnf.pl:1
+#: ../../share/advertising/07-server.pl:1
#, c-format
-msgid ""
-"This firewall product includes network features that allow you to fulfill "
-"all your security needs"
+msgid "Turn your computer into a reliable server"
msgstr ""
-#: ../../share/advertising/10-mnf.pl:1
+#: ../../share/advertising/08-store.pl:1
#, c-format
msgid ""
-"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
-"F.)"
+"Our full range of Linux solutions, as well as special offers on products and "
+"other \"goodies\", are available on our e-store:"
msgstr ""
-#: ../../share/advertising/10-mnf.pl:1
+#: ../../share/advertising/08-store.pl:1
#, c-format
-msgid "Optimize your security"
+msgid "The official MandrakeSoft Store"
msgstr ""
-#: ../../share/advertising/11-mdkstore.pl:1
+#: ../../share/advertising/09-mdksecure.pl:1
#, c-format
msgid ""
-"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies,\" are available online on our e-store:"
+"Enhance your computer performance with the help of a selection of partners "
+"offering professional solutions compatible with Mandrake Linux"
msgstr ""
-#: ../../share/advertising/11-mdkstore.pl:1
+#: ../../share/advertising/09-mdksecure.pl:1
#, c-format
-msgid "The official MandrakeSoft store"
+msgid "Get the best items with Mandrake Linux Strategic partners"
msgstr ""
-#: ../../share/advertising/12-mdkstore.pl:1
+#: ../../share/advertising/10-security.pl:1
#, c-format
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 ""
-
-#: ../../share/advertising/12-mdkstore.pl:1
-#, c-format
-msgid "Strategic partners"
+"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 ""
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/10-security.pl:1
#, c-format
-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)"
+msgid "Optimize your security by using Mandrake Linux"
msgstr ""
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/11-mnf.pl:1
#, c-format
-msgid "Certify yourself on Linux"
+msgid "This product is available on the MandrakeStore Web site."
msgstr ""
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/11-mnf.pl:1
#, c-format
msgid ""
-"The training program has been created to respond to the needs of both end "
-"users and experts (Network and System administrators)"
+"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 ""
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/11-mnf.pl:1
#, c-format
-msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
+msgid "Secure your networks with the Multi Network Firewall"
msgstr ""
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, c-format
msgid ""
"Join the MandrakeSoft support teams and the Linux Community online to share "
@@ -12056,60 +11978,44 @@ msgid ""
"technical support website:"
msgstr ""
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, c-format
msgid ""
"Find the solutions of your problems via MandrakeSoft's online support "
-"platform"
+"platform."
msgstr ""
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, fuzzy, c-format
msgid "Become a MandrakeExpert"
-msgstr "эксперт"
+msgstr "эксперт"
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, c-format
msgid ""
"All incidents will be followed up by a single qualified MandrakeSoft "
"technical expert."
msgstr ""
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, c-format
-msgid "An online platform to respond to company's specific support needs"
+msgid "An online platform to respond to enterprise support needs."
msgstr ""
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, fuzzy, c-format
msgid "MandrakeExpert Corporate"
-msgstr "эксперт"
-
-#: ../../share/advertising/17-mdkclub.pl:1
-#, c-format
-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 ""
-
-#: ../../share/advertising/17-mdkclub.pl:1
-#, c-format
-msgid "Discover MandrakeClub and Mandrake Corporate Club"
-msgstr ""
+msgstr "эксперт"
#: ../../standalone/XFdrake:1
#, c-format
msgid "Please relog into %s to activate the changes"
-msgstr "Калi ласка, перайдзiце ў %s для актывацыi змяненняў"
+msgstr "Калi ласка, перайдзiце ў %s для актывацыi змяненняў"
#: ../../standalone/XFdrake:1
#, c-format
msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Калi ласка, выйдзiце, а потым скарыстайце Ctrl-Alt-BackSpace"
+msgstr "Калi ласка, выйдзiце, а потым скарыстайце Ctrl-Alt-BackSpace"
#: ../../standalone/drakTermServ:1
#, c-format
@@ -12134,7 +12040,7 @@ msgstr ""
#: ../../standalone/drakTermServ:1
#, fuzzy, c-format
msgid "No floppy drive available!"
-msgstr "Дыскавод недаступны"
+msgstr "Дыскавод недаступны"
#: ../../standalone/drakTermServ:1
#, c-format
@@ -12149,12 +12055,12 @@ msgstr ""
#: ../../standalone/drakTermServ:1
#, fuzzy, c-format
msgid "Please insert floppy disk:"
-msgstr "Устаўце дыскету ў дыскавод %s"
+msgstr "Устаўце дыскету ў дыскавод %s"
#: ../../standalone/drakTermServ:1
#, fuzzy, c-format
msgid "Write Config"
-msgstr "Настройка X Window"
+msgstr "Настройка X Window"
#: ../../standalone/drakTermServ:1
#, c-format
@@ -12172,7 +12078,7 @@ msgstr ""
#: ../../standalone/drakTermServ:1
#, fuzzy, c-format
msgid "dhcpd Server Configuration"
-msgstr "Заканчэнне настройкi"
+msgstr "Заканчэнне настройкi"
#: ../../standalone/drakTermServ:1
#, c-format
@@ -12187,12 +12093,12 @@ msgstr ""
#: ../../standalone/drakTermServ:1
#, fuzzy, c-format
msgid "Name Servers:"
-msgstr "NIS сервер:"
+msgstr "NIS сервер:"
#: ../../standalone/drakTermServ:1
#, fuzzy, c-format
msgid "Domain Name:"
-msgstr "Iмя дамену"
+msgstr "Iмя дамену"
#: ../../standalone/drakTermServ:1
#, c-format
@@ -12212,7 +12118,7 @@ msgstr ""
#: ../../standalone/drakTermServ:1
#, fuzzy, c-format
msgid "Netmask:"
-msgstr "Маска сеткi"
+msgstr "Маска сеткi"
#: ../../standalone/drakTermServ:1
#, c-format
@@ -12229,12 +12135,12 @@ msgstr ""
#: ../../standalone/drakTermServ:1
#, fuzzy, c-format
msgid "dhcpd Config..."
-msgstr "Настройка IDE"
+msgstr "Настройка IDE"
#: ../../standalone/drakTermServ:1
#, fuzzy, c-format
msgid "Delete Client"
-msgstr "Знiшчыць"
+msgstr "Знiшчыць"
#: ../../standalone/drakTermServ:1
#, c-format
@@ -12264,7 +12170,7 @@ msgstr ""
#: ../../standalone/drakTermServ:1
#, fuzzy, c-format
msgid "type: %s"
-msgstr "Тып: "
+msgstr "Тып: "
#: ../../standalone/drakTermServ:1
#, c-format
@@ -12274,7 +12180,7 @@ msgstr ""
#: ../../standalone/drakTermServ:1
#, fuzzy, c-format
msgid "Add User -->"
-msgstr "Дадаць карыстальнiка"
+msgstr "Дадаць карыстальнiка"
#: ../../standalone/drakTermServ:1
#, c-format
@@ -12287,12 +12193,12 @@ msgstr ""
#: ../../standalone/drakTermServ:1
#, fuzzy, c-format
msgid "Delete All NBIs"
-msgstr "Абярыце файл"
+msgstr "Абярыце файл"
#: ../../standalone/drakTermServ:1
#, fuzzy, c-format
msgid "<-- Delete"
-msgstr "Знiшчыць"
+msgstr "Знiшчыць"
#: ../../standalone/drakTermServ:1
#, c-format
@@ -12307,7 +12213,7 @@ msgstr ""
#: ../../standalone/drakTermServ:1
#, fuzzy, c-format
msgid "No NIC selected!"
-msgstr "Размеркаванне"
+msgstr "Размеркаванне"
#: ../../standalone/drakTermServ:1
#, c-format
@@ -12499,7 +12405,7 @@ msgstr ""
#: ../../standalone/drakTermServ:1
#, fuzzy, c-format
msgid "Add/Del Users"
-msgstr "Дадаць карыстальнiка"
+msgstr "Дадаць карыстальнiка"
#: ../../standalone/drakTermServ:1
#, c-format
@@ -12509,47 +12415,47 @@ msgstr ""
#: ../../standalone/drakTermServ:1
#, fuzzy, c-format
msgid "Etherboot Floppy/ISO"
-msgstr "Стварыць загр. дыск"
+msgstr "Стварыць загр. дыск"
#: ../../standalone/drakTermServ:1
#, fuzzy, c-format
msgid "Stop Server"
-msgstr "NIS сервер:"
+msgstr "NIS сервер:"
#: ../../standalone/drakTermServ:1
#, fuzzy, c-format
msgid "Start Server"
-msgstr "NIS сервер:"
+msgstr "NIS сервер:"
#: ../../standalone/drakTermServ:1
#, fuzzy, c-format
msgid "Disable Server"
-msgstr "Сервер друку"
+msgstr "Сервер друку"
#: ../../standalone/drakTermServ:1
#, fuzzy, c-format
msgid "Enable Server"
-msgstr "Сервер друку"
+msgstr "Сервер друку"
#: ../../standalone/drakTermServ:1
#, fuzzy, c-format
msgid "Mandrake Terminal Server Configuration"
-msgstr "Настройка злучэння з Iнтэрнэтам"
+msgstr "Настройка злучэння з Iнтэрнэтам"
#: ../../standalone/drakautoinst:1
#, fuzzy, c-format
msgid "Remove the last item"
-msgstr "Фарматаванне вiртуальнага раздзелу %s"
+msgstr "Фарматаванне вiртуальнага раздзелу %s"
#: ../../standalone/drakautoinst:1
#, fuzzy, c-format
msgid "Add an item"
-msgstr "Дадаць карыстальнiка"
+msgstr "Дадаць карыстальнiка"
#: ../../standalone/drakautoinst:1
#, fuzzy, c-format
msgid "Auto Install"
-msgstr "Усталёўка"
+msgstr "Усталёўка"
#: ../../standalone/drakautoinst:1
#, c-format
@@ -12562,7 +12468,7 @@ msgstr ""
#: ../../standalone/scannerdrake:1
#, c-format
msgid "Congratulations!"
-msgstr "Прыміце вiншаваннi!"
+msgstr "Прыміце вiншаваннi!"
#: ../../standalone/drakautoinst:1
#, c-format
@@ -12576,7 +12482,7 @@ msgstr ""
#: ../../standalone/drakautoinst:1
#, fuzzy, c-format
msgid "Creating auto install floppy"
-msgstr "Стварэнне дыскеты для ўсталявання"
+msgstr "Стварэнне дыскеты для ўсталявання"
#: ../../standalone/drakautoinst:1
#, c-format
@@ -12593,12 +12499,12 @@ msgstr ""
#: ../../standalone/drakautoinst:1
#, fuzzy, c-format
msgid "Automatic Steps Configuration"
-msgstr "Настройка мадэму"
+msgstr "Настройка мадэму"
#: ../../standalone/drakautoinst:1
#, fuzzy, c-format
msgid "replay"
-msgstr "Перазагрузiць"
+msgstr "Перазагрузiць"
#: ../../standalone/drakautoinst:1
#, c-format
@@ -12619,7 +12525,7 @@ msgstr ""
#: ../../standalone/drakautoinst:1
#, fuzzy, c-format
msgid "Auto Install Configurator"
-msgstr "Настройка пасля ўсталявання"
+msgstr "Настройка пасля ўсталявання"
#: ../../standalone/drakautoinst:1
#, c-format
@@ -12629,7 +12535,7 @@ msgstr ""
#: ../../standalone/drakautoinst:1
#, fuzzy, c-format
msgid "Error!"
-msgstr "Памылка"
+msgstr "Памылка"
#: ../../standalone/drakbackup:1
#, c-format
@@ -12832,37 +12738,37 @@ msgstr ""
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Restore"
-msgstr "Аднаўленне з файлу"
+msgstr "Аднаўленне з файлу"
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Backup Now"
-msgstr "Настр. файлавых сiстэмаў"
+msgstr "Настр. файлавых сiстэмаў"
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Advanced Configuration"
-msgstr "Заканчэнне настройкi"
+msgstr "Заканчэнне настройкi"
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Wizard Configuration"
-msgstr "Настройка"
+msgstr "Настройка"
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "View Backup Configuration."
-msgstr "Канфiгурацыя сеткi"
+msgstr "Канфiгурацыя сеткi"
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Backup Now from configuration file"
-msgstr "Канфiгурацыя сеткi"
+msgstr "Канфiгурацыя сеткi"
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Drakbackup Configuration"
-msgstr "Канфiгурацыя сеткi"
+msgstr "Канфiгурацыя сеткi"
#: ../../standalone/drakbackup:1
#, c-format
@@ -12872,7 +12778,7 @@ msgstr ""
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Sending files..."
-msgstr "Захаванне ў файл"
+msgstr "Захаванне ў файл"
#: ../../standalone/drakbackup:1
#, c-format
@@ -12882,17 +12788,17 @@ msgstr ""
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Backup other files"
-msgstr "Дрэнны файл рэзервовай копii"
+msgstr "Дрэнны файл рэзервовай копii"
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Backup user files"
-msgstr "Дрэнны файл рэзервовай копii"
+msgstr "Дрэнны файл рэзервовай копii"
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Backup system files"
-msgstr "Дрэнны файл рэзервовай копii"
+msgstr "Дрэнны файл рэзервовай копii"
#: ../../standalone/drakbackup:1
#, c-format
@@ -12914,22 +12820,22 @@ msgstr ""
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Please select data to backup..."
-msgstr "Калi ласка, абярыце мову для карыстання."
+msgstr "Калi ласка, абярыце мову для карыстання."
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Please select media for backup..."
-msgstr "Калi ласка, абярыце мову для карыстання."
+msgstr "Калi ласка, абярыце мову для карыстання."
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Please select data to restore..."
-msgstr "Калi ласка, абярыце мову для карыстання."
+msgstr "Калi ласка, абярыце мову для карыстання."
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "The following packages need to be installed:\n"
-msgstr "Наступныя пакеты будуць даданы да сiстэмы"
+msgstr "Наступныя пакеты будуць даданы да сiстэмы"
#: ../../standalone/drakbackup:1
#, c-format
@@ -12949,7 +12855,7 @@ msgstr ""
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Next"
-msgstr "Тэкст"
+msgstr "РўСЌРєСЃС‚"
#: ../../standalone/drakbackup:1
#, c-format
@@ -12960,22 +12866,22 @@ msgstr ""
#: ../../standalone/logdrake:1
#, fuzzy, c-format
msgid "Save"
-msgstr "Стартавае меню"
+msgstr "Стартавае меню"
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Build Backup"
-msgstr "Дрэнны файл рэзервовай копii"
+msgstr "Дрэнны файл рэзервовай копii"
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Restore Progress"
-msgstr "Аднаўленне з файлу"
+msgstr "Аднаўленне з файлу"
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Restore From Catalog"
-msgstr "Дадатковая таблiца раздзелаў"
+msgstr "Дадатковая таблiца раздзелаў"
#: ../../standalone/drakbackup:1
#, c-format
@@ -12990,7 +12896,7 @@ msgstr ""
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Custom Restore"
-msgstr "Па выбару"
+msgstr "Па выбару"
#: ../../standalone/drakbackup:1
#, c-format
@@ -13000,7 +12906,7 @@ msgstr ""
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Restore Failed..."
-msgstr "Аднаўленне з файлу"
+msgstr "Аднаўленне з файлу"
#: ../../standalone/drakbackup:1
#, c-format
@@ -13015,17 +12921,17 @@ msgstr ""
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Hostname required"
-msgstr "Iмя машыны"
+msgstr "Iмя машыны"
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Username required"
-msgstr "Iмя карыстальнiку:"
+msgstr "Iмя карыстальнiку:"
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Password required"
-msgstr "Пароль"
+msgstr "Пароль"
#: ../../standalone/drakbackup:1
#, c-format
@@ -13035,7 +12941,7 @@ msgstr ""
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Host Name"
-msgstr "Iмя машыны"
+msgstr "Iмя машыны"
#: ../../standalone/drakbackup:1
#, c-format
@@ -13045,7 +12951,7 @@ msgstr ""
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Restore Via Network"
-msgstr "Пераканфiгураваць лакальную сетку"
+msgstr "Пераканфiгураваць лакальную сетку"
#: ../../standalone/drakbackup:1
#, c-format
@@ -13062,7 +12968,7 @@ msgstr ""
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Restore From Tape"
-msgstr "Дадатковая таблiца раздзелаў"
+msgstr "Дадатковая таблiца раздзелаў"
#: ../../standalone/drakbackup:1
#, c-format
@@ -13079,7 +12985,7 @@ msgstr ""
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Restore From CD"
-msgstr "Аднаўленне з дыскеты"
+msgstr "Аднаўленне з дыскеты"
#: ../../standalone/drakbackup:1
#, c-format
@@ -13091,14 +12997,14 @@ msgstr ""
msgid ""
"Change\n"
"Restore Path"
-msgstr "Аднаўленне з файлу"
+msgstr "Аднаўленне з файлу"
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid ""
"Restore Selected\n"
"Files"
-msgstr "Выдалiць чаргу друку"
+msgstr "Выдалiць чаргу друку"
#: ../../standalone/drakbackup:1
#, c-format
@@ -13120,32 +13026,32 @@ msgstr ""
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "select path to restore (instead of /)"
-msgstr "калi ласка, пазначце тып вашай мышы."
+msgstr "калi ласка, пазначце тып вашай мышы."
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Restore Other"
-msgstr "Аднаўленне з файлу"
+msgstr "Аднаўленне з файлу"
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Restore Users"
-msgstr "Аднаўленне з файлу"
+msgstr "Аднаўленне з файлу"
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Restore system"
-msgstr "Усталяванне сiстэмы"
+msgstr "Усталяванне сiстэмы"
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Other Media"
-msgstr "Іншыя"
+msgstr "Іншыя"
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Select another media to restore from"
-msgstr "калi ласка, пазначце тып вашай мышы."
+msgstr "калi ласка, пазначце тып вашай мышы."
#: ../../standalone/drakbackup:1
#, c-format
@@ -13155,12 +13061,12 @@ msgstr ""
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Restore from Hard Disk."
-msgstr "Аднаўленне з дыскеты"
+msgstr "Аднаўленне з дыскеты"
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Use quota for backup files."
-msgstr "Дрэнны файл рэзервовай копii"
+msgstr "Дрэнны файл рэзервовай копii"
#: ../../standalone/drakbackup:1
#, c-format
@@ -13172,22 +13078,22 @@ msgstr ""
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Please enter the directory to save:"
-msgstr "Калі ласка, зрабіце некалькі рухаў мышшу."
+msgstr "Калі ласка, зрабіце некалькі рухаў мышшу."
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Use Hard Disk to backup"
-msgstr "Дрэнны файл рэзервовай копii"
+msgstr "Дрэнны файл рэзервовай копii"
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "please choose the date to restore"
-msgstr "калi ласка, пазначце тып вашай мышы."
+msgstr "калi ласка, пазначце тып вашай мышы."
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Backup the system files before:"
-msgstr "Дрэнны файл рэзервовай копii"
+msgstr "Дрэнны файл рэзервовай копii"
#: ../../standalone/drakbackup:1
#, c-format
@@ -13202,7 +13108,7 @@ msgstr ""
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid " Restore Configuration "
-msgstr "Канфiгурацыя сеткi"
+msgstr "Канфiгурацыя сеткi"
#: ../../standalone/drakbackup:1
#, c-format
@@ -13222,7 +13128,7 @@ msgstr ""
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Please uncheck or remove it on next time."
-msgstr "Да якога паслядоўнага порту далучаны мадэм?"
+msgstr "Да якога паслядоўнага порту далучаны мадэм?"
#: ../../standalone/drakbackup:1
#, c-format
@@ -13266,7 +13172,7 @@ msgstr ""
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "\t-Tape \n"
-msgstr "Тып: "
+msgstr "Тып: "
#: ../../standalone/drakbackup:1
#, c-format
@@ -13305,7 +13211,7 @@ msgstr ""
msgid ""
"\n"
"- Options:\n"
-msgstr "Опцыi"
+msgstr "Опцыi"
#: ../../standalone/drakbackup:1
#, c-format
@@ -13341,7 +13247,7 @@ msgstr ""
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid " on device: %s"
-msgstr "Мыш: %s\n"
+msgstr "Мыш: %s\n"
#: ../../standalone/drakbackup:1
#, c-format
@@ -13410,17 +13316,17 @@ msgstr ""
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Backup system"
-msgstr "Настр. файлавых сiстэмаў"
+msgstr "Настр. файлавых сiстэмаў"
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Please choose what you want to backup"
-msgstr "Выбар пакетаў для ўсталявання"
+msgstr "Выбар пакетаў для ўсталявання"
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "on Tape Device"
-msgstr "Порт прынтэру"
+msgstr "Порт прынтэру"
#: ../../standalone/drakbackup:1
#, c-format
@@ -13430,7 +13336,7 @@ msgstr ""
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "across Network"
-msgstr "Сетка:"
+msgstr "Сетка:"
#: ../../standalone/drakbackup:1
#, c-format
@@ -13440,27 +13346,27 @@ msgstr ""
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Please choose where you want to backup"
-msgstr "Выбар пакетаў для ўсталявання"
+msgstr "Выбар пакетаў для ўсталявання"
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "More Options"
-msgstr "Опцыi модулю:"
+msgstr "Опцыi модулю:"
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "When"
-msgstr "З колам"
+msgstr "З колам"
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Where"
-msgstr "З колам"
+msgstr "З колам"
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "What"
-msgstr "Чакайце"
+msgstr "Чакайце"
#: ../../standalone/drakbackup:1
#, c-format
@@ -13485,19 +13391,19 @@ msgstr ""
msgid ""
"Please choose the\n"
"media for backup."
-msgstr "Калi ласка, абярыце мову для карыстання."
+msgstr "Калi ласка, абярыце мову для карыстання."
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid ""
"Please choose the time \n"
"interval between each backup"
-msgstr "Выбар пакетаў для ўсталявання"
+msgstr "Выбар пакетаў для ўсталявання"
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Use daemon"
-msgstr "Iмя карыстальнiку:"
+msgstr "Iмя карыстальнiку:"
#: ../../standalone/drakbackup:1
#, c-format
@@ -13532,22 +13438,22 @@ msgstr ""
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Please enter the directory to save to:"
-msgstr "Калі ласка, зрабіце некалькі рухаў мышшу."
+msgstr "Калі ласка, зрабіце некалькі рухаў мышшу."
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Please check if you want to eject your tape after the backup."
-msgstr "Выбар пакетаў для ўсталявання"
+msgstr "Выбар пакетаў для ўсталявання"
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Please check if you want to erase your tape before the backup."
-msgstr "Выбар пакетаў для ўсталявання"
+msgstr "Выбар пакетаў для ўсталявання"
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Please check if you want to use the non-rewinding device."
-msgstr "Выбар пакетаў для ўсталявання"
+msgstr "Выбар пакетаў для ўсталявання"
#: ../../standalone/drakbackup:1
#, c-format
@@ -13557,12 +13463,12 @@ msgstr ""
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Use tape to backup"
-msgstr "Дрэнны файл рэзервовай копii"
+msgstr "Дрэнны файл рэзервовай копii"
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "No CD device defined!"
-msgstr "Абярыце файл"
+msgstr "Абярыце файл"
#: ../../standalone/drakbackup:1
#, c-format
@@ -13574,12 +13480,12 @@ msgstr ""
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Please check if you are using a DVDRAM device"
-msgstr "Націсніце на раздзел"
+msgstr "Націсніце на раздзел"
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Please check if you are using a DVDR device"
-msgstr "Націсніце на раздзел"
+msgstr "Націсніце на раздзел"
#: ../../standalone/drakbackup:1
#, c-format
@@ -13589,22 +13495,22 @@ msgstr ""
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Please check if you want to erase your RW media (1st Session)"
-msgstr "Націсніце на раздзел"
+msgstr "Націсніце на раздзел"
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Please check if you are using CDRW media"
-msgstr "Націсніце на раздзел"
+msgstr "Націсніце на раздзел"
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Please check for multisession CD"
-msgstr "Націсніце на раздзел"
+msgstr "Націсніце на раздзел"
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Please choose your CD/DVD media size (Mb)"
-msgstr "Калi ласка, абярыце тып клавiятуры."
+msgstr "Калi ласка, абярыце тып клавiятуры."
#: ../../standalone/drakbackup:1
#, c-format
@@ -13627,17 +13533,17 @@ msgstr ""
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Remember this password"
-msgstr "Няма паролю"
+msgstr "Няма паролю"
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Please enter your password"
-msgstr "Паспрабуйце яшчэ раз"
+msgstr "Паспрабуйце яшчэ раз"
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Please enter your login"
-msgstr "Паспрабуйце яшчэ раз"
+msgstr "Паспрабуйце яшчэ раз"
#: ../../standalone/drakbackup:1
#, c-format
@@ -13649,7 +13555,7 @@ msgstr ""
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Please enter the host name or IP."
-msgstr "Калі ласка, зрабіце некалькі рухаў мышшу."
+msgstr "Калі ласка, зрабіце некалькі рухаў мышшу."
#: ../../standalone/drakbackup:1
#, c-format
@@ -13685,17 +13591,17 @@ msgstr ""
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Use network connection to backup"
-msgstr "Дрэнны файл рэзервовай копii"
+msgstr "Дрэнны файл рэзервовай копii"
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Users"
-msgstr "Iмя карыстальнiку:"
+msgstr "Iмя карыстальнiку:"
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Windows (FAT32)"
-msgstr "Выдалiць Windows(TM)"
+msgstr "Выдалiць Windows(TM)"
#: ../../standalone/drakbackup:1
#, c-format
@@ -13705,7 +13611,7 @@ msgstr ""
#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
#, fuzzy, c-format
msgid "Remove Selected"
-msgstr "Выдалiць чаргу друку"
+msgstr "Выдалiць чаргу друку"
#: ../../standalone/drakbackup:1
#, c-format
@@ -13715,7 +13621,7 @@ msgstr ""
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Please check all users that you want to include in your backup."
-msgstr "Выбар пакетаў для ўсталявання"
+msgstr "Выбар пакетаў для ўсталявання"
#: ../../standalone/drakbackup:1
#, c-format
@@ -13737,7 +13643,7 @@ msgstr ""
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Backup your System files. (/etc directory)"
-msgstr "Дрэнны файл рэзервовай копii"
+msgstr "Дрэнны файл рэзервовай копii"
#: ../../standalone/drakbackup:1
#, c-format
@@ -13760,7 +13666,7 @@ msgstr ""
#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
#, fuzzy, c-format
msgid "File Selection"
-msgstr "Выбар групы пакетаў"
+msgstr "Выбар групы пакетаў"
#: ../../standalone/drakbackup:1
#, c-format
@@ -13770,7 +13676,7 @@ msgstr ""
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid " Error while sending mail. \n"
-msgstr "Памылка чытання файлу %s"
+msgstr "Памылка чытання файлу %s"
#: ../../standalone/drakbackup:1
#, c-format
@@ -13814,17 +13720,17 @@ msgstr ""
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "No changes to backup!"
-msgstr "Дрэнны файл рэзервовай копii"
+msgstr "Дрэнны файл рэзервовай копii"
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Hard Disk Backup files..."
-msgstr "Дрэнны файл рэзервовай копii"
+msgstr "Дрэнны файл рэзервовай копii"
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Backup Other files..."
-msgstr "Дрэнны файл рэзервовай копii"
+msgstr "Дрэнны файл рэзервовай копii"
#: ../../standalone/drakbackup:1
#, c-format
@@ -13834,7 +13740,7 @@ msgstr ""
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Backup User files..."
-msgstr "Дрэнны файл рэзервовай копii"
+msgstr "Дрэнны файл рэзервовай копii"
#: ../../standalone/drakbackup:1
#, c-format
@@ -13884,7 +13790,7 @@ msgstr ""
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Total progess"
-msgstr "Праверка партоў"
+msgstr "Праверка партоў"
#: ../../standalone/drakbackup:1
#, c-format
@@ -13905,7 +13811,7 @@ msgstr ""
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Can't find %s on %s"
-msgstr "Памылка адкрыцця %s для запiсу: %s"
+msgstr "Памылка адкрыцця %s для запiсу: %s"
#: ../../standalone/drakbackup:1
#, c-format
@@ -13915,7 +13821,7 @@ msgstr ""
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Bad password on %s"
-msgstr "Няма паролю"
+msgstr "Няма паролю"
#: ../../standalone/drakbackup:1
#, c-format
@@ -13990,7 +13896,7 @@ msgstr ""
#: ../../standalone/drakboot:1
#, c-format
msgid "Installation of %s failed. The following error occured:"
-msgstr "Усталяванне %s не атрымалася. Узнiкла наступная памылка:"
+msgstr "Усталяванне %s не атрымалася. Узнiкла наступная памылка:"
#: ../../standalone/drakboot:1
#, c-format
@@ -14035,19 +13941,19 @@ msgstr ""
#: ../../standalone/drakboot:1
#, fuzzy, c-format
msgid "Themes"
-msgstr "Дрэва"
+msgstr "Дрэва"
#: ../../standalone/drakboot:1
#, fuzzy, c-format
msgid "Splash selection"
-msgstr "Асабiсты выбар пакетаў"
+msgstr "Асабiсты выбар пакетаў"
#: ../../standalone/drakboot:1
#, fuzzy, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
-msgstr "Сумеснае Iнтэрнэт-злучэнне"
+msgstr "Сумеснае Iнтэрнэт-злучэнне"
#: ../../standalone/drakboot:1
#, c-format
@@ -14057,12 +13963,12 @@ msgstr ""
#: ../../standalone/drakboot:1
#, fuzzy, c-format
msgid "Theme installation failed!"
-msgstr "Клас усталявання"
+msgstr "Клас усталявання"
#: ../../standalone/drakboot:1 ../../standalone/draksplash:1
#, fuzzy, c-format
msgid "Notice"
-msgstr "гальштук"
+msgstr "гальштук"
#: ../../standalone/drakboot:1
#, c-format
@@ -14096,7 +14002,7 @@ msgstr ""
#: ../../standalone/drakboot:1
#, fuzzy, c-format
msgid "Write %s"
-msgstr "Сервер XFree86 %s"
+msgstr "Сервер XFree86 %s"
#: ../../standalone/drakboot:1
#, c-format
@@ -14121,7 +14027,7 @@ msgstr ""
#: ../../standalone/drakboot:1
#, fuzzy, c-format
msgid "Create new theme"
-msgstr "Стварэнне новага раздзелу"
+msgstr "Стварэнне новага раздзелу"
#: ../../standalone/drakboot:1
#, c-format
@@ -14133,17 +14039,17 @@ msgstr ""
#: ../../standalone/drakboot:1
#, fuzzy, c-format
msgid "Install themes"
-msgstr "Усталяванне сiстэмы"
+msgstr "Усталяванне сiстэмы"
#: ../../standalone/drakboot:1
#, fuzzy, c-format
msgid "Lilo/grub mode"
-msgstr "Рэжым злучэння"
+msgstr "Рэжым злучэння"
#: ../../standalone/drakboot:1
#, fuzzy, c-format
msgid "Yaboot mode"
-msgstr "Загрузачная прылада"
+msgstr "Загрузачная прылада"
#: ../../standalone/drakboot:1 ../../standalone/drakfloppy:1
#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
@@ -14161,17 +14067,17 @@ msgstr ""
#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
#, fuzzy, c-format
msgid "/_File"
-msgstr "Файлы:\n"
+msgstr "Файлы:\n"
#: ../../standalone/drakboot:1
#, fuzzy, c-format
msgid "Boot Style Configuration"
-msgstr "Настройка мадэму"
+msgstr "Настройка мадэму"
#: ../../standalone/drakbug:1
#, fuzzy, c-format
msgid "No browser available! Please install one"
-msgstr "Вы можаце абраць іншыя мовы, якiя будуць даступны пасля ўсталявання"
+msgstr "Вы можаце абраць іншыя мовы, якiя будуць даступны пасля ўсталявання"
#: ../../standalone/drakbug:1
#, c-format
@@ -14181,22 +14087,22 @@ msgstr ""
#: ../../standalone/drakbug:1
#, fuzzy, c-format
msgid "Package not installed"
-msgstr "Заканчэнне ўсталявання"
+msgstr "Заканчэнне ўсталявання"
#: ../../standalone/drakbug:1
#, fuzzy, c-format
msgid "Not installed"
-msgstr "Заканчэнне ўсталявання"
+msgstr "Заканчэнне ўсталявання"
#: ../../standalone/drakbug:1
#, fuzzy, c-format
msgid "Standalone Tools"
-msgstr "Кансольныя інструментальныя сродкі"
+msgstr "Кансольныя інструментальныя сродкі"
#: ../../standalone/drakbug:1
#, fuzzy, c-format
msgid "Report"
-msgstr "Порт"
+msgstr "РџРѕСЂС‚"
#: ../../standalone/drakbug:1
#, c-format
@@ -14214,7 +14120,7 @@ msgstr ""
#: ../../standalone/drakbug:1
#, fuzzy, c-format
msgid "Release: "
-msgstr "Калi ласка, пачакайце"
+msgstr "Калi ласка, пачакайце"
#: ../../standalone/drakbug:1
#, c-format
@@ -14224,27 +14130,27 @@ msgstr ""
#: ../../standalone/drakbug:1
#, fuzzy, c-format
msgid "Package: "
-msgstr "Пакет"
+msgstr "Пакет"
#: ../../standalone/drakbug:1
#, fuzzy, c-format
msgid "Application:"
-msgstr "Размеркаванне"
+msgstr "Размеркаванне"
#: ../../standalone/drakbug:1
#, fuzzy, c-format
msgid "Configuration Wizards"
-msgstr "Канфiгурацыя сеткi"
+msgstr "Канфiгурацыя сеткi"
#: ../../standalone/drakbug:1
#, fuzzy, c-format
msgid "Userdrake"
-msgstr "Выкарыстоўваць DiskDrake"
+msgstr "Выкарыстоўваць DiskDrake"
#: ../../standalone/drakbug:1
#, fuzzy, c-format
msgid "Windows Migration tool"
-msgstr "Навуковыя прыкладанні"
+msgstr "Навуковыя прыкладанні"
#: ../../standalone/drakbug:1
#, c-format
@@ -14254,27 +14160,27 @@ msgstr ""
#: ../../standalone/drakbug:1
#, fuzzy, c-format
msgid "Software Manager"
-msgstr "Iмя для размеркаванага рэсурсу"
+msgstr "Iмя для размеркаванага рэсурсу"
#: ../../standalone/drakbug:1
#, fuzzy, c-format
msgid "Remote Control"
-msgstr "Аддалены прынтэр"
+msgstr "Аддалены прынтэр"
#: ../../standalone/drakbug:1
#, fuzzy, c-format
msgid "Msec"
-msgstr "Порт мышы"
+msgstr "Порт мышы"
#: ../../standalone/drakbug:1
#, fuzzy, c-format
msgid "Menudrake"
-msgstr "абавязкова"
+msgstr "абавязкова"
#: ../../standalone/drakbug:1
#, fuzzy, c-format
msgid "Mandrake Online"
-msgstr "Далучэнне да Iнтэрнэту"
+msgstr "Далучэнне да Iнтэрнэту"
#: ../../standalone/drakbug:1
#, c-format
@@ -14292,6 +14198,11 @@ msgid "First Time Wizard"
msgstr ""
#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "Mandrake Control Center"
+msgstr "Далучэнне да Iнтэрнэту"
+
+#: ../../standalone/drakbug:1
#, c-format
msgid "Mandrake Bug Report Tool"
msgstr ""
@@ -14304,7 +14215,7 @@ msgstr ""
#: ../../standalone/drakconnect:1
#, fuzzy, c-format
msgid "Internet Connection Configuration"
-msgstr "Iнтэрнэт злучэнне i канфiгурацыя"
+msgstr "Iнтэрнэт злучэнне i канфiгурацыя"
#: ../../standalone/drakconnect:1
#, c-format
@@ -14319,22 +14230,22 @@ msgstr ""
#: ../../standalone/drakconnect:1
#, c-format
msgid "Gateway"
-msgstr "Шлюз"
+msgstr "Шлюз"
#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
#, fuzzy, c-format
msgid "Connection type: "
-msgstr "Iмя злучэння"
+msgstr "Iмя злучэння"
#: ../../standalone/drakconnect:1
#, fuzzy, c-format
msgid "Profile: "
-msgstr "памылка манцiравання: "
+msgstr "памылка манцiравання: "
#: ../../standalone/drakconnect:1
#, fuzzy, c-format
msgid "Internet connection configuration"
-msgstr "Iнтэрнэт злучэнне i канфiгурацыя"
+msgstr "Iнтэрнэт злучэнне i канфiгурацыя"
#: ../../standalone/drakconnect:1
#, c-format
@@ -14353,12 +14264,12 @@ msgstr ""
#: ../../standalone/drakconnect:1
#, fuzzy, c-format
msgid "activate now"
-msgstr "Актыўны"
+msgstr "Актыўны"
#: ../../standalone/drakconnect:1
#, fuzzy, c-format
msgid "deactivate now"
-msgstr "Актыўны"
+msgstr "Актыўны"
#: ../../standalone/drakconnect:1
#, c-format
@@ -14383,12 +14294,12 @@ msgstr ""
#: ../../standalone/drakconnect:1
#, fuzzy, c-format
msgid "LAN Configuration"
-msgstr "Настройка"
+msgstr "Настройка"
#: ../../standalone/drakconnect:1
#, fuzzy, c-format
msgid "LAN configuration"
-msgstr "Настройка ADSL"
+msgstr "Настройка ADSL"
#: ../../standalone/drakconnect:1
#, c-format
@@ -14410,12 +14321,12 @@ msgstr ""
#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
#, fuzzy, c-format
msgid "Not connected"
-msgstr "Размеркаванне"
+msgstr "Размеркаванне"
#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
#, fuzzy, c-format
msgid "Connected"
-msgstr "Iмя злучэння"
+msgstr "Iмя злучэння"
#: ../../standalone/drakconnect:1
#, c-format
@@ -14432,12 +14343,12 @@ msgstr ""
#: ../../standalone/drakconnect:1
#, c-format
msgid "Gateway:"
-msgstr "Шлюз:"
+msgstr "Шлюз:"
#: ../../standalone/drakconnect:1
#, c-format
msgid "Apply"
-msgstr ""
+msgstr "Применить"
#: ../../standalone/drakconnect:1
#, c-format
@@ -14447,7 +14358,7 @@ msgstr ""
#: ../../standalone/drakconnect:1
#, c-format
msgid "Wizard..."
-msgstr "Майстар стварэння..."
+msgstr "Майстар стварэння..."
#: ../../standalone/drakconnect:1
#, c-format
@@ -14457,7 +14368,7 @@ msgstr ""
#: ../../standalone/drakconnect:1
#, fuzzy, c-format
msgid "Type:"
-msgstr "Тып: "
+msgstr "Тып: "
#: ../../standalone/drakconnect:1
#, c-format
@@ -14467,22 +14378,22 @@ msgstr ""
#: ../../standalone/drakconnect:1
#, fuzzy, c-format
msgid "Hostname: "
-msgstr "Iмя машыны"
+msgstr "Iмя машыны"
#: ../../standalone/drakconnect:1
#, fuzzy, c-format
msgid "Configure Local Area Network..."
-msgstr "Настройка лакальнай сеткi"
+msgstr "Настройка лакальнай сеткi"
#: ../../standalone/drakconnect:1
#, fuzzy, c-format
msgid "State"
-msgstr "Стартавае меню"
+msgstr "Стартавае меню"
#: ../../standalone/drakconnect:1
#, fuzzy, c-format
msgid "Driver"
-msgstr "сервер"
+msgstr "сервер"
#: ../../standalone/drakconnect:1
#, c-format
@@ -14492,12 +14403,12 @@ msgstr ""
#: ../../standalone/drakconnect:1
#, fuzzy, c-format
msgid "Interface"
-msgstr "Сеткавы iнтэрфейс"
+msgstr "Сеткавы iнтэрфейс"
#: ../../standalone/drakconnect:1
#, fuzzy, c-format
msgid "Configure Internet Access..."
-msgstr "Настройка службаў"
+msgstr "Настройка службаў"
#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
#, c-format
@@ -14529,7 +14440,7 @@ msgstr ""
#: ../../standalone/drakconnect:1
#, fuzzy, c-format
msgid "Network configuration (%d adapters)"
-msgstr "Канфiгурацыя сеткi"
+msgstr "Канфiгурацыя сеткi"
#: ../../standalone/drakedm:1
#, c-format
@@ -14555,7 +14466,7 @@ msgstr ""
#: ../../standalone/drakfloppy:1
#, fuzzy, c-format
msgid "Unable to fork: %s"
-msgstr "Зрабiць неактыўным сеткавае злучэнне"
+msgstr "Зрабiць неактыўным сеткавае злучэнне"
#: ../../standalone/drakfloppy:1
#, c-format
@@ -14582,17 +14493,17 @@ msgstr ""
#: ../../standalone/drakfloppy:1
#, fuzzy, c-format
msgid "Remove a module"
-msgstr "Адваротны парадак старонак"
+msgstr "Адваротны парадак старонак"
#: ../../standalone/drakfloppy:1
#, fuzzy, c-format
msgid "Add a module"
-msgstr "Дадаць карыстальнiка"
+msgstr "Дадаць карыстальнiка"
#: ../../standalone/drakfloppy:1
#, fuzzy, c-format
msgid "omit scsi modules"
-msgstr "Рэжым злучэння"
+msgstr "Рэжым злучэння"
#: ../../standalone/drakfloppy:1
#, c-format
@@ -14607,7 +14518,7 @@ msgstr ""
#: ../../standalone/drakfloppy:1
#, fuzzy, c-format
msgid "force"
-msgstr "Перанос"
+msgstr "Перанос"
#: ../../standalone/drakfloppy:1
#, c-format
@@ -14617,52 +14528,52 @@ msgstr ""
#: ../../standalone/drakfloppy:1
#, fuzzy, c-format
msgid "Expert Area"
-msgstr "Эксперт"
+msgstr "Эксперт"
#: ../../standalone/drakfloppy:1
#, fuzzy, c-format
msgid "kernel version"
-msgstr "Настройка злучэння з Iнтэрнэтам"
+msgstr "Настройка злучэння з Iнтэрнэтам"
#: ../../standalone/drakfloppy:1
#, c-format
msgid "default"
-msgstr "Па дамаўленню"
+msgstr "Па дамаўленню"
#: ../../standalone/drakfloppy:1
#, fuzzy, c-format
msgid "General"
-msgstr "Агульны"
+msgstr "Агульны"
#: ../../standalone/drakfloppy:1
#, fuzzy, c-format
msgid "boot disk creation"
-msgstr "Настройка пасля ўсталявання"
+msgstr "Настройка пасля ўсталявання"
#: ../../standalone/drakfloppy:1
#, fuzzy, c-format
msgid "drakfloppy"
-msgstr "Аднаўленне з дыскеты"
+msgstr "Аднаўленне з дыскеты"
#: ../../standalone/drakfloppy:1
#, fuzzy, c-format
msgid "Size"
-msgstr "Памер: %s"
+msgstr "Памер: %s"
#: ../../standalone/drakfloppy:1
#, fuzzy, c-format
msgid "Module name"
-msgstr "Опцыi модулю:"
+msgstr "Опцыi модулю:"
#: ../../standalone/drakfont:1
#, fuzzy, c-format
msgid "Post Uninstall"
-msgstr "Заканчэнне ўсталявання"
+msgstr "Заканчэнне ўсталявання"
#: ../../standalone/drakfont:1
#, fuzzy, c-format
msgid "Remove fonts on your system"
-msgstr "У вашай сістэме няма нiводнага сеткавага адаптара!"
+msgstr "У вашай сістэме няма нiводнага сеткавага адаптара!"
#: ../../standalone/drakfont:1
#, c-format
@@ -14672,7 +14583,7 @@ msgstr ""
#: ../../standalone/drakfont:1
#, fuzzy, c-format
msgid "Post Install"
-msgstr "Усталёўка"
+msgstr "Усталёўка"
#: ../../standalone/drakfont:1
#, c-format
@@ -14682,17 +14593,17 @@ msgstr ""
#: ../../standalone/drakfont:1
#, fuzzy, c-format
msgid "Copy fonts on your system"
-msgstr "У вашай сістэме няма нiводнага сеткавага адаптара!"
+msgstr "У вашай сістэме няма нiводнага сеткавага адаптара!"
#: ../../standalone/drakfont:1
#, fuzzy, c-format
msgid "Remove List"
-msgstr "Аддалены прынтэр"
+msgstr "Аддалены прынтэр"
#: ../../standalone/drakfont:1
#, fuzzy, c-format
msgid "Selected All"
-msgstr "Абярыце файл"
+msgstr "Абярыце файл"
#: ../../standalone/drakfont:1
#, c-format
@@ -14712,7 +14623,7 @@ msgstr ""
#: ../../standalone/drakfont:1
#, fuzzy, c-format
msgid "Install List"
-msgstr "Усталяванне сiстэмы"
+msgstr "Усталяванне сiстэмы"
#: ../../standalone/drakfont:1
#, c-format
@@ -14732,17 +14643,17 @@ msgstr ""
#: ../../standalone/drakfont:1
#, fuzzy, c-format
msgid "Generic Printers"
-msgstr "Прынтэр"
+msgstr "Прынтэр"
#: ../../standalone/drakfont:1
#, fuzzy, c-format
msgid "Abiword"
-msgstr "Адмянiць"
+msgstr "Адмянiць"
#: ../../standalone/drakfont:1
#, fuzzy, c-format
msgid "StarOffice"
-msgstr "добра"
+msgstr "РґРѕР±СЂР°"
#: ../../standalone/drakfont:1
#, c-format
@@ -14752,7 +14663,7 @@ msgstr ""
#: ../../standalone/drakfont:1
#, fuzzy, c-format
msgid "Choose the applications that will support the fonts:"
-msgstr "Выбар раздзелаў для фарматавання"
+msgstr "Выбар раздзелаў для фарматавання"
#: ../../standalone/drakfont:1
#, c-format
@@ -14791,22 +14702,22 @@ msgstr ""
#: ../../standalone/drakfont:1
#, fuzzy, c-format
msgid "About"
-msgstr "Адмянiць"
+msgstr "Адмянiць"
#: ../../standalone/drakfont:1
#, fuzzy, c-format
msgid "Font List"
-msgstr "Кропка манцiравання"
+msgstr "Кропка манцiравання"
#: ../../standalone/drakfont:1
#, fuzzy, c-format
msgid "Advanced Options"
-msgstr "Заканчэнне настройкi"
+msgstr "Заканчэнне настройкi"
#: ../../standalone/drakfont:1
#, fuzzy, c-format
msgid "Uninstall Fonts"
-msgstr "Выдаленне выбраных RPM-пакетаў з сiстэмы"
+msgstr "Выдаленне выбраных RPM-пакетаў з сiстэмы"
#: ../../standalone/drakfont:1
#, c-format
@@ -14816,17 +14727,17 @@ msgstr ""
#: ../../standalone/drakfont:1
#, fuzzy, c-format
msgid "Import Fonts"
-msgstr "Фарматаванне раздзелаў"
+msgstr "Фарматаванне раздзелаў"
#: ../../standalone/drakfont:1
#, fuzzy, c-format
msgid "done"
-msgstr "Зроблена"
+msgstr "Зроблена"
#: ../../standalone/drakfont:1
#, fuzzy, c-format
msgid "xfs restart"
-msgstr "абмежаванне"
+msgstr "абмежаванне"
#: ../../standalone/drakfont:1
#, c-format
@@ -14836,7 +14747,7 @@ msgstr ""
#: ../../standalone/drakfont:1
#, fuzzy, c-format
msgid "Restart XFS"
-msgstr "абмежаванне"
+msgstr "абмежаванне"
#: ../../standalone/drakfont:1
#, c-format
@@ -14881,12 +14792,12 @@ msgstr ""
#: ../../standalone/drakfont:1
#, fuzzy, c-format
msgid "True Type fonts installation"
-msgstr "Падрыхтоўка ўсталяваньня"
+msgstr "Падрыхтоўка ўсталяваньня"
#: ../../standalone/drakfont:1
#, fuzzy, c-format
msgid "Fonts copy"
-msgstr "Фарматаваць дыскету"
+msgstr "Фарматаваць дыскету"
#: ../../standalone/drakfont:1
#, c-format
@@ -14911,7 +14822,7 @@ msgstr ""
#: ../../standalone/drakfont:1
#, fuzzy, c-format
msgid "no fonts found"
-msgstr "Не знайшлi %s"
+msgstr "Не знайшлi %s"
#: ../../standalone/drakfont:1
#, c-format
@@ -14936,17 +14847,17 @@ msgid ""
"%s\n"
"\n"
"Click on Configure to launch the setup wizard."
-msgstr "Сумеснае Iнтэрнэт-злучэнне"
+msgstr "Сумеснае Iнтэрнэт-злучэнне"
#: ../../standalone/drakgw:1
#, fuzzy, c-format
msgid "Internet Connection Sharing configuration"
-msgstr "Iнтэрнэт злучэнне i канфiгурацыя"
+msgstr "Iнтэрнэт злучэнне i канфiгурацыя"
#: ../../standalone/drakgw:1
#, fuzzy, c-format
msgid "No Internet Connection Sharing has ever been configured."
-msgstr "Сумеснае Iнтэрнэт-злучэнне зараз магчыма"
+msgstr "Сумеснае Iнтэрнэт-злучэнне зараз магчыма"
#: ../../standalone/drakgw:1
#, c-format
@@ -14965,30 +14876,30 @@ msgid ""
"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)."
+"Усе адканфігуравана.\n"
+"Зараз вы можаце сумесна выкарыстоўваць падключэнне да Internet\n"
+"з іншымі камп'ютэрамі ў вашай ЛВС, карыстаючыся аўтаматычным\n"
+"канфігураваннем (DHCP)."
#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
#, c-format
msgid "Problems installing package %s"
-msgstr "Праблемы з усталяваннем пакету %s"
+msgstr "Праблемы з усталяваннем пакету %s"
#: ../../standalone/drakgw:1
#, c-format
msgid "Configuring scripts, installing software, starting servers..."
-msgstr "Канфігурацыя сцэнараў, усталяванне ПЗ, запуск службаў..."
+msgstr "Канфігурацыя сцэнараў, усталяванне ПЗ, запуск службаў..."
#: ../../standalone/drakgw:1
#, fuzzy, c-format
msgid "Configuring..."
-msgstr "Настройка IDE"
+msgstr "Настройка IDE"
#: ../../standalone/drakgw:1
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
-msgstr "Патэнцыйны адрас ЛВС канфлiктуе з бягучай канфiгурацыяй %s!\n"
+msgstr "Патэнцыйны адрас ЛВС канфлiктуе з бягучай канфiгурацыяй %s!\n"
#: ../../standalone/drakgw:1
#, c-format
@@ -15023,17 +14934,17 @@ msgstr ""
#: ../../standalone/drakgw:1
#, fuzzy, c-format
msgid "The internal domain name"
-msgstr "Iмя друкаркi"
+msgstr "Iмя друкаркi"
#: ../../standalone/drakgw:1
#, fuzzy, c-format
msgid "The DNS Server IP"
-msgstr "IP сервера SMB"
+msgstr "IP сервера SMB"
#: ../../standalone/drakgw:1
#, fuzzy, c-format
msgid "(This) DHCP Server IP"
-msgstr "IP сервера SMB"
+msgstr "IP сервера SMB"
#: ../../standalone/drakgw:1
#, c-format
@@ -15048,7 +14959,7 @@ msgstr ""
#: ../../standalone/drakgw:1
#, fuzzy, c-format
msgid "Local Network adress"
-msgstr "сеткавая карта не знойдзена"
+msgstr "сеткавая карта не знойдзена"
#: ../../standalone/drakgw:1
#, c-format
@@ -15080,12 +14991,12 @@ msgstr ""
#: ../../standalone/drakgw:1
#, fuzzy, c-format
msgid "Current interface configuration"
-msgstr "Настройка злучэння з Iнтэрнэтам"
+msgstr "Настройка злучэння з Iнтэрнэтам"
#: ../../standalone/drakgw:1
#, fuzzy, c-format
msgid "Show current interface configuration"
-msgstr "Настройка злучэння з Iнтэрнэтам"
+msgstr "Настройка злучэння з Iнтэрнэтам"
#: ../../standalone/drakgw:1
#, c-format
@@ -15095,7 +15006,7 @@ msgstr ""
#: ../../standalone/drakgw:1
#, fuzzy, c-format
msgid "Automatic reconfiguration"
-msgstr "Настройка мадэму"
+msgstr "Настройка мадэму"
#: ../../standalone/drakgw:1
#, c-format
@@ -15110,7 +15021,7 @@ msgstr ""
#: ../../standalone/drakgw:1
#, fuzzy, c-format
msgid "Network interface already configured"
-msgstr "Манiтор пакуль не настроены"
+msgstr "Манiтор пакуль не настроены"
#: ../../standalone/drakgw:1
#, c-format
@@ -15118,8 +15029,8 @@ msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr ""
-"Калi ласка, абярыце сеткавы адаптар, які будзе выкарыстаны для далучэння да "
-"вашай лакальнай сеткi."
+"Калi ласка, абярыце сеткавы адаптар, які будзе выкарыстаны для далучэння да "
+"вашай лакальнай сеткi."
#: ../../standalone/drakgw:1
#, c-format
@@ -15134,7 +15045,7 @@ msgstr ""
#: ../../standalone/drakgw:1
#, c-format
msgid "Network interface"
-msgstr "Сеткавы iнтэрфейс"
+msgstr "Сеткавы iнтэрфейс"
#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
#, c-format
@@ -15142,18 +15053,18 @@ msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
msgstr ""
-"Нi водны ethernet сеткавы адаптар у вашай сiстэме не вызначаны. Калi ласка, "
-"скарыстайце канфiгурацыйны iнструмэнт."
+"Нi водны ethernet сеткавы адаптар у вашай сiстэме не вызначаны. Калi ласка, "
+"скарыстайце канфiгурацыйны iнструмэнт."
#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
#, c-format
msgid "No network adapter on your system!"
-msgstr "У вашай сістэме няма нiводнага сеткавага адаптара!"
+msgstr "У вашай сістэме няма нiводнага сеткавага адаптара!"
#: ../../standalone/drakgw:1
#, fuzzy, c-format
msgid "Interface %s"
-msgstr "Сеткавы iнтэрфейс"
+msgstr "Сеткавы iнтэрфейс"
#: ../../standalone/drakgw:1
#, c-format
@@ -15162,6 +15073,22 @@ msgstr ""
#: ../../standalone/drakgw:1
#, fuzzy, c-format
+msgid "Net Device"
+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 ""
+
+#: ../../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 "
@@ -15173,22 +15100,22 @@ msgid ""
"Note: you need a dedicated Network Adapter to set up a Local Area Network "
"(LAN)."
msgstr ""
-"Ваш камп'ютар можа быць сканфігураваны на сумеснае выкарыстанне\n"
-" Інтэрнэту (Internet Connection Sharing)?\n"
+"Ваш камп'ютар можа быць сканфігураваны на сумеснае выкарыстанне\n"
+" Інтэрнэту (Internet Connection Sharing)?\n"
"\n"
-"Заўвага: вам патрэбны сеткавы адаптар для падключэння да ЛВС.\n"
+"Заўвага: вам патрэбны сеткавы адаптар для падключэння да ЛВС.\n"
"\n"
-"Вы жадаеце усталяваць сумесны доступ да Internet?"
+"Вы жадаеце усталяваць сумесны доступ да Internet?"
#: ../../standalone/drakgw:1
#, c-format
msgid "Internet Connection Sharing"
-msgstr "Сумеснае Iнтэрнэт-злучэнне"
+msgstr "Сумеснае Iнтэрнэт-злучэнне"
#: ../../standalone/drakgw:1
#, fuzzy, c-format
msgid "Internet Connection Sharing is now enabled."
-msgstr "Сумеснае Iнтэрнэт-злучэнне зараз магчыма"
+msgstr "Сумеснае Iнтэрнэт-злучэнне зараз магчыма"
#: ../../standalone/drakgw:1
#, c-format
@@ -15203,12 +15130,12 @@ msgstr ""
#: ../../standalone/drakgw:1
#, fuzzy, c-format
msgid "reconfigure"
-msgstr "Настройка X Window"
+msgstr "Настройка X Window"
#: ../../standalone/drakgw:1
#, fuzzy, c-format
msgid "enable"
-msgstr "Таблiца"
+msgstr "Таблiца"
#: ../../standalone/drakgw:1
#, c-format
@@ -15222,22 +15149,22 @@ msgstr ""
#: ../../standalone/drakgw:1
#, c-format
msgid "Internet Connection Sharing currently disabled"
-msgstr "Сумеснае Iнтэрнэт-злучэнне зараз забаронена"
+msgstr "Сумеснае Iнтэрнэт-злучэнне зараз забаронена"
#: ../../standalone/drakgw:1
#, fuzzy, c-format
msgid "Internet Connection Sharing is now disabled."
-msgstr "Сумеснае Iнтэрнэт-злучэнне зараз забаронена"
+msgstr "Сумеснае Iнтэрнэт-злучэнне зараз забаронена"
#: ../../standalone/drakgw:1
#, fuzzy, c-format
msgid "Disabling servers..."
-msgstr "Вызначэнне прыладаў..."
+msgstr "Вызначэнне прыладаў..."
#: ../../standalone/drakgw:1
#, fuzzy, c-format
msgid "disable"
-msgstr "Таблiца"
+msgstr "Таблiца"
#: ../../standalone/drakgw:1
#, c-format
@@ -15251,7 +15178,7 @@ msgstr ""
#: ../../standalone/drakgw:1
#, c-format
msgid "Internet Connection Sharing currently enabled"
-msgstr "Сумеснае Iнтэрнэт-злучэнне зараз магчыма"
+msgstr "Сумеснае Iнтэрнэт-злучэнне зараз магчыма"
#: ../../standalone/drakgw:1
#, c-format
@@ -15273,17 +15200,17 @@ msgstr ""
#: ../../standalone/drakperm:1
#, fuzzy, c-format
msgid "group :"
-msgstr "Працоўная група"
+msgstr "Працоўная група"
#: ../../standalone/drakperm:1
#, fuzzy, c-format
msgid "user :"
-msgstr "Iмя карыстальнiку:"
+msgstr "Iмя карыстальнiку:"
#: ../../standalone/drakperm:1
#, fuzzy, c-format
msgid "Path selection"
-msgstr "Асабiсты выбар пакетаў"
+msgstr "Асабiсты выбар пакетаў"
#: ../../standalone/drakperm:1
#, c-format
@@ -15325,17 +15252,17 @@ msgstr ""
#: ../../standalone/drakperm:1
#, fuzzy, c-format
msgid "Property"
-msgstr "Порт"
+msgstr "РџРѕСЂС‚"
#: ../../standalone/drakperm:1
#, fuzzy, c-format
msgid "Permissions"
-msgstr "Версiя: %s\n"
+msgstr "Версiя: %s\n"
#: ../../standalone/drakperm:1
#, fuzzy, c-format
msgid "Current user"
-msgstr "Прыняць карыстальнiка"
+msgstr "Прыняць карыстальнiка"
#: ../../standalone/drakperm:1
#, c-format
@@ -15350,27 +15277,27 @@ msgstr ""
#: ../../standalone/drakperm:1
#, fuzzy, c-format
msgid "edit"
-msgstr "Сярэднi"
+msgstr "РЎСЏСЂСЌРґРЅi"
#: ../../standalone/drakperm:1
#, fuzzy, c-format
msgid "Delete selected rule"
-msgstr "Выдалiць чаргу друку"
+msgstr "Выдалiць чаргу друку"
#: ../../standalone/drakperm:1
#, fuzzy, c-format
msgid "delete"
-msgstr "Знiшчыць"
+msgstr "Знiшчыць"
#: ../../standalone/drakperm:1
#, fuzzy, c-format
msgid "Add a new rule at the end"
-msgstr "Iмя друкаркi"
+msgstr "Iмя друкаркi"
#: ../../standalone/drakperm:1
#, fuzzy, c-format
msgid "add a rule"
-msgstr "Дадаць карыстальнiка"
+msgstr "Дадаць карыстальнiка"
#: ../../standalone/drakperm:1
#, c-format
@@ -15380,7 +15307,7 @@ msgstr ""
#: ../../standalone/drakperm:1
#, fuzzy, c-format
msgid "Down"
-msgstr "Зроблена"
+msgstr "Зроблена"
#: ../../standalone/drakperm:1
#, c-format
@@ -15408,17 +15335,17 @@ msgstr ""
#: ../../standalone/drakperm:1
#, fuzzy, c-format
msgid "permissions"
-msgstr "Раздзел %s"
+msgstr "Раздзел %s"
#: ../../standalone/drakperm:1
#, fuzzy, c-format
msgid "group"
-msgstr "Працоўная група"
+msgstr "Працоўная група"
#: ../../standalone/drakperm:1
#, fuzzy, c-format
msgid "user"
-msgstr "Iмя карыстальнiку:"
+msgstr "Iмя карыстальнiку:"
#: ../../standalone/drakperm:1
#, c-format
@@ -15428,7 +15355,7 @@ msgstr ""
#: ../../standalone/drakpxe:1
#, fuzzy, c-format
msgid "Location of auto_install.cfg file"
-msgstr "Стварэнне дыскеты для ўсталявання"
+msgstr "Стварэнне дыскеты для ўсталявання"
#: ../../standalone/drakpxe:1
#, c-format
@@ -15448,12 +15375,12 @@ msgstr ""
#: ../../standalone/drakpxe:1
#, fuzzy, c-format
msgid "No image found"
-msgstr "Лакальны прынтэр"
+msgstr "Лакальны прынтэр"
#: ../../standalone/drakpxe:1
#, fuzzy, c-format
msgid "Installation image directory"
-msgstr "Заканчэнне настройкi"
+msgstr "Заканчэнне настройкi"
#: ../../standalone/drakpxe:1
#, c-format
@@ -15488,14 +15415,14 @@ msgstr ""
#: ../../standalone/drakpxe:1
#, fuzzy, c-format
msgid "Interface %s (on network %s)"
-msgstr "Сеткавы iнтэрфейс"
+msgstr "Сеткавы iнтэрфейс"
#: ../../standalone/drakpxe:1
#, fuzzy, c-format
msgid "Please choose which network interface will be used for the dhcp server."
msgstr ""
-"Калi ласка, пазначце сеткавы адаптар, якi плануеце выкарыстоўваць для "
-"далучэння да iнтэрнэт"
+"Калi ласка, пазначце сеткавы адаптар, якi плануеце выкарыстоўваць для "
+"далучэння да iнтэрнэт"
#: ../../standalone/drakpxe:1
#, fuzzy, c-format
@@ -15504,7 +15431,7 @@ msgid ""
"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"
+"using this computer as source.\n"
"\n"
"Make sure you have configured your Network/Internet access using drakconnect "
"before going any further.\n"
@@ -15512,32 +15439,32 @@ msgid ""
"Note: you need a dedicated Network Adapter to set up a Local Area Network "
"(LAN)."
msgstr ""
-"Ваш камп'ютар можа быць сканфігураваны на сумеснае выкарыстанне\n"
-" Інтэрнэту (Internet Connection Sharing)?\n"
+"Ваш камп'ютар можа быць сканфігураваны на сумеснае выкарыстанне\n"
+" Інтэрнэту (Internet Connection Sharing)?\n"
"\n"
-"Заўвага: вам патрэбны сеткавы адаптар для падключэння да ЛВС.\n"
+"Заўвага: вам патрэбны сеткавы адаптар для падключэння да ЛВС.\n"
"\n"
-"Вы жадаеце усталяваць сумесны доступ да Internet?"
+"Вы жадаеце усталяваць сумесны доступ да Internet?"
#: ../../standalone/drakpxe:1
#, fuzzy, c-format
msgid "Installation Server Configuration"
-msgstr "Заканчэнне настройкi"
+msgstr "Заканчэнне настройкi"
#: ../../standalone/drakpxe:1
#, fuzzy, c-format
msgid "PXE Server Configuration"
-msgstr "Заканчэнне настройкi"
+msgstr "Заканчэнне настройкi"
#: ../../standalone/draksec:1
#, fuzzy, c-format
msgid "Please wait, setting security options..."
-msgstr "Падрыхтоўка ўсталяваньня"
+msgstr "Падрыхтоўка ўсталяваньня"
#: ../../standalone/draksec:1
#, fuzzy, c-format
msgid "Please wait, setting security level..."
-msgstr "Настройкi ўзроўня бяспекi"
+msgstr "Настройкi ўзроўня бяспекi"
#: ../../standalone/draksec:1
#, c-format
@@ -15547,12 +15474,12 @@ msgstr ""
#: ../../standalone/draksec:1
#, fuzzy, c-format
msgid "System Options"
-msgstr "Опцыi модулю:"
+msgstr "Опцыi модулю:"
#: ../../standalone/draksec:1
#, fuzzy, c-format
msgid "Network Options"
-msgstr "Опцыi модулю:"
+msgstr "Опцыi модулю:"
#: ../../standalone/draksec:1
#, c-format
@@ -15564,22 +15491,22 @@ msgstr ""
#: ../../standalone/draksec:1
#, fuzzy, c-format
msgid "Security Administrator:"
-msgstr "Опцыi аддаленага прынтэру lpd"
+msgstr "Опцыi аддаленага прынтэру lpd"
#: ../../standalone/draksec:1
#, fuzzy, c-format
msgid "Security Alerts:"
-msgstr "Настройкi ўзроўня бяспекi"
+msgstr "Настройкi ўзроўня бяспекi"
#: ../../standalone/draksec:1
#, fuzzy, c-format
msgid "Security Level:"
-msgstr "Настройкi ўзроўня бяспекi"
+msgstr "Настройкi ўзроўня бяспекi"
#: ../../standalone/draksec:1
#, fuzzy, c-format
msgid "(default value: %s)"
-msgstr " ? (змоўчанне %s) "
+msgstr " ? (змоўчанне %s) "
#: ../../standalone/draksec:1
#, c-format
@@ -15633,7 +15560,7 @@ msgstr ""
#: ../../standalone/draksound:1
#, fuzzy, c-format
msgid "No Sound Card detected!"
-msgstr "Размеркаванне"
+msgstr "Размеркаванне"
#: ../../standalone/draksplash:1
#, c-format
@@ -15643,17 +15570,17 @@ msgstr ""
#: ../../standalone/draksplash:1
#, fuzzy, c-format
msgid "Generating preview ..."
-msgstr "Вызначэнне прыладаў..."
+msgstr "Вызначэнне прыладаў..."
#: ../../standalone/draksplash:1
#, fuzzy, c-format
msgid "You must choose an image file first!"
-msgstr "URI прынтэру"
+msgstr "URI прынтэру"
#: ../../standalone/draksplash:1
#, fuzzy, c-format
msgid "ProgressBar color selection"
-msgstr "Злучэнне прынтэру"
+msgstr "Злучэнне прынтэру"
#: ../../standalone/draksplash:1
#, c-format
@@ -15668,12 +15595,17 @@ msgstr ""
#: ../../standalone/draksplash:1
#, fuzzy, c-format
msgid "choose image file"
-msgstr "Абярыце дзеянне"
+msgstr "Абярыце дзеянне"
+
+#: ../../standalone/draksplash:1
+#, fuzzy, c-format
+msgid "choose image"
+msgstr "Абярыце дзеянне"
#: ../../standalone/draksplash:1
#, fuzzy, c-format
msgid "Configure bootsplash picture"
-msgstr "Настройка службаў"
+msgstr "Настройка службаў"
#: ../../standalone/draksplash:1
#, c-format
@@ -15688,17 +15620,17 @@ msgstr ""
#: ../../standalone/draksplash:1
#, fuzzy, c-format
msgid "Choose color"
-msgstr "Абярыце манiтор"
+msgstr "Абярыце манiтор"
#: ../../standalone/draksplash:1
#, fuzzy, c-format
msgid "Save theme"
-msgstr "Усталяванне сiстэмы"
+msgstr "Усталяванне сiстэмы"
#: ../../standalone/draksplash:1
#, fuzzy, c-format
msgid "Preview"
-msgstr "прылада"
+msgstr "прылада"
#: ../../standalone/draksplash:1
#, c-format
@@ -15756,22 +15688,22 @@ msgstr ""
#: ../../standalone/draksplash:1
#, c-format
msgid "Browse"
-msgstr ""
+msgstr "Прагляд"
#: ../../standalone/draksplash:1
#, fuzzy, c-format
msgid "Theme name"
-msgstr "Iмя для размеркаванага рэсурсу"
+msgstr "Iмя для размеркаванага рэсурсу"
#: ../../standalone/draksplash:1
#, fuzzy, c-format
msgid "final resolution"
-msgstr "Памеры экрану"
+msgstr "Памеры экрану"
#: ../../standalone/draksplash:1
#, fuzzy, c-format
msgid "first step creation"
-msgstr "Настройка пасля ўсталявання"
+msgstr "Настройка пасля ўсталявання"
#: ../../standalone/draksplash:1
#, c-format
@@ -15816,7 +15748,7 @@ msgstr ""
#: ../../standalone/drakxtv:1
#, fuzzy, c-format
msgid "There was an error while scanning for TV channels"
-msgstr "Атрымалася памылка ўпарадкавання пакетаў:"
+msgstr "Атрымалася памылка ўпарадкавання пакетаў:"
#: ../../standalone/drakxtv:1
#, c-format
@@ -15858,17 +15790,17 @@ msgstr ""
#: ../../standalone/drakxtv:1
#, fuzzy, c-format
msgid "France [SECAM]"
-msgstr "Францыя"
+msgstr "Францыя"
#: ../../standalone/drakxtv:1
#, fuzzy, c-format
msgid "East Europe"
-msgstr "Еўропа"
+msgstr "Еўропа"
#: ../../standalone/drakxtv:1
#, fuzzy, c-format
msgid "West Europe"
-msgstr "Еўропа"
+msgstr "Еўропа"
#: ../../standalone/drakxtv:1
#, c-format
@@ -15888,7 +15820,7 @@ msgstr ""
#: ../../standalone/drakxtv:1
#, fuzzy, c-format
msgid "Canada (cable)"
-msgstr "Канадскi (Квебэк)"
+msgstr "Канадскi (Квебэк)"
#: ../../standalone/drakxtv:1
#, c-format
@@ -15929,7 +15861,7 @@ msgstr ""
#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "secondary"
-msgstr "%d секундаў"
+msgstr "%d секундаў"
#: ../../standalone/harddrake2:1
#, c-format
@@ -15940,7 +15872,7 @@ msgstr ""
#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "Unknown"
-msgstr "Агульны"
+msgstr "Агульны"
#: ../../standalone/harddrake2:1
#, c-format
@@ -15950,7 +15882,7 @@ msgstr ""
#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "Running \"%s\" ..."
-msgstr "Чытаю базу дадзеных драйвероў CUPS"
+msgstr "Чытаю базу дадзеных драйвероў CUPS"
#: ../../standalone/harddrake2:1
#, c-format
@@ -15960,32 +15892,32 @@ msgstr ""
#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "Configure module"
-msgstr "Настройка мышы"
+msgstr "Настройка мышы"
#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "Information"
-msgstr "Iнфармацыя"
+msgstr "Iнфармацыя"
#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "Detected hardware"
-msgstr "Гл. апiсанне абсталявання"
+msgstr "Гл. апiсанне абсталявання"
#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "Harddrake2 version "
-msgstr "Вызначэнне жорсткага дыску"
+msgstr "Вызначэнне жорсткага дыску"
#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "Detection in progress"
-msgstr "Дубляванне пункту манцiравання %s"
+msgstr "Дубляванне пункту манцiравання %s"
#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "Author:"
-msgstr "Аўтапошук"
+msgstr "Аўтапошук"
#: ../../standalone/harddrake2:1
#, c-format
@@ -16002,7 +15934,7 @@ msgstr ""
#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "/_About..."
-msgstr "Адмянiць"
+msgstr "Адмянiць"
#: ../../standalone/harddrake2:1
#, c-format
@@ -16019,7 +15951,7 @@ msgstr ""
#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "Select a device !"
-msgstr "Абярыце вiдэакарту"
+msgstr "Абярыце вiдэакарту"
#: ../../standalone/harddrake2:1
#, c-format
@@ -16036,32 +15968,32 @@ msgstr ""
#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "/_Fields description"
-msgstr "Апiсанне"
+msgstr "Апiсанне"
#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
#, c-format
msgid "/_Help"
-msgstr ""
+msgstr "/_Дапамога"
#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "/_Quit"
-msgstr "Выхад"
+msgstr "Выхад"
#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "/Autodetect _jazz drives"
-msgstr "Аддалены прынтэр"
+msgstr "Аддалены прынтэр"
#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "/Autodetect _modems"
-msgstr "Аддалены прынтэр"
+msgstr "Аддалены прынтэр"
#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "/Autodetect _printers"
-msgstr "Аддалены прынтэр"
+msgstr "Аддалены прынтэр"
#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
#, c-format
@@ -16081,7 +16013,7 @@ msgstr ""
#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "The type of bus on which the mouse is connected"
-msgstr "Калi ласка, пазначце послядоўны порт, да якога падключана вашая мыш."
+msgstr "Калi ласка, пазначце послядоўны порт, да якога падключана вашая мыш."
#: ../../standalone/harddrake2:1
#, c-format
@@ -16091,7 +16023,7 @@ msgstr ""
#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "Model stepping"
-msgstr "фарматаванне"
+msgstr "фарматаванне"
#: ../../standalone/harddrake2:1
#, c-format
@@ -16106,17 +16038,27 @@ msgstr ""
#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "network printer port"
-msgstr "Сеткавы прынтэр (TCP/Socket)"
+msgstr "Сеткавы прынтэр (TCP/Socket)"
+
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "the name of the CPU"
+msgstr ""
#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "Name"
-msgstr "Iмя: "
+msgstr "IРјСЏ: "
+
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "the number of buttons the mouse has"
+msgstr "2 РєРЅРѕРїРєi"
#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "Number of buttons"
-msgstr "2 кнопкi"
+msgstr "2 РєРЅРѕРїРєi"
#: ../../standalone/harddrake2:1
#, c-format
@@ -16126,7 +16068,7 @@ msgstr ""
#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "Model name"
-msgstr "Опцыi модулю:"
+msgstr "Опцыi модулю:"
#: ../../standalone/harddrake2:1
#, c-format
@@ -16136,12 +16078,12 @@ msgstr ""
#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "Model"
-msgstr "Порт мышы"
+msgstr "Порт мышы"
#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "hard disk model"
-msgstr "Адрасы памяці карты (DMA)"
+msgstr "Адрасы памяці карты (DMA)"
#: ../../standalone/harddrake2:1
#, c-format
@@ -16161,7 +16103,7 @@ msgstr ""
#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "Level"
-msgstr "узровень"
+msgstr "узровень"
#: ../../standalone/harddrake2:1
#, c-format
@@ -16171,7 +16113,7 @@ msgstr ""
#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "Floppy format"
-msgstr "Фарматаванне"
+msgstr "Фарматаванне"
#: ../../standalone/harddrake2:1
#, c-format
@@ -16246,7 +16188,7 @@ msgstr ""
#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "Module"
-msgstr "Порт мышы"
+msgstr "Порт мышы"
#: ../../standalone/harddrake2:1
#, c-format
@@ -16256,7 +16198,7 @@ msgstr ""
#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "New devfs device"
-msgstr "Прылада-шлюз"
+msgstr "Прылада-шлюз"
#: ../../standalone/harddrake2:1
#, c-format
@@ -16266,7 +16208,7 @@ msgstr ""
#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "Old device file"
-msgstr "Абярыце файл"
+msgstr "Абярыце файл"
#: ../../standalone/harddrake2:1
#, c-format
@@ -16276,7 +16218,7 @@ msgstr ""
#: ../../standalone/harddrake2:1
#, c-format
msgid ""
-"The cpu frequency in Mhz (Mega herz which in first approximation may be "
+"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 ""
@@ -16294,7 +16236,7 @@ msgstr ""
#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "Cpuid level"
-msgstr "Настройкi ўзроўня бяспекi"
+msgstr "Настройкi ўзроўня бяспекi"
#: ../../standalone/harddrake2:1
#, c-format
@@ -16334,7 +16276,7 @@ msgstr ""
#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "Cache size"
-msgstr "памер блоку"
+msgstr "памер блоку"
#: ../../standalone/harddrake2:1
#, c-format
@@ -16359,7 +16301,7 @@ msgstr ""
#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "Bus identification"
-msgstr "Аўтэнтыфiкацыя"
+msgstr "Аўтэнтыфiкацыя"
#: ../../standalone/harddrake2:1
#, c-format
@@ -16382,7 +16324,7 @@ msgstr ""
#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "Channel"
-msgstr "Адмена"
+msgstr "Адмена"
#: ../../standalone/harddrake2:1
#, c-format
@@ -16403,22 +16345,22 @@ msgstr ""
#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "Alternative drivers"
-msgstr "Друк тэставых старонак"
+msgstr "Друк тэставых старонак"
#: ../../standalone/keyboarddrake:1
#, c-format
msgid "Do you want the BackSpace to return Delete in console?"
-msgstr "Вы жадаеце каб BackSpace працаваў у кансолі як Delete?"
+msgstr "Вы жадаеце каб BackSpace працаваў у кансолі як Delete?"
#: ../../standalone/keyboarddrake:1
#, c-format
msgid "Please, choose your keyboard layout."
-msgstr "Калi ласка, абярыце тып клавiятуры."
+msgstr "Калi ласка, абярыце тып клавiятуры."
#: ../../standalone/livedrake:1
#, c-format
msgid "Unable to start live upgrade !!!\n"
-msgstr "Немагчыма запусціць live upgrade !!!\n"
+msgstr "Немагчыма запусціць live upgrade !!!\n"
#: ../../standalone/livedrake:1
#, fuzzy, c-format
@@ -16426,17 +16368,17 @@ 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"
+"Змянiце ваш Cd-Rom!\n"
"\n"
-"Калi ласка, устаўце Cd-Rom, пазначаны \"%s\", у ваш дыскавод i нацiснiце Oк "
-"пасля.\n"
-"Калi вы не маеце яго, нацiснiце Адмянiць, каб адмянiць усталяванне з гэтага "
+"Калi ласка, устаўце Cd-Rom, пазначаны \"%s\", у ваш дыскавод i нацiснiце Oк "
+"пасля.\n"
+"Калi вы не маеце яго, нацiснiце Адмянiць, каб адмянiць усталяванне з гэтага "
"Cd."
#: ../../standalone/livedrake:1
#, fuzzy, c-format
msgid "Change Cd-Rom"
-msgstr "Змянiць памеры экрану"
+msgstr "Змянiць памеры экрану"
#: ../../standalone/localedrake:1
#, c-format
@@ -16451,12 +16393,12 @@ msgstr ""
#: ../../standalone/logdrake:1
#, fuzzy, c-format
msgid "Please enter your email address below "
-msgstr "Паспрабуйце яшчэ раз"
+msgstr "Паспрабуйце яшчэ раз"
#: ../../standalone/logdrake:1
#, fuzzy, c-format
msgid "alert configuration"
-msgstr "Настройка"
+msgstr "Настройка"
#: ../../standalone/logdrake:1
#, c-format
@@ -16466,7 +16408,7 @@ msgstr ""
#: ../../standalone/logdrake:1
#, fuzzy, c-format
msgid "load setting"
-msgstr "фарматаванне"
+msgstr "фарматаванне"
#: ../../standalone/logdrake:1
#, c-format
@@ -16478,42 +16420,42 @@ msgstr ""
#: ../../standalone/logdrake:1
#, fuzzy, c-format
msgid "service setting"
-msgstr "прылада"
+msgstr "прылада"
#: ../../standalone/logdrake:1
#, fuzzy, c-format
msgid "Xinetd Service"
-msgstr "Сервер друку"
+msgstr "Сервер друку"
#: ../../standalone/logdrake:1
#, fuzzy, c-format
msgid "Webmin Service"
-msgstr "прылада"
+msgstr "прылада"
#: ../../standalone/logdrake:1
#, fuzzy, c-format
msgid "SSH Server"
-msgstr "NIS сервер:"
+msgstr "NIS сервер:"
#: ../../standalone/logdrake:1
#, fuzzy, c-format
msgid "Samba Server"
-msgstr "NIS сервер:"
+msgstr "NIS сервер:"
#: ../../standalone/logdrake:1
#, fuzzy, c-format
msgid "Postfix Mail Server"
-msgstr "Сервер друку"
+msgstr "Сервер друку"
#: ../../standalone/logdrake:1
#, fuzzy, c-format
msgid "Ftp Server"
-msgstr "NIS сервер:"
+msgstr "NIS сервер:"
#: ../../standalone/logdrake:1
#, fuzzy, c-format
msgid "Domain Name Resolver"
-msgstr "Iмя дамену"
+msgstr "Iмя дамену"
#: ../../standalone/logdrake:1
#, c-format
@@ -16531,7 +16473,7 @@ msgstr ""
#: ../../standalone/logdrake:1
#, fuzzy, c-format
msgid "Mail alert configuration"
-msgstr "Настройка ADSL"
+msgstr "Настройка ADSL"
#: ../../standalone/logdrake:1
#, c-format
@@ -16596,12 +16538,12 @@ msgstr ""
#: ../../standalone/logdrake:1
#, fuzzy, c-format
msgid "Messages"
-msgstr "Праверка партоў"
+msgstr "Праверка партоў"
#: ../../standalone/logdrake:1
#, fuzzy, c-format
msgid "User"
-msgstr "Iмя карыстальнiку:"
+msgstr "Iмя карыстальнiку:"
#: ../../standalone/logdrake:1
#, c-format
@@ -16661,22 +16603,22 @@ msgstr ""
#: ../../standalone/mousedrake:1
#, c-format
msgid "Emulate third button?"
-msgstr "Эмуляваць трэцюю кнопку?"
+msgstr "Эмуляваць трэцюю кнопку?"
#: ../../standalone/mousedrake:1
#, c-format
msgid "Please choose your mouse type."
-msgstr "калi ласка, пазначце тып вашай мышы."
+msgstr "калi ласка, пазначце тып вашай мышы."
#: ../../standalone/net_monitor:1
#, fuzzy, c-format
msgid "Connect %s"
-msgstr "Iмя злучэння"
+msgstr "Iмя злучэння"
#: ../../standalone/net_monitor:1
#, fuzzy, c-format
msgid "Disconnect %s"
-msgstr "Настройка ISDN"
+msgstr "Настройка ISDN"
#: ../../standalone/net_monitor:1
#, c-format
@@ -16708,7 +16650,7 @@ msgstr ""
#: ../../standalone/net_monitor:1
#, fuzzy, c-format
msgid "Local measure"
-msgstr "Лакальны прынтэр"
+msgstr "Лакальны прынтэр"
#: ../../standalone/net_monitor:1
#, c-format
@@ -16718,7 +16660,7 @@ msgstr ""
#: ../../standalone/net_monitor:1
#, fuzzy, c-format
msgid "Color configuration"
-msgstr "Настройка"
+msgstr "Настройка"
#: ../../standalone/net_monitor:1
#, c-format
@@ -16730,7 +16672,7 @@ msgstr ""
#: ../../standalone/net_monitor:1
#, fuzzy, c-format
msgid "Connection complete."
-msgstr "Iмя злучэння"
+msgstr "Iмя злучэння"
#: ../../standalone/net_monitor:1
#, c-format
@@ -16745,17 +16687,17 @@ msgstr ""
#: ../../standalone/net_monitor:1
#, fuzzy, c-format
msgid "Connecting to the Internet "
-msgstr "Далучэнне да Iнтэрнэту"
+msgstr "Далучэнне да Iнтэрнэту"
#: ../../standalone/net_monitor:1
#, fuzzy, c-format
msgid "Disconnecting from the Internet "
-msgstr "Далучэнне да Iнтэрнэту"
+msgstr "Далучэнне да Iнтэрнэту"
#: ../../standalone/net_monitor:1
#, fuzzy, c-format
msgid "Wait please, testing your connection..."
-msgstr "Якi тып вашага ISDN злучэння?"
+msgstr "Якi тып вашага ISDN злучэння?"
#: ../../standalone/net_monitor:1
#, c-format
@@ -16765,7 +16707,7 @@ msgstr ""
#: ../../standalone/net_monitor:1
#, fuzzy, c-format
msgid "Connection Time: "
-msgstr "Iмя злучэння"
+msgstr "Iмя злучэння"
#: ../../standalone/net_monitor:1
#, c-format
@@ -16775,7 +16717,7 @@ msgstr ""
#: ../../standalone/net_monitor:1
#, fuzzy, c-format
msgid "Sending Speed:"
-msgstr "Захаванне ў файл"
+msgstr "Захаванне ў файл"
#: ../../standalone/net_monitor:1
#, c-format
@@ -16785,17 +16727,17 @@ msgstr ""
#: ../../standalone/net_monitor:1
#, fuzzy, c-format
msgid "Profile "
-msgstr "памылка манцiравання: "
+msgstr "памылка манцiравання: "
#: ../../standalone/net_monitor:1
#, fuzzy, c-format
msgid "Network Monitoring"
-msgstr "Канфiгурацыя сеткi"
+msgstr "Канфiгурацыя сеткi"
#: ../../standalone/printerdrake:1
#, fuzzy, c-format
msgid "Reading data of installed printers..."
-msgstr "Даступныя пакеты"
+msgstr "Даступныя пакеты"
#: ../../standalone/scannerdrake:1
#, c-format
@@ -16810,12 +16752,12 @@ msgstr ""
#: ../../standalone/scannerdrake:1
#, fuzzy, c-format
msgid "Scannerdrake"
-msgstr "Абярыце вiдэакарту"
+msgstr "Абярыце вiдэакарту"
#: ../../standalone/scannerdrake:1
#, fuzzy, c-format
msgid "You must enter a host name or an IP address.\n"
-msgstr "Калі ласка, зрабіце некалькі рухаў мышшу."
+msgstr "Калі ласка, зрабіце некалькі рухаў мышшу."
#: ../../standalone/scannerdrake:1
#, c-format
@@ -16825,7 +16767,7 @@ msgstr ""
#: ../../standalone/scannerdrake:1
#, fuzzy, c-format
msgid "Sharing of local scanners"
-msgstr "Даступныя пакеты"
+msgstr "Даступныя пакеты"
#: ../../standalone/scannerdrake:1
#, c-format
@@ -16835,17 +16777,17 @@ msgstr ""
#: ../../standalone/scannerdrake:1
#, fuzzy, c-format
msgid "Remove selected host"
-msgstr "Выдалiць чаргу друку"
+msgstr "Выдалiць чаргу друку"
#: ../../standalone/scannerdrake:1
#, fuzzy, c-format
msgid "Edit selected host"
-msgstr "Выдалiць чаргу друку"
+msgstr "Выдалiць чаргу друку"
#: ../../standalone/scannerdrake:1
#, fuzzy, c-format
msgid "Add host"
-msgstr "Дадаць карыстальнiка"
+msgstr "Дадаць карыстальнiка"
#: ../../standalone/scannerdrake:1
#, c-format
@@ -16855,12 +16797,12 @@ msgstr ""
#: ../../standalone/scannerdrake:1
#, fuzzy, c-format
msgid "Usage of remote scanners"
-msgstr "Выкарыстоўваць незанятую прастору"
+msgstr "Выкарыстоўваць незанятую прастору"
#: ../../standalone/scannerdrake:1
#, fuzzy, c-format
msgid "All remote machines"
-msgstr "Аддалены прынтэр"
+msgstr "Аддалены прынтэр"
#: ../../standalone/scannerdrake:1
#, c-format
@@ -16882,7 +16824,7 @@ msgstr ""
#: ../../standalone/scannerdrake:1
#, fuzzy, c-format
msgid "Scanner sharing to hosts: "
-msgstr "Прынтэр"
+msgstr "Прынтэр"
#: ../../standalone/scannerdrake:1
#, c-format
@@ -16911,17 +16853,17 @@ msgstr ""
#: ../../standalone/scannerdrake:1
#, fuzzy, c-format
msgid "Searching for new scanners ..."
-msgstr "Даступныя пакеты"
+msgstr "Даступныя пакеты"
#: ../../standalone/scannerdrake:1
#, fuzzy, c-format
msgid "Searching for configured scanners ..."
-msgstr "Даступныя пакеты"
+msgstr "Даступныя пакеты"
#: ../../standalone/scannerdrake:1
#, fuzzy, c-format
msgid "Scanner sharing"
-msgstr "Прынтэр"
+msgstr "Прынтэр"
#: ../../standalone/scannerdrake:1
#, c-format
@@ -16931,7 +16873,7 @@ msgstr ""
#: ../../standalone/scannerdrake:1
#, fuzzy, c-format
msgid "Search for new scanners"
-msgstr "Даступныя пакеты"
+msgstr "Даступныя пакеты"
#: ../../standalone/scannerdrake:1
#, c-format
@@ -16945,7 +16887,7 @@ msgid ""
"\n"
"%s\n"
"is available on your system.\n"
-msgstr "У вашай сістэме няма нiводнага сеткавага адаптара!"
+msgstr "У вашай сістэме няма нiводнага сеткавага адаптара!"
#: ../../standalone/scannerdrake:1
#, fuzzy, c-format
@@ -16954,7 +16896,7 @@ msgid ""
"\n"
"%s\n"
"are available on your system.\n"
-msgstr "У вашай сістэме няма нiводнага сеткавага адаптара!"
+msgstr "У вашай сістэме няма нiводнага сеткавага адаптара!"
#: ../../standalone/scannerdrake:1
#, c-format
@@ -16967,7 +16909,7 @@ msgstr ""
#: ../../standalone/scannerdrake:1
#, fuzzy, c-format
msgid "choose device"
-msgstr "Загрузачная прылада"
+msgstr "Загрузачная прылада"
#: ../../standalone/scannerdrake:1
#, c-format
@@ -16977,12 +16919,12 @@ msgstr ""
#: ../../standalone/scannerdrake:1
#, fuzzy, c-format
msgid "Searching for scanners ..."
-msgstr "Даступныя пакеты"
+msgstr "Даступныя пакеты"
#: ../../standalone/scannerdrake:1
#, fuzzy, c-format
msgid "Auto-detect available ports"
-msgstr "Аддалены прынтэр"
+msgstr "Аддалены прынтэр"
#: ../../standalone/scannerdrake:1
#, c-format
@@ -17015,7 +16957,7 @@ msgstr ""
#: ../../standalone/scannerdrake:1
#, fuzzy, c-format
msgid "Port: %s"
-msgstr "Порт"
+msgstr "РџРѕСЂС‚"
#: ../../standalone/scannerdrake:1
#, c-format
@@ -17025,7 +16967,7 @@ msgstr ""
#: ../../standalone/scannerdrake:1
#, fuzzy, c-format
msgid "Detected model: %s"
-msgstr "Дубляванне пункту манцiравання %s"
+msgstr "Дубляванне пункту манцiравання %s"
#: ../../standalone/scannerdrake:1
#, c-format
@@ -17035,7 +16977,7 @@ msgstr ""
#: ../../standalone/scannerdrake:1
#, fuzzy, c-format
msgid "Select a scanner model"
-msgstr "Абярыце вiдэакарту"
+msgstr "Абярыце вiдэакарту"
#: ../../standalone/scannerdrake:1
#, c-format
@@ -17045,12 +16987,12 @@ msgstr ""
#: ../../standalone/scannerdrake:1
#, fuzzy, c-format
msgid "%s found on %s, configure it automatically?"
-msgstr "Жадаеце настроiць прынтэр?"
+msgstr "Жадаеце настроiць прынтэр?"
#: ../../standalone/service_harddrake:1
#, fuzzy, c-format
msgid "Hardware probing in progress"
-msgstr "Дубляванне пункту манцiравання %s"
+msgstr "Дубляванне пункту манцiравання %s"
#: ../../standalone/service_harddrake:1
#, c-format
@@ -17065,56 +17007,56 @@ msgstr ""
#: ../../share/compssUsers:999
#, fuzzy
msgid "Office Workstation"
-msgstr "Навуковыя прыкладанні"
+msgstr "Навуковыя прыкладанні"
#: ../../share/compssUsers:999
msgid ""
"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
"gnumeric), pdf viewers, etc"
msgstr ""
-"Офісныя праграмы: працэсары словаў (kword, abiword), электроныя табліцы, "
-"аглядальнікі pdf-файлаў, і г.д."
+"Офісныя праграмы: працэсары словаў (kword, abiword), электроныя табліцы, "
+"аглядальнікі pdf-файлаў, і г.д."
#: ../../share/compssUsers:999
#, fuzzy
msgid "Workstation"
-msgstr "Навуковыя прыкладанні"
+msgstr "Навуковыя прыкладанні"
#: ../../share/compssUsers:999
#, fuzzy
msgid "Game station"
-msgstr "Мультымедыя - гук"
+msgstr "Мультымедыя - гук"
#: ../../share/compssUsers:999
msgid "Amusement programs: arcade, boards, strategy, etc"
-msgstr "Забаўляльныя праграмы: аркады, стратэгіі і г.д."
+msgstr "Забаўляльныя праграмы: аркады, стратэгіі і г.д."
#: ../../share/compssUsers:999
#, fuzzy
msgid "Multimedia station"
-msgstr "Мультымедыя - гук"
+msgstr "Мультымедыя - гук"
#: ../../share/compssUsers:999
msgid "Sound and video playing/editing programs"
-msgstr "Рэдактары і прайгравальнікі гуку і відэа"
+msgstr "Рэдактары і прайгравальнікі гуку і відэа"
#: ../../share/compssUsers:999
#, fuzzy
msgid "Internet station"
-msgstr "Настройка злучэння з Iнтэрнэтам"
+msgstr "Настройка злучэння з Iнтэрнэтам"
#: ../../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...), "
-"Web аглядальнікі"
+"Прыкладанні для чытання і адпраўкі пошты і навінаў (pine, mutt, tin...), "
+"Web аглядальнікі"
#: ../../share/compssUsers:999
#, fuzzy
msgid "Network Computer (client)"
-msgstr "Сеткавы прынтэр (socket)"
+msgstr "Сеткавы прынтэр (socket)"
#: ../../share/compssUsers:999
msgid "Clients for different protocols including ssh"
@@ -17123,17 +17065,17 @@ msgstr ""
#: ../../share/compssUsers:999
#, fuzzy
msgid "Configuration"
-msgstr "Настройка"
+msgstr "Настройка"
#: ../../share/compssUsers:999
#, fuzzy
msgid "Tools to ease the configuration of your computer"
-msgstr "Цi жадаеце пратэсцiраваць настройкi?"
+msgstr "Цi жадаеце пратэсцiраваць настройкi?"
#: ../../share/compssUsers:999
#, fuzzy
msgid "Scientific Workstation"
-msgstr "Навуковыя прыкладанні"
+msgstr "Навуковыя прыкладанні"
#: ../../share/compssUsers:999
msgid "Scientific applications such as gnuplot"
@@ -17141,24 +17083,24 @@ msgstr ""
#: ../../share/compssUsers:999
msgid "Console Tools"
-msgstr "Кансольныя інструментальныя сродкі"
+msgstr "Кансольныя інструментальныя сродкі"
#: ../../share/compssUsers:999
msgid "Editors, shells, file tools, terminals"
-msgstr "Рэдактары, абалонкі, тэрміналы"
+msgstr "Рэдактары, абалонкі, тэрміналы"
#: ../../share/compssUsers:999
#, fuzzy
msgid "KDE Workstation"
-msgstr "Навуковыя прыкладанні"
+msgstr "Навуковыя прыкладанні"
#: ../../share/compssUsers:999
msgid ""
"The K Desktop Environment, the basic graphical environment with a collection "
"of accompanying tools"
msgstr ""
-"The K Desktop Environment - асноўнае графічнае асяродзе з калекцыяй "
-"інструментальных сродкаў"
+"The K Desktop Environment - асноўнае графічнае асяродзе з калекцыяй "
+"інструментальных сродкаў"
#: ../../share/compssUsers:999
msgid "Graphical Environment"
@@ -17167,19 +17109,19 @@ msgstr ""
#: ../../share/compssUsers:999
#, fuzzy
msgid "Gnome Workstation"
-msgstr "Навуковыя прыкладанні"
+msgstr "Навуковыя прыкладанні"
#: ../../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 "Іншыя графічныя Працоўныя сталы"
+msgstr "Іншыя графічныя Працоўныя сталы"
#: ../../share/compssUsers:999
msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
@@ -17188,20 +17130,20 @@ msgstr ""
#: ../../share/compssUsers:999
#, fuzzy
msgid "Development"
-msgstr "распрацоўшчык"
+msgstr "распрацоўшчык"
#: ../../share/compssUsers:999
msgid "C and C++ development libraries, programs and include files"
-msgstr "Бібліятэкі і праграмы для распрацоўкі на С і С++"
+msgstr "Бібліятэкі і праграмы для распрацоўкі на С і С++"
#: ../../share/compssUsers:999
#, fuzzy
msgid "Documentation"
-msgstr "Аўтэнтыфiкацыя"
+msgstr "Аўтэнтыфiкацыя"
#: ../../share/compssUsers:999
msgid "Books and Howto's on Linux and Free Software"
-msgstr "нігі і Howto па Linux і Free Software"
+msgstr "РЅС–РіС– С– Howto РїР° Linux С– Free Software"
#: ../../share/compssUsers:999
msgid "LSB"
@@ -17226,7 +17168,7 @@ msgstr ""
#: ../../share/compssUsers:999
#, fuzzy
msgid "Postfix mail server"
-msgstr "Сервер друку"
+msgstr "Сервер друку"
#: ../../share/compssUsers:999
msgid "Database"
@@ -17243,7 +17185,7 @@ msgstr ""
#: ../../share/compssUsers:999
#, fuzzy
msgid "Internet gateway"
-msgstr "Настройка злучэння з Iнтэрнэтам"
+msgstr "Настройка злучэння з Iнтэрнэтам"
#: ../../share/compssUsers:999
msgid "DNS/NIS "
@@ -17256,7 +17198,7 @@ msgstr ""
#: ../../share/compssUsers:999
#, fuzzy
msgid "Network Computer server"
-msgstr "Сеткавы прынтэр (socket)"
+msgstr "Сеткавы прынтэр (socket)"
#: ../../share/compssUsers:999
msgid "NFS server, SMB server, Proxy server, ssh server"
@@ -17265,47 +17207,51 @@ msgstr ""
#: ../../share/compssUsers:999
#, fuzzy
msgid "Office"
-msgstr "добра"
+msgstr "РґРѕР±СЂР°"
#: ../../share/compssUsers:999
msgid "Set of tools for mail, news, web, file transfer, and chat"
-msgstr "Набор інструментаў для пошты, навінаў, web'у, перадачы файлаў, і chat"
+msgstr "Набор інструментаў для пошты, навінаў, web'у, перадачы файлаў, і chat"
+
+#: ../../share/compssUsers:999
+msgid "Games"
+msgstr "Забавы"
#: ../../share/compssUsers:999
msgid "Multimedia - Graphics"
-msgstr "Мультымедыя - Графіка"
+msgstr "Мультымедыя - Графіка"
#: ../../share/compssUsers:999
msgid "Graphics programs such as The Gimp"
-msgstr "Графічныя праграмы тыпу The Gimp"
+msgstr "Графічныя праграмы тыпу The Gimp"
#: ../../share/compssUsers:999
msgid "Multimedia - Sound"
-msgstr "Мультымедыя - гук"
+msgstr "Мультымедыя - гук"
#: ../../share/compssUsers:999
msgid "Audio-related tools: mp3 or midi players, mixers, etc"
-msgstr "Аўдыёсродкі: прайгравальнікі mp3 і midi, мікшары і г.д."
+msgstr "Аўдыёсродкі: прайгравальнікі mp3 і midi, мікшары і г.д."
#: ../../share/compssUsers:999
msgid "Multimedia - Video"
-msgstr "Мультымедыя - відэа"
+msgstr "Мультымедыя - відэа"
#: ../../share/compssUsers:999
msgid "Video players and editors"
-msgstr "Рэдактары і прайгравальнікі відэа"
+msgstr "Рэдактары і прайгравальнікі відэа"
#: ../../share/compssUsers:999
msgid "Multimedia - CD Burning"
-msgstr "Мультымедыя - Стварэнне CD"
+msgstr "Мультымедыя - Стварэнне CD"
#: ../../share/compssUsers:999
msgid "Tools to create and burn CD's"
-msgstr "Інструментальныя сродкі стварэньня CD"
+msgstr "Інструментальныя сродкі стварэньня CD"
#: ../../share/compssUsers:999
msgid "More Graphical Desktops (Gnome, IceWM)"
-msgstr "Шмат графічных мэнаджэраў Працоўных сталоў(Gnome, IceWM)"
+msgstr "Шмат графічных мэнаджэраў Працоўных сталоў(Gnome, IceWM)"
#: ../../share/compssUsers:999
msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
@@ -17313,19 +17259,48 @@ msgstr ""
#: ../../share/compssUsers:999
msgid "Personal Information Management"
-msgstr "Мэнаджар асабістай інфармацыі"
+msgstr "Мэнаджар асабістай інфармацыі"
#: ../../share/compssUsers:999
msgid "Tools for your Palm Pilot or your Visor"
-msgstr "Інструментальныя сродкі для Palm Pilot і Visor"
+msgstr "Інструментальныя сродкі для Palm Pilot і Visor"
#: ../../share/compssUsers:999
msgid "Personal Finance"
-msgstr "Персанальныя фінансы"
+msgstr "Персанальныя фінансы"
#: ../../share/compssUsers:999
msgid "Programs to manage your finances, such as gnucash"
-msgstr "Праграмы кіравання вашымі фінансамі, тыпу gnucash"
+msgstr "Праграмы кіравання вашымі фінансамі, тыпу gnucash"
+
+#~ msgid "no network card found"
+#~ msgstr "сеткавая карта не знойдзена"
+
+#, fuzzy
+#~ msgid "Get involved in the Free Software world"
+#~ msgstr "Падключэнне"
+
+#, fuzzy
+#~ msgid "Get the most from the Internet"
+#~ msgstr "Далучэнне да Iнтэрнэту"
+
+#, fuzzy
+#~ msgid "User interfaces"
+#~ msgstr "Сеткавы iнтэрфейс"
+
+#, fuzzy
+#~ msgid "Development simplified"
+#~ msgstr "распрацоўшчык"
+
+#, 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снуючыя."
#~ msgid ""
#~ "Please enter your host name if you know it.\n"
@@ -17333,42 +17308,42 @@ msgstr "Праграмы кіравання вашымі фінансамі, тыпу gnucash"
#~ "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 ён у вас ёсць."
+#~ "Увядзiце iмя сваёй машыны (host).\n"
+#~ "Iмя вашай машыны павiнна быць зададзена поўнасцю,\n"
+#~ "напрыклад ``mybox.mylab.myco.com''.\n"
+#~ "Вы можаце таксама ўвесцi IP адрас шлюзу, калi ён у вас ёсць."
#, fuzzy
#~ msgid "Traditional Monitor"
-#~ msgstr "Змянiць манiтор"
+#~ msgstr "Змянiць манiтор"
#, fuzzy
#~ msgid "NewStyle Monitor"
-#~ msgstr "Манiтор"
+#~ msgstr "Манiтор"
#, fuzzy
#~ msgid "Secure Connection"
-#~ msgstr "Выбар тыпу злучэння прынтэру"
+#~ msgstr "Выбар тыпу злучэння прынтэру"
#, fuzzy
#~ msgid "FTP Connection"
-#~ msgstr "Размеркаванне"
+#~ msgstr "Размеркаванне"
#, fuzzy
#~ msgid "/Options"
-#~ msgstr "Опцыi"
+#~ msgstr "Опцыi"
#, fuzzy
#~ msgid "/Autodetect jazz drives"
-#~ msgstr "Аддалены прынтэр"
+#~ msgstr "Аддалены прынтэр"
#, fuzzy
#~ msgid "/Autodetect modems"
-#~ msgstr "Аддалены прынтэр"
+#~ msgstr "Аддалены прынтэр"
#, fuzzy
#~ msgid "/Autodetect printers"
-#~ msgstr "Аддалены прынтэр"
+#~ msgstr "Аддалены прынтэр"
#~ msgid ""
#~ "The partition you've selected to add as root (/) is physically located "
@@ -17377,11 +17352,11 @@ msgstr "Праграмы кіравання вашымі фінансамі, тыпу gnucash"
#~ "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"
+#~ "Абраны для дадатку ў якасц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 "
@@ -17389,28 +17364,28 @@ msgstr "Праграмы кіравання вашымі фінансамі, тыпу gnucash"
#~ "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 не патрэбны."
+#~ "Прабачце, але нельга стварыць /boot на гэтым дыску (на цылiндры > 1024).\n"
+#~ "Калі вы думаеце выкарыстоўваць LILO - тады гэта не будзе працаваць, LILO "
+#~ "не выкарыстоўваеца, тады /boot не патрэбны."
#, fuzzy
#~ msgid "Do you want to configure another printer?"
-#~ msgstr "Цi жадаеце пратэсцiраваць настройкi?"
+#~ msgstr "Цi жадаеце пратэсцiраваць настройкi?"
#, fuzzy
#~ msgid "Know how to use this printer"
-#~ msgstr "Цi жадаеце пратэсцiраваць настройкi?"
+#~ msgstr "Цi жадаеце пратэсцiраваць настройкi?"
#, fuzzy
#~ msgid "Preparing Printerdrake..."
-#~ msgstr "Чытаю базу дадзеных драйвероў CUPS"
+#~ msgstr "Чытаю базу дадзеных драйвероў CUPS"
#, fuzzy
#~ msgid "Reading printer data ..."
-#~ msgstr "Чытаю базу дадзеных драйвероў CUPS"
+#~ msgstr "Чытаю базу дадзеных драйвероў CUPS"
#~ msgid "Please be patient. This operation can take several minutes."
-#~ msgstr "Калі ласка, пачакайце. Гэтая аперацыя адыме пэўны час."
+#~ msgstr "Калі ласка, пачакайце. Гэтая аперацыя адыме пэўны час."
#~ msgid "Test ports"
-#~ msgstr "Праверка партоў"
+#~ msgstr "Праверка партоў"
diff --git a/perl-install/share/po/bg.po b/perl-install/share/po/bg.po
index 2ef9b10e4..cfe99368f 100644
--- a/perl-install/share/po/bg.po
+++ b/perl-install/share/po/bg.po
@@ -8,7 +8,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX-bg\n"
-"POT-Creation-Date: 2002-12-05 19:52+0100\n"
+"POT-Creation-Date: 2003-03-07 03:05+0100\n"
"PO-Revision-Date: 2003-02-19 20:42+0200\n"
"Last-Translator: Borislav Aleksandrov <B.Aleksandrov@cnsys.bg>\n"
"Language-Team: Bulgarian <bg@li.org>\n"
@@ -1132,50 +1132,65 @@ 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"
+"or all of the following entries. Each entry is made up of the configuration\n"
+"item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"Configure\" button to change\n"
+"that.\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"
+" * \"Keyboard\": check the current keyboard map configuration and change\n"
+"that if necessary.\n"
"\n"
" * \"Country\": check the current country selection. If you are not in this\n"
-"country, click on the button and choose another one.\n"
+"country, click on the \"Configure\" button and choose another one. If your\n"
+"country is not in the first list shown, click the \"More\" button to get\n"
+"the complete country list.\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"
+"country you have chosen. You can click on the \"Configure\" button here if\n"
+"this is not correct.\n"
"\n"
-" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+" * \"Mouse\": check the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
+"\n"
+" * \"Printer\": clicking on the \"Configure\" 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"
+" * \"Graphical Interface\": by default, DrakX configures your graphical\n"
+"interface in \"800x600\" or \"1024x768\" resolution. If that does not suits\n"
+"you, click on \"Configure\" to reconfigure your graphical interface.\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"
+"here. If you have a TV card and it is not detected, click on \"Configure\"\n"
+"to 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."
+"displayed here. You can click on \"Configure\" to change the parameters\n"
+"associated with the card.\n"
+"\n"
+" * \"Network\": If you want to configure your Internet or local network\n"
+"access now.\n"
+"\n"
+" * \"Security Level\": this entry offers you to redefine the security level\n"
+"as set in a previous step ().\n"
+"\n"
+" * \"Firewall\": if you plan to connect your machine to the Internet, it's\n"
+"a good idea to protect you from intrusions by setting up a firewall.\n"
+"Consult the corresponding section of the ``Starter Guide'' for details\n"
+"about firewall settings.\n"
+"\n"
+" * \"Bootloader\": if you wish to change your bootloader configuration,\n"
+"click that button. This should be reserved to advanced users.\n"
+"\n"
+" * \"Services\": you'll be able here to control finely which services will\n"
+"be run on your machine. If you plan to use this machine as a server it's a\n"
+"good idea to review this setup."
msgstr ""
#: ../../help.pm:1
@@ -1279,13 +1294,8 @@ msgid ""
"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 \"Next ->\". Examine the list of hardware and then click on the \"Next\n"
-"->\" button to return to the SCSI interface question.\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"
@@ -1309,7 +1319,7 @@ msgid ""
"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"
+"used with networks.) It's recommended that you use \"pdq\" if this is your\n"
"first experience with GNU/Linux.\n"
"\n"
" * \"CUPS\" - `` Common Unix Printing System'', is an excellent choice for\n"
@@ -1328,7 +1338,7 @@ msgid ""
msgstr ""
#: ../../help.pm:1
-#, fuzzy, c-format
+#, 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"
@@ -1347,58 +1357,8 @@ msgid ""
"\"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"
-"ще презапише цялата дискета."
+"(\"On Floppy\")."
+msgstr ""
#: ../../help.pm:1
#, fuzzy, c-format
@@ -1564,9 +1524,14 @@ msgid ""
"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 \"Next ->\" button to\n"
-"continue.\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 \"All\n"
+"languages\" box. Selecting support for a language means translations,\n"
+"fonts, spell checkers, etc. for that language will be installed.\n"
+"Additionally, the \"Use Unicode by default\" checkbox allows to force the\n"
+"system to use unicode (UTF-8). Note however that this is an experimental\n"
+"feature. If you select different languages requiring different encoding the\n"
+"unicode support will be 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"
@@ -1655,7 +1620,9 @@ msgstr ""
#, c-format
msgid ""
"\"Country\": check the current country selection. If you are not in this\n"
-"country, click on the button and choose another one."
+"country, click on the \"Configure\" button and choose another one. If your\n"
+"country is not in the first list shown, click the \"More\" button to get\n"
+"the complete country list."
msgstr ""
#: ../../help.pm:1
@@ -1877,9 +1844,7 @@ msgid ""
"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"
+"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 ""
@@ -1901,14 +1866,14 @@ 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"
+"updates, you are now able to download them from the Internet. Check \"Yes\"\n"
+"if you have a working Internet connection, or \"No\" if you prefer to\n"
+"install updated packages later.\n"
"\n"
-"Choosing \"Yes\" displays a list of places from which updates can be\n"
+"Choosing \"Yes\" will display 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."
+"the selected package(s), or \"Cancel\" to abort."
msgstr ""
#: ../../help.pm:1
@@ -1978,7 +1943,7 @@ msgid ""
"the bootloader menu, giving you the choice of which operating system to\n"
"start.\n"
"\n"
-"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
+"The \"Advanced\" button 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"
@@ -2069,7 +2034,7 @@ msgid ""
" * \"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"
+"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"
@@ -2094,13 +2059,13 @@ msgid ""
"\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''."
+" * \"Custom disk partitioning\": choose this option if you want to manually\n"
+"partition your hard drive. Be careful -- it is a powerful but dangerous\n"
+"choice and you can very easily lose all your data. That's why this option\n"
+"is really only recommended if you have done something like this before and\n"
+"have some experience. For more instructions on how to use the DiskDrake\n"
+"utility, refer to the ``Managing Your Partitions '' section in the\n"
+"``Starter Guide''."
msgstr ""
"В този момент трябва изберете къде на твърдия си диска да инсталирате "
"вашата\n"
@@ -2179,60 +2144,6 @@ msgstr ""
"знаете какво правите."
#: ../../help.pm:1
-#, fuzzy, c-format
-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 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:1
#, c-format
msgid ""
"Finally, you will be asked whether you want to see the graphical interface\n"
@@ -2366,7 +2277,8 @@ msgstr ""
#: ../../help.pm:1
#, fuzzy, c-format
msgid ""
-"This step is used to choose which services you wish to start at boot time.\n"
+"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 always needed at\n"
@@ -2404,7 +2316,7 @@ msgstr ""
#: ../../help.pm:1
#, c-format
msgid ""
-"\"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+"\"Printer\": clicking on the \"Configure\" 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."
@@ -4007,6 +3919,12 @@ msgstr "Услуги"
msgid "System"
msgstr "Система"
+#. -PO: example: lilo-graphic on /dev/hda1
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "%s on %s"
+msgstr "Порт"
+
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Bootloader"
@@ -4438,6 +4356,11 @@ msgid "Please choose your type of mouse."
msgstr "Моля, изберете тип на мишката."
#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Encryption key for %s"
+msgstr "Ключ за криптиране"
+
+#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Upgrade %s"
msgstr "Обновява %s"
@@ -9196,11 +9119,6 @@ msgstr "Настойка на мрежата"
#: ../../network/ethernet.pm:1
#, c-format
-msgid "no network card found"
-msgstr "не е открита мрежова карта"
-
-#: ../../network/ethernet.pm:1
-#, c-format
msgid ""
"Please choose which network adapter you want to use to connect to Internet."
msgstr "Моля, изберете кой мрежов адаптер да използвам за връзка към Интернет"
@@ -10486,19 +10404,6 @@ 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; 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."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
msgid "Printing system: "
msgstr "Печатна система: "
@@ -11079,6 +10984,11 @@ msgid "Option %s must be an integer number!"
msgstr "Настройката %s трябва да е цяло число !"
#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Printer default settings"
+msgstr "Избор модел на принтера"
+
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Printer default settings\n"
@@ -12828,13 +12738,13 @@ msgstr "Добре дошли при Cracker-ите"
#, 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 on the part of "
-"the worldwide Linux Community"
+"Your new operating system is the result of collaborative work of the "
+"worldwide Linux Community."
msgstr ""
#: ../../share/advertising/01-thanks.pl:1
#, c-format
-msgid "Welcome to the Open Source world"
+msgid "Welcome to the Open Source world."
msgstr "Добре дошли в света на Отвореният Изходен код"
#: ../../share/advertising/01-thanks.pl:1
@@ -12845,208 +12755,161 @@ msgstr "Благодарим ви, че избрахте Mandrake Linux 9.1"
#: ../../share/advertising/02-community.pl:1
#, c-format
msgid ""
-"To share your own knowledge and help build Linux tools, join the discussion "
-"forums you'll find on our \"Community\" webpages"
+"To share your own knowledge and help build Linux software, join our "
+"discussion forums on our \"Community\" webpages."
msgstr ""
#: ../../share/advertising/02-community.pl:1
#, c-format
-msgid "Want to know more about the Open Source community?"
-msgstr "Какво искате да знаете повече за общността на Отвореният изходен код?"
-
-#: ../../share/advertising/02-community.pl:1
-#, c-format
-msgid "Get involved in the Free Software world"
-msgstr "Влезте в света на Свободният Софтуер"
-
-#: ../../share/advertising/03-internet.pl:1
-#, c-format
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"
+"Want to know more and to contribute to the Open Source community? Get "
+"involved in the Free Software world!"
msgstr ""
+"Какво искате да знаете повече за общността на Отвореният изходен код? Влезте "
+"в света на Свободният Софтуер"
-#: ../../share/advertising/03-internet.pl:1
+#: ../../share/advertising/02-community.pl:1
#, c-format
-msgid "Get the most from the Internet"
-msgstr "Вземете повече от Интернет"
+msgid "Build the future of Linux!"
+msgstr ""
-#: ../../share/advertising/04-multimedia.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
msgid ""
-"Mandrake Linux 9.1 enables you to use the very latest software to play audio "
-"files, edit and handle your images or photos, and play videos"
+"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.1 ви ппозволява да получите най-последните версии на "
"софтуера, да слушате музикални файлове, да обработвате фото и графични "
"файлове, както и да гледате видео."
-#: ../../share/advertising/04-multimedia.pl:1
-#, c-format
-msgid "Push multimedia to its limits!"
-msgstr "Пуснете мултимедията на нейните ограничения!"
-
-#: ../../share/advertising/04-multimedia.pl:1
-#, c-format
-msgid "Discover the most up-to-date graphical and multimedia tools!"
-msgstr ""
-"Открийте повечето от съществуващите графични и мултимедиини инструменти!"
-
-#: ../../share/advertising/05-games.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
msgid ""
-"Mandrake Linux 9.1 provides the best Open Source games - arcade, action, "
-"strategy, ..."
+"Surf the Web with Mozilla or Konqueror, read your mail with Evolution or "
+"Kmail, create your documents with OpenOffice.org."
msgstr ""
-"Mandrake Linux 9.1 предоставя най добрите игри на Свободният Софтуер - с "
-"действия, стратегически и др.."
-#: ../../share/advertising/05-games.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
-msgid "Games"
-msgstr "Игри"
+msgid "MandrakeSoft has selected the best software for you"
+msgstr ""
-#: ../../share/advertising/06-mcc.pl:1
+#: ../../share/advertising/04-configuration.pl:1
#, c-format
msgid ""
-"Mandrake Linux 9.1 provides a powerful tool to fully customize and configure "
-"your machine"
+"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!"
msgstr ""
-"Mandrake Linux 9.1 предоставя мощен инструмент за построяване и "
-"конфигуриране на вашата система"
-#: ../../share/advertising/06-mcc.pl:1 ../../standalone/drakbug:1
-#, c-format
-msgid "Mandrake Control Center"
-msgstr "Контролен център на Mandrake"
+#: ../../share/advertising/04-configuration.pl:1
+#, fuzzy, c-format
+msgid "Mandrake's multipurpose configuration tool"
+msgstr "Конфигурация на Терминален Сървър в Mandrake "
-#: ../../share/advertising/07-desktop.pl:1
-#, c-format
+#: ../../share/advertising/05-desktop.pl:1
+#, fuzzy, c-format
msgid ""
-"Mandrake Linux 9.1 provides you with 11 user interfaces that can be fully "
-"modified: KDE 3, Gnome 2, WindowMaker, ..."
+"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 ""
"Mandrake Linux 9.1 ви предоставя 11 потребителски интерфейса които могат да "
"бъдат напълно модифицирани: KDE 3, Gnome 2, WindowMaker, ..."
-#: ../../share/advertising/07-desktop.pl:1
+#: ../../share/advertising/05-desktop.pl:1
#, c-format
-msgid "User interfaces"
-msgstr "Потребителски интерфейс"
+msgid "A customizable environment"
+msgstr ""
-#: ../../share/advertising/08-development.pl:1
+#: ../../share/advertising/06-development.pl:1
#, c-format
msgid ""
-"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
-"development environments"
+"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 ""
-"Използва пълните възможности на компилатора GNU gcc 3 както и най-добрите "
-"системи за разработка в Отвореният Изходен код"
-#: ../../share/advertising/08-development.pl:1
+#: ../../share/advertising/06-development.pl:1
#, c-format
-msgid "Mandrake Linux 9.1 is the ultimate development platform"
+msgid "Mandrake Linux 9.1: the ultimate development platform"
msgstr "Mandrake Linux 9.1 е непрекъснато разработваща се платформа"
-#: ../../share/advertising/08-development.pl:1
-#, c-format
-msgid "Development simplified"
-msgstr "Опростява разработка"
-
-#: ../../share/advertising/09-server.pl:1
+#: ../../share/advertising/07-server.pl:1
#, c-format
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, ..."
+"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, файлов и принт сървър, ..."
-#: ../../share/advertising/09-server.pl:1
+#: ../../share/advertising/07-server.pl:1
#, c-format
-msgid "Turn your machine into a reliable server"
+msgid "Turn your computer into a reliable server"
msgstr "Превърнете вашата машина в надежден сървър"
-#: ../../share/advertising/10-mnf.pl:1
-#, c-format
-msgid "This product is available on MandrakeStore website"
-msgstr "Този продукт е достъпен от web сайта на MandrakeStore"
-
-#: ../../share/advertising/10-mnf.pl:1
-#, c-format
-msgid ""
-"This firewall product includes network features that allow you to fulfill "
-"all your security needs"
-msgstr ""
-"Този firewall продукт включва всички мрежови особености които ви позволяват "
-"да извършите всичко необходимо по безопасността."
-
-#: ../../share/advertising/10-mnf.pl:1
-#, c-format
-msgid ""
-"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
-"F.)"
-msgstr ""
-
-#: ../../share/advertising/10-mnf.pl:1
-#, c-format
-msgid "Optimize your security"
-msgstr "Оптимизира вашата сигурност"
-
-#: ../../share/advertising/11-mdkstore.pl:1
+#: ../../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 online on our e-store:"
+"other \"goodies\", are available on our e-store:"
msgstr ""
"Нашите пълни решения, както и специални предложения на продукти и други "
"\"лакомства\" са достъпни в нашият 'e-източник':"
-#: ../../share/advertising/11-mdkstore.pl:1
+#: ../../share/advertising/08-store.pl:1
#, c-format
-msgid "The official MandrakeSoft store"
+msgid "The official MandrakeSoft Store"
msgstr "Официалният източник на MandrakeSoft "
-#: ../../share/advertising/12-mdkstore.pl:1
+#: ../../share/advertising/09-mdksecure.pl:1
#, c-format
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"
+"Enhance your computer performance with the help of a selection of partners "
+"offering professional solutions compatible with Mandrake Linux"
msgstr ""
-#: ../../share/advertising/12-mdkstore.pl:1
+#: ../../share/advertising/09-mdksecure.pl:1
#, c-format
-msgid "Strategic partners"
-msgstr "Стратегически партньори"
+msgid "Get the best items with Mandrake Linux Strategic partners"
+msgstr ""
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/10-security.pl:1
#, c-format
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)"
+"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 ""
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/10-security.pl:1
#, c-format
-msgid "Certify yourself on Linux"
-msgstr "Сетифицирайте се по Linux"
+msgid "Optimize your security by using Mandrake Linux"
+msgstr "Оптимизира вашата сигурност"
+
+#: ../../share/advertising/11-mnf.pl:1
+#, c-format
+msgid "This product is available on the MandrakeStore Web site."
+msgstr "Този продукт е достъпен от web сайта на MandrakeStore"
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/11-mnf.pl:1
#, c-format
msgid ""
-"The training program has been created to respond to the needs of both end "
-"users and experts (Network and System administrators)"
+"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 ""
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/11-mnf.pl:1
#, c-format
-msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
-msgstr "Открийте каталога за обучение на MandrakeSoft Linux-Campus"
+msgid "Secure your networks with the Multi Network Firewall"
+msgstr ""
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, c-format
msgid ""
"Join the MandrakeSoft support teams and the Linux Community online to share "
@@ -13054,51 +12917,35 @@ msgid ""
"technical support website:"
msgstr ""
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, c-format
msgid ""
"Find the solutions of your problems via MandrakeSoft's online support "
-"platform"
+"platform."
msgstr "намерете решения на вашите проблеми с подръжката на MandrakeSoft"
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, c-format
msgid "Become a MandrakeExpert"
msgstr "Станете MandrakeExpert"
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, c-format
msgid ""
"All incidents will be followed up by a single qualified MandrakeSoft "
"technical expert."
msgstr ""
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, c-format
-msgid "An online platform to respond to company's specific support needs"
+msgid "An online platform to respond to enterprise support needs."
msgstr ""
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, c-format
msgid "MandrakeExpert Corporate"
msgstr "MandrakeExpert обединява"
-#: ../../share/advertising/17-mdkclub.pl:1
-#, c-format
-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 ""
-
-#: ../../share/advertising/17-mdkclub.pl:1
-#, c-format
-msgid "Discover MandrakeClub and Mandrake Corporate Club"
-msgstr "Открите MandrakeClub и Mandrake Corporate Club"
-
#: ../../standalone/XFdrake:1
#, c-format
msgid "Please relog into %s to activate the changes"
@@ -15349,6 +15196,11 @@ msgstr "Добре дошли в първоначалния помощник"
#: ../../standalone/drakbug:1
#, c-format
+msgid "Mandrake Control Center"
+msgstr "Контролен център на Mandrake"
+
+#: ../../standalone/drakbug:1
+#, c-format
msgid "Mandrake Bug Report Tool"
msgstr ""
@@ -16236,6 +16088,22 @@ msgid "Interface %s (using module %s)"
msgstr "Интерфейс %s (използващ модул %s)"
#: ../../standalone/drakgw:1
+#, fuzzy, c-format
+msgid "Net Device"
+msgstr "Xinetd обслужване"
+
+#: ../../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 ""
+
+#: ../../standalone/drakgw:1
#, c-format
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
@@ -16589,7 +16457,7 @@ msgid ""
"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"
+"using this computer as source.\n"
"\n"
"Make sure you have configured your Network/Internet access using drakconnect "
"before going any further.\n"
@@ -16757,6 +16625,11 @@ msgstr "Изберете файл"
#: ../../standalone/draksplash:1
#, fuzzy, c-format
+msgid "choose image"
+msgstr "Изберете файл"
+
+#: ../../standalone/draksplash:1
+#, fuzzy, c-format
msgid "Configure bootsplash picture"
msgstr "Настройка на услугите"
@@ -17206,11 +17079,21 @@ msgid "network printer port"
msgstr "порт на мрежов принтер "
#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "the name of the CPU"
+msgstr "името на производителя на устройството"
+
+#: ../../standalone/harddrake2:1
#, c-format
msgid "Name"
msgstr "Име"
#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "the number of buttons the mouse has"
+msgstr "номерът на процесора"
+
+#: ../../standalone/harddrake2:1
#, c-format
msgid "Number of buttons"
msgstr "Брой бутони"
@@ -17373,7 +17256,7 @@ msgstr "Това поле описва устройството"
#: ../../standalone/harddrake2:1
#, c-format
msgid ""
-"The cpu frequency in Mhz (Mega herz which in first approximation may be "
+"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"
@@ -18360,6 +18243,10 @@ msgid "Set of tools for mail, news, web, file transfer, and chat"
msgstr "Набор от инструменти за поща, новини, web, файлов трансфер, и чат"
#: ../../share/compssUsers:999
+msgid "Games"
+msgstr "Игри"
+
+#: ../../share/compssUsers:999
msgid "Multimedia - Graphics"
msgstr "Мултимедия - Графика"
@@ -18415,6 +18302,242 @@ 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!"
+#~ msgstr ""
+#~ "Открийте повечето от съществуващите графични и мултимедиини инструменти!"
+
+#~ msgid ""
+#~ "Mandrake Linux 9.1 provides the best Open Source games - arcade, action, "
+#~ "strategy, ..."
+#~ msgstr ""
+#~ "Mandrake Linux 9.1 предоставя най добрите игри на Свободният Софтуер - с "
+#~ "действия, стратегически и др.."
+
+#~ msgid ""
+#~ "Mandrake Linux 9.1 provides a powerful tool to fully customize and "
+#~ "configure your machine"
+#~ msgstr ""
+#~ "Mandrake Linux 9.1 предоставя мощен инструмент за построяване и "
+#~ "конфигуриране на вашата система"
+
+#~ msgid "User interfaces"
+#~ 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 "Development simplified"
+#~ msgstr "Опростява разработка"
+
+#~ msgid ""
+#~ "This firewall product includes network features that allow you to fulfill "
+#~ "all your security needs"
+#~ msgstr ""
+#~ "Този firewall продукт включва всички мрежови особености които ви "
+#~ "позволяват да извършите всичко необходимо по безопасността."
+
+#~ msgid "Strategic partners"
+#~ msgstr "Стратегически партньори"
+
+#~ msgid "Certify yourself on Linux"
+#~ msgstr "Сетифицирайте се по Linux"
+
+#~ msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
+#~ msgstr "Открийте каталога за обучение на MandrakeSoft Linux-Campus"
+
+#~ msgid "Discover MandrakeClub and Mandrake Corporate Club"
+#~ msgstr "Открите MandrakeClub и Mandrake Corporate Club"
+
+#, 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"
+#~ "ще презапише цялата дискета."
+
+#, 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 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"
diff --git a/perl-install/share/po/br.po b/perl-install/share/po/br.po
index cb43cf939..9b3f16f45 100644
--- a/perl-install/share/po/br.po
+++ b/perl-install/share/po/br.po
@@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX 8.2\n"
-"POT-Creation-Date: 2002-12-05 19:52+0100\n"
-"PO-Revision-Date: 2002-09-24 12:05+0200\n"
+"POT-Creation-Date: 2003-03-07 03:05+0100\n"
+"PO-Revision-Date: 2003-03-05 14:01+0100\n"
"Last-Translator: Thierry Vignaud <tvignaud@mandrakesoft.com>\n"
"Language-Team: Brezhoneg <ofisk@wanadoo.fr>\n"
"MIME-Version: 1.0\n"
@@ -1061,50 +1061,65 @@ 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"
+"or all of the following entries. Each entry is made up of the configuration\n"
+"item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"Configure\" button to change\n"
+"that.\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"
+" * \"Keyboard\": check the current keyboard map configuration and change\n"
+"that if necessary.\n"
"\n"
" * \"Country\": check the current country selection. If you are not in this\n"
-"country, click on the button and choose another one.\n"
+"country, click on the \"Configure\" button and choose another one. If your\n"
+"country is not in the first list shown, click the \"More\" button to get\n"
+"the complete country list.\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"
+"country you have chosen. You can click on the \"Configure\" button here if\n"
+"this is not correct.\n"
+"\n"
+" * \"Mouse\": check the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
"\n"
-" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+" * \"Printer\": clicking on the \"Configure\" 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"
+" * \"Graphical Interface\": by default, DrakX configures your graphical\n"
+"interface in \"800x600\" or \"1024x768\" resolution. If that does not suits\n"
+"you, click on \"Configure\" to reconfigure your graphical interface.\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"
+"here. If you have a TV card and it is not detected, click on \"Configure\"\n"
+"to 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."
+"displayed here. You can click on \"Configure\" to change the parameters\n"
+"associated with the card.\n"
+"\n"
+" * \"Network\": If you want to configure your Internet or local network\n"
+"access now.\n"
+"\n"
+" * \"Security Level\": this entry offers you to redefine the security level\n"
+"as set in a previous step ().\n"
+"\n"
+" * \"Firewall\": if you plan to connect your machine to the Internet, it's\n"
+"a good idea to protect you from intrusions by setting up a firewall.\n"
+"Consult the corresponding section of the ``Starter Guide'' for details\n"
+"about firewall settings.\n"
+"\n"
+" * \"Bootloader\": if you wish to change your bootloader configuration,\n"
+"click that button. This should be reserved to advanced users.\n"
+"\n"
+" * \"Services\": you'll be able here to control finely which services will\n"
+"be run on your machine. If you plan to use this machine as a server it's a\n"
+"good idea to review this setup."
msgstr ""
#: ../../help.pm:1
@@ -1208,13 +1223,8 @@ msgid ""
"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 \"Next ->\". Examine the list of hardware and then click on the \"Next\n"
-"->\" button to return to the SCSI interface question.\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"
@@ -1238,7 +1248,7 @@ msgid ""
"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"
+"used with networks.) It's recommended that you use \"pdq\" if this is your\n"
"first experience with GNU/Linux.\n"
"\n"
" * \"CUPS\" - `` Common Unix Printing System'', is an excellent choice for\n"
@@ -1276,32 +1286,7 @@ msgid ""
"\"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."
+"(\"On Floppy\")."
msgstr ""
#: ../../help.pm:1
@@ -1457,9 +1442,14 @@ msgid ""
"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 \"Next ->\" button to\n"
-"continue.\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 \"All\n"
+"languages\" box. Selecting support for a language means translations,\n"
+"fonts, spell checkers, etc. for that language will be installed.\n"
+"Additionally, the \"Use Unicode by default\" checkbox allows to force the\n"
+"system to use unicode (UTF-8). Note however that this is an experimental\n"
+"feature. If you select different languages requiring different encoding the\n"
+"unicode support will be 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"
@@ -1516,7 +1506,9 @@ msgstr ""
#, c-format
msgid ""
"\"Country\": check the current country selection. If you are not in this\n"
-"country, click on the button and choose another one."
+"country, click on the \"Configure\" button and choose another one. If your\n"
+"country is not in the first list shown, click the \"More\" button to get\n"
+"the complete country list."
msgstr ""
#: ../../help.pm:1
@@ -1638,9 +1630,7 @@ msgid ""
"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"
+"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 ""
@@ -1651,14 +1641,14 @@ 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"
+"updates, you are now able to download them from the Internet. Check \"Yes\"\n"
+"if you have a working Internet connection, or \"No\" if you prefer to\n"
+"install updated packages later.\n"
"\n"
-"Choosing \"Yes\" displays a list of places from which updates can be\n"
+"Choosing \"Yes\" will display 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."
+"the selected package(s), or \"Cancel\" to abort."
msgstr ""
#: ../../help.pm:1
@@ -1699,7 +1689,7 @@ msgid ""
"the bootloader menu, giving you the choice of which operating system to\n"
"start.\n"
"\n"
-"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
+"The \"Advanced\" button 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"
@@ -1757,7 +1747,7 @@ msgid ""
" * \"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"
+"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"
@@ -1782,42 +1772,13 @@ msgid ""
"\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 ""
-
-#: ../../help.pm:1
-#, c-format
-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."
+" * \"Custom disk partitioning\": choose this option if you want to manually\n"
+"partition your hard drive. Be careful -- it is a powerful but dangerous\n"
+"choice and you can very easily lose all your data. That's why this option\n"
+"is really only recommended if you have done something like this before and\n"
+"have some experience. For more instructions on how to use the DiskDrake\n"
+"utility, refer to the ``Managing Your Partitions '' section in the\n"
+"``Starter Guide''."
msgstr ""
#: ../../help.pm:1
@@ -1949,7 +1910,8 @@ msgstr ""
#: ../../help.pm:1
#, fuzzy, c-format
msgid ""
-"This step is used to choose which services you wish to start at boot time.\n"
+"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 always needed at\n"
@@ -1977,7 +1939,7 @@ msgstr ""
#: ../../help.pm:1
#, c-format
msgid ""
-"\"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+"\"Printer\": clicking on the \"Configure\" 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."
@@ -3199,6 +3161,12 @@ msgstr "trobarzhell"
msgid "System"
msgstr "Reizhiad/Diazez"
+#. -PO: example: lilo-graphic on /dev/hda1
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "%s on %s"
+msgstr "Paour"
+
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Bootloader"
@@ -3616,6 +3584,11 @@ msgstr "Dibabit seurt ho logodenn, mar plij."
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
+msgid "Encryption key for %s"
+msgstr "An tremegerioГ№ ne glot ket"
+
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
msgid "Upgrade %s"
msgstr "Bremanaat"
@@ -8279,11 +8252,6 @@ msgid "Configuring network"
msgstr "KefluniaГ± ar rouedad"
#: ../../network/ethernet.pm:1
-#, c-format
-msgid "no network card found"
-msgstr "kartenn rouedad kavet ebet"
-
-#: ../../network/ethernet.pm:1
#, fuzzy, c-format
msgid ""
"Please choose which network adapter you want to use to connect to Internet."
@@ -9497,17 +9465,6 @@ msgstr ""
"Gallout a rit ouzhpennaГ± lod pe gemmaГ± a re a zo."
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-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."
-
-#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printing system: "
msgstr ""
@@ -10029,6 +9986,11 @@ msgid "Option %s must be an integer number!"
msgstr ""
#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Printer default settings"
+msgstr "Lugerezh ar voullerez"
+
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Printer default settings\n"
@@ -11659,13 +11621,13 @@ msgstr "Bezit deuet mat, preizherien !"
#, 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 on the part of "
-"the worldwide Linux Community"
+"Your new operating system is the result of collaborative work of the "
+"worldwide Linux Community."
msgstr ""
#: ../../share/advertising/01-thanks.pl:1
#, c-format
-msgid "Welcome to the Open Source world"
+msgid "Welcome to the Open Source world."
msgstr ""
#: ../../share/advertising/01-thanks.pl:1
@@ -11676,190 +11638,150 @@ msgstr ""
#: ../../share/advertising/02-community.pl:1
#, c-format
msgid ""
-"To share your own knowledge and help build Linux tools, join the discussion "
-"forums you'll find on our \"Community\" webpages"
+"To share your own knowledge and help build Linux software, join our "
+"discussion forums on our \"Community\" webpages."
msgstr ""
#: ../../share/advertising/02-community.pl:1
#, c-format
-msgid "Want to know more about the Open Source community?"
+msgid ""
+"Want to know more and to contribute to the Open Source community? Get "
+"involved in the Free Software world!"
msgstr ""
#: ../../share/advertising/02-community.pl:1
-#, fuzzy, c-format
-msgid "Get involved in the Free Software world"
-msgstr "AmprouiГ± ar c'hefluniadur"
-
-#: ../../share/advertising/03-internet.pl:1
#, c-format
-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"
+msgid "Build the future of Linux!"
msgstr ""
-#: ../../share/advertising/03-internet.pl:1
-#, fuzzy, c-format
-msgid "Get the most from the Internet"
-msgstr "Anv ar gevreadenn"
-
-#: ../../share/advertising/04-multimedia.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
msgid ""
-"Mandrake Linux 9.1 enables you to use the very latest software to play audio "
-"files, edit and handle your images or photos, and play videos"
-msgstr ""
-
-#: ../../share/advertising/04-multimedia.pl:1
-#, c-format
-msgid "Push multimedia to its limits!"
+"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 ""
-#: ../../share/advertising/04-multimedia.pl:1
-#, c-format
-msgid "Discover the most up-to-date graphical and multimedia tools!"
-msgstr ""
-
-#: ../../share/advertising/05-games.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
msgid ""
-"Mandrake Linux 9.1 provides the best Open Source games - arcade, action, "
-"strategy, ..."
+"Surf the Web with Mozilla or Konqueror, read your mail with Evolution or "
+"Kmail, create your documents with OpenOffice.org."
msgstr ""
-#: ../../share/advertising/05-games.pl:1
-#, c-format
-msgid "Games"
-msgstr "C'hoarioГ№"
-
-#: ../../share/advertising/06-mcc.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
-msgid ""
-"Mandrake Linux 9.1 provides a powerful tool to fully customize and configure "
-"your machine"
+msgid "MandrakeSoft has selected the best software for you"
msgstr ""
-#: ../../share/advertising/06-mcc.pl:1 ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "Mandrake Control Center"
-msgstr "Anv ar gevreadenn"
-
-#: ../../share/advertising/07-desktop.pl:1
+#: ../../share/advertising/04-configuration.pl:1
#, c-format
msgid ""
-"Mandrake Linux 9.1 provides you with 11 user interfaces that can be fully "
-"modified: KDE 3, Gnome 2, WindowMaker, ..."
+"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!"
msgstr ""
-#: ../../share/advertising/07-desktop.pl:1
+#: ../../share/advertising/04-configuration.pl:1
#, fuzzy, c-format
-msgid "User interfaces"
-msgstr "Etrefas arveriad/X"
+msgid "Mandrake's multipurpose configuration tool"
+msgstr "KefluniaГ± ar proksioГ№"
-#: ../../share/advertising/08-development.pl:1
+#: ../../share/advertising/05-desktop.pl:1
#, c-format
msgid ""
-"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
-"development environments"
+"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 ""
-#: ../../share/advertising/08-development.pl:1
+#: ../../share/advertising/05-desktop.pl:1
#, c-format
-msgid "Mandrake Linux 9.1 is the ultimate development platform"
+msgid "A customizable environment"
msgstr ""
-#: ../../share/advertising/08-development.pl:1
-#, fuzzy, c-format
-msgid "Development simplified"
-msgstr "Diorren"
-
-#: ../../share/advertising/09-server.pl:1
+#: ../../share/advertising/06-development.pl:1
#, c-format
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, ..."
+"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 ""
-#: ../../share/advertising/09-server.pl:1
+#: ../../share/advertising/06-development.pl:1
#, c-format
-msgid "Turn your machine into a reliable server"
+msgid "Mandrake Linux 9.1: the ultimate development platform"
msgstr ""
-#: ../../share/advertising/10-mnf.pl:1
+#: ../../share/advertising/07-server.pl:1
#, c-format
-msgid "This product is available on MandrakeStore website"
+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 ""
-#: ../../share/advertising/10-mnf.pl:1
+#: ../../share/advertising/07-server.pl:1
#, c-format
-msgid ""
-"This firewall product includes network features that allow you to fulfill "
-"all your security needs"
+msgid "Turn your computer into a reliable server"
msgstr ""
-#: ../../share/advertising/10-mnf.pl:1
+#: ../../share/advertising/08-store.pl:1
#, c-format
msgid ""
-"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
-"F.)"
+"Our full range of Linux solutions, as well as special offers on products and "
+"other \"goodies\", are available on our e-store:"
msgstr ""
-#: ../../share/advertising/10-mnf.pl:1
+#: ../../share/advertising/08-store.pl:1
#, c-format
-msgid "Optimize your security"
+msgid "The official MandrakeSoft Store"
msgstr ""
-#: ../../share/advertising/11-mdkstore.pl:1
+#: ../../share/advertising/09-mdksecure.pl:1
#, c-format
msgid ""
-"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies,\" are available online on our e-store:"
+"Enhance your computer performance with the help of a selection of partners "
+"offering professional solutions compatible with Mandrake Linux"
msgstr ""
-#: ../../share/advertising/11-mdkstore.pl:1
+#: ../../share/advertising/09-mdksecure.pl:1
#, c-format
-msgid "The official MandrakeSoft store"
+msgid "Get the best items with Mandrake Linux Strategic partners"
msgstr ""
-#: ../../share/advertising/12-mdkstore.pl:1
+#: ../../share/advertising/10-security.pl:1
#, c-format
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 ""
-
-#: ../../share/advertising/12-mdkstore.pl:1
-#, c-format
-msgid "Strategic partners"
+"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 ""
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/10-security.pl:1
#, c-format
-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)"
+msgid "Optimize your security by using Mandrake Linux"
msgstr ""
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/11-mnf.pl:1
#, c-format
-msgid "Certify yourself on Linux"
+msgid "This product is available on the MandrakeStore Web site."
msgstr ""
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/11-mnf.pl:1
#, c-format
msgid ""
-"The training program has been created to respond to the needs of both end "
-"users and experts (Network and System administrators)"
+"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 ""
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/11-mnf.pl:1
#, c-format
-msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
+msgid "Secure your networks with the Multi Network Firewall"
msgstr ""
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, c-format
msgid ""
"Join the MandrakeSoft support teams and the Linux Community online to share "
@@ -11867,51 +11789,35 @@ msgid ""
"technical support website:"
msgstr ""
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, c-format
msgid ""
"Find the solutions of your problems via MandrakeSoft's online support "
-"platform"
+"platform."
msgstr ""
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, fuzzy, c-format
msgid "Become a MandrakeExpert"
msgstr "MandrakeExpert"
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, c-format
msgid ""
"All incidents will be followed up by a single qualified MandrakeSoft "
"technical expert."
msgstr ""
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, c-format
-msgid "An online platform to respond to company's specific support needs"
+msgid "An online platform to respond to enterprise support needs."
msgstr ""
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, fuzzy, c-format
msgid "MandrakeExpert Corporate"
msgstr "MandrakeExpert"
-#: ../../share/advertising/17-mdkclub.pl:1
-#, c-format
-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 ""
-
-#: ../../share/advertising/17-mdkclub.pl:1
-#, c-format
-msgid "Discover MandrakeClub and Mandrake Corporate Club"
-msgstr ""
-
#: ../../standalone/XFdrake:1
#, c-format
msgid "Please relog into %s to activate the changes"
@@ -14109,6 +14015,11 @@ msgid "First Time Wizard"
msgstr ""
#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "Mandrake Control Center"
+msgstr "Anv ar gevreadenn"
+
+#: ../../standalone/drakbug:1
#, c-format
msgid "Mandrake Bug Report Tool"
msgstr ""
@@ -14372,7 +14283,7 @@ msgstr ""
#: ../../standalone/drakfloppy:1
#, c-format
msgid "Unable to fork: %s"
-msgstr ""
+msgstr "N'ev ket fork: %s"
#: ../../standalone/drakfloppy:1
#, c-format
@@ -14970,6 +14881,22 @@ msgid "Interface %s (using module %s)"
msgstr ""
#: ../../standalone/drakgw:1
+#, fuzzy, c-format
+msgid "Net Device"
+msgstr "Servijer moullaГ±"
+
+#: ../../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 ""
+
+#: ../../standalone/drakgw:1
#, c-format
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
@@ -15305,7 +15232,7 @@ msgid ""
"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"
+"using this computer as source.\n"
"\n"
"Make sure you have configured your Network/Internet access using drakconnect "
"before going any further.\n"
@@ -15467,6 +15394,11 @@ msgstr "Dibabit ur restr"
#: ../../standalone/draksplash:1
#, fuzzy, c-format
+msgid "choose image"
+msgstr "Dibabit ur restr"
+
+#: ../../standalone/draksplash:1
+#, fuzzy, c-format
msgid "Configure bootsplash picture"
msgstr "KefluniaГ± servijoГ№"
@@ -15792,12 +15724,12 @@ msgstr ""
#: ../../standalone/harddrake2:1
#, c-format
msgid "About Harddrake"
-msgstr ""
+msgstr "A-brepoz Harddrake"
#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
+#, c-format
msgid "/_About..."
-msgstr "Marc'haГ±"
+msgstr "/_A-brepoz"
#: ../../standalone/harddrake2:1
#, c-format
@@ -15904,12 +15836,22 @@ msgid "network printer port"
msgstr "DibarzhoГ№ ar voullerez NetWare"
#: ../../standalone/harddrake2:1
+#, c-format
+msgid "the name of the CPU"
+msgstr ""
+
+#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "Name"
msgstr "Anv: "
#: ../../standalone/harddrake2:1
#, fuzzy, c-format
+msgid "the number of buttons the mouse has"
+msgstr "2 nozelenn"
+
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
msgid "Number of buttons"
msgstr "2 nozelenn"
@@ -16071,7 +16013,7 @@ msgstr ""
#: ../../standalone/harddrake2:1
#, c-format
msgid ""
-"The cpu frequency in Mhz (Mega herz which in first approximation may be "
+"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 ""
@@ -17055,6 +16997,10 @@ msgid "Set of tools for mail, news, web, file transfer, and chat"
msgstr ""
#: ../../share/compssUsers:999
+msgid "Games"
+msgstr "C'hoarioГ№"
+
+#: ../../share/compssUsers:999
#, fuzzy
msgid "Multimedia - Graphics"
msgstr "Liesvedia"
@@ -17114,6 +17060,35 @@ msgstr ""
msgid "Programs to manage your finances, such as gnucash"
msgstr ""
+#~ 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"
diff --git a/perl-install/share/po/bs.po b/perl-install/share/po/bs.po
index 3e09ae670..246c357c3 100644
--- a/perl-install/share/po/bs.po
+++ b/perl-install/share/po/bs.po