package install_gtk; # $Id$
use diagnostics;
use strict;
use ugtk2;
use mygtk2;
use common;
use lang;
use devices;
#-#####################################################################################
#-INTERN CONSTANT
#-#####################################################################################
#- if we're running for the doc team, we want screenshots with
#- a good B&W contrast: we'll override values of our theme
my $theme_overriding_for_doc = q(style "galaxy-default"
{
base[SELECTED] = "#E0E0FF"
base[ACTIVE] = "#E0E0FF"
base[PRELIGHT] = "#E0E0FF"
bg[SELECTED] = "#E0E0FF"
bg[ACTIVE] = "#E0E0FF"
bg[PRELIGHT] = "#E0E0FF"
text[ACTIVE] = "#000000"
text[PRELIGHT] = "#000000"
text[SELECTED] = "#000000"
fg[SELECTED] = "#000000"
}
style "white-on-blue"
{
base[NORMAL] = { 0.93, 0.93, 0.93 }
bg[NORMAL] = { 0.93, 0.93, 0.93 }
text[NORMAL] = "#000000"
fg[NORMAL] = "#000000"
}
style "background"
{
bg[NORMAL] = { 0.93, 0.93, 0.93 }
}
style "background-logo"
{
bg[NORMAL] = { 0.70, 0.70, 0.70 }
}
widget "*logo*" style "background-logo"
);
#------------------------------------------------------------------------------
sub load_rc {
my ($o, $name) = @_;
my $f = $name;
-r $name or $f = find { -r $_ } map { "$_/themes-$name.rc" } ("share", $ENV{SHARE_PATH}, dirname(__FILE__));
if ($f) {
Gtk2::Rc->parse_string($o->{doc} ? $theme_overriding_for_doc : scalar cat_($f));
}
if ($::move) {
#- override selection color since we will not do inverse-video on the text when it's images
Gtk2::Rc->parse_string(q(
style "galaxy-default"
{
base[ACTIVE] = "#CECECE"
base[SELECTED] = "#CECECE"
text[ACTIVE] = "#000000"
text[PRELIGHT] = "#000000"
text[SELECTED] = "#000000"
}
));
}
}
#------------------------------------------------------------------------------
sub load_font {
my ($o) = @_;
if (lang::text_direction_rtl()) {
Gtk2::Widget->set_default_direction('rtl');
my ($x, $y) = $::WizardWindow->get_position;
my ($width) = $::WizardWindow->get_size;
$::WizardWindow->move($::rootwidth - $width - $x, $y);
}
Gtk2::Rc->parse_string(q(
style "default-font"
{
font_name = ") . lang::l2pango_font($o->{locale}{lang}) . q("
}
widget "*" style "default-font"
));
}
#------------------------------------------------------------------------------
sub default_theme {
my ($o) = @_;
$::move ? '' :
$o->{simple_themes} || $o->{vga16} ? 'blue' : 'galaxy';
}
sub install_theme {
my ($o) = @_;
load_rc($o, $o->{theme} ||= default_theme($o));
load_font($o);
if (!$::move) {
my $win = gtknew('Window', widget_name => 'background');
$win->realize;
mygtk2::set_root_window_background_with_gc($win->style->bg_gc('normal'));
}
}
#------------------------------------------------------------------------------
my %steps;
sub create_steps_window {
my ($o) = @_;
return if $::stepswidth == 0;
$o->{steps_window} and $o->{steps_window}->destroy;
$steps{$_} ||= gtknew('Pixbuf', file => "steps_$_") foreach qw(on off);
my $category = sub {
gtknew('HBox', children_tight => [
gtknew('Label', text => $_[0], widget_name => 'Step-categories')
]);
};
my @l = $category->(N("System installation"));
foreach (grep { !eval $o->{steps}{$_}{hidden} } @{$o->{orderedSteps}}) {
if ($_ eq 'setRootPassword') {
push @l, '', $category->(N("System configuration"));
}
my $img = gtknew('Image', file => 'steps_off.png');
$steps{steps}{$_}{img} = $img;
push @l, gtknew('HBox', spacing => 7, children_tight => [ '', '', $img, translate($o->{steps}{$_}{text}) ]);
}
my $offset = 20;
$o->{steps_window} =
gtknew('Window', width => ($::stepswidth - $offset), widget_name => 'Steps',
position => [ lang::text_direction_rtl() ? ($::rootwidth - $::stepswidth - $offset) : $offset, 150 ],
child => gtknew('VBox', spacing => 6, children_tight => \@l));
$o->{steps_window}->show;
}
sub update_steps_position {
my ($o) = @_;
return if !$steps{steps};
my $last_step;
foreach (@{$o->{orderedSteps}}) {
exists $steps{steps}{$_} or next;
if ($o->{steps}{$_}{entered} && !$o->{steps}{$_}{done}) {
$steps{steps}{$_}{img}->set_from_pixbuf($steps{on});
$last_step and $steps{steps}{$last_step}{img}->set_from_pixbuf($steps{off});
return;
}
$last_step = $_;
}
}
#------------------------------------------------------------------------------
sub create_logo_window {
my ($o) = @_;
return if $::logowidth == 0 || $::move;
mygtk2::may_destroy($o->{logo_window});
my $file = $o->{meta_class} eq 'firewall' ? "logo-mandrake-Firewall.png" : "logo-mandrake.png";
$o->{logo_window} =
gtknew('Window',
width => $::logowidth, height => $::logoheight,
widget_name => 'logo',
child => gtknew('Image', file => $file),
);
$o->{logo_window}->show;
}
#------------------------------------------------------------------------------
sub init_gtk {
my ($o) = @_;
symlink("/tmp/stage2/etc/$_", "/etc/$_") foreach qw(gtk-2.0 pango fonts);
if ($o->{vga16}) {
#- inactivate antialias in VGA16 because it makes fonts look worse
output('/tmp/fonts.conf',
q(
# translation of pl.po to
# Polish translation file
# Paweł Jabłoński <pj@linux-mandrake.com>, 2001,2002
# Arkadiusz Lipiec <alipiec@elka.pw.edu.pl>, 2002,2003
#
msgid ""
msgstr ""
"Project-Id-Version: DrakX-pl\n"
"POT-Creation-Date: 2003-09-09 17:07+0200\n"
"PO-Revision-Date: 2003-09-10 09:32+0200\n"
"Last-Translator: Arkadiusz Lipiec <alipiec@elka.pw.edu.pl>\n"
"Language-Team: Polish <pl@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Scanning partitions to find mount points"
msgstr "Przeszukiwanie partycji w celu określenia punktów montowania"
#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, check additions/removals of suid root files."
msgstr ""
"jeśli ustawiono na tak, sprawdza dodatki/usunięcia plików administratora z "
"bitem suid."
#: ../../standalone/drakTermServ:1
#, c-format
msgid ""
"%s: %s requires hostname, MAC address, IP, nbi-image, 0/1 for THIN_CLIENT, "
"0/1 for Local Config...\n"
msgstr ""
"%s: %s wymaga nazwy komputera, adresu MAC, IP, nbi-image, 0/1 dla "
"CIENKIEGO_KLIENTA, 0/1 dla konfiguracji lokalnej...\n"
#: ../../standalone/drakTermServ:1
#, c-format
msgid "Configuration changed - restart clusternfs/dhcpd?"
msgstr "Konfiguracja zmieniła się - uruchom ponownie clusternfs/dhcpd?"
#: ../../standalone/drakbackup:1
#, c-format
msgid "\t\tErase=%s"
msgstr "\t\tCzyszczenie=%s"
#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"Differential backups only save files that have changed or are new since the "
"original 'base' backup."
msgstr ""
"Archiwa różnicowe zapisują tylko pliki, które uległy zmianie lub pojawiły "
"się od czasu oryginalnej archiwizacji \"podstawowej\"."
#: ../../standalone/harddrake2:1
#, c-format
msgid "network printer port"
msgstr "port drukarki sieciowej"
#: ../../standalone/drakTermServ:1
#, c-format
msgid "Please insert floppy disk:"
msgstr "Włóż dyskietkę do stacji:"
#: ../../standalone/drakTermServ:1
#, c-format
msgid "DrakTermServ"
msgstr "DrakTermServ"
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "PCMCIA"
msgstr "PCMCIA"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
msgstr ""
"Zapasowa tablica partycji ma inny rozmiar.\n"
"Kontynuować?"
#: ../../diskdrake/smbnfs_gtk.pm:1
#, c-format
msgid "Which username"
msgstr "Jaka nazwa użytkownika"
#: ../../any.pm:1
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Jakiego typu pozycję chcesz dodać?"
#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
#, c-format
msgid "Restore partition table"
msgstr "Przywróć tablicę partycji"
#: ../../standalone/drakconnect:1
#, c-format
msgid "Configure hostname..."
msgstr "Konfiguracja nazwy komputera..."
#: ../../printer/cups.pm:1
#, c-format
msgid "On CUPS server \"%s\""
msgstr "Na serwerze CUPS \"%s\""
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Post-install configuration"
msgstr "Konfiguracja poinstalacyjna"
#: ../../standalone/drakperm:1
#, c-format
msgid ""
"The current security level is %s\n"
"Select permissions to see/edit"
msgstr ""
"Bieżącym poziomem bezpieczeństwa jest %s\n"
"Wybierz uprawnienia do wyświetlenia/edycji"
#: ../../diskdrake/hd_gtk.pm:1
#, c-format
msgid "Use ``%s'' instead"
msgstr "Użyj zamiast tego \"%s\""
#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
#: ../../diskdrake/removable.pm:1 ../../standalone/harddrake2:1
#, c-format
msgid "Type"
msgstr "Typ"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
"\n"
"Także drukarki skonfigurowane z plikami PPD dostarczone przez ich "
"producentów lub z natywnymi sterownikami CUPS nie mogą zostać przesłane."
#: ../../lang.pm:1
#, c-format
msgid "Sri Lanka"
msgstr "Sri Lanka"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"The following printer\n"
"\n"
"%s%s\n"
"are directly connected to your system"
msgstr ""
"Poniższa drukarka\n"
"\n"
"%s%s\n"
"jest bezpośrednio podłączona do systemu"
#: ../../lang.pm:1
#, c-format
msgid "Central African Republic"
msgstr "Republika Środkowej Afryki"
#: ../../network/network.pm:1
#, c-format
msgid "Gateway device"
msgstr "Interfejs bramy (np. eth0)"
#: ../../standalone/drakfloppy:1
#, c-format
msgid "Advanced preferences"
msgstr "Zaawansowane preferencje"
#: ../../standalone/drakbackup:1
#, c-format
msgid "Net Method:"
msgstr "Przez sieć:"
#: ../../harddrake/data.pm:1
#, c-format
msgid "Ethernetcard"
msgstr "Karta ethernet"
#: ../../security/l10n.pm:1
#, c-format
msgid "If set, send the mail report to this email address else send it to root"
msgstr ""
"Jeśli ustawiono, wysyła raport pocztowy na ten adres lub do administratora."
#: ../../standalone/drakconnect:1
#, c-format
msgid "Parameters"
msgstr "Parametry"
#: ../../standalone/draksec:1
#, c-format
msgid "no"
msgstr "nie"
#: ../../harddrake/v4l.pm:1
#, c-format
msgid "Auto-detect"
msgstr "Wykryj automatycznie"
#: ../../standalone/drakconnect:1
#, c-format
msgid "Interface:"
msgstr "Interfejs:"
#: ../../steps.pm:1
#, c-format
msgid "Select installation class"
msgstr "Rodzaj instalacji"
#: ../../network/tools.pm:1
#, c-format
msgid ""
"The system doesn't seem to be connected to the Internet.\n"
"Try to reconfigure your connection."
msgstr ""
"Wygląda na to, że system nie został połączony z Internetem.\n"
"Spróbuj zmienić konfigurację połączenia."
#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
"\n"
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
"Połącz drukarkę do serwera linuksowego i pozwól komputerowi(komputerom) "
"Windows na połączenie się w trybie klienta.\n"
"\n"
"Chcesz kontynuować ustawianie tej drukarki tak jak to teraz robisz?"
#: ../../lang.pm:1
#, c-format
msgid "Belarus"
msgstr "Białoruś"
#: ../../partition_table.pm:1
#, c-format
msgid "Error writing to file %s"
msgstr "Błąd zapisu do pliku %s"
#: ../../security/l10n.pm:1
#, c-format
msgid "Report check result to syslog"
msgstr "Zgłaszanie wyników sprawdzania do dziennika systemowego"
#: ../../services.pm:1
#, c-format
msgid ""
"apmd is used for monitoring battery status and logging it via syslog.\n"
"It can also be used for shutting down the machine when the battery is low."
msgstr ""
"Apmd przekazuje przez syslog informacje o stanie akumulatorów.\n"
"Umożliwia także zamknięcie systemu, gdy są one bliskie wyładowana."
#: ../../standalone/drakbackup:1
#, c-format
msgid "Use tape to backup"
msgstr "Użycie taśmy do archiwizacji"
#: ../../install_steps_gtk.pm:1
#, c-format
msgid "The following packages are going to be installed"
msgstr "Zostaną zainstalowane następujące pakiety"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "CUPS configuration"
msgstr "Konfiguracja CUPS"
#: ../../standalone/drakbackup:1
#, c-format
msgid "Total progress"
msgstr "Postęp całkowity"
#: ../../lang.pm:1
#, c-format
msgid "Hong Kong"
msgstr "Hongkong"
#: ../../install_interactive.pm:1
#, c-format
msgid "Not enough free space to allocate new partitions"
msgstr "Brak wolnego miejsca do utworzenia nowych partycji"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Moving"
msgstr "Przenoszenie"
#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"\n"
"Drakbackup activities via %s:\n"
"\n"
msgstr ""
"\n"
"Operacje drakbackup z użyciem nośnika %s:\n"
"\n"
#: ../../standalone/draksec:1
#, c-format
msgid "yes"
msgstr "tak"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "("
msgstr "("
#: ../../network/netconnect.pm:1
#, c-format
msgid ""
"Welcome to The Network Configuration Wizard.\n"
"\n"
"We are about to configure your internet/network connection.\n"
"If you don't want to use the auto detection, deselect the checkbox.\n"
msgstr ""
"Witaj w Druidzie Konfiguracji Sieci.\n"
"\n"
"Służy on do konfiguracji połączenia z Internetem lub inną siecią.\n"
"Jeśli nie chcesz korzystać z automatycznego wykrywania, odznacz to pole.\n"
#: ../../printer/printerdrake.pm:1 ../../standalone/scannerdrake:1
#, c-format
msgid ")"
msgstr ")"
#: ../../lang.pm:1
#, c-format
msgid "Lebanon"
msgstr "Liban"
#: ../../mouse.pm:1
#, c-format
msgid "MM HitTablet"
msgstr "MM HitTablet (szeregowy)"
#: ../../services.pm:1
#, c-format
msgid "Stop"
msgstr "Zatrzymaj"
#: ../../standalone/scannerdrake:1
#, c-format
msgid "Edit selected host"
msgstr "Edycja wybranego komputera"
#: ../../standalone/drakbackup:1
#, c-format
msgid "No CD device defined!"
msgstr "Nie zdefiniowano urządzenia CD! "
#: ../../standalone/drakbackup:1
#, c-format
msgid "\tUse .backupignore files\n"
msgstr "\tUżywanie plików .backupignore\n"
#: ../../keyboard.pm:1
#, c-format
msgid "Bulgarian (phonetic)"
msgstr "bułgarski - fonetyczny"
#: ../../standalone/drakpxe:1
#, c-format
msgid "The DHCP start ip"
msgstr "Początkowy adres IP dla DHCP"
#: ../../Xconfig/card.pm:1
#, c-format
msgid "256 kB"
msgstr "256 kB"
#: ../../standalone/drakbackup:1
#, c-format
msgid "Don't rewind tape after backup"
msgstr "Bez przewijania taśmy po archiwizacji"
#: ../../any.pm:1
#, c-format
msgid "Bootloader main options"
msgstr "Podstawowe opcje programu rozruchowego"
#: ../../standalone.pm:1
#, c-format
msgid ""
"[--manual] [--device=dev] [--update-sane=sane_source_dir] [--update-"
"usbtable] [--dynamic=dev]"
msgstr ""
"[--manual] [--device=dev] [--update-sane=sane_katalog_źródłowy] [--update-"
"usbtable] [--dynamic=dev]"
#: ../../harddrake/data.pm:1 ../../standalone/drakbackup:1
#, c-format
msgid "Tape"
msgstr "Taśma"
#: ../../lang.pm:1
#, c-format
msgid "Malaysia"
msgstr "Malezja"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Scanning network..."
msgstr "Skanowanie sieci..."
#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
"Za pomocą tej opcji można odtworzyć dowolną wersję\n"
" twojego katalogu \"/etc\"."
#: ../../standalone/drakedm:1
#, c-format
msgid "The change is done, do you want to restart the dm service ?"
msgstr "Zmiana została wprowadzona, czy chcesz ponownie uruchomić usługę dm?"
#: ../../keyboard.pm:1
#, c-format
msgid "Swiss (French layout)"
msgstr "szwajcarski (układ francuski)"
#: ../../standalone/drakbackup:1
#, c-format
msgid "August"
msgstr "Sierpie"
#: ../../raid.pm:1
#, c-format
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "mkraid padł (może brak raidtools)?"
#: ../../harddrake/data.pm:1
#, c-format
msgid "Webcam"
msgstr "Webkamera"
#: ../../standalone/harddrake2:1
#, c-format
msgid "size of the (second level) cpu cache"
msgstr "Rozmiar pamięci podręcznej procesora (drugiego poziomu)"
#: ../../harddrake/data.pm:1
#, c-format
msgid "Soundcard"
msgstr "Karta dźwiękowa"
#: ../../standalone/drakbackup:1
#, c-format
msgid "Month"
msgstr "Miesic"
#: ../../standalone/drakbackup:1
#, c-format
msgid "Search for files to restore"
msgstr "Wyszukiwanie plików do odtworzenia"
#: ../../lang.pm:1
#, c-format
msgid "Luxembourg"
msgstr "Luksemburg"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
"Aby wydrukować plik z wiersza poleceń (okno terminala) użyj polecenia \"%s "
"<plik>\"\n"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Level %s\n"
msgstr "Poziom %s\n"
#: ../../keyboard.pm:1
#, c-format
msgid "Syriac (phonetic)"
msgstr "syryjski (fonetyczny)"
#: ../../lang.pm:1
#, c-format
msgid "Iran"
msgstr "Iran"
#: ../../standalone/harddrake2:1
#, c-format
msgid "Bus"
msgstr "Szyna"
#: ../../lang.pm:1
#, c-format
msgid "Iraq"
msgstr "Irak"
#: ../../standalone/drakgw:1
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
"W bieżącej konfiguracji wykryto możliwy konflikt adresów sieciowych: %s!\n"
#: ../../standalone/drakgw:1
#, c-format
msgid "Configuring..."
msgstr "Konfiguracja..."
#: ../../standalone/drakgw:1
#, c-format
msgid "The setup has already been done, and it's currently enabled."
msgstr ""
"Konfiguracja współdzielenia połączenia z Internetem została już wykonana i "
"aktualnie jest włączona"
#: ../../harddrake/v4l.pm:1
#, c-format
msgid ""
"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
"detect the rights parameters.\n"
"If your card is misdetected, you can force the right tuner and card types "
"here. Just select your tv card parameters if needed."
msgstr ""
"W przypadku większości kart telewizyjnych, moduł bttv jądra GNU/Linux "
"automatycznie wykrywa poprawne parametry.\n"
"Jeśli karta została wykryta niepoprawnie, można wymusić w tym miejscu "
"poprawne typy tunera i karty. Wystarczy wybrać parametry swojej karty TV,"
"jeśli są one wymagane"
#: ../../any.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "Password (again)"
msgstr "Hasło (powtórnie)"
#: ../../standalone/drakfont:1
#, c-format
msgid "Search installed fonts"
msgstr "Wyszukaj zainstalowane czcionki"
#: ../../standalone/drakboot:1
#, c-format
msgid "Default desktop"
msgstr "Domyślny pulpit"
#: ../../lang.pm:1
#, c-format
msgid "Venezuela"
msgstr "Wenezuela"
#: ../../network/network.pm:1 ../../printer/printerdrake.pm:1
#: ../../standalone/drakconnect:1
#, c-format
msgid "IP address"
msgstr "Adres IP"
#: ../../install_interactive.pm:1
#, c-format
msgid "Choose the sizes"
msgstr "Określ rozmiary"
#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
"Lista uszkodzonych danych:\n"
"\n"
#: ../../fs.pm:1
#, c-format
msgid ""
"Can only be mounted explicitly (i.e.,\n"
"the -a option will not cause the file system to be mounted)."
msgstr ""
"Może być montowany tylko wyłącznie (np.,\n"
"opcja -a nie spowoduje zamontowanie systemu plików)"
#: ../../network/modem.pm:1
#, c-format
msgid ""
"Your modem isn't supported by the system.\n"
"Take a look at http://www.linmodems.org"
msgstr ""
"Twój modem nie jest obsługiwany przez system.\n"
"Zajrzyj na stronę http://www.linmodems.org"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Choose another partition"
msgstr "Utwórz inną partycję"
#: ../../standalone/drakperm:1
#, c-format
msgid "Current user"
msgstr "Bieżący użytkownik"
#: ../../diskdrake/smbnfs_gtk.pm:1 ../../standalone/drakbackup:1
#, c-format
msgid "Username"
msgstr "Nazwa użytkownika"
#: ../../keyboard.pm:1
#, c-format
msgid "Left \"Windows\" key"
msgstr "Lewy klawisz \"Windows\""
#: ../../lang.pm:1
#, c-format
msgid "Guyana"
msgstr "Gujana"
#: ../../standalone/drakTermServ:1
#, c-format
msgid "dhcpd Server Configuration"
msgstr "Konfiguracja serwera dhcpd"
#: ../../standalone/drakperm:1
#, c-format
msgid ""
"Used for directory:\n"
" only owner of directory or file in this directory can delete it"
msgstr ""
"Używany dla katalogu:\n"
" tylko właściciel katalogu lub pliku w tym katalogu może go skasować"
#: ../../printer/main.pm:1
#, c-format
msgid " on Novell server \"%s\", printer \"%s\""
msgstr " na serwerze Novellowym \"%s\", drukarka \"%s\""
#: ../../standalone/printerdrake:1
#, c-format
msgid "Printer Name"
msgstr "Nazwa drukarki"
#: ../../standalone/drakfloppy:1
#, c-format
msgid "Remove a module"
msgstr "Usuń moduł"
#: ../../any.pm:1 ../../install_steps_interactive.pm:1
#: ../../diskdrake/smbnfs_gtk.pm:1 ../../network/modem.pm:1
#: ../../printer/printerdrake.pm:1 ../../standalone/drakbackup:1
#: ../../standalone/drakconnect:1
#, c-format
msgid "Password"
msgstr "Hasło"
#: ../../standalone/drakbackup:1
#, c-format
msgid "Advanced Configuration"
msgstr "Konfiguracja zaawansowana"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Scanning on your HP multi-function device"
msgstr "Wyszukiwanie wielofunkcyjnego urządzenia HP"
#: ../../any.pm:1
#, c-format
msgid "Root"
msgstr "Root"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Choose an existing RAID to add to"
msgstr "Wybierz istniejący RAID aby dodać do niego"
#: ../../keyboard.pm:1
#, c-format
msgid "Turkish (modern \"Q\" model)"
msgstr "turecki (nowy)"
#: ../../standalone/drakboot:1
#, c-format
msgid "Lilo message not found"
msgstr "Nie odnaleziono komunikatu lilo"
#: ../../services.pm:1
#, c-format
msgid ""
"Automatic regeneration of kernel header in /boot for\n"
"/usr/include/linux/{autoconf,version}.h"
msgstr ""
"Automatyczna regeneracja nagłówków jądra w /boot\n"
"dla /usr/include/linux/{autoconf,version}.h"
#: ../../standalone/drakfloppy:1
#, c-format
msgid "if needed"
msgstr "jeśli potrzebny"
#: ../../standalone/drakbackup:1
#, c-format
msgid "Restore Failed..."
msgstr "Odtwarzanie nie powiodło się..."
#: ../../standalone/harddrake2:1
#, c-format
msgid "/Autodetect _jazz drives"
msgstr "/Automatycznie wykryj urządzenia _jazz"
#: ../../standalone/drakbackup:1
#, c-format
msgid "Store the password for this system in drakbackup configuration."
msgstr "Przechowywanie haseł dla tego systemu w konfiguracji drakbackup."
#: ../../install_messages.pm:1
#, c-format
msgid ""
"Introduction\n"
"\n"
"The operating system and the different components available in the Mandrake "
"Linux distribution \n"
"shall be called the \"Software Products\" hereafter. The Software Products "
"include, but are not \n"
"restricted to, the set of programs, methods, rules and documentation related "
"to the operating \n"
"system and the different components of the Mandrake Linux distribution.\n"
"\n"
"\n"
"1. License Agreement\n"
"\n"
"Please read this document carefully. This document is a license agreement "
"between you and \n"
"MandrakeSoft S.A. which applies to the Software Products.\n"
"By installing, duplicating or using the Software Products in any manner, you "
"explicitly \n"
"accept and fully agree to conform to the terms and conditions of this "
"License. \n"
"If you disagree with any portion of the License, you are not allowed to "
"install, duplicate or use \n"
"the Software Products. \n"
"Any attempt to install, duplicate or use the Software Products in a manner "
"which does not comply \n"
"with the terms and conditions of this License is void and will terminate "
"your rights under this \n"
"License. Upon termination of the License, you must immediately destroy all "
"copies of the \n"
"Software Products.\n"
"\n"
"\n"
"2. Limited Warranty\n"
"\n"
"The Software Products and attached documentation are provided \"as is\", "
"with no warranty, to the \n"
"extent permitted by law.\n"
"MandrakeSoft S.A. will, in no circumstances and to the extent permitted by "
"law, be liable for any special,\n"
"incidental, direct or indirect damages whatsoever (including without "
"limitation damages for loss of \n"
"business, interruption of business, financial loss, legal fees and penalties "
"resulting from a court \n"
"judgment, or any other consequential loss) arising out of the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
"occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
"COUNTRIES\n"
"\n"
"To the extent permitted by law, MandrakeSoft S.A. or its distributors will, "
"in no circumstances, be \n"
"liable for any special, incidental, direct or indirect damages whatsoever "
"(including without \n"
"limitation damages for loss of business, interruption of business, financial "
"loss, legal fees \n"
"and penalties resulting from a court judgment, or any other consequential "
"loss) arising out \n"
"of the possession and use of software components or arising out of "
"downloading software components \n"
"from one of Mandrake Linux sites which are prohibited or restricted in some "
"countries by local laws.\n"
"This limited liability applies to, but is not restricted to, the strong "
"cryptography components \n"
"included in the Software Products.\n"
"\n"
"\n"
"3. The GPL License and Related Licenses\n"
"\n"
"The Software Products consist of components created by different persons or "
"entities. Most \n"
"of these components are governed under the terms and conditions of the GNU "
"General Public \n"
"Licence, hereafter called \"GPL\", or of similar licenses. Most of these "
"licenses allow you to use, \n"
"duplicate, adapt or redistribute the components which they cover. Please "
"read carefully the terms \n"
"and conditions of the license agreement for each component before using any "
"component. Any question \n"
"on a component license should be addressed to the component author and not "
"to MandrakeSoft.\n"
"The programs developed by MandrakeSoft S.A. are governed by the GPL License. "
"Documentation written \n"
"by MandrakeSoft S.A. is governed by a specific license. Please refer to the "
"documentation for \n"
"further details.\n"
"\n"
"\n"
"4. Intellectual Property Rights\n"
"\n"
"All rights to the components of the Software Products belong to their "
"respective authors and are \n"
"protected by intellectual property and copyright laws applicable to software "
"programs.\n"
"MandrakeSoft S.A. reserves its rights to modify or adapt the Software "
"Products, as a whole or in \n"
"parts, by all means and for all purposes.\n"
"\"Mandrake\", \"Mandrake Linux\" and associated logos are trademarks of "
"MandrakeSoft S.A. \n"
"\n"
"\n"
"5. Governing Laws \n"
"\n"
"If any portion of this agreement is held void, illegal or inapplicable by a "
"court judgment, this \n"
"portion is excluded from this contract. You remain bound by the other "
"applicable sections of the \n"
"agreement.\n"
"The terms and conditions of this License are governed by the Laws of "
"France.\n"
"All disputes on the terms of this license will preferably be settled out of "
"court. As a last \n"
"resort, the dispute will be referred to the appropriate Courts of Law of "
"Paris - France.\n"
"For any question on this document, please contact MandrakeSoft S.A. \n"
msgstr ""
"Wprowadzenie\n"
"\n"
"System operacyjny wraz z innymi komponentami dostępnymi w dystrybucji "
"Mandrake Linux\n"
"zwany jest dalej \"Oprogramowaniem\". Oprogramowanie zawiera między innymi "
"zbiór \n"
"programów, metod, zasad oraz dokumentacji związanej z systemem operacyjnym "
"oraz \n"
"innych komponentów dystrybucji Mandrake Linux.\n"
"\n"
"1. Umowa licencyjna\n"
"\n"
"Należy przeczytać uważnie ten dokument. Jest on umową licencyjną pomiędzy "
"użytkownikiem\n"
"a MandrakeSoft S.A. dotyczącą Oprogramowania.\n"
"Instalacja, kopiowanie lub używanie Oprogramowania w dowolny sposób, oznacza "
"pełną\n"
"i wyraźną zgodę na warunki licencyjne tej umowy.\n"
"Jeśli nie akceptujesz dowolnej części niniejszej umowy, nie możesz "
"zainstalować, skopiować\n"
"lub też używać Oprogramowania.\n"
"Dowolna próba instalacji, kopiowania lub używania Oprogramowania w sposób "
"inny niż\n"
"określają to warunki tej licencji jest przestępstwem i oznacza wygaśnięcie "
"twoich praw \n"
"wynikających z tej umowy. Po zerwaniu umowy należy natychmiast zniszczyć\n"
"wszystkie kopie Oprogramowania.\n"
"\n"
"2. Ograniczona gwarancja\n"
"\n"
"Oprogramowanie oraz dołączona dokumentacja dostarczana jest w formie "
"\"takiej jaka jest\",\n"
"bez żadnej gwarancji, w stopniu w jakim pozwala na to prawo.\n"
"Firma MandrakeSoft S.A. nie będzie, bez względu na okoliczności i w zakresie "
"określonym przez \n"
"prawo, odpowiedzialna za żadne specjalne, uboczne, bezpośrednie i pośrednie "
"uszkodzenia\n"
"jakkolwiek (włączając bez ograniczeń uszkodzenia powodujące utratę firmy, "
"przerwanie działalności\n"
"firmy, straty finansowe, zasądzone grzywny i kary prawne lub inne straty) "
"powstałe w wyniku\n"
"używania lub niemożności używania Oprogramowania, nawet jeśli firma "
"MandrakeSoft S.A.\n"
"została ostrzeżona o możliwości wystąpienia takich uszkodzeń.\n"
"\n"
"OGRANICZONA ODPOWIEDZIALNOŚĆ ZWIĄZANA Z POSIADANIEM LUB UŻYWANIEM\n"
"OPROGRAMOWANIA W NIEKTÓRYCH KRAJACH\n"
"\n"
"W zakresie określonym przez prawo firma MandrakeSoft S.A. lub jej "
"dystrybutorzy bez względu\n"
"na okoliczności nie będą odpowiedzialni za żadne specjalne, uboczne, "
"bezpośrednie i pośrednie uszkodzenia\n"
"jakkolwiek (włączając bez ograniczeń uszkodzenia powodujące utratę firmy, "
"przerwanie działalności\n"
"firmy, straty finansowe, zasądzone grzywny i kary prawne lub inne straty) "
"powstałe w wyniku\n"
"używania lub niemożności używania Oprogramowania lub w wyniku pobrania "
"komponentów\n"
"oprogramowania z jednej ze stron Mandrake Linux, które są zabronione lub "
"zastrzeżone w niektórych\n"
"krajach przez lokalne prawo. Ta ograniczona odpowiedzialność dotyczy między "
"innymi komponentów\n"
"silnej kryptografii dołączonych do Oprogramowania.\n"
"\n"
"3. Licencja GPL oraz Licencje Pokrewne\n"
"\n"
"Oprogramowania zawiera komponenty stworzone przez różne osoby i instytucje. "
"Większość z nich\n"
"została wydana na zasadach licencji GNU General Public Licence, znanej pod "
"nazwą \"GPL\",\n"
"lub też na zasadach podobnych licencji. Większość z tych licencji pozwala na "
"używanie,\n"
"kopiowanie, przystosowywanie lub rozpowszechnianie komponentów przez nie "
"licencjonowanych.\n"
"Należy uważnie przeczytać warunki i terminy umowy licencyjnej każdego "
"komponentu przed\n"
"jego użyciem. Dowolne pytanie dotyczące licencji powinno być przesyłane do "
"autora, nie\n"
"do firmy MandrakeSoft. Programy stworzone przez MandrakeSoft S.A. są wydane "
"na zasadach\n"
"licencji GPL. Dokumentacja napisana przez MandrakeSoft S.A. jest wydana na "
"zasadach\n"
"wybranej licencji. Zajrzyj do dokumentacji, aby uzyskać więcej szczegółów.\n"
"\n"
"\n"
"4. Prawa Własności Intelektualnej\n"
"\n"
"Wszystkie prawa do komponentów Oprogramowania należą do ich autorów oraz są "
"chronione\n"
"przez prawo własności intelektualnej i prawo autorskie stosowane do "
"programów komputerowych.\n"
"Firma MandrakeSoft S.A. zastrzega sobie prawo do zmiany lub przystosowania "
"Oprogramowania,\n"
"jako całości lub w częściach, w każdym sensie i w dowolny celu.\n"
"\"Mandrake\", \"Mandrake Linux\" oraz związane znaki graficzne są znakami "
"handlowymi firmy\n"
"MandrakeSoft S.A.\n"
"\n"
"\n"
"5. Prawa Nadrzędne\n"
"\n"
"Jeśli dowolna część tej umowy zostanie uznana za nielegalną lub "
"nieakceptowaną w wyniku\n"
"wyroku sądowego, ta część zostanie wyłączona z umowy. Wówczas zastosowanie "
"znajdują\n"
"pozostałe części warunków umowy.\n"
"Terminy i warunki tej licencji są zgodne z prawem francuskim.\n"
"Wszystkie ewentualne wątpliwości dotyczące warunków tej licencji będą "
"rozpatrywane przez sąd.\n"
"W ostateczności, wątpliwości będą rozpatrywane przez odpowiednie Sądy Prawa "
"Paryża we Francji.\n"
"W przypadku jakichkolwiek wątpliwości dotyczących tego dokumentu, w celu ich "
"wyjaśnienia\n"
"można skontaktować się z firmą MandrakeSoft S.A.\n"
#: ../../standalone/drakboot:1
#, c-format
msgid "Default user"
msgstr "Domyślny użytkownik"
#: ../../standalone/draksplash:1
#, c-format
msgid ""
"the progress bar x coordinate\n"
"of its upper left corner"
msgstr ""
"współrzędna x paska postępu\n"
"od jej lewego rogu"
#: ../../standalone/drakgw:1
#, c-format
msgid "Current interface configuration"
msgstr "Konfiguracja bieżącego interfejsu"
#: ../../printer/data.pm:1
#, c-format
msgid "LPD - Line Printer Daemon"
msgstr "LPD - Line Printer Daemon"
#: ../../network/isdn.pm:1
#, c-format
msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
"\n"
"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
"card.\n"
msgstr ""
"\n"
"Jeśli posiadasz kartę ISA, wartości wyświetlone na następnym ekranie\n"
"powinny być odpowiednie.\n"
"Jeśli posiadasz kartę PCMCIA, trzeba znać IRQ i IO swojej karty.\n"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Do not print any test page"
msgstr "Nie drukuj strony testowej"
#: ../../keyboard.pm:1
#, c-format
msgid "Gurmukhi"
msgstr "gurmukhi"
#: ../../standalone/drakTermServ:1
#, c-format
msgid "%s already in use\n"
msgstr "%s jest już w użyciu\n"
#: ../../any.pm:1
#, c-format
msgid "Force No APIC"
msgstr "Wymuszanie braku ACPI"
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr "To hasło jest zbyt krótkie (musi zawierać co najmniej %d znaków)"
#: ../../standalone.pm:1
#, c-format
msgid "[keyboard]"
msgstr "[klawiatura]"
#: ../../network/network.pm:1
#, c-format
msgid "FTP proxy"
msgstr "Pośrednik FTP"
#: ../../standalone/drakfont:1
#, c-format
msgid "Install List"
msgstr "Zainstaluj listę"
#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"Change\n"
"Restore Path"
msgstr ""
"Zmień ścieżkę\n"
"dla odtwarzania danych"
#: ../../standalone/logdrake:1
#, c-format
msgid "Show only for the selected day"
msgstr "Tylko dla wybranego dnia"
#: ../../standalone/drakbackup:1
#, c-format
msgid "\tLimit disk usage to %s MB\n"
msgstr "\tOgraniczenie użycia dysku do %s Mb\n"
#: ../../Xconfig/card.pm:1
#, c-format
msgid "512 kB"
msgstr "512 kB"
#: ../../standalone/net_monitor:1
#, c-format
msgid "Logs"
msgstr "Dziennik"
#: ../../standalone/scannerdrake:1
#, c-format
msgid "(Note: Parallel ports cannot be auto-detected)"
msgstr "(Uwaga: porty równoległe nie mogą być automatycznie wykrywane)"
#: ../../standalone/logdrake:1
#, c-format
msgid "<control>N"
msgstr "<control>N"
#: ../../network/isdn.pm:1
#, c-format
msgid "What kind of card do you have?"
msgstr "Jaki rodzaj karty posiadasz?"
#: ../../standalone/logdrake:1
#, c-format
msgid "<control>O"
msgstr "<control>O"
#: ../../install_steps_interactive.pm:1 ../../steps.pm:1
#, c-format
msgid "Security"
msgstr "Bezpieczeństwo"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
"If you are using KDE as desktop environment you have a \"panic button\", an "
"icon on the desktop, labeled with \"STOP Printer!\", which stops all print "
"jobs immediately when you click it. This is for example useful for paper "
"jams.\n"
msgstr ""
"Można także użyć graficznego interfejsu \"xpdq\" aby ustawić opcje oraz "
"zarządzać zadaniami \n"
"wydruku. Jeśli używasz KDE jako środowiska graficznego, posiadasz \"przycisk "
"paniki\", (ang. panic button) jako ikonę pulpitu oznaczoną przez etykietę "
"\"Zakończ drukowanie!\", zatrzymującą natychmiast wszystkie zadania wydruku "
"po kliknięciu jej. Jest to użyteczne na przykład w przypadku zatorów "
"papieru.\n"
#: ../../standalone/drakboot:1 ../../standalone/drakfloppy:1
#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
#: ../../standalone/printerdrake:1
#, c-format
msgid "<control>Q"
msgstr "<control>Q"
#: ../../standalone/drakbackup:1
#, c-format
msgid "Unable to find backups to restore...\n"
msgstr "Nie można znaleźć archiwów odtworzenia...\n"
#: ../../standalone/harddrake2:1
#, c-format
msgid "Unknown"
msgstr "Nieznany"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "This server is already in the list, it cannot be added again.\n"
msgstr "Ten serwer już jest na liście, nie można go ponownie dodać.\n"
#: ../../network/netconnect.pm:1 ../../network/tools.pm:1
#, c-format
msgid "Network Configuration"
msgstr "Konfiguracja sieci"
#: ../../standalone/logdrake:1
#, c-format
msgid "<control>S"
msgstr "<control>S"
#: ../../network/isdn.pm:1
#, c-format
msgid ""
"Protocol for the rest of the world\n"
"No D-Channel (leased lines)"
msgstr ""
"Protokół reszty świata\n"
"Bez kanału D (linie dzierżawione)"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Option %s must be a number!"
msgstr "Opcja %s musi być liczbą!"
#: ../../standalone/drakboot:1 ../../standalone/draksplash:1
#, c-format
msgid "Notice"
msgstr "Uwaga"
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "You have not configured X. Are you sure you really want this?"
msgstr "Nie masz skonfigurowanego systemu X Window. Czy na pewno chcesz tego?"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"The configuration of the printer will work fully automatically. If your "
"printer was not correctly detected or if you prefer a customized printer "
"configuration, turn on \"Manual configuration\"."
msgstr ""
"Konfiguracja drukarki zostanie przeprowadzona automatycznie. Jeśli drukarka "
"nie została poprawnie wykryta lub też wolisz ustawić własną konfigurację "
"drukarki, wybierz opcję \"Ręczna konfiguracja\"."
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "What type of partitioning?"
msgstr "Określ sposób partycjonowania."
#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"file list sent by FTP: %s\n"
" "
msgstr ""
"lista plików przesłanych przez FTP: %s\n"
" "
#: ../../standalone/drakconnect:1
#, c-format
msgid "Interface"
msgstr "Interfejs"
#: ../../standalone/drakbackup:1
#, c-format
msgid "Multisession CD"
msgstr "Wielosesyjny CD"
#: ../../modules/parameters.pm:1
#, c-format
msgid "comma separated strings"
msgstr "oddzielone przecinkami napisy"
#: ../../standalone/scannerdrake:1
#, c-format
msgid "These are the machines from which the scanners should be used:"
msgstr "To są maszyny, z których powinny być używane skanery:"
#: ../../standalone/logdrake:1
#, c-format
msgid "Messages"
msgstr "Komunikaty"
#: ../../harddrake/v4l.pm:1
#, c-format
msgid "Unknown|CPH06X (bt878) [many vendors]"
msgstr "Nieznana|CPH06X (bt878) [wielu producentów]"
#: ../../network/drakfirewall.pm:1
#, c-format
msgid "POP and IMAP Server"
msgstr "Serwery POP oraz IMAP"
#: ../../lang.pm:1
#, c-format
msgid "Mexico"
msgstr "Meksyk"
#: ../../standalone/harddrake2:1
#, c-format
msgid "Model stepping"
msgstr "Numeracja modelu"
#: ../../lang.pm:1
#, c-format
msgid "Rwanda"
msgstr "Rwanda"
#: ../../lang.pm:1
#, c-format
msgid "Switzerland"
msgstr "Szwajcaria"
#: ../../lang.pm:1
#, c-format
msgid "Brunei Darussalam"
msgstr "Brunea"
#: ../../modules/interactive.pm:1
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Czy posiadasz interfejs %s?"
#: ../../standalone/drakTermServ:1
#, c-format
msgid "You must be root to read configuration file. \n"
msgstr "Aby przeczytać plik konfiguracyjny należy być administratorem.\n"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Remote lpd Printer Options"
msgstr "Opcje drukarki sieciowej lpd"
#: ../../help.pm:1
#, c-format
msgid ""
"GNU/Linux is a multi-user system, meaning each user may have their own\n"
"preferences, their own files and so on. You can read the ``Starter Guide''\n"
"to learn more about multi-user systems. But unlike \"root\", who is the\n"
"system administrator, the users you add at this point will not be\n"
"authorized to change anything except their own files and their own\n"
"configurations, protecting the system from unintentional or malicious\n"
"changes that impact on the system as a whole. You will have to create at\n"
"least one regular user for yourself -- this is the account which you should\n"
"use for routine, day-to-day use. Although it is very easy to log in as\n"
"\"root\" to do anything and everything, it may also be very dangerous! A\n"
"very simple mistake could mean that your system will not work any more. If\n"
"you make a serious mistake as a regular user, the worst that will happen is\n"
"that you will lose some information, but not affect the entire system.\n"
"\n"
"The first field asks you for a real name. Of course, this is not mandatory\n"
"-- you can actually enter whatever you like. DrakX will use the first word\n"
"you typed in this field and copy it to the \"%s\" field, which is the name\n"
"this user will enter to log onto the system. If you like, you may override\n"
"the default and change the username. The next step is to enter a password.\n"
"From a security point of view, a non-privileged (regular) user password is\n"
"not as crucial as the \"root\" password, but that is no reason to neglect\n"
"it by making it blank or too simple: after all, your files could be the\n"
"ones at risk.\n"
"\n"
"Once you click on \"%s\", you can add other users. Add a user for each one\n"
"of your friends: your father or your sister, for example. Click \"%s\" when\n"
"you have finished adding users.\n"
"\n"
"Clicking the \"%s\" button allows you to change the default \"shell\" for\n"
"that user (bash by default).\n"
"\n"
"When you have finished adding users, you will be asked to choose a user\n"
"that can automatically log into the system when the computer boots up. If\n"
"you are interested in that feature (and do not care much about local\n"
"security), choose the desired user and window manager, then click \"%s\".\n"
"If you are not interested in this feature, uncheck the \"%s\" box."
msgstr ""
"GNU/Linux jest systemem wielodostępnym, co oznacza że każdy użytkownik\n"
"posiada własne ustawienia, własne pliki, może pracować równocześnie\n"
"z innymi użytkownikami na tym samym komputerze itd. Można zajrzeć do\n"
"\"Podręcznika użytkownika\" aby uzyskać na ten temat więcej informacji.\n"
"Jednak w przeciwieństwie do użytkownika \"root\", będącym administratorem\n"
"użytkownicy tutaj dodani nie będą mieli możliwości zmiany czegokolwiek\n"
"ponad swoje własne ustawienia, co chroni przed niezamierzonymi lub\n"
"złośliwymi zmianami mogącymi wpływać na działanie całego systemu.\n"
"Należy utworzyć co najmniej jednego zwykłego użytkownika dla siebie. Należy "
"się logować do tego konta w trakcie normalnej pracy. Pomimo, że\n"
"logowanie jako \"root\" jest bardzo praktyczne to jednak może być\n"
"bardzo niebezpieczne! Najmniejsza pomyłka może spowodować nieodwracalne\n"
"uszkodzenie systemu. Jeśli z konta zwykłego użytkownika zostanie \n"
"wykonany nawet poważny błąd, utracona zostanie tylko część danych tego\n"
"użytkownika a nie cały system.\n"
"\n"
"Najpierw należy wprowadzić rzeczywiste imię. Nie jest to czynność wymagana\n"
"-- można wprowadzić dowolny ciąg znaków. Instalator pobierze pierwszy wyraz "
"z\n"
"wprowadzonego ciągu i przeniesie go do pola \"%s\", określającego nazwę\n"
"użytkownika wprowadzaną podczas logowania się do systemu. Oczywiście\n"
"można ją zmienić. Ważna jest wielkość liter - dla Linuksa \"a\" i \"A\" to\n"
"dwie różne litery. Następnie należy ustawić dla tego użytkownika hasło.\n"
"Mimo, że hasło zwykłego użytkownika nie jest tak newralgiczne jak,\n"
"hasło \"roota\", to jednak z powodów bezpieczeństwa nie należy go pomijać.\n"
"\n"
"Po kliknięciu \"%s\", można dodać kolejnych użytkowników, Nie ma żadnych\n"
"ograniczeń na ich liczbę. Dodaj np. konta dla wszystkich przyjaciół, dla\n"
"ojca, siostry itd. Po zakończeniu dodawania wybierz \"%s\".\n"
"\n"
"Po kliknięciu przycisku \"%s\" można zmienić domyślną \"powłokę\"\n"
"dla użytkownika (domyślnie bash).\n"
"\n"
"Po zakończeniu dodawania wszystkich użytkowników, zostanie zadane\n"
"pytanie o to, który użytkownik będzie automatycznie logowany\n"
"podczas uruchamiania komputera. Jeśli masz ochotę używać tej funkcji\n"
"(oraz nie dbasz za bardzo o bezpieczeństwo lokalne), wybierz żądanego\n"
"użytkownika oraz menedżera okien, a następnie kliknij \"%s\".\n"
"Jeśli nie chcesz używać tej funkcji, odznacz opcję \"%s\"."
#: ../../standalone/drakconnect:1
#, c-format
msgid "Configure Internet Access..."
msgstr "Konfiguracja dostępu do Internetu..."
#: ../../standalone/drakbackup:1
#, c-format
msgid "Please choose the time interval between each backup"
msgstr "Wybierz odstęp czasowy pomiędzy każdą archiwizacją"
#: ../../crypto.pm:1 ../../lang.pm:1
#, c-format
msgid "Norway"
msgstr "Norwegia"
#: ../../standalone/drakconnect:1
#, c-format
msgid "Delete profile"
msgstr "Usuń profil"
#: ../../keyboard.pm:1
#, c-format
msgid "Danish"
msgstr "duński"
#: ../../services.pm:1
#, c-format
msgid ""
"Automatically switch on numlock key locker under console\n"
"and XFree at boot."
msgstr ""
"Automatycznie przełącza klawiaturę numeryczną przy uruchamianiu\n"
"w trybie konsoli oraz graficznym."
#: ../../network/network.pm:1
#, c-format
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
"notation (for example, 1.2.3.4)."
msgstr ""
"Podaj konfigurację IP dla komputera.\n"
"Każda pozycja powinna być wpisana w formacie dziesiętnym\n"
"oddzielonym kropkami (np. 192.168.1.1)."
#: ../../help.pm:1
#, c-format
msgid ""
"The Mandrake Linux installation is distributed on several CD-ROMs. DrakX\n"
"knows if a selected package is located on another CD-ROM so it will eject\n"
"the current CD and ask you to insert the correct CD as required."
msgstr ""
"Instalacja Mandrake Linux jest rozpowszechniana na kilku płytach CD.\n"
"Instalator wie czy wybrany pakiet jest zlokalizowany na innej płycie\n"
" i spowoduje wysunięcie bieżącej płyty CD oraz wyświetlenie prośby\n"
"o włożenie kolejnej."
#: ../../standalone/drakperm:1
#, c-format
msgid "When checked, owner and group won't be changed"
msgstr "Po zaznaczeniu, nie będzie możliwa zmiana właściciela oraz grupy"
#: ../../lang.pm:1
#, c-format
msgid "Bulgaria"
msgstr "Bułgaria"
#: ../../standalone/drakbackup:1
#, c-format
msgid "Tuesday"
msgstr "Wtorek"
#: ../../harddrake/data.pm:1
#, c-format
msgid "Processors"
msgstr "Procesory"
#: ../../lang.pm:1
#, c-format
msgid "Svalbard and Jan Mayen Islands"
msgstr "Wyspy Svalbard i Jan Mayen"
#: ../../standalone/drakTermServ:1
#, c-format
msgid "No NIC selected!"
msgstr "Nie wybrano wartości NIC!"
#: ../../network/netconnect.pm:1
#, c-format
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
"work, you might want to relaunch the configuration."
msgstr ""
"W trakcie konfiguracji wystąpił błąd.\n"
"Przetestuj połączenie za pomocą net_monitora lub mcc. Jeśli twoje połączenie "
"nie działa, być może należy ponownie uruchomić konfigurację"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "partition %s is now known as %s"
msgstr "partycja %s nazywa się teraz %s"
#: ../../standalone/drakbackup:1
#, c-format
msgid "Backup Other files..."
msgstr "Archiwizuj inne pliki..."
#: ../../lang.pm:1
#, c-format
msgid "Congo (Kinshasa)"
msgstr "Kongo (Kinszasa)"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "SMB server IP"
msgstr "IP serwera SMB"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Tablica partycji napędu %s zostanie zapisana na dysk!"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Installing HPOJ package..."
msgstr "Instalowanie pakietu HPOJ..."
#: ../../any.pm:1
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
"install\n"
"LILO (or grub) on your system, or another operating system removes LILO, or "
"LILO doesn't\n"
"work with your hardware configuration. A custom bootdisk can also be used "
"with\n"
"the Mandrake rescue image, making it much easier to recover from severe "
"system\n"
"failures. Would you like to create a bootdisk for your system?\n"
"%s"
msgstr ""
"Dysk startowy umożliwia uruchomienie systemu Linux niezależnie od\n"
"normalnego programu rozruchowego. Jest użyteczny, jeśli nie chcesz\n"
"instalować LILO/Grub, lub programy te w Twoim systemie nie działają\n"
"oraz jeśli inny system operacyjny usunął LILO/grub.\n"
"Dysku tego można także używać z obrazem ratunkowym,\n"
"ułatwiając naprawienie systemu w przypadku awarii.\n"
"Czy chcesz dla swojego systemu utworzyć dysk startowy?\n"
"%s"
#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"\n"
" DrakBackup Daemon Report\n"
msgstr ""
"\n"
" Raport Demona DrakBackup\n"
#: ../../keyboard.pm:1
#, c-format
msgid "Latvian"
msgstr "łotewski"
#: ../../standalone/drakbackup:1
#, c-format
msgid "monthly"
msgstr "co miesiąc"
#: ../../standalone/drakfloppy:1
#, c-format
msgid "Module name"
msgstr "Nazwa modułu"
#: ../../network/network.pm:1
#, c-format
msgid "Start at boot"
msgstr "Uruchamianie przy starcie"
#: ../../standalone/drakbackup:1
#, c-format
msgid "Use Incremental Backups"
msgstr "Używaj archiwów przyrostowych"
#: ../../any.pm:1
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Pierwszy sektor na dysku (MBR)"
#: ../../lang.pm:1
#, c-format
msgid "El Salvador"
msgstr "El Salwator"
#: ../../harddrake/data.pm:1
#, c-format
msgid "Joystick"
msgstr "Joystick"
#: ../../standalone/harddrake2:1
#, c-format
msgid "DVD"
msgstr "DVD"
#: ../../any.pm:1 ../../help.pm:1
#, c-format
msgid "Use Unicode by default"
msgstr "Domyślne korzystanie z Unicode"
#: ../../standalone/harddrake2:1
#, c-format
msgid "the module of the GNU/Linux kernel that handles the device"
msgstr "moduł jądra GNU/Linux obsługujący to urządzenie"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Trying to rescue partition table"
msgstr "Próba odzyskania tablicy partycji"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Option %s must be an integer number!"
msgstr "Opcja %s musi być liczbą całkowitą!"
#: ../../security/l10n.pm:1
#, c-format
msgid "Use password to authenticate users"
msgstr "Wykorzystanie hasła do uwierzytelniania użytkowników"
#: ../../interactive/stdio.pm:1
#, c-format
msgid ""
"Entries you'll have to fill:\n"
"%s"
msgstr ""
"Pozycje wymagające wypełnienia:\n"
"%s"
#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"For backups to other media, files are still created on the hard drive, then "
"moved to the other media. Enabling this option will remove the hard drive "
"tar files after the backup."
msgstr ""
"W celu archiwizacji innego nośnika, pliki są wciąż tworzone na twardym dysku "
"a następnie przenoszone na inny nośnik. Włączenie tej opcji spowoduje "
"usuwanie plików tar zapisanych na dysku twardym po archiwizacji."
#: ../../standalone/livedrake:1
#, c-format
msgid "Unable to start live upgrade !!!\n"
msgstr "Nie można uruchomić uaktualnienia!!!\n"
#: ../../install_steps_gtk.pm:1 ../../diskdrake/interactive.pm:1
#, c-format
msgid "Name: "
msgstr "Nazwa:"
#: ../../Xconfig/resolution_and_depth.pm:1
#, c-format
msgid "16 million colors (24 bits)"
msgstr "16 mln. kolorów (24 bity)"
#: ../../any.pm:1
#, c-format
msgid "Allow all users"
msgstr "Zezwól wszystkim użytkownikom"
#: ../../share/advertising/08-store.pl:1
#, c-format
msgid "The official MandrakeSoft Store"
msgstr "Oficjalny e-sklep MandrakeSoft"
#: ../../install_interactive.pm:1 ../../diskdrake/interactive.pm:1
#, c-format
msgid "Resizing"
msgstr "Zmiana rozmiaru"
#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"Enter the maximum size\n"
" allowed for Drakbackup (MB)"
msgstr ""
"Podaj maksymalny rozmiar\n"
" dostępny dla Drakbackup (Mb)"
#: ../../network/netconnect.pm:1
#, c-format
msgid "Cable connection"
msgstr "Połączenie przez kablówkę"
#: ../../standalone/drakperm:1 ../../standalone/logdrake:1
#, c-format
msgid "User"
msgstr "Użytkownik"
#: ../../standalone/drakbackup:1
#, c-format
msgid "Do new backup before restore (only for incremental backups.)"
msgstr "Stwórz nowe archiwum przed odtworzeniem (tylko archiwa przyrostowe.)"
#: ../../standalone/harddrake2:1
#, c-format
msgid "Name"
msgstr "Nazwa"
#: ../../raid.pm:1
#, c-format
msgid "mkraid failed"
msgstr "mkraid padł"
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Button 3 Emulation"
msgstr "Emulacja 3 przycisku"
#: ../../security/l10n.pm:1
#, c-format
msgid "Check additions/removals of sgid files"
msgstr "Sprawdzanie dodatków/usunięć plików sgid"
#: ../../standalone/drakbackup:1
#, c-format
msgid "Sending files..."
msgstr "Wysyłanie plików..."
#: ../../keyboard.pm:1
#, c-format
msgid "Israeli (Phonetic)"
msgstr "izraelski (fonetyczny)"
#: ../../any.pm:1
#, c-format
msgid "access to rpm tools"
msgstr "dostęp do narzędzi rpm"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "You must choose/enter a printer/device!"
msgstr "Należy wybrać/podać drukarkę/urządzenie!"
#: ../../standalone/drakbackup:1
#, c-format
msgid "Permission problem accessing CD."
msgstr "Problem z uprawnieniami dostępu do CD."
#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Phone number"
msgstr "Numer telefonu"
#: ../../harddrake/sound.pm:1
#, c-format
msgid "Error: The \"%s\" driver for your sound card is unlisted"
msgstr "Błąd: Sterownik \"%s\" dla twojej karty dźwiękowej nie został wypisany"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printer name, description, location"
msgstr "Nazwa drukarki, opis, lokalizacja"
#: ../../standalone/drakxtv:1
#, c-format
msgid "USA (broadcast)"
msgstr "USA (broadcast)"
#: ../../Xconfig/card.pm:1
#, c-format
msgid "Use Xinerama extension"
msgstr "Użyj rozszerzenia Xinerama"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Loopback"
msgstr "Plikopartycja"
#: ../../standalone/drakxtv:1
#, c-format
msgid "West Europe"
msgstr "Europa Zachodnia"
#: ../../standalone/drakbackup:1
#, c-format
msgid "On CD-R"
msgstr "na płycie CD"
#: ../../standalone.pm:1
#, c-format
msgid ""
"[OPTIONS] [PROGRAM_NAME]\n"
"\n"
"OPTIONS:\n"
" --help - print this help message.\n"
" --report - program should be one of mandrake tools\n"
" --incident - program should be one of mandrake tools"
msgstr ""
"[OPCJE] [NAZWA_PROGRAMU]\n"
"\n"
"OPCJE:\n"
" --help - wyświetla ten komunikat pomocy.\n"
" --report - program powinien być jednym z narzędzi Mandrake\n"
" --incident - program powinien być jednym z narzędzi Mandrake"
#: ../../standalone/harddrake2:1
#, c-format
msgid "Harddrake2 version %s"
msgstr "Harddrake2 wersja %s"
#: ../../standalone/drakfloppy:1
#, c-format
msgid "Preferences"
msgstr "Preferencje"
#: ../../lang.pm:1
#, c-format
msgid "Swaziland"
msgstr "Swaziland"
#: ../../lang.pm:1
#, c-format
msgid "Dominican Republic"
msgstr "Dominikana"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Copying %s"
msgstr "Kopiowanie %s"
#: ../../standalone/draksplash:1
#, c-format
msgid "Choose color"
msgstr "Wybierz kolor"
#: ../../keyboard.pm:1
#, c-format
msgid "Syriac"
msgstr "Syria"
#: ../../standalone/drakperm:1
#, c-format
msgid "Set-UID"
msgstr "Ustaw UID"
#: ../../help.pm:1
#, c-format
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on this partition\n"
"will be lost and will not be recoverable!"
msgstr ""
"Wybierz dysk, który chcesz wykasować, by założyć na nim\n"
"partycję Mandrake Linux. Pamiętaj, że wszystkie dane z tego\n"
"dysku zostaną utracone bez możliwości odzyskania!"
# NOTE: this message will be displayed by grub at boot time; that is
# using the BIOS font; that means cp437 charset on 99.99% of PC computers
# out there. It is the nsuggested that for non latin languages an ascii
# transliteration be used; or maybe the english text be used; as it is best
#
# The lines must fit on screen, aka length < 80
# and only one line per string for the GRUB messages
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
#: ../../bootloader.pm:1
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Uzyj klawiszy %c i %c, aby podswietlic pozycje."
#: ../../standalone/drakperm:1
#, c-format
msgid "Enable \"%s\" to execute the file"
msgstr "Włącz \"%s\" aby uruchomić plik"
#: ../../mouse.pm:1
#, c-format
msgid "Generic 2 Button Mouse"
msgstr "Mysz standardowa 2-przyciskowa"
#: ../../lvm.pm:1
#, c-format
msgid "Remove the logical volumes first\n"
msgstr "Zacznij od usunięcia logicznych dysków (LV)\n"
# NOTE: this message will be displayed by grub at boot time; that is
# using the BIOS font; that means cp437 charset on 99.99% of PC computers
# out there. It is the nsuggested that for non latin languages an ascii
# transliteration be used; or maybe the english text be used; as it is best
#
# The lines must fit on screen, aka length < 80
# and only one line per string for the GRUB messages
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
#: ../../bootloader.pm:1
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Wyróżniony system zostanie uruchomiony po %d sekundach."
#: ../../standalone/drakboot:1
#, c-format
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr ""
"Nie można zapisać pliku /etc/sysconfig/bootsplash,\n"
"gdyż nie został on znaleziony."
#: ../../standalone/drakconnect:1
#, c-format
msgid "Internet access"
msgstr "Dostęp do Internetu"
#: ../../standalone/draksplash:1
#, c-format
msgid ""
"y coordinate of text box\n"
"in number of characters"
msgstr ""
"Wpółrzędna y okienka\n"
"tekstowego w liczbie znaków"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
"Aby pobrać listę opcji dostępnych dla bieżącej drukarki kliknij przycisk "
"\"Wydrukuj listę opcji\"."
#: ../../standalone/drakgw:1
#, c-format
msgid "Enabling servers..."
msgstr "Włączenie serwerów..."
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printing test page(s)..."
msgstr "Drukowanie stron/y testowych/ej..."
#: ../../fsedit.pm:1
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Istnieje partycja z punktem montowania %s\n"
#: ../../security/help.pm:1
#, c-format
msgid "Enable/Disable msec hourly security check."
msgstr ""
"Włączenie/wyłączenie cogodzinne procesów sprawdzania zabezpieczeń msec."
#: ../../help.pm:1
#, c-format
msgid ""
"At this point, you need to decide where you want to install the Mandrake\n"
"Linux operating system on your hard drive. If your hard drive is empty or\n"
"if an existing operating system is using all the available space you will\n"
"have to partition the drive. Basically, partitioning a hard drive consists\n"
"of logically dividing it to create the space needed to install your new\n"
"Mandrake Linux system.\n"
"\n"
"Because the process of partitioning a hard drive is usually irreversible\n"
"and can lead to lost data if there is an existing operating system already\n"
"installed on the drive, partitioning can be intimidating and stressful if\n"
"you are an inexperienced user. Fortunately, DrakX includes a wizard which\n"
"simplifies this process. Before continuing with this step, read through the\n"
"rest of this section and above all, take your time.\n"
"\n"
"Depending on your hard drive configuration, several options are available:\n"
"\n"
" * \"%s\": this option will perform an automatic partitioning of your blank\n"
"drive(s). If you use this option there will be no further prompts.\n"
"\n"
" * \"%s\": the wizard has detected one or more existing Linux partitions on\n"
"your hard drive. If you want to use them, choose this option. You will then\n"
"be asked to choose the mount points associated with each of the partitions.\n"
"The legacy mount points are selected by default, and for the most part it's\n"
"a good idea to keep them.\n"
"\n"
" * \"%s\": if Microsoft Windows is installed on your hard drive and takes\n"
"all the space available on it, you will have to create free space for\n"
"Linux. To do so, you can delete your Microsoft Windows partition and data\n"
"(see ``Erase entire disk'' solution) or resize your Microsoft Windows FAT\n"
"partition. Resizing can be performed without the loss of any data, provided\n"
"you have previously defragmented the Windows partition and that it uses the\n"
"FAT format. Backing up your data is strongly recommended.. Using this\n"
"option is recommended if you want to use both Mandrake Linux and Microsoft\n"
"Windows on the same computer.\n"
"\n"
" Before choosing this option, please understand that after this\n"
"procedure, the size of your Microsoft Windows partition will be smaller\n"
"then when you started. You will have less free space under Microsoft\n"
"Windows to store your data or to install new software.\n"
"\n"
" * \"%s\": if you want to delete all data and all partitions present on\n"
"your hard drive and replace them with your new Mandrake Linux system,\n"
"choose this option. Be careful, because you will not be able to undo your\n"
"choice after you confirm.\n"
"\n"
" !! If you choose this option, all data on your disk will be deleted. !!\n"
"\n"
" * \"%s\": this will simply erase everything on the drive and begin fresh,\n"
"partitioning everything from scratch. All data on your disk will be lost.\n"
"\n"
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"%s\": choose this option if you want to manually partition your hard\n"
"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
"easily lose all your data. That's why this option is really only\n"
"recommended if you have done something like this before and have some\n"
"experience. For more instructions on how to use the DiskDrake utility,\n"
"refer to the ``Managing Your Partitions '' section in the ``Starter\n"
"Guide''."
msgstr ""
"W tym etapie instalacji należy określić, gdzie na dysku zostanie "
"zainstalowany\n"
"Mandrake Linux. Jeśli dysk jest pusty lub istniejące systemy operacyjne\n"
"zajmują całe dostępne miejsce, należy podzielić dysk na partycje\n"
"Partycjonowanie to po prostu logiczny podział twardego dysku na oddzielne\n"
"obszary w celu zainstalowania systemu Mandrake Linux.\n"
"\n"
"Ponieważ efekt partycjonowania jest nieodwracalny, czynność wydaje się\n"
"niebezpieczna i jest stresująca dla niedoświadczonych użytkowników.\n"
"Na szczęście, instalator zawiera druida upraszczającego ten proces.Przed "
"zdecydowaniem się na ten krok warto poświęcić nieco czasu na\n"
"zapoznanie się z dokumentacją.\n"
"\n"
"Możliwych jest kilka rozwiązań zależnych od konfiguracji dysku twardego:\n"
"\n"
"* \"%s\": ta opcja po prostu oznacza automatyczne\n"
"partycjonowanie niezapisanych dysków. Nie zostaną wyświetlone żadne\n"
"dodatkowe pytania.\n"
"\n"
"* \"%s\": gdy druid wykrył jedną lub więcej\n"
"istniejących partycji linuksowych. Wybierz to rozwiązanie, jeśli\n"
"chcesz użyć te partycje dla nowej instalacji. Zostanie wyświetlona\n"
"prośba o wybranie punktu montowania dla każdej z tych partycji.\n"
"Domyślnie wybierane są już zdefiniowane punkty montowania,\n"
"w większości przypadków lepiej ich nie zmieniać.\n"
"\n"
"* \"%s\": jeśli na komputerze\n"
"został zainstalowany Microsoft Windows zajmuje on całą przestrzeń\n"
"dyskową, należy utworzyć wolne miejsce dla Linuksa. Aby to zrobić, można\n"
"usunąć partycję MS Windows wraz z danymi (zobacz rozwiązanie \"Kasowanie\n"
"zawartości dysku\") lub też zmienić rozmiar partycji FAT Windows.\n"
"Operacja zmiany wielkości partycji może być przeprowadzona bez utraty\n"
"danych, po przeprowadzeniu defragmentacji. Archiwizacja danych jest\n"
"jednak wysoce wskazana. To rozwiązanie jest zalecane w przypadku chęci\n"
"używania zarówno Linuksa jak i Windowsa na tym samym komputerze\n"
"\n"
" Przed wybraniem tej opcji, należy uświadomić sobie, że partycja MS\n"
"Windows będzie mniejsza niż jest obecnie. Oznacza to także mniej miejsca\n"
"do instalacji nowych programów lub przechowywania danych.\n"
"\n"
"* \"%s\": Jeśli chcesz usunąć z dysku\n"
"wszystkie dane i wszystkie partycje istniejące na dysku oraz zainstalować\n"
"w to miejsce nowy system Mandrake Linux, wybierz to rozwiązanie.\n"
"Pamiętaj, że po zatwierdzeniu tego wyboru nie nie będzie możliwości "
"odwrotu.\n"
"\n"
"\n"
" !! Po wybraniu tej opcji wszystkie dane zostaną utracone !!\n"
"\n"
"* \"%s\": ta opcja spowoduje wymazanie wszystkich danych\n"
"oraz rozpoczęcie instalacji na czystym dysku. Wszystkie zapisane dane\n"
"zostaną utracone.\n"
"\n"
"\n"
" !! Po wybraniu tej opcji wszystkie dane zostaną utracone !!\n"
"\n"
"* \"%s\": wybierz tą opcję, jeśli chcesz\n"
"partycjonować dysk ręcznie. Wybranie tej opcji daje duże możliwości, lecz\n"
"jest bardzo niebezpieczne. Bardzo łatwo można utracić wszystkie dane.\n"
"Ta opcja jest dlatego zalecana tylko dla użytkowników posiadających\n"
"już doświadczenie w partycjonowaniu dysków. Aby uzyskać więcej informacji\n"
"na temat tego, w jaki sposób korzystać z narzędzia DiskDrake, skonsultuj\n"
"się z podręcznikiem (rozdział \"Zarządzanie partycjami\")."
#: ../../lang.pm:1
#, c-format
msgid "Ukraine"
msgstr "Ukraina"
#: ../../standalone/drakbug:1
#, c-format
msgid "Application:"
msgstr "Aplikacja:"
#: ../../network/isdn.pm:1
#, c-format
msgid "External ISDN modem"
msgstr "Zewnętrzny modem ISDN"
#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, report check result by mail."
msgstr "jeśli ustawiono na tak, przesyła wyniki sprawdzenia pocztą."
#: ../../interactive/stdio.pm:1
#, c-format
msgid "Your choice? (default %s) "
msgstr "Twój wybór? (domyślnie %s)"
#: ../../harddrake/sound.pm:1
#, c-format
msgid "Trouble shooting"
msgstr "Wyszukiwanie problemów"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
"Printing status:\n"
"%s\n"
"\n"
msgstr ""
"Strona testowa została wysłana do drukarki.\n"
"Może chwilę potrwać, zanim pojawi się wydruk\n"
"Stan drukowania:\n"
"%s\n"
"\n"
#: ../../standalone/drakbackup:1
#, c-format
msgid "daily"
msgstr "codziennie"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "and one unknown printer"
msgstr "oraz jedna nieznana drukarka"
#: ../../lang.pm:1 ../../standalone/drakxtv:1
#, c-format
msgid "Ireland"
msgstr "Irlandia"
#: ../../standalone/drakbackup:1
#, c-format
msgid " Restore Configuration "
msgstr " Konfiguracja odtwarzania "
#: ../../Xconfig/test.pm:1
#, c-format
msgid "Is this the correct setting?"
msgstr "Czy to jest prawidłowe ustawienie?"
#: ../../help.pm:1
#, c-format
msgid ""
"You will now set up your Internet/network connection. If you wish to\n"
"connect your computer to the Internet or to a local network, click \"%s\".\n"
"Mandrake Linux will attempt to autodetect network devices and modems. If\n"
"this detection fails, uncheck the \"%s\" box. You may also choose not to\n"
"configure the network, or to do it later, in which case clicking the \"%s\"\n"
"button will take you to the next step.\n"
"\n"
"When configuring your network, the available connections options are:\n"
"traditional modem, ISDN modem, ADSL connection, cable modem, and finally a\n"
"simple LAN connection (Ethernet).\n"
"\n"
"We will not detail each configuration option - just make sure that you have\n"
"all the parameters, such as IP address, default gateway, DNS servers, etc.\n"
"from your Internet Service Provider or system administrator.\n"
"\n"
"You can consult the ``Starter Guide'' chapter about Internet connections\n"
"for details about the configuration, or simply wait until your system is\n"
"installed and use the program described there to configure your connection."
msgstr ""
"Teraz zostanie dokonana konfiguracja Internetu/połączenia z siecią.\n"
"Jeśli chcesz połączyć komputer do Internetu lub sieci lokalnej, kliknij\n"
"\"%s\". Zostanie uruchomione automatyczne wykrywanie urządzeń sieciowych\n"
"oraz modemów. Jeśli wykrywanie zakończy się niepowodzeniem, kolejnym razem\n"
"należy odznaczyć opcję \"%s\". Można także\n"
"nie wybierać konfiguracji sieci, lub też zrobić to w późniejszym czasie.\n"
"w tym przypadku po prostu kliknij przycisk \"%s\".\n"
"\n"
"Podczas konfigurowania sieci dostępne są następujące opcje połączenia:\n"
"tradycyjny modem, modem ISDN, połączenie ADSL, modem przewodowy\n"
"i na końcu zwykłe połączenie LAN (Ethernet).\n"
"\n"
"Nie są tu opisane szczegóły każdej z opcji konfiguracji - po prostu należy\n"
"upewnić się, że dostępne są wszystkie parametry takie jak adres IP,\n"
"domyślna bramka, serwery DNS, itd.\n"
"Jeśli nie posiadasz tych informacji poproś o nie dostawcę Internetu lub\n"
"administratora systemu.\n"
"\n"
"Można zajrzeć do rozdziału dotyczącego połączeń Internetowych podręcznika\n"
"użytkownika, aby uzyskać więcej szczegółów dotyczących konfiguracji lub\n"
"sposobu użycia opisanego tutaj programu w celu konfiguracji połączenia."
#: ../../standalone/drakbackup:1
#, c-format
msgid "Wizard Configuration"
msgstr "Konfiguracja druida"
#: ../../modules/interactive.pm:1
#, c-format
msgid "Autoprobe"
msgstr "Autodetekcja"
#: ../../security/help.pm:1
#, c-format
msgid ""
"if set to yes, check for :\n"
"\n"
"- empty passwords,\n"
"\n"
"- no password in /etc/shadow\n"
"\n"
"- for users with the 0 id other than root."
msgstr ""
"jeśli ustawiono na tak, sprawdza :\n"
"\n"
"- puste hasła,\n"
"\n"
"- brak haseł w pliku /etc/shadow\n"
"\n"
"- użytkowników z identyfikatorem 0 innych niż root."
#: ../../standalone/drakbackup:1
#, c-format
msgid "Backup system files..."
msgstr "Archiwizacja plików systemowych..."
#: ../../any.pm:1
#, c-format
msgid "Can't use broadcast with no NIS domain"
msgstr "Nie używaj rozgłaszania przy braku domeny NIS"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Removing printer \"%s\"..."
msgstr "Usuwanie drukarki \"%s\"..."
#: ../../security/l10n.pm:1
#, c-format
msgid "Shell history size"
msgstr "Rozmiar historii powłoki"
#: ../../standalone/drakfloppy:1
#, c-format
msgid "drakfloppy"
msgstr "drakfloppy"
#: ../../standalone/drakpxe:1
#, c-format
msgid ""
"Please indicate where the auto_install.cfg file is located.\n"
"\n"
"Leave it blank if you do not want to set up automatic installation mode.\n"
"\n"
msgstr ""
"Wskaż gdzie zapisany jest plik auto_install.cfg.\n"
"\n"
"Pozostaw pole puste jeśli nie chcesz ustawiać trybu automatycznej "
"instalacji.\n"
"\n"
#: ../../printer/cups.pm:1 ../../standalone/printerdrake:1
#, c-format
msgid "Configured on other machines"
msgstr "Konfigurowane na innych komputerach"
#: ../../standalone/harddrake2:1
#, c-format
msgid "information level that can be obtained through the cpuid instruction"
msgstr ""
"Poziom informacyjny, do którego można mieć dostęp za pośrednictwem "
"instrukcji procesora"
#: ../../lang.pm:1
#, c-format
msgid "Peru"
msgstr "Peru"
#: ../../standalone/drakbackup:1
#, c-format
msgid " on device: %s"
msgstr " na urządzeniu: %s"
#: ../../install_interactive.pm:1
#, c-format
msgid "Remove Windows(TM)"
msgstr "Usuń Windows(TM)"
#: ../../services.pm:1
#, c-format
msgid "Starts the X Font Server (this is mandatory for XFree to run)."
msgstr "Uruchamia serwer czcionek (konieczny do działania XFree)."
#: ../../standalone/drakTermServ:1
#, c-format
msgid ""
"Most of these values were extracted\n"
"from your running system.\n"
"You can modify as needed."
msgstr ""
"Większość z tych wartości zostało pobranych\n"
"z działającego systemu.\n"
"Można je modyfikować w razie potrzeby."
#: ../../standalone/drakfont:1
#, c-format
msgid "Select the font file or directory and click on 'Add'"
msgstr "Wybierz plik czcionki lub katalog oraz kliknij \"Dodaj\""
#: ../../lang.pm:1
#, c-format
msgid "Madagascar"
msgstr "Madagaskar"
#: ../../standalone/drakbug:1
#, c-format
msgid "Urpmi"
msgstr "Urpmi"
#: ../../standalone/drakbackup:1
#, c-format
msgid "Cron not available yet as non-root"
msgstr "Cron nie jest jeszcze dostępny dla zwykłego użytkownika"
#: ../../install_steps_interactive.pm:1 ../../services.pm:1
#: ../../standalone/drakbackup:1
#, c-format
msgid "System"
msgstr "System"
#: ../../any.pm:1 ../../help.pm:1
#, c-format
msgid "Do you want to use this feature?"
msgstr "Czy chcesz wykorzystać tą funkcję?"
#: ../../keyboard.pm:1
#, c-format
msgid "Arabic"
msgstr "arabski"
#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"\n"
"- Options:\n"
msgstr ""
"\n"
"- Opcje:\n"
#: ../../standalone/drakbackup:1
#, c-format
msgid "Password required"
msgstr "Wymagane hasło"
#: ../../common.pm:1
#, c-format
msgid "%d minutes"
msgstr "%d minut(y)"
#: ../../Xconfig/resolution_and_depth.pm:1
#, c-format
msgid "Graphics card: %s"
msgstr "Karta graficzna: %s"
#: ../../standalone/drakbackup:1
#, c-format
msgid "WebDAV transfer failed!"
msgstr "Błąd przesyłania WebDAV!"
#: ../../Xconfig/card.pm:1
#, c-format
msgid "XFree configuration"
msgstr "Konfiguracja XFree"
#: ../../diskdrake/hd_gtk.pm:1
#, c-format
msgid "Choose action"
msgstr "Wybierz czynność"
#: ../../lang.pm:1
#, c-format
msgid "French Polynesia"
msgstr "Polinezja Francuska"
#: ../../help.pm:1
#, c-format
msgid ""
"Usually, DrakX has no problems detecting the number of buttons on your\n"
"mouse. If it does, it assumes you have a two-button mouse and will\n"
"configure it for third-button emulation. The third-button mouse button of a\n"
"two-button mouse can be ``pressed'' by simultaneously clicking the left and\n"
"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
"a PS/2, serial or USB interface.\n"
"\n"
"If for some reason you wish to specify a different type of mouse, select it\n"
"from the list provided.\n"
"\n"
"If you choose a mouse other than the default, a test screen will be\n"
"displayed. Use the buttons and wheel to verify that the settings are\n"
"correct and that the mouse is working correctly. If the mouse is not\n"
"working well, press the space bar or [Return] key to cancel the test and to\n"
"go back to the list of choices.\n"
"\n"
"Wheel mice are occasionally not detected automatically, so you will need to\n"
"select your mouse from a list. Be sure to select the one corresponding to\n"
"the port that your mouse is attached to. After selecting a mouse and\n"
"pressing the \"%s\" button, a mouse image is displayed on-screen. Scroll\n"
"the mouse wheel to ensure that it is activated correctly. Once you see the\n"
"on-screen scroll wheel moving as you scroll your mouse wheel, test the\n"
"buttons and check that the mouse pointer moves on-screen as you move your\n"
"mouse."
msgstr ""
"Instalator zazwyczaj wykrywa liczbę przycisków myszy. W innym przypadku\n"
"zakłada, że mysz posiada dwa przyciski i ustawi system na emulacje\n"
"trzech przycisków. Trzeci przycisk myszy dwuprzyciskowej\n"
"może być \"użyty\" poprzez równoczesne kliknięcie lewego i prawego\n"
"przycisku myszy. Instalator automatycznie wykryje także czy mysz jest\n"
"typu PS/2, szeregowa czy też USB.\n"
"\n"
"Jeśli z różnych powodów chcesz wybrać inny typ myszy należy wybrać\n"
"odpowiednią pozycję z listy.\n"
"\n"
"Jeśli zostanie wybrana mysz inna niż domyślna, zostanie wyświetlony\n"
"ekran testowy. Użytkownik powinien sprawdzić przyciski oraz kółka\n"
"aby upewnić się co do poprawności konfiguracji. Jeśli mysz nie pracuje\n"
"poprawnie, należy nacisnąć klawisz spacji lub [Enter] aby anulować test\n"
"oraz wrócić do listy wyboru. \n"
"\n"
"Mysz z kółkiem czasem nie jest wykrywana automatycznie, więc należy\n"
"wówczas wybrać odpowiednią wartość z listy. Upewnij się, żeby wybrać\n"
"mysz podłączoną do odpowiedniego portu. Po zakończeniu wybierania\n"
"i naciśnięciu przycisku \"%s\", zostanie wyświetlony na ekranie obraz\n"
"myszy. Poruszaj kółkiem, aby upewnić się czy zostało ono poprawnie\n"
"aktywowane. Jeśli mysz na ekranie będzie zmieniała ustawienie kółka\n"
"podczas przesuwania kółka myszy, sprawdź przyciski oraz upewnij się,\n"
"że wskaźnik przesuwa się po ekranie przy zmianie położenia."
#: ../../services.pm:1
#, c-format
msgid "Support the OKI 4w and compatible winprinters."
msgstr ""
"Zapewnia obsługę drukarek OKI dla Windows\n"
"oraz kompatybilnych windrukarek."
#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"Files or wildcards listed in a .backupignore file at the top of a directory "
"tree will not be backed up."
msgstr ""
"Pliki lub nazwy określane przez \\\"dzikie karty\\\" wypisane w pliku ."
"backupignore na górze drzewa katalogów nie będą archiwizowane."
#: ../../services.pm:1
#, c-format
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Uruchamia podsystem dźwięku ALSA (Advanced Linux Sound Architecture)"
#. -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 "Instalacja sterownika do karty %s %s"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
"the default printer under the new printing system %s?"
msgstr ""
"Została przesłana domyślna drukarka (\"%s\"), czy ma być ona także domyślną "
"drukarką dla nowego systemu wydruku %s?"
#: ../../standalone/drakTermServ:1
#, c-format
msgid "Enable Server"
msgstr "Włącz serwer"
#: ../../keyboard.pm:1
#, c-format
msgid "Ukrainian"
msgstr "ukraiński"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
"printer again."
msgstr ""
"Dostęp do sieci nie działa lub nie został uruchomiony. Sprawdź konfigurację "
"swojego sprzętu. Następnie spróbuj skonfigurować ponownie drukarkę zdalną."
#: ../../standalone/drakperm:1
#, c-format
msgid "Enable \"%s\" to write the file"
msgstr "Włącz \\\"%s\\\" aby zapisać plik"
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Włóż dyskietkę startową do stacji %s"
#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
#, c-format
msgid "Local network(s)"
msgstr "Sieć/sieci lokalne"
#: ../../help.pm:1
#, c-format
msgid "Remove Windows"
msgstr "Usuń Windows"
#: ../../standalone/scannerdrake:1
#, c-format
msgid ""
"Your %s has been configured.\n"
"You may now scan documents using \"XSane\" from Multimedia/Graphics in the "
"applications menu."
msgstr ""
"Skaner %s został skonfigurowany.\n"
"Można skanować dokumenty przy użyciu programu ``XSane'' z menu Multimedia/"
"Grafika z menu programów."
#: ../../harddrake/data.pm:1
#, c-format
msgid "Firewire controllers"
msgstr "Kontrolery firewire"
#: ../../help.pm:1
#, c-format
msgid ""
"After you have configured the general bootloader parameters, the list of\n"
"boot options that will be available at boot time will be displayed.\n"
"\n"
"If there are other operating systems installed on your machine they will\n"
"automatically be added to the boot menu. You can fine-tune the existing\n"
"options by clicking \"%s\" to create a new entry; selecting an entry and\n"
"clicking \"%s\" or \"%s\" to modify or remove it. \"%s\" validates your\n"
"changes.\n"
"\n"
"You may also not want to give access to these other operating systems to\n"
"anyone who goes to the console and reboots the machine. You can delete the\n"
"corresponding entries for the operating systems to remove them from the\n"
"bootloader menu, but you will need a boot disk in order to boot those other\n"
"operating systems!"
msgstr ""
"Po skonfigurowaniu ogólnych parametrów programu rozruchowego,\n"
"podczas uruchamiania komputera dostępna będzie lista opcji uruchamiania.\n"
"\n"
"Jeśli na komputerze zainstalowane są inne systemy operacyjne, zostaną\n"
"one automatycznie dodane do menu startowego. Można dostosować te\n"
"opcje poprzez kliknięcie przycisku \"%s\", aby utworzyć nowy wpis, wybrania\n"
"opcji \"%s\" lub \"%s\" aby zmienić lub usunąć odpowiedni wpis.\n"
"Przycisk \"%s\" umożliwia zatwierdzenie i sprawdzenie poprawności zmian.\n"
"\n"
"Może także zachodzić potrzeba, aby inni użytkownicy nie mieli możliwości\n"
"uruchamiania pozostałych systemów po włączeniu komputera. Można\n"
"usunąć odpowiednie wpisy dla systemów operacyjnych z menu programu\n"
"rozruchowego. Wówczas jednak uruchomienia tych systemów potrzebna\n"
"będzie dyskietka startowa!"
#: ../../standalone/drakboot:1
#, c-format
msgid "System mode"
msgstr "Tryb pracy systemu"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
"name (Note! it may be different from its TCP/IP hostname!) as well as the "
"print queue name for the printer you wish to access and any applicable user "
"name and password."
msgstr ""
"By drukować na drukarce NetWare, należy podać nazwę serwera wydruku NetWare "
"(nie zawsze to samo co nazwa TCP/IP!), nazwę kolejki drukarki, do której "
"chcesz uzyskać dostęp, oraz właściwą nazwę użytkownika i hasło."
#: ../../standalone/drakTermServ:1
#, c-format
msgid "Netmask:"
msgstr "Maska sieci:"
#: ../../network/adsl.pm:1
#, c-format
msgid "Do it later"
msgstr "Zrób to później"
#: ../../any.pm:1
#, c-format
msgid "Append"
msgstr "Dołącz"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr "Odśwież listę drukarek (aby wyświetlić dostępne zdalne drukarki CUPS)"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"When this option is turned on, on every startup of CUPS it is automatically "
"made sure that\n"
"\n"
"- if LPD/LPRng is installed, /etc/printcap will not be overwritten by CUPS\n"
"\n"
"- if /etc/cups/cupsd.conf is missing, it will be created\n"
"\n"
"- when printer information is broadcasted, it does not contain \"localhost\" "
"as the server name.\n"
"\n"
"If some of these measures lead to problems for you, turn this option off, "
"but then you have to take care of these points."
msgstr ""
"Po włączeniu tej opcji, przy każdym uruchamianiu CUPS jest automatycznie "
"sprawdzane czy:\n"
"\n"
"- LPD/LPRng został zainstalowany, /etc/printcap nie zostanie nadpisany przez "
"CUPS\n"
"\n"
"- nie brakuje /etc/cups/cupsd.conf , jeśli tak, plik zostanie utworzony\n"
"\n"
"- informacje o drukarce są rozgłaszane, czy nie zawierają \"localhost\" jako "
"nazwy serwera.\n"
"\n"
"Jeśli niektóre z tych rzeczy są przyczyną problemów, można wyłączyć tą "
"opcję, lecz wówczas użytkownik sam musi o nie zadbać."
#: ../../install_steps_interactive.pm:1
#, c-format
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
"(this is meant for installing on another box).\n"
"\n"
"You may prefer to replay the installation.\n"
msgstr ""
"Automatyczna instalacja może być, jeśli zachodzi taka potrzeba,\n"
"przeprowadzona w sposób całkowicie samodzielny.\n"
"Zajmie ona wówczas cały dysk,\n"
"co ma znaczenie przy instalacji na innym komputerze.\n"
"\n"
"Można zażyczyć sobie odtworzenia instalacji.\n"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Network printer \"%s\", port %s"
msgstr "Drukarka sieciowa \"%s\", port %s"
#: ../../standalone/drakgw:1
#, c-format
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr ""
"Wskaż, która karta sieciowa będzie połączona\n"
"z siecią lokalną (LAN)."
#: ../../standalone/drakbackup:1
#, c-format
msgid "OK to restore the other files."
msgstr "OK aby odtworzyć inne pliki."
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Please choose your keyboard layout."
msgstr "Wybierz układ klawiatury."
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printer Device URI"
msgstr "Adres URI urządzenia wydruku"
#: ../../standalone/drakbackup:1
#, c-format
msgid "Not erasable media!"
msgstr "To nie jest nośnik z którego można usuwać dane!"
#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Terminal-based"
msgstr "Poprzez terminal"
#: ../../security/help.pm:1
#, c-format
msgid "Enable/Disable IP spoofing protection."
msgstr "Włączenie/wyłączenie ochrony przed spoofingiem IP."
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr "Instalowanie systemu wydruku na poziomie bezpieczeństwa %s"
#: ../../any.pm:1
#, c-format
msgid "The user name is too long"
msgstr "Nazwa użytkownika jest za długa"
#: ../../any.pm:1
#, c-format
msgid "Other OS (windows...)"
msgstr "Inny system operacyjny (Windows...)"
#: ../../standalone/drakbackup:1
#, c-format
msgid "WebDAV remote site already in sync!"
msgstr "Strona zdalna WebDAV jest już zsynchronizowana!"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Reading printer database..."
msgstr "Odczytywanie bazy danych drukarek ..."
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Generate auto install floppy"
msgstr "Tworzenie dyskietki automatycznej instalacji"
#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
"\t\t użytkownik: %s\n"
"\t\t ścieżka: %s \n"
#: ../../lang.pm:1
#, c-format
msgid "Somalia"
msgstr "Somalia"
#: ../../harddrake/sound.pm:1
#, c-format
msgid "No open source driver"
msgstr "Brak wolnodostępnego sterownika"
#: ../../standalone/printerdrake:1
#, c-format
msgid "Def."
msgstr "Def."
#: ../../security/level.pm:1
#, c-format
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
"security features are at their maximum."
msgstr ""
"Ten poziom bazuje na poprzednim, lecz system jest całkowicie zamknięty. "
"Wszystkie zabezpieczenia są włączone."
#: ../../lang.pm:1
#, c-format
msgid "Nicaragua"
msgstr "Nikaragua"
#: ../../lang.pm:1
#, c-format
msgid "New Caledonia"
msgstr "Nowa Kaledonia"
#: ../../network/isdn.pm:1
#, c-format
msgid "European protocol (EDSS1)"
msgstr "Protokół europejski (EDSS1)"
#: ../../standalone/printerdrake:1
#, c-format
msgid "/_Delete"
msgstr "/_Usuń"
#: ../../any.pm:1
#, c-format
msgid "Video mode"
msgstr "Tryb graficzny"
#: ../../lang.pm:1
#, c-format
msgid "Oman"
msgstr "Oman"
#: ../../standalone/logdrake:1
#, c-format
msgid "Please enter your email address below "
msgstr "Wprowadź poniżej swój adres email "
#: ../../standalone/net_monitor:1
#, c-format
msgid "Network Monitoring"
msgstr "Monitorowanie sieci"
#: ../../diskdrake/hd_gtk.pm:1
#, c-format
msgid "SunOS"
msgstr "SunOS"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "New size in MB: "
msgstr "Nowy rozmiar w MB: "
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Partition table type: %s\n"
msgstr "Typ tabeli partycji: %s\n"
#: ../../any.pm:1
#, c-format
msgid "Authentication Windows Domain"
msgstr "Domena uwierzytelniania Windows"
#: ../../keyboard.pm:1
#, c-format
msgid "US keyboard"
msgstr "amerykański"
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Buttons emulation"
msgstr "Emulacja przycisków"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid ", network printer \"%s\", port %s"
msgstr ", drukarka sieciowa \"%s\", port %s"
#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
"\n"
"Operacje drakbackup z użyciem taśmy:\n"
"\n"
#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
"\n"
" Problem połączenia FTP: Przesłanie archiwum przez FTP było niemożliwe.\n"
#: ../../standalone/net_monitor:1
#, c-format
msgid "Sending Speed:"
msgstr "Szybkość wysyłania:"
#: ../../harddrake/sound.pm:1
#, c-format
msgid ""
"The classic bug sound tester is to run the following commands:\n"
"\n"
"\n"
"- \"lspcidrake -v | fgrep AUDIO\" will tell you which driver your card uses\n"
"by default\n"
"\n"
"- \"grep sound-slot /etc/modules.conf\" will tell you what driver it\n"
"currently uses\n"
"\n"
"- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
"loaded or not\n"
"\n"
"- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" will\n"
"tell you if sound and alsa services're configured to be run on\n"
"initlevel 3\n"
"\n"
"- \"aumix -q\" will tell you if the sound volume is muted or not\n"
"\n"
"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
msgstr ""
"Klasyczny tester błędów dźwięku może być uruchamiany przez\n"
"następujące polecenia:\n"
"\n"
"\n"
"- \"lspcidrake -v | fgrep AUDIO\" powie, który ze sterowników jest\n"
"domyślnie używany przez kartę\n"
"\n"
"- \"grep sound-slot /etc/modules.conf\" powie, który sterownik jest\n"
"aktualnie używany\n"
"\n"
"- \"/sbin/lsmod\" umożliwi sprawdzenie czy moduł (sterownik)\n"
"karty jest załadowany czy nie\n"
"\n"
"- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" "
"powie\n"
"czy usługi sound i alsa są skonfigurowane do uruchomienia na\n"
"poziomie 3 inicjacji (initlevel)\n"
"\n"
"- \"aumix -q\" powie czy dźwięk jest wyciszony czy nie\n"
"\n"
"- \"/sbin/fuser -v /dev/dsp\" powie czy program używa karty dźwiękowej.\n"
#: ../../standalone/harddrake2:1
#, c-format
msgid "Halt bug"
msgstr "Błąd instrukcji halt"
#: ../../standalone/logdrake:1
#, c-format
msgid "Mail alert configuration"
msgstr "Konfiguracja powiadamiania Mail"
#: ../../lang.pm:1
#, c-format
msgid "Tokelau"
msgstr "Tokelau"
#: ../../standalone/logdrake:1
#, c-format
msgid "Matching"
msgstr "Pasuje"
#: ../../keyboard.pm:1
#, c-format
msgid "Bosnian"
msgstr "bośniacki"
#: ../../standalone/drakbug:1
#, c-format
msgid "Release: "
msgstr "Wydanie: "
#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Connection speed"
msgstr "Szybkość połączenia"
#: ../../lang.pm:1
#, c-format
msgid "Namibia"
msgstr "Namibia"
#: ../../services.pm:1
#, c-format
msgid "Database Server"
msgstr "Serwer bazy danych"
#: ../../standalone/harddrake2:1
#, c-format
msgid "special capacities of the driver (burning ability and or DVD support)"
msgstr "specjalne funkcje sterownika (możliwość wypalania i/lub obsługa DVD)"
#: ../../raid.pm:1
#, c-format
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "Nie można dodać partycji do sformatowanego RAID md%d"
#: ../../Xconfig/card.pm:1
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER.\n"
"Your card is supported by XFree %s which may have a better support in 2D."
msgstr ""
"Dla Twojej karty akceleracja 3D jest obsługiwana tylko przez XFree %s.\n"
"JEST TO ROZWIĄZANIE EKSPERYMENTALNE, MOŻE ZAWIESIĆ KOMPUTER.\n"
"Twoja karta jest obsługiwana przez XFree %s, gdzie może być wydajniejsza "
"obsługa 2D."
#: ../../standalone/draksec:1
#, c-format
msgid "Please wait, setting security options..."
msgstr "Proszę czekać, ustawianie opcji zabezpieczeń..."
#: ../../harddrake/v4l.pm:1
#, c-format
msgid "Unknown|CPH05X (bt878) [many vendors]"
msgstr "Nieznana|CPH05X (bt878) [wielu producentów]"
#: ../../standalone/drakboot:1
#, c-format
msgid "Launch the graphical environment when your system starts"
msgstr "Uruchamiaj środowisko graficzne po uruchomieniu systemu"
#: ../../standalone/drakbackup:1
#, c-format
msgid "hourly"
msgstr "co godzinę"
#: ../../keyboard.pm:1
#, c-format
msgid "Right Shift key"
msgstr "Prawy klawisz Shift"
#: ../../standalone/drakbackup:1
#, c-format
msgid " Successfuly Restored on %s "
msgstr " Pomyślnie przywrócono na %s "
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Making printer port available for CUPS..."
msgstr "Udostępnianie portu drukarki dla systemu CUPS..."
#: ../../lang.pm:1
#, c-format
msgid "Antigua and Barbuda"
msgstr "Antigua i Barbuda"
#: ../../standalone/drakTermServ:1
#, c-format
msgid ""
"!!! Indicates the password in the system database is different than\n"
" the one in the Terminal Server database.\n"
"Delete/re-add the user to the Terminal Server to enable login."
msgstr ""
"!!! Wskazuje czy hasło w bazie danych systemu różni się od\n"
"hasła w bazie danych Serwera terminali.\n"
"Usuń/dodaj ponownie użytkownika serwera terminali, aby włączyć login."
#: ../../keyboard.pm:1
#, c-format
msgid "Spanish"
msgstr "hiszpański"
#: ../../services.pm:1
#, c-format
msgid "Start"
msgstr "Uruchom"
#: ../../security/l10n.pm:1
#, c-format
msgid "Direct root login"
msgstr "Bezpośrednie logowanie roota"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Configuring applications..."
msgstr "Konfigurowanie aplikacji..."
#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
"\n"
"This wizard will help you to install your printer(s) connected to this "
"computer, connected directly to the network or to a remote Windows machine.\n"
"\n"
"Please plug in and turn on all printers connected to this machine so that it/"
"they can be auto-detected. Also your network printer(s) and your Windows "
"machines must be connected and turned on.\n"
"\n"
"Note that auto-detecting printers on the network takes longer than the auto-"
"detection of only the printers connected to this machine. So turn off the "
"auto-detection of network and/or Windows-hosted printers when you don't need "
"it.\n"
"\n"
" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
"to set up your printer(s) now."
msgstr ""
"\n"
"Witaj w Druidzie Instalacji Drukarki\n"
"\n"
"Ten druid pomoże ci zainstalować twoją drukarkę (drukarki) podłączone do "
"tego komputera, podłączone bezpośrednio do sieci lub do zdalnego komputera z "
"systemem Windows.\n"
"\n"
"Jeśli posiadasz drukarkę (drukarki) podłączone do tego komputera, sprawdź "
"połączenie oraz włącz ich zasilanie dzięki czemu będzie można je "
"automatycznie wykryć. Także drukarki sieciowe i komputery Windows muszą być "
"połączone i włączone do zasilania.\n"
"\n"
"Należy zauważyć, że automatyczne wykrywanie drukarek w sieci zabiera więcej "
"czasu niż automatyczne wykrywanie drukarek podłączonych bezpośrednio do "
"komputera. Tak więc wyłącz automatyczne wykrywanie drukarek sieciowych lub "
"podłączonych do zdalnych komputerów z systemem Windows, jeśli nie "
"potrzebujesz tej opcji.\n"
"\n"
"Kliknij przycisk \"Dalej\" w przypadku gotowości lub \"Anuluj\" jeśli nie "
"chcesz ustawiać teraz drukarki (drukarek)."
#: ../../network/netconnect.pm:1
#, c-format
msgid "Normal modem connection"
msgstr "Połączenie modemowe"
#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
#, c-format
msgid "File Selection"
msgstr "Wybór plików"
#: ../../help.pm:1 ../../printer/cups.pm:1 ../../printer/data.pm:1
#, c-format
msgid "CUPS"
msgstr "CUPS"
#: ../../standalone/drakbackup:1
#, c-format
msgid "Erase tape before backup"
msgstr "Czyszczenie taśmy przed archiwizacją"
#: ../../standalone/harddrake2:1
#, c-format
msgid "Run config tool"
msgstr "Uruchom narzędzie konfiguracyjne"
#: ../../any.pm:1
#, c-format
msgid "Bootloader installation"
msgstr "Instalacja programu rozruchowego"
#: ../../install_interactive.pm:1
#, c-format
msgid "Root partition size in MB: "
msgstr "Rozmiar partycji root w MB:"
#: ../../install_steps_gtk.pm:1
#, c-format
msgid "This is a mandatory package, it can't be unselected"
msgstr "Ten pakiet jest wymagany, nie można go pominąć"
#: ../../standalone/drakTermServ:1
#, c-format
msgid "Etherboot ISO image is %s"
msgstr "Obraz ISO uruchamialny z sieci to %s"
#: ../../services.pm:1
#, c-format
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
"names to IP addresses."
msgstr ""
"Named (BIND) to serwer nazw domenowych DNS, umożliwiający tłumaczenie nazw "
"komputerów\n"
"na ich adresy IP."
#: ../../lang.pm:1
#, c-format
msgid "Saint Lucia"
msgstr "Saint Lucia"
#: ../../standalone/drakbackup:1
#, c-format
msgid "November"
msgstr "Listopad"
#: ../../standalone/drakconnect:1
#, c-format
msgid "Disconnect..."
msgstr "Rozłącz..."
#: ../../standalone/drakbug:1
#, c-format
msgid "Report"
msgstr "Raport"
#: ../../lang.pm:1
#, c-format
msgid "Palau"
msgstr "Palau"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "level"
msgstr "poziom"
#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, c-format
msgid ""
"All incidents will be followed up by a single qualified MandrakeSoft "
"technical expert."
msgstr ""
"Wszystkie przypadki są prowadzone przez wykwalifikowanego eksperta "
"technicznego MandrakeSoft."
#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "Package Group Selection"
msgstr "Wybór grup pakietów"
#: ../../standalone/drakTermServ:1
#, c-format
msgid ""
"Allow local hardware\n"
"configuration."
msgstr ""
"Włączenie lokalnej\n"
"konfiguracji sprzętu."
#: ../../standalone/drakbackup:1
#, c-format
msgid "Restore Via Network Protocol: %s"
msgstr "Odtwórz korzystając z protokołu sieciowego: %s"
#: ../../modules/interactive.pm:1
#, c-format
msgid "You can configure each parameter of the module here."
msgstr "W tym miejscu można skonfigurować każdy parametr modułu."
#: ../../Xconfig/resolution_and_depth.pm:1
#, c-format
msgid "Choose the resolution and the color depth"
msgstr "Określ rozdzielczość oraz głębię kolorów"
#: ../../standalone/mousedrake:1
#, c-format
msgid "Emulate third button?"
msgstr "Emulować środkowy przycisk?"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid ""
"You can't create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
"First remove a primary partition and create an extended partition."
msgstr ""
"Nie można utworzyć nowej partycji\n"
"(osiągnięto maksymalną liczbę partycji podstawowych).\n"
"Najpierw usuń partycję podstawową i utwórz partycję rozszerzoną."
#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
#: ../../diskdrake/smbnfs_gtk.pm:1
#, c-format
msgid "Mount"
msgstr "Montuj"
#: ../../standalone/drakautoinst:1
#, c-format
msgid "Creating auto install floppy"
msgstr "Tworzenie dyskietki automatycznej instalacji"
#: ../../steps.pm:1
#, c-format
msgid "Install updates"
msgstr "Aktualizacja systemu"
#: ../../standalone/draksplash:1
#, c-format
msgid "text box height"
msgstr "wysokość okienka tekstowego"
#: ../../standalone/drakconnect:1
#, c-format
msgid "State"
msgstr "Stan"
#: ../../standalone/drakfloppy:1
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr "Upewnij się że nośnik jest obecny dla urządzenia %s"
#: ../../any.pm:1
#, c-format
msgid "Enable multiple profiles"
msgstr "Włączyć profile sprzętowe?"
#: ../../fs.pm:1
#, c-format
msgid "Do not interpret character or block special devices on the file system."
msgstr ""
"Bez interpretowania specjalnych urządzeń znakowych lub blokowych w systemie "
"plików."
#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
"Za pomocą tych opcji można zarchiwizować i przywrócić wszystkie pliki\n"
"z katalogu /etc.\n"
#: ../../printer/main.pm:1
#, c-format
msgid "Local printer"
msgstr "Drukarka lokalna"
#: ../../standalone/drakbackup:1
#, c-format
msgid "Files Restored..."
msgstr "Pliki odtworzono..."
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Package selection"
msgstr "Wybór pakietów"
#: ../../lang.pm:1
#, c-format
msgid "Mauritania"
msgstr "Mauretania"
#: ../../standalone/drakgw:1
#, c-format
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the Network that you use "
"for your local network; I will not reconfigure it and I will not touch your "
"DHCP server configuration.\n"
"\n"
"The default DNS entry is the Caching Nameserver configured on the firewall. "
"You can replace that with your ISP DNS IP, for example.\n"
"\t\t \n"
"Otherwise, I can reconfigure your interface and (re)configure a DHCP server "
"for you.\n"
"\n"
msgstr ""
"Można zachować bieżące ustawienia oraz upewnić się, że skonfigurowany został "
"serwer DHCP. W tym przypadku należy sprawdzić czy została pomyślnie "
"odczytana sieć używana dla sieci lokalnej. Nie zostanie ona "
"przekonfigurowana i ustawienia serwera DHCP nie zostaną zmienione.\n"
"\n"
"Domyślny wpis DNS jest cache'ującym serwerem nazw skonfigurowanym na\n"
"zaporze ogniowej. Można zastąpić go np. adresem IP serwera DNS providera.\n"
"\t\t \n"
"Także, można przekonfigurować interfejs oraz (prze)konfigurować serwer "
"DHCP.\n"
"\n"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
"printer: /dev/usb/lp1, ...)."
msgstr ""
"Nie znaleziono drukarki lokalnej! aby zainstalować drukarkę podaj nazwę "
"urządzenia/nazwę pliku w wierszu wejściowym (Porty równoległe: /dev/lp0, /"
"dev/lp1, ..., określa porty LPT1:, LPT2:, ..., 1-sza drukarka USB: /dev/usb/"
"lp0, 2-ga drukarka USB: /dev/usb/lp1, ...)."
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "All primary partitions are used"
msgstr "Wszystkie partycje podstawowe są używane"
#: ../../printer/main.pm:1
#, c-format
msgid "LPD server \"%s\", printer \"%s\""
msgstr "Serwer LPD \"%s\", drukarka \"%s\""
#: ../../network/netconnect.pm:1
#, c-format
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
msgstr ""
"Po zakończeniu zalecane jest ponowne uruchomienie X w celu pominięcia "
"problemów wynikających ze zmianą nazwy komputera."
#: ../../services.pm:1
#, c-format
msgid "Automatic detection and configuration of hardware at boot."
msgstr "Automatyczne wykrywanie i konfiguracja sprzętu przy uruchomieniu"
#: ../../standalone/drakpxe:1
#, c-format
msgid "Installation Server Configuration"
msgstr "Konfiguracja serwera instalacyjnego"
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Configuring IDE"
msgstr "Konfiguracja IDE"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Network functionality not configured"
msgstr "Opcje sieciowe nie zostały skonfigurowane"
#: ../../standalone/harddrake2:1
#, c-format
msgid "Configure module"
msgstr "Konfiguracja modułu"
#: ../../lang.pm:1
#, c-format
msgid "Cocos (Keeling) Islands"
msgstr "Wyspa Kokosowa (Keeling)"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "You'll need to reboot before the modification can take place"
msgstr "Należy ponownie uruchomić komputer przed uaktywnieniem zmian"
#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Provider phone number"
msgstr "Numer telefonu dostawcy usług"
#: ../../printer/main.pm:1
#, c-format
msgid "Host %s"
msgstr "Komputer %s"
#: ../../lang.pm:1
#, c-format
msgid "Fiji"
msgstr "Fidżi"
#: ../../lang.pm:1
#, c-format
msgid "Armenia"
msgstr "Armenia"
#: ../../any.pm:1
#, c-format
msgid "Second floppy drive"
msgstr "Druga stacja dyskietek"
#: ../../standalone/harddrake2:1
#, c-format
msgid "About Harddrake"
msgstr "Informacje o Harddrake"
#: ../../security/l10n.pm:1
#, c-format
msgid "Authorize TCP connections to X Window"
msgstr "Autoryzacja połączeń TCP X Window"
#: ../../standalone/harddrake2:1
#, c-format
msgid "Drive capacity"
msgstr "Funkcje sterownika"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
msgstr ""
"Włóż dyskietkę do stacji.\n"
"Wszystkie zapisane na niej dane zostaną utracone"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Size: %s"
msgstr "Rozmiar: %s"
#: ../../keyboard.pm:1
#, c-format
msgid "Control and Shift keys simultaneously"
msgstr "Równocześnie klawisze Control i Shift"
#: ../../standalone/harddrake2:1
#, c-format
msgid "secondary"
msgstr "drugorzędny"
#: ../../standalone/drakbackup:1
#, c-format
msgid "View Backup Configuration."
msgstr "Podgląd konfiguracji archiwum."
#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, report check result to syslog."
msgstr ""
"jeśli ustawiono na tak, przesyła wyniki sprawdzenia do dziennika systemowego."
#. -PO: keep this short or else the buttons will not fit in the window
#: ../../help.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "No password"
msgstr "Bez hasła"
#: ../../lang.pm:1
#, c-format
msgid "Nigeria"
msgstr "Nigeria"
#: ../../standalone/drakTermServ:1
#, c-format
msgid "%s: %s requires hostname...\n"
msgstr "%s: %s wymaga nazwy komputera...\n"
#: ../../install_interactive.pm:1
#, c-format
msgid "There is no existing partition to use"
msgstr "Brak istniejących partycji do wykorzystania"
#: ../../standalone/scannerdrake:1
#, c-format
msgid ""
"The following scanners\n"
"\n"
"%s\n"
"are available on your system.\n"
msgstr ""
"Poniższe skanery\n"
"\n"
"%s\n"
"są bezpośrednio dostępne w systemie.\n"
#: ../../printer/main.pm:1
#, c-format
msgid "Multi-function device on parallel port #%s"
msgstr "Wielofunkcyjne urządzenie podłączone do portu równoległego #%s"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"To print to a TCP or socket printer, you need to provide the host name or IP "
"of the printer and optionally the port number (default is 9100). On HP "
"JetDirect servers the port number is usually 9100, on other servers it can "
"vary. See the manual of your hardware."
msgstr ""
"By drukować na drukarce TCP lub gniazda, należy podać nazwę komputera lub "
"adres IP drukarki oraz opcjonalnie numer portu (domyślnie 9100). W przypadku "
"serwerów HP JetDirect numerem portu jest najczęściej 9100, w przypadku "
"innych serwerów numery portów mogą się różnić. Zajrzyj do instrukcji sprzętu."
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Hard drive information"
msgstr "Informacje o twardym dysku"
#: ../../keyboard.pm:1
#, c-format
msgid "Russian"
msgstr "rosyjski"
#: ../../lang.pm:1
#, c-format
msgid "Jordan"
msgstr "Jordania"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Hide files"
msgstr "Ukryj pliki"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Auto-detect printers connected to this machine"
msgstr "Automatycznie wykryj drukarki podłączone do komputera"
#: ../../standalone/drakxtv:1
#, c-format
msgid ""
"XawTV isn't installed!\n"
"\n"
"\n"
"If you do have a TV card but DrakX has neither detected it (no bttv nor "
"saa7134\n"
"module in \"/etc/modules\") nor installed xawtv, please send the\n"
"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
"with subject \"undetected TV card\".\n"
"\n"
"\n"
"You can install it by typing \"urpmi xawtv\" as root, in a console."
msgstr ""
"XawTV nie jest zainstalowany!\n"
"\n"
"\n"
"Jeśli posiadasz kartę telewizyjną lecz instalator jej nie wykrył\n"
"(brak modułu bttv lub saa7134 w \"/etc/modules\") lub też nie został\n"
"zainstalowany xawtv wyślij wynik polecenia \"lspcidrake -v -f\" pod\n"
"adres \"install\\@mandrakesoft.com\" z tematem \"undetected TV card\".\n"
"\n"
"\n"
"Można zainstalować xawtv za pomocą polecenia \"urpmi xawtv\" z konta\n"
"administratora z konsoli."
#: ../../any.pm:1
#, c-format
msgid "Sorry, no floppy drive available"
msgstr "Niestety, stacja dyskietek jest niedostępna."
#: ../../lang.pm:1
#, c-format
msgid "Bolivia"
msgstr "Boliwia"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
"protocol and set up printing from this machine with the \"%s\" connection "
"type in Printerdrake.\n"
"\n"
msgstr ""
"Należy skonfigurować serwer Windows, aby udostępnić drukarkę dla protokołu "
"IPP oraz ustawić drukowanie z tego komputera za pomocą połączenia typu \"%s"
"\" w Printerdrake.\n"
#: ../../install_steps_gtk.pm:1
#, c-format
msgid "Bad package"
msgstr "Uszkodzony pakiet"
#: ../../share/advertising/07-server.pl:1
#, c-format
msgid ""
"Transform your computer into a powerful Linux server: Web server, mail, "
"firewall, router, file and print server (etc.) are just a few clicks away!"
msgstr ""
"Zmień swój komputer w wydajny serwer linuksowy po kilku kliknięciach myszą "
"uruchamiając serwer www, pocztowy, zaporę ogniową, router, serwer plików i "
"wydruków, ..."
#: ../../security/level.pm:1
#, c-format
msgid "DrakSec Basic Options"
msgstr "Podstawowe opcje DrakSec"
#: ../../standalone/draksound:1
#, c-format
msgid ""
"\n"
"\n"
"\n"
"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
"program. Just type \"sndconfig\" in a console."
msgstr ""
"\n"
"\n"
"\n"
"Uwaga: jeśli posiadasz kartę dźwiękową ISA PnP, należy użyć programu "
"sndconfig. Po prostu wpisz polecenie \"sndconfig\" z konsoli."
#: ../../lang.pm:1
#, c-format
msgid "Romania"
msgstr "Rumunia"
#: ../../standalone/drakperm:1
#, c-format
msgid "Group"
msgstr "Grupa"
#: ../../lang.pm:1
#, c-format
msgid "Canada"
msgstr "Kanada"
#: ../../standalone/scannerdrake:1
#, c-format
msgid "choose device"
msgstr "wybierz urządzenie"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Remove from LVM"
msgstr "Usuń z LVM"
#: ../../help.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "Timezone"
msgstr "Strefa czasowa"
#: ../../keyboard.pm:1
#, c-format
msgid "German"
msgstr "niemiecki"
#: ../../help.pm:1 ../../install_steps_gtk.pm:1 ../../interactive.pm:1
#: ../../ugtk2.pm:1 ../../interactive/newt.pm:1
#: ../../printer/printerdrake.pm:1 ../../standalone/drakbackup:1
#, c-format
msgid "Next ->"
msgstr "Dalej ->"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Turning on this allows to print plain text files in japanese language. Only "
"use this function if you really want to print text in japanese, if it is "
"activated you cannot print accentuated characters in latin fonts any more "
"and you will not be able to adjust the margins, the character size, etc. "
"This setting only affects printers defined on this machine. If you want to "
"print japanese text on a printer set up on a remote machine, you have to "
"activate this function on that remote machine."
msgstr ""
"Włączenie tej funkcji umożliwia wydruk zwykłych plików tekstowych w języku "
"japońskim. Należy jej używać tylko, jeśli naprawdę istnieje potrzeba "
"drukowania tekstów w języku japońskim. Jeśli funkcja ta zostanie włączona, "
"nie będzie można drukować znaków akcentowanych łacińskich czcionek oraz "
"dopasowywać marginesów, wielkości czcionek, itd. Te ustawienia będą miały "
"wpływ jedynie na drukarki zdefiniowane na tym komputerze. Jeśli chcesz "
"drukować teksty w języku japońskim na drukarce skonfigurowanej na zdalnym "
"komputerze, należy na nim aktywować tą funkcję."
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid ""
"\n"
"Chances are, this partition is\n"
"a Driver partition. You should\n"
"probably leave it alone.\n"
msgstr ""
"\n"
"Istnieje możliwość, że ta partycja\n"
"jest partycją sterowania (Driver partition).\n"
"Lepiej zostawić ją w spokoju.\n"
#: ../../lang.pm:1
#, c-format
msgid "Guinea-Bissau"
msgstr "Gwinea-Bissau"
#: ../../Xconfig/monitor.pm:1
#, c-format
msgid "Horizontal refresh rate"
msgstr "Częstotliwość synchronizacji poziomej"
#: ../../standalone/drakperm:1 ../../standalone/printerdrake:1
#, c-format
msgid "Edit"
msgstr "Edycja"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
msgstr ""
"Nie można odmontować tej partycji, gdyż jest używana przez plikopartycję.\n"
"Zacznij od usunięcia plikopartycji."
#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network is accessable after booting your "
"system and correct the configuration using the Mandrake Control Center, "
"section \"Network & Internet\"/\"Connection\", and afterwards set up the "
"printer, also using the Mandrake Control Center, section \"Hardware\"/"
"\"Printer\""
msgstr ""
"Konfiguracja sieci przeprowadzona w trakcie instalacji nie może być teraz "
"uruchomiona. Sprawdź czy sieć jest dostępna po uruchomieniu systemu oraz "
"popraw konfigurację przy użyciu Centrum Sterowania Mandrake, sekcja \"Sieć & "
"Internet\"/\"Połączenie\", a następnie ustaw drukarkę z sekcji \"Sprzęt\"/"
"\"Drukarka\""
#: ../../harddrake/data.pm:1
#, c-format
msgid "USB controllers"
msgstr "Kontrolery USB"
#: ../../Xconfig/various.pm:1
#, c-format
msgid "What norm is your TV using?"
msgstr "W jakim systemie pracuje Twój telewizor?"
#: ../../standalone/drakconnect:1
#, c-format
msgid "Type:"
msgstr "Rodzaj: "
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Share name"
msgstr "Nazwa drukarki"
#: ../../standalone/drakgw:1
#, c-format
msgid "enable"
msgstr "włączyć"
#: ../../install_steps_interactive.pm:1
#, c-format
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
"Łączenie ze stroną Mandrake Linux w celu pobrania listy dostępnych "
"serwerów..."
#: ../../network/netconnect.pm:1
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
"\n"
"%s"
msgstr ""
"Wystąpił problem podczas uruchamiania sieci: \n"
"\n"
"%s"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Remove the loopback file?"
msgstr "Usunąć plikopartycję?"
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Selected size is larger than available space"
msgstr "Wybrany rozmiar przekracza dostępne miejsce"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "NCP server name missing!"
msgstr "Brakuje nazwy serwera NCP!"
#: ../../any.pm:1
#, c-format
msgid "Please choose your country."
msgstr "Wybierz swój kraj."
#: ../../standalone/drakbackup:1
#, c-format
msgid "Hard Disk Backup files..."
msgstr "Pliki archiwum dysku..."
#: ../../keyboard.pm:1
#, c-format
msgid "Laotian"
msgstr "laotański"
#: ../../lang.pm:1
#, c-format
msgid "Samoa"
msgstr "Samoa"
#: ../../services.pm:1
#, c-format
msgid ""
"The rstat protocol allows users on a network to retrieve\n"
"performance metrics for any machine on that network."
msgstr ""
"Protokół rstat umożliwia użytkownikowi sieci monitorowanie\n"
"wydajności innych komputerów w sieci."
#: ../../standalone/scannerdrake:1
#, c-format
msgid "Re-generating list of configured scanners ..."
msgstr "Odświeżanie listy skonfigurowanych skanerów ..."
#: ../../modules/interactive.pm:1
#, c-format
msgid "Module configuration"
msgstr "Konfiguracja modułów"
#: ../../harddrake/data.pm:1
#, c-format
msgid "Scanner"
msgstr "Skaner"
#: ../../Xconfig/test.pm:1
#, c-format
msgid "Warning: testing this graphic card may freeze your computer"
msgstr "Uwaga: testowanie tej karty graficznej może zawiesić komputer"
#: ../../any.pm:1
#, c-format
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"Nazwa użytkownika może składać się tylko z małych liter, cyfr, `-'i `_'"
#: ../../standalone/drakbug:1
#, c-format
msgid "Menudrake"
msgstr "Menudrake"
#: ../../security/level.pm:1
#, c-format
msgid "Welcome To Crackers"
msgstr "Witajcie, włamywacze"
#: ../../modules/interactive.pm:1
#, c-format
msgid "Module options:"
msgstr "Opcje modułu:"
#: ../../share/advertising/11-mnf.pl:1
#, c-format
msgid "Secure your networks with the Multi Network Firewall"
msgstr "Zabezpiecz swoje sieci za pomocą produktu Multi Network Firewall"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Go on without configuring the network"
msgstr "Kontynuuj bez konfiguracji sieci"
#: ../../network/isdn.pm:1
#, c-format
msgid "Abort"
msgstr "Przerwij"
#: ../../standalone/drakbackup:1
#, c-format
msgid "No password prompt on %s at port %s"
msgstr "Brak pytania o hasło na %s na porcie %s"
#: ../../mouse.pm:1
#, c-format
msgid "Kensington Thinking Mouse with Wheel emulation"
msgstr "Kensington Thinking Mouse z emulacją kółka"
#: ../../standalone/scannerdrake:1
#, c-format
msgid "Usage of remote scanners"
msgstr "Korzystanie ze skanerów zdalnych"
#: ../../install_interactive.pm:1
#, c-format
msgid ""
"Your Windows partition is too fragmented. Please reboot your computer under "
"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
"installation."
msgstr ""
"Partycja Windows jest zbyt pofragmentowana. Należy uruchomić komputer pod "
"systemem Windows, uruchomić narzędzie \"defrag\" i następnie ponownie "
"rozpocząć instalację Mandrake Linux."
#: ../../keyboard.pm:1
#, c-format
msgid "Dvorak (Norwegian)"
msgstr "Dvoraka (norweski)"
#: ../../standalone/drakbackup:1
#, c-format
msgid "Hard Disk Backup Progress..."
msgstr "Postęp archiwizacji dysku..."
#: ../../standalone/drakconnect:1 ../../standalone/drakfloppy:1
#, c-format
msgid "Unable to fork: %s"
msgstr "Nie można rozdzielić procesów: %s"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Type: "
msgstr "Rodzaj: "
#: ../../standalone/drakTermServ:1
#, c-format
msgid "<-- Edit Client"
msgstr "<-- Edytuj klienta"
#: ../../standalone/drakfont:1
#, c-format
msgid "no fonts found"
msgstr "nie znaleziono czcionek"
#: ../../help.pm:1 ../../install_steps_interactive.pm:1
#: ../../harddrake/data.pm:1
#, c-format
msgid "Mouse"
msgstr "Mysz"
#: ../../bootloader.pm:1
#, c-format
msgid "not enough room in /boot"
msgstr "brak miejsca na /boot"
#: ../../lang.pm:1
#, c-format
msgid "Liechtenstein"
msgstr "Liechtenstein"
#: ../../network/ethernet.pm:1 ../../network/network.pm:1
#, c-format
msgid "Host name"
msgstr "Nazwa komputera"
#: ../../standalone/draksplash:1
#, c-format
msgid "the color of the progress bar"
msgstr "kolor paska postępu"
#: ../../standalone/drakfont:1
#, c-format
msgid "Suppress Fonts Files"
msgstr "Usuń pliki czcionek"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Add to RAID"
msgstr "Dodaj do RAID"
#: ../../help.pm:1
#, c-format
msgid ""
"You can add additional entries in yaboot for other operating systems,\n"
"alternate kernels, or for an emergency boot image.\n"
"\n"
"For other OSs, the entry consists only of a label and the \"root\"\n"
"partition.\n"
"\n"
"For Linux, there are a few possible options:\n"
"\n"
" * Label: this is the name you will have to type at the yaboot prompt to\n"
"select this boot option.\n"
"\n"
" * Image: this is the name of the kernel to boot. Typically, vmlinux or a\n"
"variation of vmlinux with an extension.\n"
"\n"
" * Root: the \"root\" device or ``/'' for your Linux installation.\n"
"\n"
" * Append: on Apple hardware, the kernel append option is often used to\n"
"assist in initializing video hardware, or to enable keyboard mouse button\n"
"emulation for the missing 2nd and 3rd mouse buttons on a stock Apple mouse.\n"
"The following are some examples:\n"
"\n"
" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
"hda=autotune\n"
"\n"
" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
"\n"
" * Initrd: this option can be used either to load initial modules before\n"
"the boot device is available, or to load a ramdisk image for an emergency\n"
"boot situation.\n"
"\n"
" * Initrd-size: the default ramdisk size is generally 4096 Kbytes. If you\n"
"need to allocate a large ramdisk, this option can be used to specify a\n"
"ramdisk larger than the default.\n"
"\n"
" * Read-write: normally the \"root\" partition is initially mounted as\n"
"read-only, to allow a file system check before the system becomes ``live''.\n"
"You can override the default with this option.\n"
"\n"
" * NoVideo: should the Apple video hardware prove to be exceptionally\n"
"problematic, you can select this option to boot in ``novideo'' mode, with\n"
"native frame buffer support.\n"
"\n"
" * Default: selects this entry as being the default Linux selection,\n"
"selectable by pressing ENTER at the yaboot prompt. This entry will also be\n"
"highlighted with a ``*'' if you press [Tab] to see the boot selections."
msgstr ""
"Można dodać wpisy do yaboota, zarówno dla innych systemów\n"
"operacyjnych, alternatywnych jąder jak i dla awaryjnego obrazu\n"
"jądra.\n"
"\n"
"W przypadku innych systemów, wpis zawiera tylko etykietę oraz\n"
"partycję główną (\"root\")\n"
"\n"
"W przypadku Linuksa istnieje kilka możliwych opcji:\n"
"\n"
" * Etykieta: to jest po prostu nazwa, jaką należy wybrać aby yaboot\n"
"wyświetlił ją przy wyborze opcji uruchamiania;\n"
"\n"
" * Obraz: to jest nazwa jądra do uruchomienia. Typowo, vmlinux lub warianty\n"
"tej nazwy z rozszerzeniem.\n"
"\n"
" * Root: urządzenie główne lub \"/\" dla instalacji linuksa\n"
"\n"
" * Dołącz: w przypadku sprzętu Apple, opcja dołączana do jądra jest\n"
"używana dosyć często do wspomagania inicjacji sprzętu wideo lub do\n"
"włączania emulacji klawisza myszy na klawiaturze przy często brakującym\n"
"2-gim lub 3-cim przycisku myszy Apple. Poniżej przedstawione zostały "
"przykłady:\n"
"\n"
" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
"hda=autotune\n"
"\n"
" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
"\n"
" * Startowy ramdysk: ta opcja może być używana zarówno do wczytania\n"
"modułów inicjacyjnych, zanim będzie dostępne urządzenie uruchamiające\n"
"lub do wczytania obrazu ramdysku w przypadku sytuacji awaryjnej;\n"
"\n"
" * Rozmiar startowego ramdysku: domyślny rozmiar ramdysku to zazwyczaj\n"
"4,096 bajtów. Jeśli wymagany jest większy ramdysk, ta opcja może być\n"
"wykorzystana do określenia wartości większej niż domyślna.\n"
"\n"
" * Zapis-odczyt: zwykle partycja \"root\" jest na początku uruchamiana\n"
"jako read-only (tylko do odczytu) aby umożliwić sprawdzenie systemu plików\n"
"zanim system \"ożyje\". Za pomocą tej opcji można przesłonić tą funkcję.\n"
"\n"
" * Brak wideo: sprzęt video Apple jest problematyczny w użyciu.\n"
"Można wybrać tą opcję aby uruchomić tryb \"novidep\" z\n"
"rodzimą obsługą bufora ramek (ang. frame buffer)\n"
"\n"
" * Domyślny: wybranie tego wpisu powoduje, że określony wybór staje się\n"
"domyślny i można go wybrać poprzez wciśnięcie przycisku \"ENTER\".\n"
"Ten wpis zostanie zaznaczony przez \"*\"; naciśnięcie klawisza [Tab]\n"
"umożliwia wyświetlenie listy wyboru uruchamiania."
#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
msgstr ""
"Drukarka \"%s\" została pomyślnie dodana do Star Office/OpenOffice.org/GIMP."
#: ../../standalone/drakTermServ:1
#, c-format
msgid "No floppy drive available!"
msgstr "Brak dostępnych stacji dyskietek"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"To know about the options available for the current printer read either the "
"list shown below or click on the \"Print option list\" button.%s%s%s\n"
"\n"
msgstr ""
"Aby dowiedzieć się jakie opcje są dostępne dla bieżącej drukarki można je "
"znaleźć na poniższej liście lub po kliknięciu przycisku \"Wydrukuj listę "
"opcji\".%s%s%s\n"
"\n"
#: ../../lang.pm:1
#, c-format
msgid "Saudi Arabia"
msgstr "Arabia Saudyjska"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Continue anyway?"
msgstr "Kontynuować mimo to?"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
"Jeśli drukarka nie została wyświetlona, wybierz zgodną drukarkę (zajrzyj do "
"podręcznika) lub drukarkę podobną."
#: ../../help.pm:1 ../../install_steps_interactive.pm:1
#: ../../harddrake/data.pm:1 ../../printer/printerdrake.pm:1
#, c-format
msgid "Printer"
msgstr "Drukarka"
#: ../../services.pm:1
#, c-format
msgid "Internet"
msgstr "Internet"
#: ../../standalone/service_harddrake:1
#, c-format
msgid "Some devices were added:\n"
msgstr "Niektóre urządzenia zostały dodane:\n"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometria: %s cylindrów, %s głowic, %s sektorów\n"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printing on the printer \"%s\""
msgstr "Drukowanie na drukarce \"%s\""
#: ../../standalone/drakTermServ:1
#, c-format
msgid "/etc/hosts.allow and /etc/hosts.deny already configured - not changed"
msgstr ""
"Pliki /etc/hosts.allow i /etc/hosts.deny już skonfigurowano - nie zostały on "
"zmienione"
#: ../../standalone/drakbackup:1
#, c-format
msgid "Restore From Tape"
msgstr "Przywróć z taśmy"
#: ../../network/netconnect.pm:1
#, c-format
msgid "Choose the profile to configure"
msgstr "Wybierz profil do konfiguracji"
#: ../../security/l10n.pm:1
#, c-format
msgid "Password minimum length and number of digits and upcase letters"
msgstr "Minimalna długość hasła i liczba cyfr oraz wielkich liter"
#: ../../network/ethernet.pm:1 ../../network/network.pm:1
#, c-format
msgid ""
"\n"
"\n"
"Enter a Zeroconf host name without any dot if you don't\n"
"want to use the default host name."
msgstr ""
"\n"
"\n"
"Podaj nazwę komputera zeroconf nie zawierającą żadnych\n"
"kropek jeśli nie chcesz używać domyślnej nazwy."
#: ../../standalone/drakbackup:1
#, c-format
msgid "Backup Now from configuration file"
msgstr "Archiwizuj teraz z pliku konfiguracyjnego"
#: ../../fsedit.pm:1
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr "Punkty montowania powinny składać się ze znaków alfanumerycznych"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Restarting printing system..."
msgstr "Ponowne uruchamianie systemu wydruku..."
#: ../../modules/interactive.pm:1
#, c-format
msgid "See hardware info"
msgstr "Wyświetl informacje o sprzęcie"
#: ../../standalone/drakbackup:1
#, c-format
msgid "Day"
msgstr "Dzień"
#: ../../any.pm:1
#, c-format
msgid "First sector of boot partition"
msgstr "Pierwszy sektor na partycji rozruchowej"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printer manufacturer, model"
msgstr "Producent drukarki, model"
#: ../../printer/data.pm:1
#, c-format
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Print, Don't Queue"
#: ../../standalone.pm:1
#, c-format
msgid ""
"[OPTIONS]...\n"
"Mandrake Terminal Server Configurator\n"
"--enable : enable MTS\n"
"--disable : disable MTS\n"
"--start : start MTS\n"
"--stop : stop MTS\n"
"--adduser : add an existing system user to MTS (requires username)\n"
"--deluser : delete an existing system user from MTS (requires "
"username)\n"
"--addclient : add a client machine to MTS (requires MAC address, IP, "
"nbi image name)\n"
"--delclient : delete a client machine from MTS (requires MAC address, "
"IP, nbi image name)"
msgstr ""
"[OPCJE]...\n"
"Konfigurator Serwera Terminali Mandrake\n"
"--enable : włącza MTS\n"
"--disable : wyłącza MTS\n"
"--start : uruchamia MTS\n"
"--stop : zatrzymuje MTS\n"
"--adduser : dodaje istniejącego użytkownika do MTS (wymaga nazwy)\n"
"--deluser : usuwa istniejącego użytkownika z MTS (wymaga nazwy)\n"
"--addclient : dodaje maszynę klienta do MTS (wymaga adresu MAC, IP, "
"nazwy obrazu nbi)\n"
"--delclient : usuwa maszynę klienta z MTS (wymaga adresu MAC, IP, nazwy "
"obrazu nbi)"
#: ../../standalone/drakTermServ:1
#, c-format
msgid "Subnet Mask:"
msgstr "Maska podsieci:"
#: ../../security/l10n.pm:1
#, c-format
msgid "Set password expiration and account inactivation delays"
msgstr "Ustaw termin ważności hasła oraz opóźnienie deaktywacji konta"
#: ../../standalone/logdrake:1
#, c-format
msgid ""
"_: load here is a noun, the load of the system\n"
"Load"
msgstr ""
"_: load oznacza tutaj rzeczownik, obciążenie systemu\n"
"Obciążenie"
#: ../../Xconfig/monitor.pm:1
#, c-format
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
"at which the whole screen is refreshed, and most importantly the horizontal\n"
"sync rate, which is the rate at which scanlines are displayed.\n"
"\n"
"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
"range\n"
"that is beyond the capabilities of your monitor: you may damage your "
"monitor.\n"
" If in doubt, choose a conservative setting."
msgstr ""
"Dwa krytyczne parametry to częstotliwość synchronizacji pionowej,\n"
"która określa, jak często odświeżany jest cały ekran oraz najbardziej "
"istotny\n"
"- częstotliwość synchronizacji poziomej - rysowania linii.\n"
"\n"
"Jest BARDZO WAŻNE aby nie podać typu monitora o większym zakresie\n"
"częstotliwości odchylania niż możliwości twojego monitora,\n"
"ponieważ może to spowodować jego uszkodzenie.\n"
"Jeśli masz wątpliwości, wybierz zachowawcze ustawienia."
#: ../../help.pm:1 ../../interactive.pm:1 ../../interactive/gtk.pm:1
#, c-format
msgid "Modify"
msgstr "Modyfikuj"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"\n"
"The \"%s\" and \"%s\" commands also allow to modify the option settings for "
"a particular printing job. Simply add the desired settings to the command "
"line, e. g. \"%s <file>\".\n"
msgstr ""
"\n"
"Polecenia \"%s\" i \"%s\" także umożliwia modyfikację ustawień dla "
"określonego zadania drukowania. Po prostu należy dodać odpowiedni wpis w "
"wierszu poleceń, np. \"%s <plik>\".\n"
#: ../../standalone/drakbackup:1
#, c-format
msgid "Need hostname, username and password!"
msgstr "Potrzebna jest nazwa komputera, użytkownika i hasło!"
#: ../../network/adsl.pm:1
#, c-format
msgid "Insert floppy"
msgstr "Włóż dyskietkę"
#: ../../diskdrake/dav.pm:1
#, c-format
msgid ""
"WebDAV is a protocol that allows you to mount a web server's directory\n"
"locally, and treat it like a local filesystem (provided the web server is\n"
"configured as a WebDAV server). If you would like to add WebDAV mount\n"
"points, select \"New\"."
msgstr ""
"WebDAV jest protokołem umożliwiającym montowanie katalogu serwera www\n"
"lokalnie, oraz traktowany on jest jak lokalny system plików\n"
"(zakładając, że serwer webowy jest skonfigurowany jako serwer WebDAV).\n"
"Jeśli chcesz dodać punkty montowania WebDAV, wybierz \"Nowy\"."
#: ../../standalone/drakbug:1
#, c-format
msgid "HardDrake"
msgstr "Harddrake"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "new"
msgstr "nowy"
#: ../../security/help.pm:1
#, c-format
msgid "Enable/Disable syslog reports to console 12"
msgstr ""
"Włączenie/wyłączenie przesyłania informacji dziennika systemu do konsoli 12"
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Would you like to try again?"
msgstr "Czy chcesz spróbować jeszcze raz?"
#: ../../help.pm:1 ../../diskdrake/hd_gtk.pm:1
#, c-format
msgid "Wizard"
msgstr "Druid"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Edit selected server"
msgstr "Edycja wybranego serwera"
#: ../../standalone/drakbackup:1
#, c-format
msgid "Please choose where you want to backup"
msgstr "Wybierz gdzie chcesz tworzyć archiwum"
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Należy ponownie uruchomić komputer w celu uaktywnienia zmian w tablicy "
"partycji"
#: ../../standalone/drakbackup:1
#, c-format
msgid "Do not include the browser cache"
msgstr "Nie dołączaj plików podręcznych przeglądarki"
#: ../../install_steps_interactive.pm:1
#, c-format
msgid ""
"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
"you can lose data)"
msgstr ""
"Błąd podczas sprawdzania systemu plików %s. Czy chcesz naprawić błędy? "
"(uwaga - możesz utracić dane)"
#: ../../standalone/keyboarddrake:1
#, c-format
msgid "Please, choose your keyboard layout."
msgstr "Wybierz układ klawiatury."
#: ../../mouse.pm:1 ../../security/level.pm:1
#, c-format
msgid "Standard"
msgstr "Standardowy"
#: ../../standalone/mousedrake:1
#, c-format
msgid "Please choose your mouse type."
msgstr "Wybierz typ myszy."
#: ../../standalone/drakconnect:1
#, c-format
msgid "Connect..."
msgstr "Połącz..."
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Failed to configure printer \"%s\"!"
msgstr "Konfigurowanie drukarki \"%s\" zakończone niepowodzeniem!"
#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "not configured"
msgstr "nie skonfigurowano"
#: ../../network/isdn.pm:1
#, c-format
msgid "ISA / PCMCIA"
msgstr "ISA / PCMCIA"
#: ../../standalone/drakfont:1
#, c-format
msgid "About"
msgstr "Informacje"
#: ../../network/network.pm:1
#, c-format
msgid "Proxies configuration"
msgstr "Konfiguracja pośredników (proxy)"
#: ../../mouse.pm:1
#, c-format
msgid "GlidePoint"
msgstr "GlidePoint"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Start: sector %s\n"
msgstr "Początek: sektor %s\n"
#: ../../standalone/drakconnect:1
#, c-format
msgid "No Mask"
msgstr "Brak maski"
#: ../../standalone/drakgw:1
#, c-format
msgid "Network interface already configured"
msgstr "Interfejs sieciowy już został skonfigurowany"
#: ../../standalone/drakTermServ:1
#, c-format
msgid "Couldn't access the floppy!"
msgstr "Brak dostępu do dyskietki!"
#: ../../standalone/drakbug:1
#, c-format
msgid "connecting to Bugzilla wizard ..."
msgstr "nawiązywanie połączenia z druidem Bugzilli ..."
#: ../../network/drakfirewall.pm:1
#, c-format
msgid "Mail Server"
msgstr "Serwer pocztowy"
#: ../../diskdrake/hd_gtk.pm:1
#, c-format
msgid "Please click on a partition"
msgstr "Kliknij na partycję"
#: ../../printer/main.pm:1
#, c-format
msgid "Multi-function device on HP JetDirect"
msgstr "Wielofunkcyjne urządzenie podłączone do HP JetDirect"
#: ../../any.pm:1 ../../standalone/drakbackup:1
#, c-format
msgid "Linux"
msgstr "Linux"
#: ../../standalone/drakxtv:1
#, c-format
msgid "Have a nice day!"
msgstr "Miłego dnia!"
#: ../../help.pm:1
#, c-format
msgid "/dev/fd0"
msgstr "/dev/fd0"
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Upgrade %s"
msgstr "Uaktualnienie %s"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Select Printer Connection"
msgstr "Wybierz sposób podłączenia drukarki"
#: ../../standalone/drakxtv:1
#, c-format
msgid "Scanning for TV channels in progress ..."
msgstr "Trwa przeszukiwanie kanałów TV ..."
#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
"Błąd podczas przesyłania pliku przez FTP.\n"
" Popraw konfigurację FTP."
#: ../../standalone/drakTermServ:1
#, c-format
msgid "IP Range Start:"
msgstr "Początek zakresu IP:"
#: ../../services.pm:1
#, c-format
msgid ""
"The internet superserver daemon (commonly called inetd) starts a\n"
"variety of other internet services as needed. It is responsible for "
"starting\n"
"many services, including telnet, ftp, rsh, and rlogin. Disabling inetd "
"disables\n"
"all of the services it is responsible for."
msgstr ""
"Internetowy (super)demon, zwany inetd startuje wiele usług internetowych,\n"
"takich jak telnet, ftp, rsh i rlogin.\n"
" Wyłączenie go uniemożliwia korzystanie z tych usług."
#: ../../standalone/draksplash:1
#, c-format
msgid "the height of the progress bar"
msgstr "wysokość paska postępu"
#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"\n"
"- Save via %s on host: %s\n"
msgstr ""
"\n"
"- Zapis przez %s na komputerze: %s\n"
#: ../../lang.pm:1 ../../standalone/drakxtv:1
#, c-format
msgid "Argentina"
msgstr "Argentyna"
#: ../../network/drakfirewall.pm:1
#, c-format
msgid "Domain Name Server"
msgstr "Serwer DNS"
#: ../../standalone/draksec:1
#, c-format
msgid "Security Level:"
msgstr "Poziom bezpieczeństwa:"
#: ../../fsedit.pm:1
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "Punkty montowania muszą zaczynać się od /"
#: ../../standalone/drakbackup:1
#, c-format
msgid "Choose your CD/DVD device"
msgstr "Wybierz swoje urządzenie CD/DVD"
#: ../../standalone/logdrake:1
#, c-format
msgid "Postfix Mail Server"
msgstr "Serwer pocztowy Postfix"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Quit without saving"
msgstr "Wyjście bez zapisywania"
#: ../../lang.pm:1
#, c-format
msgid "Yemen"
msgstr "Jemen"
#: ../../share/advertising/11-mnf.pl:1
#, c-format
msgid "This product is available on the MandrakeStore Web site."
msgstr "Produkt ten jest dostępny na stronach MandrakeStore."
#: ../../interactive/stdio.pm:1
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr "=> Istnieje wiele rzeczy które można wybrać z (%s).\n"
#: ../../steps.pm:1
#, c-format
msgid "Hard drive detection"
msgstr "Wykrywanie dysków"
#: ../../install_steps_interactive.pm:1
#, c-format
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
"Nie wybrano żadnej grupy pakietów.\n"
"Wybierz minimalną żądaną instalację:"
#: ../../network/adsl.pm:1
#, c-format
msgid ""
"You need the Alcatel microcode.\n"
"You can provide it now via a floppy or your windows partition,\n"
"or skip and do it later."
msgstr ""
"Wymagany jest mikrokod Alcatel.\n"
"Można go podać przy użyciu dyskietki lub ze swoich partycji\n"
"windows. Można także pominąć ten krok i uczynić to później."
#: ../../diskdrake/dav.pm:1
#, c-format
msgid "Please enter the WebDAV server URL"
msgstr "Podaj adres URL serwera WebDAV"
#: ../../lang.pm:1
#, c-format
msgid "Tajikistan"
msgstr "Tadżykistan"
#: ../../help.pm:1 ../../install_steps_gtk.pm:1
#: ../../install_steps_interactive.pm:1 ../../standalone/drakautoinst:1
#, c-format
msgid "Accept"
msgstr "Akceptuj"
#: ../../printer/printerdrake.pm:1 ../../standalone/harddrake2:1
#: ../../standalone/printerdrake:1
#, c-format
msgid "Description"
msgstr "Opis"
#: ../../fsedit.pm:1
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Błąd otwarcia %s do zapisu: %s"
#: ../../Xconfig/various.pm:1
#, c-format
msgid "Mouse type: %s\n"
msgstr "Typ myszy: %s\n"
#: ../../Xconfig/card.pm:1
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "Dla Twojej karty akceleracja 3D jest obsługiwana tylko przez XFree %s."
#: ../../Xconfig/monitor.pm:1
#, c-format
msgid "Choose a monitor"
msgstr "Wybierz monitor"
#: ../../any.pm:1
#, c-format
msgid "Empty label not allowed"
msgstr "Pusta etykieta jest niedozwolona"
#: ../../keyboard.pm:1
#, c-format
msgid "Maltese (UK)"
msgstr "maltański (UK)"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "I can't add any more partition"
msgstr "Nie można dodać więcej partycji"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Size in MB: "
msgstr "Rozmiar w MB: "
#: ../../printer/main.pm:1
#, c-format
msgid "Remote printer"
msgstr "Drukarka sieciowa"
#: ../../any.pm:1
#, c-format
msgid "Please choose a language to use."
msgstr "Wybierz język używany w systemie."
#: ../../network/network.pm:1
#, c-format
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
"Simply accept to keep this device configured.\n"
"Modifying the fields below will override this configuration."
msgstr ""
"OSTRZEŻENIE: Urządzenie to zostało poprzednio skonfigurowane do połączenia z "
"Internetem.\n"
"Naciśnij po prostu OK by zachować konfigurację.\n"
"Modyfikacja poniższych pól spowoduje nadpisanie istniejącej konfiguracji."
#: ../../any.pm:1
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"Można skonfigurować komputer, by automatycznie logował użytkownika w "
"systemie."
#: ../../standalone/harddrake2:1
#, c-format
msgid "Floppy format"
msgstr "Format dyskietek"
#: ../../standalone/drakfont:1
#, c-format
msgid "Generic Printers"
msgstr "Typowe drukarki"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Please choose the printer to which the print jobs should go or enter a "
"device name/file name in the input line"
msgstr ""
"Wybierz drukarkę, na której ma zostać wykonany wydruk lub podaj nazwę "
"urządzenia/pliku w wierszu wejściowym"
#: ../../standalone/scannerdrake:1
#, c-format
msgid "The scanners on this machine are available to other computers"
msgstr "Skanery na tej maszynie są dostępne dla innych komputerów"
#: ../../any.pm:1
#, c-format
msgid "First sector of the root partition"
msgstr "Pierwszy sektor głównej partycji"
#: ../../standalone/harddrake2:1
#, c-format
msgid "Alternative drivers"
msgstr "Alternatywne sterowniki"
#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
"\n"
"Zaznacz wszystkie opcje, których potrzebujesz.\n"
#: ../../any.pm:1
#, c-format
msgid "Initrd"
msgstr "Startowy ramdysk"
#: ../../lang.pm:1
#, c-format
msgid "Cape Verde"
msgstr "Cape Verde"
#: ../../standalone/harddrake2:1
#, c-format
msgid "whether this cpu has the Cyrix 6x86 Coma bug"
msgstr "czy ten procesor posiada błąd przecinka Cyrix 6x86"
#: ../../standalone/printerdrake:1
#, c-format
msgid "Loading printer configuration... Please wait"
msgstr "Wczytywanie konfiguracji drukarki... proszę czekać"
#: ../../standalone/harddrake2:1
#, c-format
msgid "early pentiums were buggy and freezed when decoding the F00F bytecode"
msgstr ""
"wczesne wersje pentium posiadały błędy i zawieszały system podczas "
"wykonywania kodu bajtowego F00F"
#: ../../lang.pm:1
#, c-format
msgid "Guam"
msgstr "Guam"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Please choose the port that your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
"Wybierz port, do którego jest podłączona drukarka lub wprowadź nazwę "
"urządzenia/nazwę pliku"
#: ../../standalone/logdrake:1
#, c-format
msgid "/Options/Test"
msgstr "/Opcje/Test"
#: ../../security/level.pm:1
#, c-format
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive. It must not be used for a machine connected to others\n"
"or to the Internet. There is no password access."
msgstr ""
"Ten poziom powinien być używany ostrożnie. Co prawda system jest łatwiejszy\n"
"do używania, ale jest też bardziej wrażliwy i mniej bezpieczny, szczególnie "
"dla \n"
"maszyn pracujących w Internecie. Nie ma zabezpieczenia hasłem!"
#: ../../fs.pm:1
#, c-format
msgid "Mounting partition %s"
msgstr "Montowanie partycji %s"
#: ../../any.pm:1 ../../help.pm:1 ../../printer/printerdrake.pm:1
#, c-format
msgid "User name"
msgstr "Identyfikator:"
#: ../../standalone/drakbug:1
#, c-format
msgid "Userdrake"
msgstr "Userdrake"
#: ../../install_interactive.pm:1
#, c-format
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Którą partycję chcesz użyć dla Linux4Win?"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Test pages"
msgstr "Strony testowe"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Logical volume name "
msgstr "Nazwa wolumenu logicznego"
#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
"Lista danych do odtworzenia:\n"
"\n"
#: ../../fs.pm:1
#, c-format
msgid "Checking %s"
msgstr "Sprawdzanie %s"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "TCP/Socket Printer Options"
msgstr "Opcje drukarki TCP/Gniazdo"
#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Card mem (DMA)"
msgstr "DMA karty"
#: ../../standalone/net_monitor:1
#, c-format
msgid "Disconnecting from Internet "
msgstr "Rozłączanie od Internetu "
#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
#, c-format
msgid "France"
msgstr "Francja"
#: ../../standalone/drakperm:1
#, c-format
msgid "browse"
msgstr "przeglądaj"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Checking installed software..."
msgstr "Sprawdzanie zainstalowanego oprogramowania"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Remote printer name missing!"
msgstr "Nie podano nazwy zdalnej drukarki!"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Do you want to enable printing on printers in the local network?\n"
msgstr "Czy chcesz umożliwić drukowanie na drukarkach sieciowych?\n"
#: ../../lang.pm:1
#, c-format
msgid "Turkey"
msgstr "Turcja"
#: ../../network/adsl.pm:1
#, c-format
msgid "Alcatel speedtouch usb"
msgstr "Alcatel speedtouch usb"
#: ../../standalone/harddrake2:1
#, c-format
msgid "Number of buttons"
msgstr "Liczba przycisków"
#: ../../keyboard.pm:1
#, c-format
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "wietnamski QWERTY"
#: ../../standalone/harddrake2:1
#, c-format
msgid "Module"
msgstr "Moduł"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
"Dodatkowo, kolejki nie utworzone za pomocą tego programu lub \"foomatic-"
"configure\" nie mogą zostać przesłane."
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Hardware"
msgstr "Sprzęt"
#: ../../keyboard.pm:1
#, c-format
msgid "Ctrl and Alt keys simultaneously"
msgstr "Równocześnie klawisze Ctrl i Alt"
#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
#, c-format
msgid "United States"
msgstr "Stany Zjednoczone"
#: ../../security/l10n.pm:1
#, c-format
msgid "User umask"
msgstr "Maska użytkownika"
#: ../../any.pm:1
#, c-format
msgid "Default OS?"
msgstr "Domyślny system operacyjny?"
#: ../../keyboard.pm:1
#, c-format
msgid "Swiss (German layout)"
msgstr "szwajcarski (układ niemiecki)"
#: ../../Xconfig/card.pm:1
#, c-format
msgid "Configure all heads independently"
msgstr "Konfiguruj wszystkie monitory niezależnie"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Please choose the printer you want to set up. The configuration of the "
"printer will work fully automatically. If your printer was not correctly "
"detected or if you prefer a customized printer configuration, turn on "
"\"Manual configuration\"."
msgstr ""
"Należy wybrać drukarkę do ustawienia. Konfiguracja drukarki zostanie "
"przeprowadzona w pełni automatycznie. Jeśli drukarka nie została poprawnie "
"wykryta lub też wolisz skonfigurować ją ręcznie wybierz opcję \"Ręczna "
"konfiguracja\"."
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "NTP Server"
msgstr "Serwer NTP"
#: ../../security/l10n.pm:1
#, c-format
msgid "Sulogin(8) in single user level"
msgstr "Sulogin(8) na poziomie pojedynczego użytkownika"
#: ../../install_steps_gtk.pm:1
#, c-format
msgid "Load/Save on floppy"
msgstr "Odczytaj/Zapisz na dyskietkę"
#: ../../standalone/draksplash:1
#, c-format
msgid "This theme does not yet have a bootsplash in %s !"
msgstr "Ten temat nie posiada jeszcze ekranu powitalnego w %s!"
#: ../../pkgs.pm:1
#, c-format
msgid "nice"
msgstr "fajny"
#: ../../Xconfig/test.pm:1
#, c-format
msgid "Leaving in %d seconds"
msgstr "Opuszczanie w ciągu %d sekund(y)"
#: ../../network/modem.pm:1
#, c-format
msgid "Please choose which serial port your modem is connected to."
msgstr "Wskaż port szeregowy, do którego podłączony jest modem."
#: ../../standalone/drakperm:1
#, c-format
msgid "Property"
msgstr "Właściwość"
#: ../../standalone/drakfont:1
#, c-format
msgid "Ghostscript"
msgstr "Ghostscript"
#: ../../standalone/drakconnect:1
#, c-format
msgid "LAN Configuration"
msgstr "Konfiguracja sieci lokalnej"
#: ../../lang.pm:1
#, c-format
msgid "Ghana"
msgstr "Ghana"
#: ../../standalone/drakbackup:1
#, c-format
msgid "Path or Module required"
msgstr "Wymagana ścieżka lub moduł"
#: ../../standalone/drakfont:1
#, c-format
msgid "Advanced Options"
msgstr "Zaawansowane opcje"
#: ../../standalone/drakbackup:1
#, c-format
msgid "View Configuration"
msgstr "Podgląd konfiguracji"
#: ../../standalone/harddrake2:1
#, c-format
msgid "Coma bug"
msgstr "Błąd przecinka"
#: ../../help.pm:1
#, c-format
msgid ""
"At this point, you need to choose which partition(s) will be used for the\n"
"installation of your Mandrake Linux system. If partitions have already been\n"
"defined, either from a previous installation of GNU/Linux or by another\n"
"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
"partitions must be defined.\n"
"\n"
"To create partitions, you must first select a hard drive. You can select\n"
"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
"\n"
"To partition the selected hard drive, you can use these options:\n"
"\n"
" * \"%s\": this option deletes all partitions on the selected hard drive\n"
"\n"
" * \"%s\": this option enables you to automatically create ext3 and swap\n"
"partitions in the free space of your hard drive\n"
"\n"
"\"%s\": gives access to additional features:\n"
"\n"
" * \"%s\": saves the partition table to a floppy. Useful for later\n"
"partition-table recovery if necessary. It is strongly recommended that you\n"
"perform this step.\n"
"\n"
" * \"%s\": allows you to restore a previously saved partition table from a\n"
"floppy disk.\n"
"\n"
" * \"%s\": if your partition table is damaged, you can try to recover it\n"
"using this option. Please be careful and remember that it doesn't always\n"
"work.\n"
"\n"
" * \"%s\": discards all changes and reloads the partition table that was\n"
"originally on the hard drive.\n"
"\n"
" * \"%s\": unchecking this option will force users to manually mount and\n"
"unmount removable media such as floppies and CD-ROMs.\n"
"\n"
" * \"%s\": use this option if you wish to use a wizard to partition your\n"
"hard drive. This is recommended if you do not have a good understanding of\n"
"partitioning.\n"
"\n"
" * \"%s\": use this option to cancel your changes.\n"
"\n"
" * \"%s\": allows additional actions on partitions (type, options, format)\n"
"and gives more information about the hard drive.\n"
"\n"
" * \"%s\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
"\n"
"When defining the size of a partition, you can finely set the partition\n"
"size by using the Arrow keys of your keyboard.\n"
"\n"
"Note: you can reach any option using the keyboard. Navigate through the\n"
"partitions using [Tab] and the [Up/Down] arrows.\n"
"\n"
"When a partition is selected, you can use:\n"
"\n"
" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
"\n"
" * Ctrl-d to delete a partition\n"
"\n"
" * Ctrl-m to set the mount point\n"
"\n"
"To get information about the different file system types available, please\n"
"read the ext2FS chapter from the ``Reference Manual''.\n"
"\n"
"If you are installing on a PPC machine, you will want to create a small HFS\n"
"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
"may find it a useful place to store a spare kernel and ramdisk images for\n"
"emergency boot situations."
msgstr ""
"W tym etapie instalacji wybierasz partycje, na których będzie instalowany\n"
"Mandrake Linux. Jeśli istnieją (np. pozostały po poprzedniej instalacji,\n"
"lub też zostały założone innym narzędziem), można ich użyć do instalacji.\n"
"W innym przypadku należy je utworzyć. Operacja ta polega na logicznym\n"
"podziale dysku twardego komputera na na oddzielne obszary.\n"
"\n"
"Utworzenie partycji należy rozpocząć od wybrania dysku. Robi się to przez\n"
"kliknięcie na zakładce \"hda\" dla pierwszego dysku IDE, \"hdb\" dla "
"drugiego,\n"
"lub \"sda1\" dla pierwszego dysku SCSI, itd.\n"
"\n"
"W celu podzielenia dysku na partycje można użyć następujących opcji:\n"
"\n"
" * \"%s\": ta opcja kasuje wszystkie partycje na wybranym\n"
" dysku.\n"
"\n"
" * \"%s\": ta opcja automatycznie tworzy partycje\n"
" ext2 oraz swap na wolnej (niespartycjonowanej) przestrzeni na dysku\n"
"\n"
" * \"%s\": daje dostęp do dodatkowych opcji:\n"
"\n"
" * \"%s\": zapisuje tablicę partycji na dyskietkę.\n"
" Opcja ta jest użyteczna w przypadku konieczności odzyskania tablicy\n"
" w późniejszym czasie. Zalecane jest wykonanie tego kroku.\n"
"\n"
" * \"%s\": jeśli tablica partycji została\n"
" uszkodzona można spróbować ją naprawić. Należy pamiętać że opcja ta\n"
" może zakończyć się niepowodzeniem.\n"
"\n"
" * \"%s\": pozwala na przywrócenie poprzednio\n"
" zapisanej na dyskietce tablicy partycji.\n"
"\n"
" * \"%s\": porzuca wszelkie zmiany i wczytuje\n"
" początkową tablicę partycji.\n"
"\n"
" * \"%s\": odznaczenie tej opcji\n"
" powoduje, że konieczność ręcznego montowania napędów jak stacje\n"
" dyskietek czy napędy CD.\n"
"\n"
" * \"%s\": jeśli chcesz skorzystać z druida aby wykonać proces\n"
" partycjonowania dysku. Opcja zalecana w przypadku gdy użytkownik nie\n"
" posiada wiedzy dotyczącej partycjonowania dysków.\n"
"\n"
" * \"%s\": Użyj tej opcji jeśli chcesz wycofać wszystkie zmiany\n"
"\n"
" * \"%s\": umożliwia uzyskanie\n"
" dostępu do dodatkowych akcji dotyczących dysku (typy, opcje, formaty)\n"
" oraz podaje więcej informacji.\n"
"\n"
" * \"%s\": Jeśli proces partycjonowania został zakończony, opcja ta\n"
" zapisze zmiany na dysk.\n"
"\n"
"Uwaga: Można uzyskać dostęp do tych opcji za pomocą klawiatury, przy pomocy\n"
"klawiszy [Tab] oraz strzałek [Góra/Dół].\n"
"\n"
"Po wybraniu partycji można użyć klawiszy:\n"
"\n"
" * Control-c aby utworzyć nową partycję (jeśli wybrano pustą partycję);\n"
"\n"
" * Control-d aby usunąć partycję;\n"
"\n"
" * Control-m aby ustawić punkt montowania;\n"
"\n"
"Aby uzyskać informacje dotyczące różnych dostępnych rodzajów systemów\n"
"plików, należy przeczytać rozdział ext2fs podręcznika.\n"
"\n"
"Jeśli instalacja odbywa się na komputerze PPC, system będzie wymagał\n"
"utworzenia małej partycji HFS \"rozruchowej\" (bootstrap) o wielkości\n"
"co najmniej 1MB, która będzie używana przez program rozruchowy yaboot.\n"
"Jeśli chcesz aby ta partycja była większa, powiedzmy 50 MB, można\n"
"ją traktować jako użyteczne miejsce np. do przechowywania zapasowego\n"
"jądra oraz obrazów do uniknięcia ewentualnych awarii uniemożliwiających\n"
"rozruch systemu z normalnej partycji."
#: ../../help.pm:1
#, c-format
msgid ""
"Graphic Card\n"
"\n"
" The installer will normally automatically detect and configure the\n"
"graphic card installed on your machine. If it is not the case, you can\n"
"choose from this list the card you actually have installed.\n"
"\n"
" In the case that different servers are available for your card, with or\n"
"without 3D acceleration, you are then asked to choose the server that best\n"
"suits your needs."
msgstr ""
"Karta graficzna\n"
"\n"
" Instalator zazwyczaj automatycznie wykrywa i konfiguruje\n"
"kartę graficzną zainstalowaną na komputerze. Jeśli jednak nie zostanie\n"
"wykryta, można wybrać posiadaną kartę z listy.\n"
"\n"
" W przypadku gdy dla twojej karty dostępne są różne serwery, z lub bez\n"
"akceleracji 3D, zostanie wyświetlona prośba o wybranie serwera\n"
"najlepiej odpowiadającego potrzebom użytkownika."
#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "There was an error installing packages:"
msgstr "Wystąpił błąd podczas instalowania pakietów:"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Lexmark inkjet configuration"
msgstr "Konfiguracja drukarki Lexmark inkjet"
#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
#, c-format
msgid "Undo"
msgstr "Cofnij"
#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
#, c-format
msgid "Save partition table"
msgstr "Zapisz tablicę partycji"
#: ../../keyboard.pm:1
#, c-format
msgid "Finnish"
msgstr "fiński"
#: ../../lang.pm:1
#, c-format
msgid "Macedonia"
msgstr "Macedonia"
#: ../../any.pm:1
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user to this group."
msgstr ""
"Współdzielenie zależne od użytkownika używa grupy \"fileshare\". \n"
"Można użyć programu userdrake aby dodać użytkownika do tej grupy."
#: ../../keyboard.pm:1
#, c-format
msgid "Slovenian"
msgstr "słoweński"
#: ../../security/help.pm:1
#, c-format
msgid ""
"Authorize:\n"
"\n"
"- all services controlled by tcp_wrappers (see hosts.deny(5) man page) if "
"set to \"ALL\",\n"
"\n"
"- only local ones if set to \"LOCAL\"\n"
"\n"
"- none if set to \"NONE\".\n"
"\n"
"To authorize the services you need, use /etc/hosts.allow (see hosts.allow"
"(5))."
msgstr ""
"Autoryzuje:\n"
"\n"
"- wszystkie usługi kontrolowane przez tcp_wrappers (zajrzyj do manuala\n"
"hosts.deny) jeśli wartość wynosi ALL.\n"
"\n"
"- tylko lokalne usługi, jeśli wartość = LOCAL\n"
"\n"
"- żadne jeśli wartość = NONE.\n"
"\n"
"Aby zautoryzować potrzebne usługi, wykorzystaj plik /etc/hosts.allow\n"
"(zajrzyj do manuala hosts.allow(5))."
#: ../../lang.pm:1
#, c-format
msgid "Libya"
msgstr "Libia"
#: ../../standalone/drakgw:1
#, c-format
msgid "Configuring scripts, installing software, starting servers..."
msgstr ""
"Konfiguracja skryptów, instalowanie programów, uruchamianie serwerów..."
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printer on parallel port #%s"
msgstr "Drukarka podłączona do portu równoległego #%s"
#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"\n"
"- Burn to CD"
msgstr ""
"\n"
"- Wypalenie na CD"
#: ../../any.pm:1
#, c-format
msgid "Table"
msgstr "Tablica"
#: ../../fs.pm:1
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Nie wiadomo jak sformatować %s typu %s"
#: ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
#, c-format
msgid "Model"
msgstr "Model"
#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
#, c-format
msgid "USB printer #%s"
msgstr "Drukarka USB #%s"
#: ../../standalone/drakTermServ:1
#, c-format
msgid "Stop Server"
msgstr "Zatrzymaj serwer"
#: ../../standalone/drakboot:1
#, c-format
msgid ""
"\n"
"Select the theme for\n"
"lilo and bootsplash,\n"
"you can choose\n"
"them separately"
msgstr ""
"\n"
"Wybierz temat dla\n"
"lilo i ekranu\n"
"powitalnego, można\n"
"wybrać je oddzielnie"
#: ../../harddrake/data.pm:1
#, c-format
msgid "Modem"
msgstr "Modem"
#: ../../lang.pm:1
#, c-format
msgid "Tuvalu"
msgstr "Tuvalu"
#: ../../help.pm:1 ../../network/netconnect.pm:1
#, c-format
msgid "Use auto detection"
msgstr "Użyj automatycznego wykrywania"
#: ../../services.pm:1
#, c-format
msgid ""
"GPM adds mouse support to text-based Linux applications such the\n"
"Midnight Commander. It also allows mouse-based console cut-and-paste "
"operations,\n"
"and includes support for pop-up menus on the console."
msgstr ""
"GPM umożliwia posługiwanie się myszą w aplikacjach,\n"
"pracujących pod konsolą Linuksa jak np. Midnigth Commander.\n"
"Umożliwia operacje Wytnij-Wklej oraz wybór opcji poprzez wyskakujące menu."
#: ../../standalone/drakconnect:1
#, c-format
msgid "Started on boot"
msgstr "Uruchamiany przy starcie"
#: ../../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 ""
"Przyłącz się do do zespołów wsparcia technicznego MandrakeSoft oraz "
"społeczności linuksowej online by dzielić się swoją wiedzą i pomagać innym "
"stając się uznanym ekspertem na stronach pomocy technicznej:"
#: ../../security/l10n.pm:1
#, c-format
msgid "No password aging for"
msgstr "Bez określania wieku hasła dla"
#: ../../standalone/draksec:1
#, c-format
msgid ""
"The following options can be set to customize your\n"
"system security. If you need an explanation, look at the help tooltip.\n"
msgstr ""
"Poniższe opcje mogą zostać ustawione w celu dostosowania\n"
"poziomu bezpieczeństwa systemu. Jeśli potrzebne są wyjaśnienia,\n"
"zajrzyj do podpowiedzi.\n"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Automatically find available printers on remote machines"
msgstr "Automatyczne wyszukiwanie dostępnych drukarek lub maszyn zdalnych"
#: ../../lang.pm:1
#, c-format
msgid "East Timor"
msgstr "Wschodni Timor"
#: ../../standalone/drakbackup:1
#, c-format
msgid "On Tape Device"
msgstr "na urządzeniu taśmowym"
#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"\n"
"- Save to Tape on device: %s"
msgstr ""
"\n"
"- Zapis na taśmie na urządzeniu: %s"
#: ../../standalone/drakbackup:1
#, c-format
msgid "Login name"
msgstr "Nazwa użytkownika"
#: ../../security/l10n.pm:1
#, c-format
msgid "Report unowned files"
msgstr "Zgłaszanie plików bez właściciela"
#: ../../standalone/drakconnect:1
#, c-format
msgid "Del profile..."
msgstr "Usuń profil..."
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Installing Foomatic..."
msgstr "Instalowanie Foomatica..."
#: ../../standalone/XFdrake:1
#, c-format
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Wyloguj się i użyj kombinacji klawiszy Ctrl-Alt-BackSpace "
#: ../../network/netconnect.pm:1
#, c-format
msgid "detected"
msgstr "wykryto"
#: ../../network/netconnect.pm:1
#, c-format
msgid "The network needs to be restarted. Do you want to restart it ?"
msgstr ""
"Sieć musi zostać ponownie uruchomiona. Czy chcesz ją ponownie uruchomić ?"
#: ../../standalone/drakbug:1
#, c-format
msgid "Package: "
msgstr "Pakiet: "
#: ../../standalone/drakboot:1
#, c-format
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr "Nie można zapisać pliku /etc/sysconfig/bootspash."
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "SECURITY WARNING!"
msgstr "OSTRZEŻENIE DOTYCZĄCE BEZPIECZEŃSTWA!"
#: ../../standalone/drakfont:1
#, c-format
msgid "StarOffice"
msgstr "StarOffice"
#: ../../standalone/drakboot:1
#, c-format
msgid "No, I don't want autologin"
msgstr "Nie, nie chcę automatycznego logowania"
#: ../../standalone/drakbug:1
#, c-format
msgid "Windows Migration tool"
msgstr "Narzędzie migracji z Windows"
#: ../../any.pm:1 ../../help.pm:1
#, c-format
msgid "All languages"
msgstr "Wszystkie języki"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Removing %s"
msgstr "Usuwanie %s"
#: ../../standalone/drakTermServ:1
#, c-format
msgid "%s not found...\n"
msgstr "Nie znaleziono %s...\n"
#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Testing your connection..."
msgstr "Testowanie połączenia..."
#: ../../standalone/harddrake2:1
#, c-format
msgid "Cache size"
msgstr "Rozmiar cache"
#: ../../security/level.pm:1
#, c-format
msgid ""
"Passwords are now enabled, but use as a networked computer is still not "
"recommended."
msgstr ""
"Hasła są uaktywnione ale ciągle nie zalecane jest używanie komputera\n"
"w sieci."
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Start sector: "
msgstr "Sektor startowy: "
#: ../../lang.pm:1
#, c-format
msgid "Congo (Brazzaville)"
msgstr "Kongo (Brazzaville)"
#: ../../standalone/drakperm:1
#, c-format
msgid "Read"
msgstr "Odczyt"
#: ../../any.pm:1 ../../install_any.pm:1 ../../standalone.pm:1
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Należy zainstalować pakiet %s. Czy chcesz go zainstalować?"
#: ../../lang.pm:1
#, c-format
msgid "Seychelles"
msgstr "Seszele"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
"detection with the models listed in its printer database to find the best "
"match. This choice can be wrong, especially when your printer is not listed "
"at all in the database. So check whether the choice is correct and click "
"\"The model is correct\" if so and if not, click \"Select model manually\" "
"so that you can choose your printer model manually on the next screen.\n"
"\n"
"For your printer Printerdrake has found:\n"
"\n"
"%s"
msgstr ""
"Printerdrake porównał nazwę modelu pobraną w wyniku automatycznego "
"wykrywania drukarki z modelami z bazy danych drukarek aby znaleźć najlepsze "
"dopasowanie. Ten wybór może nie być niepoprawny, szczególnie jeśli drukarka "
"nie jest zapisana w bazie. Sprawdź czy wybór jest poprawny i kliknij \"Model "
"jest poprawny\" jeśli tak, zaś w przeciwnym przypadku \"Wybierz model ręcznie"
"\" co umożliwi ręczny wybór modeli na następnym ekranie.\n"
"\n"
"Printerdrake znalazł dane związane z drukarką:\n"
"\n"
"%s"
#: ../../standalone/drakbackup:1
#, c-format
msgid "Bad password on %s"
msgstr "Nieprawidłowe hasło dla %s"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"\n"
"There is one unknown printer directly connected to your system"
msgstr ""
"\n"
"Znaleziono jedną nieznaną drukarkę bezpośrednio podłączoną do komputera"
#: ../../keyboard.pm:1
#, c-format
msgid "Right Control key"
msgstr "Prawy klawisz Control"
#: ../../network/adsl.pm:1
#, c-format
msgid ""
"Insert a FAT formatted floppy in drive %s with %s in root directory and "
"press %s"
msgstr ""
"Włóż sformatowaną (FAT) dyskietkę do stacji %s z %s w katalogu roota i "
"naciśnij %s"
#: ../../lang.pm:1
#, c-format
msgid "Zambia"
msgstr "Zambia"
#: ../../security/level.pm:1
#, c-format
msgid "Security Administrator (login or email)"
msgstr "Administrator zabezpieczeń (login lub e-mail)"
#: ../../standalone/drakgw:1
#, c-format
msgid "Sorry, we support only 2.4 kernels."
msgstr "Niestety obsługiwane są jedynie jądra serii 2.4."
#: ../../keyboard.pm:1
#, c-format
msgid "Romanian (qwerty)"
msgstr "rumuński (qwerty)"
#: ../../standalone/drakbackup:1
#, c-format
msgid "Under Devel ... please wait."
msgstr "W trakcie tworzenia ... proszę czekać"
#: ../../lang.pm:1
#, c-format
msgid "Egypt"
msgstr "Egipt"
#: ../../crypto.pm:1 ../../lang.pm:1
#, c-format
msgid "Czech Republic"
msgstr "Republika Czeska"
#: ../../help.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "Sound card"
msgstr "Karta dźwiękowa"
#: ../../standalone/drakfont:1
#, c-format
msgid "Import Fonts"
msgstr "Importowanie czcionek"
#: ../../diskdrake/hd_gtk.pm:1
#, c-format
msgid ""
"You have one big MicroSoft Windows partition.\n"
"I suggest you first resize that partition\n"
"(click on it, then click on \"Resize\")"
msgstr ""
"Na dysku jest jedna wielka partycja MS Windows.\n"
"Należy zacząć od zmiany rozmiaru tej partycji\n"
"(kliknij na partycji, po czym kliknij na \"Zmień rozmiar\")"
#: ../../standalone/drakfont:1
#, c-format
msgid "Suppress Temporary Files"
msgstr "Usuń pliki tymczasowe"
#: ../../network/netconnect.pm:1
#, c-format
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"\n"
msgstr ""
"Gratulacje, konfiguracja sieci i Internetu została zakończona.\n"
"\n"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Change partition type"
msgstr "Zmiana typu partycji"
#: ../../help.pm:1
#, c-format
msgid ""
"Resolution\n"
"\n"
" Here you can choose the resolutions and color depths available for your\n"
"hardware. Choose the one that best suits your needs (you will be able to\n"
"change that after installation though). A sample of the chosen\n"
"configuration is shown in the monitor."
msgstr ""
"Rozdzielczość\n"
"\n"
" W tym miejscu można wybrać rozdzielczość oraz głębię kolorów spośród\n"
"dostępnych dla twojego sprzętu opcji. Wybierz te opcje, które najlepiej\n"
"odpowiadają twoim potrzebom (te ustawienia będzie można zmienić także\n"
"po instalacji). Przykład wybranej konfiguracji jest wyświetlony na\n"
"monitorze."
#: ../../standalone/draksec:1
#, c-format
msgid "Network Options"
msgstr "Opcje sieci"
#: ../../security/l10n.pm:1
#, c-format
msgid "Enable msec hourly security check"
msgstr "Cogodzinne procesy sprawdzania zabezpieczeń msec"
#: ../../standalone/drakboot:1
#, c-format
msgid ""
"Display theme\n"
"under console"
msgstr ""
"Wyświetl temat\n"
"spod konsoli"
#: ../../standalone/net_monitor:1
#, c-format
msgid "Statistics"
msgstr "Statystyki"
#: ../../printer/cups.pm:1
#, c-format
msgid "(on %s)"
msgstr "(na %s)"
#: ../../mouse.pm:1
#, c-format
msgid "MM Series"
msgstr "Seria MM"
#: ../../security/level.pm:1
#, c-format
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
"Biblioteka, która chroni przed przepełnieniem bufora oraz przed atakami "
"odpowiednio spreparowanych ciągów znaków."
#: ../../standalone/net_monitor:1
#, c-format
msgid "average"
msgstr "średnia"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "New printer name"
msgstr "Nowa nazwa drukarki"
#: ../../fs.pm:1
#, c-format
msgid ""
"Allow an ordinary user to mount the file system. The\n"
"name of the mounting user is written to mtab so that he can unmount the "
"file\n"
"system again. This option implies the options noexec, nosuid, and nodev\n"
"(unless overridden by subsequent options, as in the option line\n"
"user,exec,dev,suid )."
msgstr ""
"Zezwalanie użytkownikowi na montowanie systemu plików. Nazwa\n"
"montującego użytkownika jest zapisana do pliku mtab, tak więc nie może\n"
"on odmontować ponownie systemu plików. Ta opcja określa ustawienie opcji\n"
"\\\"noexec\\\", \\\"nosuid\\\" oraz \\\"nodev\\\" (chyba że zostanie ono "
"pominięte\n"
"przez inne opcje, w wierszu opcji user,exec,dev,suid)."
#: ../../lang.pm:1
#, c-format
msgid "Equatorial Guinea"
msgstr "Gwinea Równikowa"
#: ../../standalone/drakbackup:1
#, c-format
msgid "Backup System"
msgstr "Archiwizuj system"
#: ../../standalone/drakbackup:1
#, c-format
msgid "Build Backup"
msgstr "Zbuduj kopię zapasową"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
"Aby wydrukować plik z wiersza poleceń (okno terminala) użyj polecenia \"%s "
"<plik>\" lub \"%s <plik>\"\n"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Currently, no alternative possibility is available"
msgstr "Brak aktualnie alternatywnych możliwości"
#: ../../keyboard.pm:1
#, c-format
msgid "Romanian (qwertz)"
msgstr "rumuński (qwertz)"
#: ../../standalone/drakTermServ:1
#, c-format
msgid "Write Config"
msgstr "Zapisz konfigurację"
#: ../../services.pm:1
#, c-format
msgid ""
"The routed daemon allows for automatic IP router table updated via\n"
"the RIP protocol. While RIP is widely used on small networks, more complex\n"
"routing protocols are needed for complex networks."
msgstr ""
"Demon routed aktualizuje automatycznie tablicę routingu IP wykorzystując\n"
"stosowany w małych sieciach protokół RIP. W większych sieciach stosuje\n"
"się bardziej złożone protokoły routingu."
#: ../../lang.pm:1
#, c-format
msgid "Kiribati"
msgstr "Kiribati"
#: ../../mouse.pm:1
#, c-format
msgid "Logitech Mouse (serial, old C7 type) with Wheel emulation"
msgstr "Mysz Logitech (szeregowa, stary typ C7) z emulacją kółka"
#: ../../standalone/drakbackup:1
#, c-format
msgid "Other (not drakbackup) keys in place already"
msgstr "Inne (nie drakbackup) klucze już są na miejscu"
#: ../../help.pm:1
#, c-format
msgid ""
"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
"WindowMaker, etc.) bundled with Mandrake Linux rely upon.\n"
"\n"
"You will be presented with a list of different parameters to change to get\n"
"an optimal graphical display: Graphic Card\n"
"\n"
" The installer will normally automatically detect and configure the\n"
"graphic card installed on your machine. If it is not the case, you can\n"
"choose from this list the card you actually have installed.\n"
"\n"
" In the case that different servers are available for your card, with or\n"
"without 3D acceleration, you are then asked to choose the server that best\n"
"suits your needs.\n"
"\n"
"\n"
"\n"
"Monitor\n"
"\n"
" The installer will normally automatically detect and configure the\n"
"monitor connected to your machine. If it is incorrect, you can choose from\n"
"this list the monitor you actually have connected to your computer.\n"
"\n"
"\n"
"\n"
"Resolution\n"
"\n"
" Here you can choose the resolutions and color depths available for your\n"
"hardware. Choose the one that best suits your needs (you will be able to\n"
"change that after installation though). A sample of the chosen\n"
"configuration is shown in the monitor.\n"
"\n"
"\n"
"\n"
"Test\n"
"\n"
" the system will try to open a graphical screen at the desired\n"
"resolution. If you can see the message during the test and answer \"%s\",\n"
"then DrakX will proceed to the next step. If you cannot see the message, it\n"
"means that some part of the autodetected configuration was incorrect and\n"
"the test will automatically end after 12 seconds, bringing you back to the\n"
"menu. Change settings until you get a correct graphical display.\n"
"\n"
"\n"
"\n"
"Options\n"
"\n"
" Here you can choose whether you want to have your machine automatically\n"
"switch to a graphical interface at boot. Obviously, you want to check\n"
"\"%s\" if your machine is to act as a server, or if you were not successful\n"
"in getting the display configured."
msgstr ""
"X (od systemu X Window) to serce graficznego interfejsu GNU/Linux,\n"
"z którego korzystają wszystkie środowiska graficzne (KDE, GNOME,\n"
"AfterStep, WindowMaker, itd.) systemu Mandrake.\n"
"\n"
"Zostanie wyświetlona lista różnych parametrów pozwalających\n"
"na zmianę sposobu wyświetlania: Karta graficzna\n"
"\n"
" Instalator zazwyczaj automatycznie wykrywa i konfiguruje kartę\n"
"graficzną zainstalowaną na komputerze. Jeśli nie zostanie wykryta,\n"
"użytkownik może wybrać posiadaną kartę z listy.\n"
"\n"
" W przypadku, gdy dla karty graficznej dostępne są różne serwery,\n"
"z lub bez akceleracji 3D, użytkownik może wybrać serwer najlepiej\n"
"odpowiadający jego potrzebom.\n"
"\n"
"\n"
"\n"
"Monitor\n"
"\n"
" Instalator zazwyczaj automatycznie rozpoznaje i konfiguruje\n"
"monitor podłączony do komputera. W innym przypadku należy\n"
"ręcznie wybrać z listy posiadany monitor.\n"
"\n"
"\n"
"\n"
"Rozdzielczość\n"
"\n"
" W tym miejscu można wybrać rozdzielczość i głębię kolorów spośród\n"
"dostępnych dla twojego sprzętu opcji. Wybierz tą, która najlepiej\n"
"spełnia twoje wymagania (będzie można zmienić wybrane parametry\n"
"także po instalacji). Przykład wybranej konfiguracji jest wyświetlony\n"
"na monitorze.\n"
"\n"
"\n"
"\n"
"Test\n"
"\n"
" System będzie próbował otworzyć ekran graficzny o żądanej\n"
"rozdzielczości. Jeśli użytkownik będzie widział komunikat wyświetlany\n"
"w trakcie testu oraz odpowie \"%s\", wówczas instalator podejmie\n"
"kolejny krok. W przypadku, gdy komunikat nie będzie widoczny,\n"
"oznacza to, że jakaś część automatycznie wykrytej konfiguracji jest\n"
"niepoprawna. Test zakończy się automatycznie po 12 sekundach,\n"
"przenosząc użytkownika z powrotem do menu. Należy zmieniać\n"
"konfigurację, aż do momentu gdy otrzymamy poprawne wyświetlanie.\n"
"\n"
"\n"
"\n"
"Opcje\n"
"\n"
" W tym miejscu można wybrać czy komputer ma być automatycznie\n"
"przełączany w tryb graficzny podczas uruchamiania. Oczywiście, lepiej\n"
"jest wybrać \"%s\" jeśli maszyna ma pracować jako serwer lub też\n"
"gdy nie udało się poprawnie skonfigurować wyświetlania."
#: ../../standalone/draksplash:1
#, c-format
msgid "Browse"
msgstr "Przeglądaj"
#: ../../harddrake/data.pm:1
#, c-format
msgid "CDROM"
msgstr "CDROM"
#: ../../network/tools.pm:1
#, c-format
msgid "Do you want to try to connect to the Internet now?"
msgstr "Czy chcesz teraz spróbować połączyć się Internetem?"
#: ../../keyboard.pm:1
#, c-format
msgid "Belgian"
msgstr "belgijski"
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Do you have an ISA sound card?"
msgstr "Czy posiadasz kartę dźwiękową ISA?"
#: ../../network/ethernet.pm:1
#, c-format
msgid ""
"No ethernet network adapter has been detected on your system.\n"
"I cannot set up this connection type."
msgstr ""
"Nie wykryto w systemie karty sieciowej.\n"
"Nie można skonfigurować tego typu połączenia."
#: ../../diskdrake/hd_gtk.pm:1
#, c-format
msgid "Windows"
msgstr "Windows"
#: ../../common.pm:1
#, c-format
msgid "Can't make screenshots before partitioning"
msgstr "Nie można pobrać zrzutu ekranu przed partycjonowaniem"
#: ../../standalone/drakbackup:1
#, c-format
msgid "Host Name"
msgstr "Nazwa komputera"
#: ../../standalone/logdrake:1
#, c-format
msgid "/File/Save _As"
msgstr "/Plik/Z_apisz jako"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"To get access to printers on remote CUPS servers in your local network you "
"only need to turn on the \"Automatically find available printers on remote "
"machines\" option; the CUPS servers inform your machine automatically about "
"their printers. All printers currently known to your machine are listed in "
"the \"Remote printers\" section in the main window of Printerdrake. If your "
"CUPS server(s) is/are not in your local network, you have to enter the IP "
"address(es) and optionally the port number(s) here to get the printer "
"information from the server(s)."
msgstr ""
"Aby uzyskać dostęp do drukarek na zdalnych serwerach CUPS w sieci lokalnej "
"potrzebne jest tylko włączenie opcji \"Automatyczne wyszukiwanie dostępnych "
"drukarek na komputerach zdalnych\". Serwery CUPS informują komputer "
"automatycznie o podłączonych drukarkach. Wszystkie aktualnie znane "
"komputerowi drukarki są wypisane w sekcji \"Zdalne drukarki\" głównego okna "
"programu Printerdrake. Jeśli twój serwer(y) CUPS nie jest (nie są) w sieci "
"lokalnej, należy podać w tym miejscu adres(y) IP oraz opcjonalnie numer(y) "
"portu aby uzyskać z serwera (serwerów) informacje na temat drukarek."
#: ../../standalone/scannerdrake:1
#, c-format
msgid "%s is not in the scanner database, configure it manually?"
msgstr "%s nie ma w bazie skanerów, skonfigurować ręcznie?"
#: ../../any.pm:1
#, c-format
msgid "Delay before booting default image"
msgstr "Opóźnienie przed uruchomieniem domyślnego systemu"
#: ../../any.pm:1
#, c-format
msgid "Restrict command line options"
msgstr "Ograniczenie opcji wiersza poleceń"
#: ../../standalone/drakxtv:1
#, c-format
msgid "East Europe"
msgstr "Europa Wschodnia"
#: ../../help.pm:1 ../../install_interactive.pm:1
#, c-format
msgid "Use free space"
msgstr "Wykorzystaj wolne miejsce"
#: ../../network/adsl.pm:1
#, c-format
msgid "use dhcp"
msgstr "użyj dhcp"
#: ../../standalone/logdrake:1
#, c-format
msgid "Mail alert"
msgstr "Alarm Mail"
#: ../../network/tools.pm:1
#, c-format
msgid "Internet configuration"
msgstr "Internet - konfiguracja"
#: ../../lang.pm:1
#, c-format
msgid "Uzbekistan"
msgstr "Uzbekistan"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Detected %s"
msgstr "Wykryto %s"
#: ../../standalone/harddrake2:1
#, c-format
msgid "/Autodetect _printers"
msgstr "/Automatycznie wykryj _drukarki"
#: ../../interactive.pm:1 ../../ugtk2.pm:1 ../../interactive/newt.pm:1
#, c-format
msgid "Finish"
msgstr "Zakończ"
#: ../../install_steps_gtk.pm:1
#, c-format
msgid "Show automatically selected packages"
msgstr "Pokaż automatycznie wybrane pakiety"
#: ../../lang.pm:1
#, c-format
msgid "Togo"
msgstr "Togo"
#: ../../standalone/harddrake2:1
#, c-format
msgid "CPU flags reported by the kernel"
msgstr "Flagi procesora wykryte przez jądro"
#: ../../standalone/drakTermServ:1
#, c-format
msgid "Something went wrong! - Is mkisofs installed?"
msgstr "Coś poszło nie tak! - Czy zainstalowany jest program mkisofs?"
#: ../../Xconfig/card.pm:1
#, c-format
msgid "16 MB"
msgstr "16 MB"
#: ../../any.pm:1 ../../install_steps_interactive.pm:1
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Please try again"
msgstr "Spróbuj ponownie"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "The model is correct"
msgstr "Model jest poprawny"
#: ../../install_interactive.pm:1
#, c-format
msgid "FAT resizing failed: %s"
msgstr "Zmiana rozmiaru partycji FAT nie powiodła się: %s"
#: ../../help.pm:1 ../../install_steps_gtk.pm:1
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Individual package selection"
msgstr "Samodzielny wybór pakietów"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "This partition is not resizeable"
msgstr "Tej partycji nie można zmniejszyć"
#: ../../printer/printerdrake.pm:1 ../../standalone/printerdrake:1
#, c-format
msgid "Location"
msgstr "Lokalizacja"
#: ../../standalone/drakxtv:1
#, c-format
msgid "USA (cable-hrc)"
msgstr "USA (kabel-hrc)"
#: ../../lang.pm:1
#, c-format
msgid "Guatemala"
msgstr "Gwatemala"
#: ../../diskdrake/hd_gtk.pm:1
#, c-format
msgid "Journalised FS"
msgstr "JFS"
#: ../../security/l10n.pm:1
#, c-format
msgid "Ethernet cards promiscuity check"
msgstr "Sprawdzanie statystyk odbierania przez karty sieciowe"
#: ../../standalone/scannerdrake:1
#, c-format
msgid "This machine"
msgstr "Ta maszyna"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Dosowy dysk: (przypuszczalnie %s)\n"
#: ../../lang.pm:1
#, c-format
msgid "Bahrain"
msgstr "Bahrajn"
#: ../../standalone/drakbackup:1
#, c-format
msgid "Select the files or directories and click on 'OK'"
msgstr "Wybierz pliki lub katalogi i kliknij \"OK\""
#: ../../standalone/drakfloppy:1
#, c-format
msgid "omit scsi modules"
msgstr "pomiń moduły SCSI"
#: ../../standalone/harddrake2:1
#, c-format
msgid "family of the cpu (eg: 6 for i686 class)"
msgstr "rodzina procesora (np. 6 dla klasy i686)"
#: ../../network/netconnect.pm:1
#, c-format
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
"Click on Ok to keep your configuration, or cancel to reconfigure your "
"Internet & Network connection.\n"
msgstr ""
"Ponieważ przeprowadzasz instalację przez sieć, jest ona już skonfigurowana.\n"
"Wybierz OK by zachować konfigurację, lub Anuluj by ponownie skonfigurować "
"sieć/połączenie z Internetem.\n"
#: ../../security/l10n.pm:1
#, c-format
msgid "Run the daily security checks"
msgstr "Uruchamianie codziennych procesów sprawdzających bezpieczeństwo"
#: ../../Xconfig/various.pm:1
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Układ klawiatury: %s\n"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Here you can choose whether the printers connected to this machine should be "
"accessable by remote machines and by which remote machines."
msgstr ""
"W tym miejscu można określić czy drukarki podłączone do tego komputera "
"powinny być dostępne za pośrednictwem zdalnych komputerów i poprzez zdalne "
"komputery."
#: ../../keyboard.pm:1
#, c-format
msgid "Maltese (US)"
msgstr "maltański (US)"
#: ../../standalone/drakfloppy:1
#, c-format
msgid "The creation of the boot floppy has been successfully completed \n"
msgstr "Tworzenie dyskietki startowej zostało pomyślnie zakończone\n"
#: ../../services.pm:1
#, c-format
msgid ""
"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
"Manager/Windows), and NCP (NetWare) mount points."
msgstr ""
"Montuje i odmontowuje wszystkie punkty przyłączania systemów plików \n"
"NFS (sieciowe systemy plików), SMB {Menedżer sieci/Windows} i NCP (NetWare)."
#: ../../standalone/drakconnect:1
#, c-format
msgid "Launch the wizard"
msgstr "Uruchom druida"
#: ../../harddrake/data.pm:1
#, c-format
msgid "Tvcard"
msgstr "Karta TV"
#: ../../help.pm:1
#, c-format
msgid "Toggle between normal/expert mode"
msgstr "Przełącz między trybem zwykłym a zaawansowanym"
#: ../../standalone/drakfloppy:1
#, c-format
msgid "Size"
msgstr "Rozmiar"
#: ../../help.pm:1
#, c-format
msgid "GRUB"
msgstr "GRUB"
#: ../../lang.pm:1
#, c-format
msgid "Greenland"
msgstr "Grenlandia"
#: ../../mouse.pm:1
#, c-format
msgid "Logitech MouseMan+/FirstMouse+"
msgstr "Logitech MouseMan+/FirstMouse+"
#: ../../standalone/drakbackup:1
#, c-format
msgid "Thursday"
msgstr "Czwartek"
#: ../../standalone/drakbackup:1
#, c-format
msgid "Not the correct tape label. Tape is labelled %s."
msgstr "Nieprawidłowa etykieta taśmy. Taśma posiada etykietę %s."
#: ../../standalone/drakgw:1
#, c-format
msgid ""
"The setup of Internet Connection Sharing has already been done.\n"
"It's currently enabled.\n"
"\n"
"What would you like to do?"
msgstr ""
"Konfiguracja współdzielenia połączenia z Internetem została już wykonana.\n"
"Jest teraz uaktywniona.\n"
"\n"
"Co chcesz zrobić?"
#: ../../standalone/drakTermServ:1
#, c-format
msgid "Delete All NBIs"
msgstr "Usuń wszystkie NBI"
#: ../../help.pm:1
#, c-format
msgid ""
"This dialog allows you to fine tune your bootloader:\n"
"\n"
" * \"%s\": there are three choices for your bootloader:\n"
"\n"
" * \"%s\": if you prefer grub (text menu).\n"
"\n"
" * \"%s\": if you prefer LILO with its text menu interface.\n"
"\n"
" * \"%s\": if you prefer LILO with its graphical interface.\n"
"\n"
" * \"%s\": in most cases, you will not change the default (\"%s\"), but if\n"
"you prefer, the bootloader can be installed on the second hard drive\n"
"(\"%s\"), or even on a floppy disk (\"%s\");\n"
"\n"
" * \"%s\": after a boot or a reboot of the computer, this is the delay\n"
"given to the user at the console to select a boot entry other than the\n"
"default.\n"
"\n"
"!! Beware that if you choose not to install a bootloader (by selecting\n"
"\"%s\"), you must ensure that you have a way to boot your Mandrake Linux\n"
"system! Be sure you know what you are doing before changing any of the\n"
"options. !!\n"
"\n"
"Clicking the \"%s\" button in this dialog will offer advanced options which\n"
"are normally reserved for the expert user."
msgstr ""
"To okno dialogowe służy do skonfigurowania programu rozruchowego:\n"
"\n"
" * \"%s\": można dokonać wyboru spośród trzech opcji:\n"
"\n"
" * \"%s\": jeśli ma być użyty grub (menu tekstowe).\n"
"\n"
" * \"%s\": jeśli ma zostać użyty LILO z interfejsem tekstowym.\n"
"\n"
" * \"%s\": jeśli ma zostać użyty LILO z interfejsem graficznym.\n"
"\n"
" * \"%s\": w większości przypadków, nie jest zmieniana\n"
"domyślna lokalizacja (\"%s\"), lecz można zainstalować program\n"
"rozruchowy na drugim twardym dysku (\"%s\"), lub nawet na dyskietce\n"
"(\"%s\");\n"
"\n"
" * \"%s\": w trakcie\n"
"uruchamiania systemu określić można czas w którym użytkownik może zmienić\n"
"z menu domyślnie uruchamiany system operacyjny na inny.\n"
"\n"
"!! Należy być ostrożnym!! Uwaga, jeśli określono aby nie instalować "
"programu\n"
"rozruchowego (poprzez wybranie \"%s\"), należy się upewnić, że\n"
"istnieje sposób na uruchomienie systemu! Także należy mieć pewność co\n"
"się robi przed zmianą jakiejkolwiek opcji!!\n"
"\n"
"Kliknięcie przycisku \"%s\" spowoduje wyświetlenie okna umożliwiającego\n"
"ustawienie wielu zaawansowanych opcji i jest zarezerwowane dla\n"
"użytkowników zaawansowanych"
#: ../../security/help.pm:1
#, c-format
msgid ""
"if set, send the mail report to this email address else send it to root."
msgstr ""
"jeśli ustawiono, wysyła raport pocztowy na ten adres lub do administratora."
#: ../../Xconfig/card.pm:1
#, c-format
msgid "Which configuration of XFree do you want to have?"
msgstr "Którą konfigurację XFree chcesz używać?"
#: ../../any.pm:1 ../../help.pm:1 ../../install_steps_interactive.pm:1
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "More"
msgstr "Więcej"
#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"This uses the same syntax as the command line program 'cdrecord'. 'cdrecord -"
"scanbus' would also show you the device number."
msgstr ""
"Ta funkcja używa takiej samej składni jak program wiersza poleceń "
"\"\"cdrecord\". Wywołanie \"cdrecord -scanbus\" potrafi także wyświetlić "
"numer urządzenia."
#: ../../security/level.pm:1
#, c-format
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
"The security is now high enough to use the system as a server which can "
"accept\n"
"connections from many clients. Note: if your machine is only a client on the "
"Internet, you should choose a lower level."
msgstr ""
"Ten poziom umożliwia użycie komputera jako serwera.\n"
"Poziom bezpieczeństwa jest wystarczająco wysoki aby używać systemu jako\n"
"serwera akceptującego połączenia od wielu klientów. Uwaga: jeśli twoja "
"maszyna jest tylko klientem pracującym w sieci, lepiej jest zmniejszyć "
"poziom zabezpieczeń."
#: ../../standalone/printerdrake:1
#, c-format
msgid "Server Name"
msgstr "Nazwa serwera"
#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Account Password"
msgstr "Hasło:"
#: ../../standalone/drakhelp:1
#, c-format
msgid ""
"%s cannot be displayed \n"
". No Help entry of this type\n"
msgstr ""
"%s nie może zostać wyświetlony\n"
" Brak wpisu pomocy dla tego typu\n"
#: ../../any.pm:1
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
"This implies you already have a bootloader on the hard drive you boot (eg: "
"System Commander).\n"
"\n"
"On which drive are you booting?"
msgstr ""
"Zdecydowano o zainstalowaniu programu rozruchowego na partycji. (ang. "
"bootloader)\n"
"To sugeruje, że już posiadasz program rozruchowy na uruchamianym dysku "
"twardym: (np. System Commander).\n"
"\n"
"Z którego dysku ma być uruchamiany system?"
#: ../../install_interactive.pm:1
#, c-format
msgid ""
"WARNING!\n"
"\n"
"DrakX will now resize your Windows partition. Be careful: this\n"
"operation is dangerous. If you have not already done so, you\n"
"first need to exit the installation, run \"chkdsk c:\" from a\n"
"Command Prompt under Windows (beware, running graphical program\n"
"\"scandisk\" is not enough, be sure to use \"chkdsk\" in a\n"
"Command Prompt!), optionally run defrag, then restart the\n"
"installation. You should also backup your data.\n"
"When sure, press Ok."
msgstr ""
"OSTRZEŻENIE!\n"
"\n"
"Instalator zmieni teraz rozmiar partycji Windows.\n"
"Należy uważać, ta operacja jest niebezpieczna. Jeśli wcześniej\n"
"tego nie robiono należy przerwać instalację, wrócić do Windows,\n"
"uruchomić polecenie \"chkdsk c:\" z wiersza poleceń (uwaga,\n"
"uruchomienie graficznego narzędzia \"scandisk\" nie wystarcza\n"
"należy się upewnić, że \"chkdsk\" znajduje się w wierszu poleceń!),\n"
"opcjonalnie zdefragmentować dysk (uruchomienie defrag) po czym\n"
"powtórnie uruchomić instalację. Warto również zarchiwizować\n"
"dane na dysku.\n"
"W razie pewności, wybierz OK."
#: ../../keyboard.pm:1
#, c-format
msgid "Tajik keyboard"
msgstr "tadżycki"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
"s to %s, your current spooler. All the configuration data (printer name, "
"description, location, connection type, and default option settings) is "
"overtaken, but jobs will not be transferred.\n"
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
"Można skopiować przeprowadzoną konfigurację dla kolejki %s do bieżącej "
"kolejki %s. Wszystkie dane konfiguracyjne (nazwa drukarki, opis, "
"lokalizacja, typ połączenia, domyślne ustawienia opcji) zostaną nadpisane "
"lecz zadania nie zostaną przesłane.\n"
"Nie wszystkie kolejki mogą być przesyłane z poniższych powodów:\n"
#: ../../standalone/drakfont:1
#, c-format
msgid "Font List"
msgstr "Lista czcionek"
#: ../../install_steps_interactive.pm:1
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
" enable the bootloader. If you don't see the bootloader prompt at\n"
" reboot, hold down Command-Option-O-F at reboot and enter:\n"
" setenv boot-device %s,\\\\:tbxi\n"
" Then type: shut-down\n"
"At your next boot you should see the bootloader prompt."
msgstr ""
"Może zachodzić potrzeba zmiany urządzenia rozruchowego Open\n"
"Firmware aby włączyć program rozruchowy (ang. bootloader). Jeśli\n"
"nie wyświetla się ekran powitalny w trakcie ponownego\n"
"uruchamiania, należy przytrzymać Command-Option-O-F w trakcie\n"
"uruchamiania i wpisać:\n"
"setenv boot-device %s,\\\\:tbxi\n"
"Następnie wpisać: shut-down\n"
"Podczas następnego uruchamiania ekran powitalny programu\n"
"rozruchowego powinien być widoczny."
#: ../../install_steps_interactive.pm:1
#, c-format
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
"The install will continue, but you'll\n"
" need to use BootX or some other means to boot your machine"
msgstr ""
"Prawdopodobnie posiadasz przestarzały (OldWorld)\n"
"lub też nieznany (Unknown) komputer. Program rozruchowy\n"
"yaboot nie będzie współpracował. Instalacja będzie\n"
"kontynuowana lecz trzeba będzie używać programu BootX\n"
"aby uruchomić komputer"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Select file"
msgstr "Wybierz plik"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Choose the network or host on which the local printers should be made "
"available:"
msgstr ""
"Wybierz sieć lub komputer, dla których powinny być dostępne drukarki lokalne:"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
"Tych poleceń można także użyć w polu \"Polecenie wydruku\" okna drukowania "
"wielu aplikacji, lecz nie należy podawać nazwy pliku ponieważ plik do "
"drukowania jest dostarczany przez aplikację.\n"
#: ../../lang.pm:1
#, c-format
msgid "Japan"
msgstr "Japonia"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Print option list"
msgstr "Wydrukuj opcje drukarki"
#: ../../standalone/localedrake:1
#, c-format
msgid "The change is done, but to be effective you must logout"
msgstr "Zostały dokonane zmiany, wyloguj się by je zastosować"
#: ../../any.pm:1 ../../help.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "Country / Region"
msgstr "Kraj / Region"
#: ../../diskdrake/smbnfs_gtk.pm:1
#, c-format
msgid "Search servers"
msgstr "Wyszukaj serwery"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "NCP queue name missing!"
msgstr "Brakuje nazwy kolejki NCP!"
#: ../../standalone/net_monitor:1
#, c-format
msgid ""
"Warning, another internet connection has been detected, maybe using your "
"network"
msgstr ""
"Ostrzeżenie, wykryto inne połączenie Internetowe, być może używające twojej "
"sieci"
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "CD-ROM oznaczony \"%s\" "
#: ../../standalone/drakbackup:1
#, c-format
msgid "CDRW media"
msgstr "Nośnik CDRW"
#: ../../services.pm:1
#, c-format
msgid ""
"Saves and restores system entropy pool for higher quality random\n"
"number generation."
msgstr ""
"Zapisuje i przywraca entropię systemu, aby polepszyć generację\n"
"liczb pseudolosowych."
#: ../../share/advertising/07-server.pl:1
#, c-format
msgid "Turn your computer into a reliable server"
msgstr "Zamień swój komputer w niezawodny serwer."
#: ../../security/l10n.pm:1
#, c-format
msgid "Check empty password in /etc/shadow"
msgstr "Sprawdzanie pustych haseł w pliku /etc/shadow"
#: ../../network/network.pm:1
#, c-format
msgid " (driver %s)"
msgstr " (sterownik %s)"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid ""
"Loopback file(s):\n"
" %s\n"
msgstr ""
"Plikopartycje:\n"
" %s\n"
#: ../../network/isdn.pm:1
#, c-format
msgid "I don't know"
msgstr "Nie wiem"
#: ../../services.pm:1
#, c-format
msgid "Start when requested"
msgstr "Uruchamianie na żądanie"
#: ../../printer/main.pm:1
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ", komputer TCP/IP \"%s\", port %s"
#: ../../standalone/drakautoinst:1
#, c-format
msgid ""
"You are about to configure an Auto Install floppy. This feature is somewhat "
"dangerous and must be used circumspectly.\n"
"\n"
"With that feature, you will be able to replay the installation you've "
"performed on this computer, being interactively prompted for some steps, in "
"order to change their values.\n"
"\n"
"For maximum safety, the partitioning and formatting will never be performed "
"automatically, whatever you chose during the install of this computer.\n"
"\n"
"Do you want to continue?"
msgstr ""
"Za chwilę zostanie skonfigurowana dyskietka automatycznej instalacji. Ta "
"funkcja jest niebezpieczna i musi być używana ostrożnie.\n"
"\n"
"Za jej pomocą, można uzyskać możliwość ponowienia instalacji przeprowadzonej "
"na tym komputerze, interaktywnego przejścia przez niektóre kroki instalacji "
"w celu zmiany ich wartości.\n"
"\n"
"W celu zapewnienia maksymalnego bezpieczeństwa, partycjonowanie oraz "
"formatowanie nie będzie nigdy przeprowadzane automatycznie, bez względu na "
"to co wybrał użytkownik w trakcie instalacji.\n"
"\n"
"Czy chcesz kontynuować?"
#: ../../keyboard.pm:1
#, c-format
msgid "Telugu"
msgstr "Telugu"
#: ../../harddrake/sound.pm:1
#, c-format
msgid ""
"\n"
"\n"
"Your card currently use the %s\"%s\" driver (default driver for your card is "
"\"%s\")"
msgstr ""
"\n"
"\n"
"Twoja karta aktualnie wykorzystuje sterownik %s\"%s\" (domyślnym "
"sterownikiem dla karty jest \"%s\")"
#: ../../standalone/drakfont:1
#, c-format
msgid "Post Uninstall"
msgstr "Odinstalowywanie wykańczające"
#: ../../standalone/net_monitor:1
#, c-format
msgid "Connecting to Internet "
msgstr "Połączenie z Internetem "
#: ../../standalone/scannerdrake:1
#, c-format
msgid " ("
msgstr " ("
#: ../../standalone/harddrake2:1
#, c-format
msgid "Cpuid level"
msgstr "Poziom procesora"
#: ../../printer/main.pm:1
#, c-format
msgid "Novell server \"%s\", printer \"%s\""
msgstr "Serwer Novell \"%s\", drukarka \"%s\""
#: ../../keyboard.pm:1
#, c-format
msgid "Mongolian (cyrillic)"
msgstr "mongolski (cyrylica)"
#: ../../standalone/drakfloppy:1
#, c-format
msgid "Add a module"
msgstr "Dodaj moduł"
#: ../../standalone/drakconnect:1
#, c-format
msgid "Profile to delete:"
msgstr "Profil do usunięcia:"
#: ../../standalone/net_monitor:1
#, c-format
msgid "Local measure"
msgstr "Pomiar lokalny"
#: ../../network/network.pm:1
#, c-format
msgid "Warning : IP address %s is usually reserved !"
msgstr "Ostrzeżenie : Adres IP %s jest zazwyczaj zarezerwowany !"
#: ../../mouse.pm:1
#, c-format
msgid "busmouse"
msgstr "busmouse"
#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Account Login (user name)"
msgstr "Konto (nazwa użytkownika)"
#: ../../standalone/harddrake2:1
#, c-format
msgid "Fdiv bug"
msgstr "Błąd Fdiv"
#: ../../network/drakfirewall.pm:1
#, c-format
msgid ""
"drakfirewall configurator\n"
"\n"
"Make sure you have configured your Network/Internet access with\n"
"drakconnect before going any further."
msgstr ""
"Konfiguracja zapory sieciowej\n"
"\n"
"Upewnij się, że skonfigurowany został dostęp do sieci/Internetu\n"
"za pomocą programu drakconnect zanim dokonasz dalszych czynności."
#: ../../security/l10n.pm:1
#, c-format
msgid "Accept broadcasted icmp echo"
msgstr "Akceptowanie rozgłoszeniowych pakietów echo icmp (broadcast)"
#: ../../lang.pm:1
#, c-format
msgid "Uruguay"
msgstr "Urugwaj"
#: ../../lang.pm:1
#, c-format
msgid "Benin"
msgstr "Benin"
#: ../../printer/main.pm:1
#, c-format
msgid "SMB/Windows server \"%s\", share \"%s\""
msgstr "Serwer SMB/Windows \"%s\", współudział \"%s\""
#: ../../standalone/drakperm:1
#, c-format
msgid "Path selection"
msgstr "Wybór ścieżki"
#: ../../standalone/scannerdrake:1
#, c-format
msgid "Name/IP address of host:"
msgstr "Nazwa/adres IP komputera:"
#: ../../Xconfig/various.pm:1
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitor: %s\n"
#: ../../standalone/drakperm:1
#, c-format
msgid "Custom & system settings"
msgstr "Dowolne i systemowe ustawienia"
#: ../../partition_table/raw.pm:1
#, c-format
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
"It means writing anything on the disk will end up with random, corrupted "
"data."
msgstr ""
"Z Twoim dyskiem dzieje się coś niedobrego. \n"
"Nie powiódł się test spójności danych. \n"
"Oznacza to, że zapisanie czegokolwiek na dysku może się skończyć zapisem "
"losowych, uszkodzonych danych."
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printer host name or IP missing!"
msgstr "Brak nazwy komputera lub adresu IP!"
#: ../../standalone/drakbackup:1
#, c-format
msgid "Please check all users that you want to include in your backup."
msgstr ""
"Zaznacz wszystkich użytkowników, którzy mają zostać uwzględnieni w archiwum."
#: ../../standalone/scannerdrake:1
#, c-format
msgid ""
"The %s must be configured by printerdrake.\n"
"You can launch printerdrake from the Mandrake Control Center in Hardware "
"section."
msgstr ""
"Ten skaner %s musi być skonfigurowany przez program printerdrake.\n"
"Można uruchomić go z Centrum Sterowania Mandrake w dziale Sprzęt."
#: ../../lang.pm:1
#, c-format
msgid "Bangladesh"
msgstr "Bangladesz"
#: ../../standalone/drakxtv:1
#, c-format
msgid "Japan (cable)"
msgstr "Japonia (kablówka)"
#: ../../standalone/drakfont:1
#, c-format
msgid "Initial tests"
msgstr "Testy początkowe"
#: ../../network/isdn.pm:1
#, c-format
msgid "Continue"
msgstr "Kontynuuj"
#: ../../standalone/drakbackup:1
#, c-format
msgid "Custom Restore"
msgstr "Odtwarzanie własne"
#: ../../standalone/drakbackup:1
#, c-format
msgid "Saturday"
msgstr "Sobota"
#: ../../help.pm:1
#, c-format
msgid ""
"\"%s\": if a sound card is detected on your system, it is displayed here.\n"
"If you notice the sound card displayed is not the one that is actually\n"
"present on your system, you can click on the button and choose another\n"
"driver."
msgstr ""
"\"%s\": jeśli karta dźwiękowa została wykryta w systemie, jest ona\n"
"wyświetlana w tym miejscu. Jeśli zauważysz, że wyświetlana karta\n"
"nie jest tą, która jest aktualnie obecna w systemie, możesz kliknąć\n"
"przycisk i wybrać inny sterownik."
#: ../../security/help.pm:1
#, c-format
msgid "Set the root umask."
msgstr "Ustaw maskę umask roota."
#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Script-based"
msgstr "Oparta o skrypt"
#: ../../install_any.pm:1 ../../partition_table.pm:1
#, c-format
msgid "Error reading file %s"
msgstr "Błąd odczytu pliku %s"
#: ../../harddrake/v4l.pm:1
#, c-format
msgid "PLL setting:"
msgstr "Ustawienia PLL:"
#: ../../install_interactive.pm:1 ../../install_steps.pm:1
#, c-format
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Partycja FAT musi być zamontowana w /boot/efi"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid " on "
msgstr " na "
#: ../../diskdrake/dav.pm:1
#, c-format
msgid "The URL must begin with http:// or https://"
msgstr "URL powinien zaczynać się od http:// lub https://"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
"are supported by all the spoolers."
msgstr ""
"Można określić URI do dostępu do drukarki. Adres URI musi spełniać albo "
"specyfikację CUPS albo Foomatic. Należy zauważyć, że nie wszystkie typy "
"adresów URI są obsługiwane przez kolejki."
#: ../../any.pm:1
#, c-format
msgid "Other OS (SunOS...)"
msgstr "Inny system operacyjny (SunOS...)"
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Install/Upgrade"
msgstr "Instalacja/Uaktualnienie"
#: ../../install_steps_gtk.pm:1
#, c-format
msgid "%d packages"
msgstr "%d pakietów"
#: ../../crypto.pm:1 ../../lang.pm:1
#, c-format
msgid "Costa Rica"
msgstr "Kostaryka"
#: ../../standalone.pm:1
#, c-format
msgid ""
"[--config-info] [--daemon] [--debug] [--default] [--show-conf]\n"
"Backup and Restore application\n"
"\n"
"--default : save default directories.\n"
"--debug : show all debug messages.\n"
"--show-conf : list of files or directories to backup.\n"
"--config-info : explain configuration file options (for non-X "
"users).\n"
"--daemon : use daemon configuration. \n"
"--help : show this message.\n"
"--version : show version number.\n"
msgstr ""
"[--config-info] [--daemon] [--debug] [--default] [--show-conf]\n"
"Aplikacja archiwizacji i odtwarzania\n"
"\n"
"--default : zapisuje domyślne katalogi.\n"
"--debug : wyświetla wszystkie komunikaty diagnostyczne.\n"
"--show-conf : lista plików lub katalogów do archiwizacji.\n"
"--config-info : wyjaśnia opcje plików konfiguracji (dla\n"
" użytkowników nie korzystających z X Window).\n"
"--daemon : używa konfiguracji demona. \n"
"--help : wyświetla ten komunikat.\n"
"--version : wyświetla wersję.\n"
#: ../../diskdrake/smbnfs_gtk.pm:1
#, c-format
msgid "Domain Authentication Required"
msgstr "Wymagane uwierzytelnianie domenowe"
#: ../../standalone/drakTermServ:1
#, c-format
msgid ""
"\n"
"\n"
" Thanks:\n"
"\t- LTSP Project http://www.ltsp.org\n"
"\t- Michael Brown <mbrown\\@fensystems.co.uk>\n"
"\n"
msgstr ""
"\n"
"\n"
" Podziękowania:\n"
"\t- Projekt LTSP http://www.ltsp.org\n"
"\t- Michael Brown <mbrown\\@fensystems.co.uk>\n"
"\n"
#: ../../security/level.pm:1
#, c-format
msgid "Use libsafe for servers"
msgstr "Używaj libsafe dla serwerów"
#: ../../keyboard.pm:1
#, c-format
msgid "Icelandic"
msgstr "islandzki"
#: ../../standalone.pm:1
#, c-format
msgid ""
"\n"
"Usage: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
"testing] [-v|--version] "
msgstr ""
"\n"
"Użycie: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
"testing] [-v|--version] "
#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"Maximum size\n"
" allowed for Drakbackup (MB)"
msgstr ""
"Maksymalny rozmiar\n"
" dostępny dla Drakbackup (Mb)"
#: ../../loopback.pm:1
#, c-format
msgid "Circular mounts %s\n"
msgstr "Zapętlone montowanie %s\n"
#: ../../standalone/drakboot:1
#, c-format
msgid "Lilo/grub mode"
msgstr "Tryb Lilo/Grub"
#: ../../lang.pm:1
#, c-format
msgid "Martinique"
msgstr "Martynika"
#: ../../standalone/drakbackup:1
#, c-format
msgid "HardDrive / NFS"
msgstr "Twardy dysk / NFS"
#: ../../standalone/drakbackup:1
#, c-format
msgid "Old user list:\n"
msgstr "Stara lista użytkowników:\n"
#: ../../standalone/drakbackup:1
#, c-format
msgid "Search Backups"
msgstr "Przeszukaj archiwa"
#: ../../modules/parameters.pm:1
#, c-format
msgid "a number"
msgstr "Numer"
#: ../../keyboard.pm:1
#, c-format
msgid "Swedish"
msgstr "szwedzki"
#. -PO: the %s is the driver type (scsi, network, sound,...)
#: ../../modules/interactive.pm:1
#, c-format
msgid "Which %s driver should I try?"
msgstr "Który sterownik %s wypróbować?"
#: ../../standalone/logdrake:1
#, c-format
msgid ""
"You will receive an alert if one of the selected services is no longer "
"running"
msgstr ""
"Otrzymasz ostrzeżenie jeśli jedna lub więcej zaznaczonych usług nie zadziała"
#: ../../standalone/drakbackup:1
#, c-format
msgid "Weekday"
msgstr "Dzień tygodnia"
#: ../../diskdrake/hd_gtk.pm:1
#, c-format
msgid "Filesystem types:"
msgstr "Typy systemu plików:"
#: ../../lang.pm:1
#, c-format
msgid "Northern Mariana Islands"
msgstr "Północne Wyspy Mariańskie"
#: ../../printer/main.pm:1
#, c-format
msgid ", multi-function device on HP JetDirect"
msgstr ",wielofunkcyjne urządzenie podłączone do HP JetDirect"
#: ../../mouse.pm:1
#, c-format
msgid "none"
msgstr "brak"
#: ../../standalone/drakconnect:1
#, c-format
msgid ""
"Name of the profile to create (the new profile is created as a copy of the "
"current one) :"
msgstr ""
"Nazwa profilu do utworzenia (nowy profil jest tworzony jako kopia "
"bieżącego) :"
#: ../../harddrake/data.pm:1
#, c-format
msgid "Floppy"
msgstr "Stacja dysków"
#: ../../standalone/drakTermServ:1
#, c-format
msgid ""
" - Maintain /etc/exports:\n"
" \t\tClusternfs allows export of the root filesystem to diskless "
"clients. drakTermServ\n"
" \t\tsets up the correct entry to allow anonymous access to the root "
"filesystem from\n"
" \t\tdiskless clients.\n"
"\n"
" \t\tA typical exports entry for clusternfs is:\n"
" \t\t\n"
" \t\t/ (ro,all_squash)\n"
" \t\t/home SUBNET/MASK(rw,root_squash)\n"
"\t\t\t\n"
"\t\t\tWith SUBNET/MASK being defined for your network."
msgstr ""
" - Zarządzanie plikiem /etc/exports:\n"
" \t\tClusternfs umożliwia wyeksportowanie głównego systemu plików\n"
" \t\tdo bezdyskowych klientów\n"
" \t\tustawia poprawny wpis umożliwiający anonimowy dostęp do "
"głównego\n"
" \t\tsystemu plików z bezdyskowych klientów.\n"
"\n"
" \t\tTypowy wpis eksportu dla clusternfs to:\n"
" \t\t\n"
" \t\t/ (ro,all_squash)\n"
" \t\t/home PODSIEĆ/MASKA(rw,rw_squash)\n"
"\t\t\t\n"
"\t\t\tOpcje PODSIEĆ/MASKA definiują twoją sieć."
#: ../../standalone/drakfont:1
#, c-format
msgid "Ghostscript referencing"
msgstr "Odwoływanie się do Ghostscripta"
#: ../../help.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "Bootloader"
msgstr "Program rozruchowy"
#: ../../security/l10n.pm:1
#, c-format
msgid "Authorize all services controlled by tcp_wrappers"
msgstr "Autoryzowanie wszystkich usług kontrolowanych przez tcp_wrappers"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Move"
msgstr "Przesuń"
#: ../../any.pm:1 ../../help.pm:1
#, c-format
msgid "Bootloader to use"
msgstr "Preferowany program rozruchowy"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "SMB server host"
msgstr "Nazwa serwera SMB"
#: ../../standalone/drakTermServ:1
#, c-format
msgid "Name Servers:"
msgstr "Serwery nazw:"
#: ../../standalone/drakbackup:1
#, c-format
msgid "Minute"
msgstr "Minuta"
#: ../../install_messages.pm:1
#, c-format
msgid ""
"\n"
"Warning\n"
"\n"
"Please read carefully the terms below. If you disagree with any\n"
"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
"to continue the installation without using these media.\n"
"\n"
"\n"
"Some components contained in the next CD media are not governed\n"
"by the GPL License or similar agreements. Each such component is then\n"
"governed by the terms and conditions of its own specific license. \n"
"Please read carefully and comply with such specific licenses before \n"
"you use or redistribute the said components. \n"
"Such licenses will in general prevent the transfer, duplication \n"
"(except for backup purposes), redistribution, reverse engineering, \n"
"de-assembly, de-compilation or modification of the component. \n"
"Any breach of agreement will immediately terminate your rights under \n"
"the specific license. Unless the specific license terms grant you such\n"
"rights, you usually cannot install the programs on more than one\n"
"system, or adapt it to be used on a network. In doubt, please contact \n"
"directly the distributor or editor of the component. \n"
"Transfer to third parties or copying of such components including the \n"
"documentation is usually forbidden.\n"
"\n"
"\n"
"All rights to the components of the next CD media belong to their \n"
"respective authors and are protected by intellectual property and \n"
"copyright laws applicable to software programs.\n"
msgstr ""
"\n"
"Ostrzeżenie\n"
"\n"
"Proszę przeczytać uważnie poniższe zasady. Jeśli nie zgadzasz się\n"
"z jakąkolwiek ich częścią, nie masz prawa do instalacji kolejnego\n"
"nośnika CD. Naciśnij \"Odrzuć\" aby kontynuować instalację bez\n"
"używania tego nośnika.\n"
"\n"
"\n"
"Niektóre komponenty zawarte na następnym nośniku nie podlegają\n"
"zasadom licencji GPL lub licencji pokrewnych. Każdy taki komponent\n"
"podlega zasadom własnej licencji. Należy przeczytać uważnie\n"
"licencję każdego komponentu przed jego rozpowszechnianiem lub\n"
"instalacją.\n"
"Takie licencje w ogólności ograniczają przesyłanie, kopiowanie\n"
"(z wyjątkiem celów archiwizacyjnych), rozpowszechnianie,\n"
"dezasemblację, dekompilację lub modyfikację.\n"
"Jakiekolwiek naruszenie zasad licencyjnych natychmiast\n"
"powoduje wygaśnięcie twoich praw do komponentu. Pomimo\n"
"specyficznych dla danej licencji zasad, zazwyczaj nie można\n"
"instalować programów, które im podlegają, na więcej niż jednym\n"
"systemie, lub też adaptować go do wykorzystania w sieci.\n"
"W razie wątpliwości należy skontaktować się z dystrybutorem lub\n"
"autorem danego komponentu.\n"
"Przesyłanie do osób trzecich lub kopiowanie takich komponentów\n"
"włączając dokumentację jest zazwyczaj zabronione.\n"
"\n"
"\n"
"Wszelkie prawa do komponentów zawartych na kolejnym nośniku CD\n"
"należą do ich autorów i są chronione przez prawa autorskie\n"
"dotyczące oprogramowania komputerowego.\n"
#: ../../standalone/printerdrake:1
#, c-format
msgid "/_Expert mode"
msgstr "/_Tryb zaawansowany"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
msgstr "Usuń tą drukarkę ze Star Office/OpenOffice.org/GIMP"
#: ../../services.pm:1
#, c-format
msgid ""
"Linux Virtual Server, used to build a high-performance and highly\n"
"available server."
msgstr ""
"Wirtualny Serwer linuksowy używany jest przy tworzeniu bardzo wydajnych\n"
"serwerów o dużej niezawodności."
#: ../../lang.pm:1
#, c-format
msgid "Micronesia"
msgstr "Mikronezja"
#: ../../Xconfig/resolution_and_depth.pm:1
#, c-format
msgid "4 billion colors (32 bits)"
msgstr "4 mld. kolorów (32 bity)"
#: ../../steps.pm:1
#, c-format
msgid "License"
msgstr "Licencja"
#: ../../standalone/drakbackup:1
#, c-format
msgid "This may take a moment to generate the keys."
msgstr "Generacja kluczy może zająć chwilę."
#: ../../standalone/draksec:1
#, c-format
msgid ""
"Here, you can setup the security level and administrator of your machine.\n"
"\n"
"\n"
"The Security Administrator is the one who will receive security alerts if "
"the\n"
"'Security Alerts' option is set. It can be a username or an email.\n"
"\n"
"\n"
"The Security Level menu allows you to select one of the six preconfigured "
"security levels\n"
"provided with msec. These levels range from poor security and ease of use, "
"to\n"
"paranoid config, suitable for very sensitive server applications:\n"
"\n"
"\n"
"<span foreground=\"royalblue3\">Poor</span>: This is a totally unsafe but "
"very\n"
"easy to use security level. It should only be used for machines not "
"connected to\n"
"any network and that are not accessible to everybody.\n"
"\n"
"\n"
"<span foreground=\"royalblue3\">Standard</span>: This is the standard "
"security\n"
"recommended for a computer that will be used to connect to the Internet as "
"a\n"
"client.\n"
"\n"
"\n"
"<span foreground=\"royalblue3\">High</span>: There are already some\n"
"restrictions, and more automatic checks are run every night.\n"
"\n"
"\n"
"<span foreground=\"royalblue3\">Higher</span>: The security is now high "
"enough\n"
"to use the system as a server which can accept connections from many "
"clients. If\n"
"your machine is only a client on the Internet, you should choose a lower "
"level.\n"
"\n"
"\n"
"<span foreground=\"royalblue3\">Paranoid</span>: This is similar to the "
"previous\n"
"level, but the system is entirely closed and security features are at their\n"
"maximum"
msgstr ""
"W tym miejscu można skonfigurować poziom bezpieczeństwa oraz administratora "
"komputera.\n"
"\n"
"\n"
"Administrator bezpieczeństwa jest jedyną osobą, która będzie otrzymywała\n"
"zawiadomienia dotyczące bezpieczeństwa jeśli ustawiono opcję \"Alarmy "
"bezpieczeństwa\".\n"
"To może być nazwa użytkownika lub adres e-mail.\n"
"\n"
"Menu poziomu bezpieczeństwa umożliwia wybranie jednej z sześciu wstępnie\n"
"skonfigurowanych poziomów bezpieczeństwa udostępnionych przez msec. Poziomy "
"te\n"
"są od słabego, łatwego w użyciu poziomu bezpieczeństwa aż do paranoidalnej\n"
"konfiguracji dobrej dla niektórych wrażliwych aplikacji serwera:\n"
"\n"
"<span foreground=\"royalblue3\">Wysoki</span>: To jest całkowicie "
"niebezpieczny lecz\n"
"bardzo łatwy w używaniu poziom bezpieczeństwa. Powinien być tylko używany "
"na\n"
"maszynach nie połączonych do żadnej sieci, który jest dla wszystkich "
"dostępny.\n"
"\n"
"<span foreground=\"royalblue3\">Zwykły</span>: To jest standardowy poziom "
"zalecany\n"
"dla komputera, który będzie używany do łączenia z Internetem jako klienta.\n"
"\n"
"<span foreground=\"royalblue3\">Wysoki</span>: To jest poziom, w którym "
"istnieją\n"
"wciąż pewne ograniczenia oraz więcej automatycznych procesów sprawdzających\n"
"jest uruchamianych co noc.\n"
"\n"
"<span foreground=\"royalblue3\">Wyższy</span>: Poziom bezpieczeństwa jest\n"
"wystarczająco wysoki, aby używać systemu jako serwera akceptującego\n"
"połączenia od wielu klientów. Jeśli twój komputer jest tylko klientem "
"Internetu,\n"
"należy wybrać niższy poziom.\n"
"\n"
"<span foreground=\"royalblue3\">Paranoidalny</span>: To jest poziom podobny "
"do\n"
"poprzedniego, lecz system jest całkowicie zamknięty i funkcje zabezpieczeń\n"
"są na maksymalnym poziomie."
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
msgstr "Automatyczne wykrywanie drukarki (drukarki lokalne, TCP/Gniazdo i SMB)"
#: ../../network/adsl.pm:1
#, c-format
msgid "Sagem (using pppoa) usb"
msgstr "Sagem (wykorzystujący pppoa) usb"
#: ../../install_any.pm:1
#, c-format
msgid ""
"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
"Wystąpił błąd - nie znaleziono urządzeń, na których można utworzyć nowe\n"
"systemy plików. Sprawdź sprzęt, by wykryć przyczynę problemu"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Starting the printing system at boot time"
msgstr "Uruchamianie systemu wydruku przy uruchamianiu komputera"
#: ../../network/netconnect.pm:1
#, c-format
msgid "Do you want to start the connection at boot?"
msgstr "Czy chcesz łączyć się Internetem przy uruchamianiu komputera?"
#: ../../standalone/harddrake2:1
#, c-format
msgid "Processor ID"
msgstr "ID procesora"
#: ../../harddrake/sound.pm:1
#, c-format
msgid "Sound trouble shooting"
msgstr "Wykrywanie problemów z dźwiękiem"
#: ../../keyboard.pm:1
#, c-format
msgid "Polish (qwerty layout)"
msgstr "polski (programisty)"
#: ../../standalone/printerdrake:1
#, c-format
msgid "/_Add Printer"
msgstr "/_Dodaj drukarkę"
#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
"\n"
"Operacje drakbackup z użyciem CD:\n"
"\n"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
"s security level.\n"
"\n"
"This printing system runs a daemon (background process) which waits for "
"print jobs and handles them. This daemon is also accessable by remote "
"machines through the network and so it is a possible point for attacks. "
"Therefore only a few selected daemons are started by default in this "
"security level.\n"
"\n"
"Do you really want to configure printing on this machine?"
msgstr ""
"Zostanie zainstalowany system wydruku %s w systemie z ustawionym poziomem "
"bezpieczeństwa \"%s\".\n"
"\n"
"Ten system wydruku uruchamia demona (proces pracujący w tle) oczekującego na "
"zadania wydruku oraz zarządzającego nimi. Demon ten jest także dostępny dla "
"komputerów zdalnych poprzez sieć oraz stanowi słaby punkt dla potencjalnego "
"ataku. Jednak tylko niektóre z demonów jest uruchamianych domyślnie po "
"ustawieniu tego poziomu bezpieczeństwa.\n"
"\n"
"Chcesz skonfigurować drukowanie na tym komputerze?"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Host \"%s\", port %s"
msgstr "Komputer \"%s\", port %s"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "This partition can't be used for loopback"
msgstr "Na tej partycji nie można założyć plikopartycji"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "File already exists. Use it?"
msgstr "Plik już istnieje. Użyć go?"
#: ../../standalone/net_monitor:1
#, c-format
msgid "received: "
msgstr "odebrano: "
#: ../../keyboard.pm:1
#, c-format
msgid "Right Alt key"
msgstr "Prawy klawisz ALT"
#: ../../standalone/harddrake2:1
#, c-format
msgid "the list of alternative drivers for this sound card"
msgstr "lista alternatywnych sterowników dla tej karty dźwiękowej"
#: ../../standalone/drakconnect:1
#, c-format
msgid "Gateway"
msgstr "Router"
#: ../../lang.pm:1
#, c-format
msgid "Tonga"
msgstr "Tonga"
#: ../../lang.pm:1
#, c-format
msgid "Tunisia"
msgstr "Tunezja"
#: ../../standalone/scannerdrake:1
#, c-format
msgid "Scanner sharing"
msgstr "Współdzielenie skanerów"
#: ../../standalone/drakconnect:1
#, c-format
msgid "Profile: "
msgstr "Profil: "
#: ../../standalone/harddrake2:1
#, c-format
msgid ""
"Click on a device in the left tree in order to display its information here."
msgstr ""
"Kliknij urządzenie w lewym drzewie w celu pobrania informacji, które zostaną "
"tutaj wyświetlone."
#: ../../security/help.pm:1
#, c-format
msgid "Allow/Forbid autologin."
msgstr "Zezwolenie/zabronienie korzystania z mechanizmu autologin."
#: ../../standalone/drakxtv:1
#, c-format
msgid "XawTV isn't installed!"
msgstr "XawTV nie jest zainstalowany!"
#: ../../standalone/drakbackup:1
#, c-format
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "Nie dołączaj krytycznych plików (passwd, group, fstab)"
#: ../../standalone/harddrake2:1
#, c-format
msgid "old static device name used in dev package"
msgstr "stara statyczna nazwa urządzenia używana w pakiecie dev"
#: ../../security/l10n.pm:1
#, c-format
msgid "Enable the logging of IPv4 strange packets"
msgstr "Funkcja monitorowania dziwnych pakietów IPv4"
#: ../../any.pm:1
#, c-format
msgid "This label is already used"
msgstr "Ta etykieta jest już używana"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
"\n"
"This wizard will help you to install your printer(s) connected to this "
"computer or connected directly to the network.\n"
"\n"
"If you have printer(s) connected to this machine, Please plug it/them in on "
"this computer and turn it/them on so that it/they can be auto-detected. Also "
"your network printer(s) must be connected and turned on.\n"
"\n"
"Note that auto-detecting printers on the network takes longer than the auto-"
"detection of only the printers connected to this machine. So turn off the "
"auto-detection of network printers when you don't need it.\n"
"\n"
" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
"to set up your printer(s) now."
msgstr ""
"\n"
"Witaj w Druidzie Instalacji Drukarki\n"
"\n"
"Ten druid pomoże ci zainstalować twoją drukarkę (drukarki) podłączone do "
"tego komputera lub podłączone bezpośrednio do sieci.\n"
"\n"
"Jeśli posiadasz drukarkę (drukarki) podłączone do tego komputera, sprawdź "
"połączenie oraz włącz ich zasilanie dzięki czemu będzie można je "
"automatycznie wykryć. Także drukarki sieciowe i komputery Windows muszą być "
"połączone i włączone do zasilania.\n"
"\n"
"Należy zauważyć, że automatyczne wykrywanie drukarek w sieci zabiera więcej "
"czasu niż automatyczne wykrywanie drukarek podłączonych bezpośrednio do "
"komputera. Tak więc wyłącz automatyczne wykrywanie drukarek sieciowych, "
"jeśli nie potrzebujesz tej opcji.\n"
"\n"
"Kliknij przycisk \"Dalej\" w przypadku gotowości lub \"Anuluj\" jeśli nie "
"chcesz ustawiać teraz drukarki (drukarek)."
#: ../../keyboard.pm:1
#, c-format
msgid "Greek (polytonic)"
msgstr "grecki (politoniczny)"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "Po sformatowaniu, wszystkie dane na partycji %s zostaną utracone"
#: ../../standalone/net_monitor:1
#, c-format
msgid "Connection Time: "
msgstr "Czas połączenia: "
#: ../../standalone/livedrake:1
#, c-format
msgid ""
"Please insert the Installation Cd-Rom in your drive and press Ok when done.\n"
"If you don't have it, press Cancel to avoid live upgrade."
msgstr ""
"Włóż płytę instalacyjną CD do kieszeni czytnika i naciśnij Ok.\n"
"Jeśli jej nie posiadasz, naciśnij Anuluj, by pominąć uaktualnienie."
#: ../../standalone/drakperm:1
#, c-format
msgid "Use group id for execution"
msgstr "użyj id grupy dla wykonywania"
#: ../../any.pm:1
#, c-format
msgid "Choose the default user:"
msgstr "Wybierz domyślnego użytkownika:"
#: ../../lang.pm:1
#, c-format
msgid "Gabon"
msgstr "Gabon"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"\n"
"Printers on remote CUPS servers do not need to be configured here; these "
"printers will be automatically detected."
msgstr ""
"\n"
"Korzystając z sieciowego serwera CUPS nie ma potrzeby\n"
"konfiguracji w tym miejscu żadnych drukarek; zostaną one automatycznie\n"
"wykryte."
#: ../../any.pm:1
#, c-format
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
"when your installation is complete and you restart your system."
msgstr ""
"Mandrake Linux obsługuje wiele języków. Wybierz\n"
"języki do zainstalowania. Będą one dostępne po zakończeniu\n"
"instalacji i ponownym uruchomieniu systemu."
#: ../../standalone/drakbackup:1
#, c-format
msgid "Directory (or module) to put the backup on this host."
msgstr ""
"Katalog (lub moduł) na komputerze, do którego przeniesione zostanie archiwum."
#: ../../diskdrake/smbnfs_gtk.pm:1
#, c-format
msgid "Domain"
msgstr "Domena"
#: ../../any.pm:1
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Określ rozmiar pamięci, jeśli jest to wymagane (znaleziono %d MB)"
#: ../../help.pm:1
#, c-format
msgid ""
"LILO and grub are GNU/Linux bootloaders. Normally, this stage is totally\n"
"automated. DrakX will analyze the disk boot sector and act according to\n"
"what it finds there:\n"
"\n"
" * if a Windows boot sector is found, it will replace it with a grub/LILO\n"
"boot sector. This way you will be able to load either GNU/Linux or another\n"
"OS.\n"
"\n"
" * if a grub or LILO boot sector is found, it will replace it with a new\n"
"one.\n"
"\n"
"If it cannot make a determination, DrakX will ask you where to place the\n"
"bootloader."
msgstr ""
"LILO i grub są programami rozruchowymi systemu GNU/Linux. Zazwyczaj ten\n"
"etap jest całkowicie zautomatyzowany. Instalator przeanalizuje sektor\n"
"rozruchowy oraz wykona operacje zależne od tego co zostanie tam znalezione:\n"
"\n"
" * jeśli zostanie znaleziony sektor rozruchowy Windows zostanie on\n"
"zastąpiony sektorem rozruchowym grub/LILO. Dzięki temu będzie możliwość\n"
"uruchamiania zarówno systemu GNU/Linux jak i innego systemu operacyjnego.\n"
"\n"
" * jeśli zostanie znaleziony sektor rozruchowy grub lub LILO zostanie\n"
"on zastąpiony nowym sektorem.\n"
"\n"
"W przypadku, gdy nie będzie można określić sektora rozruchowego, instalator\n"
"wyświetli pytanie gdzie należy go umieścić."
#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Provider dns 2 (optional)"
msgstr "2 DNS dostawcy (opcjonalnie)"
#: ../../any.pm:1 ../../help.pm:1
#, c-format
msgid "Boot device"
msgstr "Urządzenie startowe"
#: ../../install_interactive.pm:1
#, c-format
msgid "Which partition do you want to resize?"
msgstr "Którą partycję chcesz zmniejszyć?"
#: ../../lang.pm:1
#, c-format
msgid "United States Minor Outlying Islands"
msgstr "Wyspy Zewnętrzne Stanów Zjednoczonych"
#: ../../lang.pm:1
#, c-format
msgid "Djibouti"
msgstr "Dżibuti"
#: ../../standalone/logdrake:1
#, c-format
msgid "A tool to monitor your logs"
msgstr "Narzędzie od monitorowania logów"
#: ../../network/netconnect.pm:1
#, c-format
msgid "detected on port %s"
msgstr "wykryto na porcie %s"
#: ../../printer/data.pm:1
#, c-format
msgid "LPD"
msgstr "LPD"
#: ../../Xconfig/various.pm:1
#, c-format
msgid "Graphics card: %s\n"
msgstr "Karta graficzna: %s\n"
#: ../../standalone/printerdrake:1
#, c-format
msgid "/Set as _Default"
msgstr "/Ustaw jako _domyślne"
#: ../../security/l10n.pm:1
#, c-format
msgid "Accept icmp echo"
msgstr "Akceptowanie echa icmp"
#: ../../bootloader.pm:1
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
#: ../../mouse.pm:1
#, c-format
msgid "Logitech CC Series with Wheel emulation"
msgstr "Logitech seria CC z emulacją kółka"
#: ../../standalone/drakboot:1
#, c-format
msgid "Splash selection"
msgstr "Wybór ekranu"
#: ../../partition_table.pm:1
#, c-format
msgid "Extended partition not supported on this platform"
msgstr "Na tej platformie nie istnieją partycje rozszerzone"
#: ../../network/isdn.pm:1
#, c-format
msgid "ISDN Configuration"
msgstr "Konfiguracja ISDN"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "high"
msgstr "Wysoki"
#: ../../standalone/drakgw:1
#, c-format
msgid "Internet Connection Sharing"
msgstr "Współdzielenie połączenia z Internetem"
#: ../../standalone/logdrake:1
#, c-format
msgid "Choose file"
msgstr "Wybierz plik"
#: ../../network/shorewall.pm:1
#, c-format
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fixes after installation."
msgstr ""
"Ostrzeżenie! Została wykryta istniejąca konfiguracja zapory ogniowej. Może "
"być konieczne dokonanie kilku ręcznych poprawek po instalacji. Kontynuować?"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printing/Photo Card Access on \"%s\""
msgstr "Drukowanie/Dostęp do kart foto na \"%s\""
#: ../../security/l10n.pm:1
#, c-format
msgid "Daily security check"
msgstr "Dzienne sprawdzenie bezpieczeństwa"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Do you want to enable printing on the printers mentioned above or on "
"printers in the local network?\n"
msgstr ""
"Czy chcesz umożliwić drukowanie na powyższych drukarkach lub na drukarkach "
"sieciowych?\n"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printer default settings"
msgstr "Domyślne ustawienia drukarki"
#: ../../standalone/harddrake2:1
#, c-format
msgid ""
"the WP flag in the CR0 register of the cpu enforce write proctection at the "
"memory page level, thus enabling the processor to prevent unchecked kernel "
"accesses to user memory (aka this is a bug guard)"
msgstr ""
"Flaga WP w rejestrze CR0 procesora, wymusza ochronę przed zapisem na "
"poziomie strony pamięci, jednak umożliwiając procesorowi zabezpieczenie "
"niesprawdzonego dostępu jądra do pamięci użytkownika (coś jak strażnik "
"chroniący przed błędami)"
#: ../../mouse.pm:1
#, c-format
msgid "Generic PS2 Wheel Mouse"
msgstr "Mysz standardowa PS/2 z kółkiem"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Removing old printer \"%s\"..."
msgstr "Usuwanie starej drukarki \"%s\"..."
#: ../../standalone/harddrake2:1
#, c-format
msgid "Select a device !"
msgstr "Wybierz urządzenie !"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Remove selected server"
msgstr "Usuwanie wybranego serwera"
#: ../../network/adsl.pm:1
#, c-format
msgid "Sagem (using dhcp) usb"
msgstr "Sagem (wykorzystujący dhcp) usb"
#: ../../lang.pm:1
#, c-format
msgid "French Southern Territories"
msgstr "Francuskie Terytoria Południowe"
#: ../../standalone/harddrake2:1
#, c-format
msgid "the vendor name of the processor"
msgstr "nazwa producenta procesora"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "All data on this partition should be backed-up"
msgstr "Wszystkie dane na tej partycji powinny zostać zarchiwizowane"
#: ../../install_steps_gtk.pm:1
#, c-format
msgid "Installing package %s"
msgstr "Instalowanie pakietu %s"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Checking device and configuring HPOJ..."
msgstr "Sprawdzanie urządzenia i konfigurowanie HPOJ..."
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
msgstr ""
"Żeby mieć więcej partycji, należy usunąć jedną,\n"
"tak aby było możliwe utworzenie partycji rozszerzonej."
#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Your printer was configured automatically to give you access to the photo "
"card drives from your PC. Now you can access your photo cards using the "
"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
"\"man mtools\" on the command line for more info). You find the card's file "
"system under the drive letter \"p:\", or subsequent drive letters when you "
"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
"can switch between drive letters with the field at the upper-right corners "
"of the file lists."
msgstr ""
"Twoja drukarka HP została skonfigurowana automatycznie w taki sposób, aby "
"umożliwić dostęp do urządzeń kart foto z twojego komputera. Teraz można "
"uzyskać dostęp do kart foto przy użyciu graficznego programu \"MtoolsFM"
"\" (Menu: \"Aplikacje\" -> \"Narzędzia plikowe\" -> \"Menedżer plików MTools"
"\") lub narzędzi pracujących w trybie tekstowym \"mtools\" (wprowadź \"man "
"mtools\" z wiersza pleceń aby uzyskać więcej informacji). Można znaleźć "
"system plików karty pod literą napędu \"p:\", lub kolejnymi literami napędu "
"w przypadku posiadania większe liczby napędów kart foto. Za pomocą programu "
"\"MtoolsFM\" można przełączać się między literami napędów w polu "
"wyświetlanym w prawym górnym rogu listy plików."
#: ../../steps.pm:1
#, c-format
msgid "Choose packages to install"
msgstr "Wybór pakietów"
#: ../../install_interactive.pm:1
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
"WSZYSTKIE istniejące partycje i dane na nich zapisane zostaną usunięte z "
"dysku %s"
#: ../../install_steps_interactive.pm:1
#, c-format
msgid ""
"Your system does not have enough space left for installation or upgrade (%d "
"> %d)"
msgstr "Zbyt mało miejsca na instalację lub uaktualnienie (%d > %d)"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
msgstr ""
"Każda drukarka musi mieć nazwę (na przykład \"drukarka\"). Pola Opis i "
"Lokalizacja nie muszą być wypełniane. Są to komentarze dla użytkowników."
#: ../../help.pm:1
#, c-format
msgid ""
"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
"information on how to setup a new printer. The interface presented there is\n"
"similar to the one used during installation."
msgstr ""
"\"%s\": kliknięcie przycisku \"%s\" spowoduje otwarcie\n"
"druida konfiguracji drukarki. Skonsultuj się z odpowiednim rozdziałem\n"
"podręcznika aby znaleźć więcej informacji na temat sposobu konfiguracji\n"
"nowej drukarki. Interfejs wykorzystywany w tym miejscu jest podobny\n"
"do interfejsu używanego w czasie instalacji."
#: ../../lang.pm:1
#, c-format
msgid "Bhutan"
msgstr "Bhutan"
#: ../../standalone/drakgw:1
#, c-format
msgid "Network interface"
msgstr "Interfejs sieciowy"
#: ../../standalone/net_monitor:1
#, c-format
msgid "Disconnection from Internet failed."
msgstr "Rozłączanie od Internetu zakończone niepowodzeniem."
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Reading printer data..."
msgstr "Odczytywanie danych drukarki ..."
#: ../../keyboard.pm:1
#, c-format
msgid "Korean keyboard"
msgstr "koreański"
#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
#, c-format
msgid "Not connected"
msgstr "Nie połączony"
#: ../../keyboard.pm:1
#, c-format
msgid "Greek"
msgstr "grecki"
#: ../../lang.pm:1
#, c-format
msgid "Saint Kitts and Nevis"
msgstr "Saint Kitts and Nevis"
#: ../../mouse.pm:1
#, c-format
msgid "Generic 3 Button Mouse with Wheel emulation"
msgstr "Mysz standardowa 3-przyciskowa z emulacją kółka"
#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"Transfer successful\n"
"You may want to verify you can login to the server with:\n"
"\n"
"ssh -i %s %s\\@%s\n"
"\n"
"without being prompted for a password."
msgstr ""
"Przesyłanie zakończone pomyślnie\n"
"Może zachodzić potrzeba weryfikacji logowania na serwerze:\n"
"\n"
"ssh -i %s %s\\@%s\n"
"\n"
"Powyższe polecenie nie wyświetla prośby o hasło."
#: ../../any.pm:1
#, c-format
msgid "Enable OF Boot?"
msgstr "Uaktywnić uruchamianie OF?"
#: ../../fsedit.pm:1
#, c-format
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "Nie można używać JFS na partycji mniejszej niż 16MB"
#: ../../standalone/drakbackup:1
#, c-format
msgid "Erase your RW media (1st Session)"
msgstr "Czyszczenie nośnika RW (1-wsza sesja)"
#: ../../Xconfig/various.pm:1
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Synchronizacja pionowa monitora: %s\n"
#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
#: ../../diskdrake/removable.pm:1 ../../diskdrake/smbnfs_gtk.pm:1
#, c-format
msgid "Mount point"
msgstr "Punkt montowania"
#: ../../Xconfig/test.pm:1
#, c-format
msgid ""
"An error occurred:\n"
"%s\n"
"Try to change some parameters"
msgstr ""
"Wystąpił błąd:\n"
"%s\n"
"Spróbuj zmienić niektóre parametry"
#: ../../printer/main.pm:1
#, c-format
msgid "TCP/IP host \"%s\", port %s"
msgstr "Komputer TCP/IP \"%s\", port %s"
#: ../../standalone/drakperm:1
#, c-format
msgid "User :"
msgstr "Użytkownik :"
#: ../../standalone/drakbackup:1
#, c-format
msgid "Restore system"
msgstr "Odtwórz system"
#: ../../standalone/scannerdrake:1
#, c-format
msgid ""
"These are the machines on which the locally connected scanner(s) should be "
"available:"
msgstr ""
"To są maszyny, na których powinny być dostępne lokalnie podłączone skanery:"
#: ../../standalone/drakpxe:1
#, c-format
msgid "The DHCP end ip"
msgstr "Końcowy adres IP dla DHCP"
#: ../../diskdrake/smbnfs_gtk.pm:1
#, c-format
msgid "Another one"
msgstr "Jeszcze jedna"
#: ../../standalone/drakbackup:1
#, c-format
msgid "Drakbackup"
msgstr "Drakbackup"
#: ../../lang.pm:1
#, c-format
msgid "Colombia"
msgstr "Kolumbia"
#: ../../standalone/drakgw:1
#, c-format
msgid ""
"Current configuration of `%s':\n"
"\n"
"Network: %s\n"
"IP address: %s\n"
"IP attribution: %s\n"
"Driver: %s"
msgstr ""
"Aktualna konfiguracja \"%s\":\n"
"\n"
"Sieć: %s\n"
"Adres IP: %s\n"
"Maska IP: %s\n"
"Sterownik: %s"
#: ../../Xconfig/monitor.pm:1
#, c-format
msgid "Plug'n Play"
msgstr "Plug'n Play"
#: ../../lang.pm:1
#, c-format
msgid "Reunion"
msgstr "Reunion"
#: ../../install_steps_gtk.pm:1 ../../diskdrake/hd_gtk.pm:1
#: ../../diskdrake/smbnfs_gtk.pm:1
#, c-format
msgid "Details"
msgstr "Szczegóły"
#: ../../network/tools.pm:1
#, c-format
msgid "For security reasons, it will be disconnected now."
msgstr "Ze względów bezpieczeństwa połączenie zostanie teraz rozłączone."
#: ../../standalone/drakbug:1
#, c-format
msgid "Synchronization tool"
msgstr "Narzędzie synchronizacji"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Checking your system..."
msgstr "Sprawdzanie systemu..."
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Print"
msgstr "Wydrukuj"
#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"Insert the tape with volume label %s\n"
" in the tape drive device %s"
msgstr ""
"Włóż taśmę z etykietą woluminu %s\n"
"do napędu %s."
#: ../../lang.pm:1
#, c-format
msgid "Mongolia"
msgstr "Mongolia"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Mounted\n"
msgstr "Zamontowana\n"
#: ../../standalone/printerdrake:1
#, c-format
msgid "Configure CUPS"
msgstr "Konfiguracja CUPS"
#: ../../help.pm:1
#, c-format
msgid "Graphical Interface"
msgstr "Interfejs graficzny"
#: ../../standalone/drakbackup:1
#, c-format
msgid "Restore Users"
msgstr "Odtwórz użytkowników"
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Encryption key for %s"
msgstr "Klucz szyfrujący dla %s"
#: ../../services.pm:1
#, c-format
msgid ""
"The portmapper manages RPC connections, which are used by\n"
"protocols such as NFS and NIS. The portmap server must be running on "
"machines\n"
"which act as servers for protocols which make use of the RPC mechanism."
msgstr ""
"Portmapper zarządza połączeniami RPC, używanymi przez protokoły takie jak\n"
"NFS i NIS. Jeżeli Twoja maszyna jest serwerem dla protokołów, które\n"
"wykorzystują RPC, należy inicjować tą usługę przy uruchamianiu."
#: ../../standalone/harddrake2:1
#, c-format
msgid "Detected hardware"
msgstr "Wykryty sprzęt"
#: ../../lang.pm:1
#, c-format
msgid "Mauritius"
msgstr "Mauritius"
#: ../../keyboard.pm:1
#, c-format
msgid "Myanmar (Burmese)"
msgstr "myanmar (Burmese)"
#: ../../fs.pm:1
#, c-format
msgid "Enabling swap partition %s"
msgstr "Włączanie partycji swap %s"
#: ../../install_interactive.pm:1
#, c-format
msgid "There is no FAT partition to use as loopback (or not enough space left)"
msgstr ""
"Brak partycji FAT do użycia jako plikopartycji (lub brak wystarczającej "
"ilości wolnego miejsca)"
#: ../../keyboard.pm:1
#, c-format
msgid "Armenian (old)"
msgstr "armeński (stary)"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
"Click \"Transfer\" to overwrite it.\n"
"You can also type a new name or skip this printer."
msgstr ""
"Drukarka nazwana \"%s\" już istnieje pod %s.\n"
"Kliknij \"Prześlij\" aby ją nadpisać.\n"
"Należy także określić nową nazwę lub pominąć tą drukarkę."
#: ../../share/advertising/12-mdkexpert.pl:1
#, c-format
msgid ""
"Find the solutions of your problems via MandrakeSoft's online support "
"platform."
msgstr ""
"Znajdź rozwiązanie swoich problemów korzystając online z platformy wsparcia "
"technicznego MandrakeSoft"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid ", host \"%s\", port %s"
msgstr ", komputer \"%s\", port %s"
#: ../../lang.pm:1
#, c-format
msgid "Monaco"
msgstr "Monako"
#: ../../install_interactive.pm:1
#, c-format
msgid "Partitioning failed: %s"
msgstr "Partycjonowanie nie powiodło się: %s"
#: ../../fs.pm:1 ../../swap.pm:1
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formatowania z %s zakończone niepowodzeniem"
#: ../../standalone/drakxtv:1
#, c-format
msgid "Canada (cable)"
msgstr "Kanada (kablówka)"
#: ../../standalone/drakfloppy:1
#, c-format
msgid "Floppy creation completed"
msgstr "Zakończono tworzenie dyskietki"
#: ../../help.pm:1
#, c-format
msgid "Upgrade"
msgstr "Uaktualnij"
#: ../../help.pm:1
#, c-format
msgid "Workstation"
msgstr "Stacja robocza"
#: ../../install_steps_interactive.pm:1
#, c-format
msgid ""
"Installing package %s\n"
"%d%%"
msgstr ""
"Instalowanie pakietu %s\n"
"%d%%"
#: ../../lang.pm:1
#, c-format
msgid "Kyrgyzstan"
msgstr "Kirgistan"
#: ../../printer/main.pm:1
#, c-format
msgid "Multi-function device on USB"
msgstr "Wielofunkcyjne urządzenie podłączone do portu USB"
#: ../../help.pm:1
#, c-format
msgid "With basic documentation"
msgstr "Z podstawową dokumentacją"
#: ../../services.pm:1
#, c-format
msgid "Anacron is a periodic command scheduler."
msgstr "Anacron - program okresowo uruchamiający zadania."
#: ../../install_interactive.pm:1
#, c-format
msgid ""
"You must have a root partition.\n"
"For this, create a partition (or click on an existing one).\n"
"Then choose action ``Mount point'' and set it to `/'"
msgstr ""
"Wymagana jest obecność partycji root.\n"
"W tym celu, należy utworzyć partycję (lub kliknąć istniejącą),\n"
"a następnie wybrać \"Punkt montowania\" `/'"
#: ../../lang.pm:1
#, c-format
msgid "Western Sahara"
msgstr "Sahara Zachodnia"
#: ../../network/network.pm:1
#, c-format
msgid "Proxy should be http://..."
msgstr "Nazwa pośrednika powinna być typu: http://..."
#: ../../lang.pm:1 ../../standalone/drakxtv:1
#, c-format
msgid "South Africa"
msgstr "Afryka Południowa"
#: ../../standalone/drakbackup:1
#, c-format
msgid "Eject tape after the backup"
msgstr "Wysunięcie taśmy po archiwizacji"
#: ../../standalone/drakTermServ:1
#, c-format
msgid "Etherboot Floppy/ISO"
msgstr "Uruchamianie sieciowe z dyskietki/obrazu ISO"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Modify printer configuration"
msgstr "Zmień konfigurację drukarki"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Choose a partition"
msgstr "Wybierz partycję"
#: ../../standalone/drakperm:1
#, c-format
msgid "Edit current rule"
msgstr "Edytuj bieżącą regułę"
#: ../../standalone/drakbackup:1
#, c-format
msgid "%s"
msgstr "%s"
#: ../../mouse.pm:1
#, c-format
msgid "Please test the mouse"
msgstr "Przetestuj mysz"
#: ../../fs.pm:1
#, c-format
msgid ""
"Do not update inode access times on this file system\n"
"(e.g, for faster access on the news spool to speed up news servers)."
msgstr ""
"Nie aktualizuj czasów dostępu do węzłów na tym systemie plików\n"
"(np. dla szybszego dostępu w kolejce nowości aby przyspieszyć serwery grup)."
#: ../../mouse.pm:1
#, c-format
msgid "3 buttons with Wheel emulation"
msgstr "3 przyciski z emulacją kółka"
#: ../../standalone/drakperm:1
#, c-format
msgid "Sticky-bit"
msgstr "Bit lepkości"
#: ../../standalone/drakbackup:1
#, c-format
msgid "Other Media"
msgstr "Inne nośniki"
#: ../../standalone/drakbackup:1
#, c-format
msgid "Backup system files"
msgstr "Archiwizuj pliki systemowe"
#: ../../mouse.pm:1
#, c-format
msgid "Logitech MouseMan+"
msgstr "Logitech MouseMan+"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Sector"
msgstr "Sektor"
#: ../../lang.pm:1
#, c-format
msgid "Qatar"
msgstr "Katar"
#: ../../any.pm:1
#, c-format
msgid "LDAP Base dn"
msgstr "LDAP Base dn"
#: ../../install_steps_gtk.pm:1
#, c-format
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr "Nie możesz wybrać tego pakietu. Nie ma już miejsca, by go zainstalować"
#: ../../help.pm:1
#, c-format
msgid "generate auto-install floppy"
msgstr "tworzenie dyskietki automatycznej instalacji"
#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Dialing mode"
msgstr "Sposób wybierania"
#: ../../services.pm:1
#, c-format
msgid "File sharing"
msgstr "Współdzielenie plików"
#: ../../any.pm:1
#, c-format
msgid "Clean /tmp at each boot"
msgstr "Czyszczenie /tmp przy każdym uruchomieniu systemu"
#: ../../lang.pm:1
#, c-format
msgid "Malawi"
msgstr "Malawi"
#: ../../standalone/drakTermServ:1
#, c-format
msgid "local config: false"
msgstr "konfiguracja lokalna: niepowodzenie"
#: ../../standalone/drakperm:1
#, c-format
msgid "System settings"
msgstr "Ustawienia systemowe"
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Please choose your type of mouse."
msgstr "Wybierz typ myszy."
#: ../../standalone/harddrake2:1
#, c-format
msgid "class of hardware device"
msgstr "klasa urządzenia"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"These are the machines and networks on which the locally connected printer"
"(s) should be available:"
msgstr ""
"To są maszyny lub sieci, dla których powinny być dostępne lokalnie "
"podłączone drukarki:"
#: ../../lang.pm:1 ../../network/tools.pm:1
#, c-format
msgid "United Kingdom"
msgstr "Wielka Brytania"
#: ../../services.pm:1
#, c-format
msgid "running"
msgstr "uruchomiona"
#: ../../lang.pm:1
#, c-format
msgid "Indonesia"
msgstr "Indonezja"
#: ../../standalone/draksec:1
#, c-format
msgid "default"
msgstr "domyślna"
#: ../../standalone/drakxtv:1
#, c-format
msgid "France [SECAM]"
msgstr "Francja [SECAM]"
#: ../../any.pm:1
#, c-format
msgid "restrict"
msgstr "ograniczenie"
#: ../../pkgs.pm:1
#, c-format
msgid "must have"
msgstr "trzeba posiadać"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
"CUPS nie obsługuje drukarek na serwerach Novell lub drukarek wysyłających "
"dane do polecenia typu \"free-formed\".\n"
#: ../../lang.pm:1
#, c-format
msgid "Senegal"
msgstr "Senegal"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Command line"
msgstr "Wiersz poleceń"
#: ../../share/advertising/08-store.pl:1
#, c-format
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
"other \"goodies\", are available on our e-store:"
msgstr ""
"Nasz pełen wybór rozwiązań linuksowych, oferty specjalne dotyczące produktów "
"i \"dodatków\" są dostępne za pośrednictwem sieci w e-sklepie:"
#: ../../standalone/drakbackup:1
#, c-format
msgid "March"
msgstr "Marzec"
#: ../../any.pm:1
#, c-format
msgid "access to administrative files"
msgstr "dostęp do plików administracyjnych"
#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"Error during sendmail.\n"
" Your report mail was not sent.\n"
" Please configure sendmail"
msgstr ""
"Błąd w trakcie wysyłania poczty przez sendmail\n"
" Wiadomość z raportem nie została przesłana\n"
" Skonfiguruj sendmaila"
#: ../../fs.pm:1
#, c-format
msgid ""
"Do not allow set-user-identifier or set-group-identifier\n"
"bits to take effect. (This seems safe, but is in fact rather unsafe if you\n"
"have suidperl(1) installed.)"
msgstr ""
"Bez interpretowania bitów set-user-identifier oraz set-group-identifier\n"
"(To wygląda na bezpieczne ustawienie, lecz w rzeczywistości jest raczej\n"
"niebezpieczne w przypadku zainstalowania pakietu ksuidperl(1).)"
#: ../../lang.pm:1
#, c-format
msgid "Montserrat"
msgstr "Montserrat"
#: ../../help.pm:1
#, c-format
msgid "Automatic dependencies"
msgstr "Automatyczne zależności"
#: ../../diskdrake/hd_gtk.pm:1
#, c-format
msgid "Swap"
msgstr "Swap"
#: ../../standalone/drakperm:1
#, c-format
msgid "Custom settings"
msgstr "Dowolne ustawienia"
#: ../../standalone/drakbackup:1
#, c-format
msgid "Restore Other"
msgstr "Odtwórz inne"
#: ../../help.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "TV card"
msgstr "Karta TV"
#: ../../printer/main.pm:1
#, c-format
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "Drukarka podłączona do serwera SMB/Windows 95/98/NT"
#: ../../standalone/printerdrake:1
#, c-format
msgid "/_Configure CUPS"
msgstr "/_Skonfiguruj CUPS"
#: ../../standalone/scannerdrake:1
#, c-format
msgid ", "
msgstr ", "
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Remove selected host/network"
msgstr "Usuwanie wybranego komputera/sieci"
#: ../../services.pm:1
#, c-format
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
"one machine to another."
msgstr ""
"Postfix to agent pocztowy (MTA), przesyłający pocztę między komputerami."
#: ../../keyboard.pm:1
#, c-format
msgid "Uzbek (cyrillic)"
msgstr "uzbecki (cyrylica)"
#: ../../keyboard.pm:1
#, c-format
msgid ""
"Here you can choose the key or key combination that will \n"
"allow switching between the different keyboard layouts\n"
"(eg: latin and non latin)"
msgstr ""
"W tym miejscu można wybrać klawisz lub kombinację klawiszy\n"
"umożliwiających przełączanie pomiędzy różnymi układami\n"
"klawiatur (np: latin na non-latin)"
#: ../../network/network.pm:1
#, c-format
msgid "Network Hotplugging"
msgstr "Hotplugging sieci"
#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, reports check result to tty."
msgstr "jeśli ustawiono na tak, przesyła wyniki sprawdzania do konsoli tty."
#: ../../standalone/drakbackup:1
#, c-format
msgid "Restore From CD"
msgstr "Odtwórz z CD"
#: ../../standalone/drakgw:1
#, c-format
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
"this computer's Internet connection.\n"
"\n"
"Make sure you have configured your Network/Internet access using drakconnect "
"before going any further.\n"
"\n"
"Note: you need a dedicated Network Adapter to set up a Local Area Network "
"(LAN)."
msgstr ""
"Można skonfigurować komputer jako współdzielący połączenie z Internetem\n"
"Ta usługa pozwala innym komputerom w sieci lokalnej na używanie połączenia\n"
"tego komputera z Internetem.\n"
"\n"
"Upewnij się, że skonfigurowano dostęp do sieci/Internetu przy użyciu\n"
"programu drakconnect, zanim dokonasz dalszych czynności.\n"
"\n"
"Uwaga: wymagana jest dedykowana karta sieciowa włączająca komputer w sieć "
"lokalną (LAN)"
#: ../../network/ethernet.pm:1
#, c-format
msgid ""
"Please choose which network adapter you want to use to connect to Internet."
msgstr "Wybierz kartę sieciową, którą ma być używana do łączenia z Internetem"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Photo memory card access on your HP multi-function device"
msgstr "Dostęp do karty pamięci urządzenia wielofunkcyjnego HP"
#: ../../share/advertising/09-mdksecure.pl:1
#, c-format
msgid ""
"Enhance your computer performance with the help of a selection of partners "
"offering professional solutions compatible with Mandrake Linux"
msgstr ""
"Zwiększ wydajność komputera dzięki pomocy wybranych partnerów oferujących "
"profesjonalne rozwiązania zgodne z Linuksem Mandrake."
#: ../../standalone/printerdrake:1
#, c-format
msgid "Authors: "
msgstr "Autorzy: "
#: ../../standalone/drakgw:1
#, c-format
msgid "Internet Connection Sharing is now disabled."
msgstr "Współdzielenie połączenia z Internetem jest wyłączone."
#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, verify checksum of the suid/sgid files."
msgstr "jeśli ustawiono na tak, sprawdza sumę kontrolną plików suid/sgid."
#: ../../keyboard.pm:1
#, c-format
msgid "Latin American"
msgstr "latyno-amerykański"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Japanese text printing mode"
msgstr "Japoński tryb drukowania tekstu"
#: ../../standalone/harddrake2:1
#, c-format
msgid "Old device file"
msgstr "Stary plik urządzenia"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Info: "
msgstr "Informacje: "
#: ../../interactive/stdio.pm:1
#, c-format
msgid "Button `%s': %s"
msgstr "Przycisk \"%s\": %s"
#: ../../any.pm:1 ../../interactive.pm:1 ../../harddrake/sound.pm:1
#: ../../standalone/drakbug:1 ../../standalone/drakconnect:1
#: ../../standalone/drakxtv:1 ../../standalone/harddrake2:1
#: ../../standalone/service_harddrake:1
#, c-format
msgid "Please wait"
msgstr "Proszę czekać"
#: ../../mouse.pm:1
#, c-format
msgid "Genius NetMouse"
msgstr "Genius NetMouse"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "None"
msgstr "Brak"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "The entered IP is not correct.\n"
msgstr "Wprowadzony adres IP jest niepoprawny.\n"
#: ../../standalone/drakbackup:1
#, c-format
msgid "Please be sure that the cron daemon is included in your services."
msgstr "Upewnij się że demon cron jest dołączony do zainstalowanych usług."
#: ../../standalone/drakconnect:1
#, c-format
msgid "Ethernet Card"
msgstr "Karta ethernet"
#: ../../standalone/printerdrake:1
#, c-format
msgid "Delete selected printer"
msgstr "Usuń zaznaczoną drukarkę"
#: ../../services.pm:1 ../../ugtk2.pm:1
#, c-format
msgid "Info"
msgstr "Informacje"
#: ../../help.pm:1 ../../install_steps_gtk.pm:1
#: ../../install_steps_interactive.pm:1 ../../standalone/drakbackup:1
#, c-format
msgid "Install"
msgstr "Zainstaluj"
#: ../../help.pm:1
#, c-format
msgid ""
"Click on \"%s\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
"to recover any data and partitions present on this hard drive, including\n"
"any Windows data.\n"
"\n"
"Click on \"%s\" to stop this operation without losing any data and\n"
"partitions present on this hard drive."
msgstr ""
"Wybierz \"%s\", jeśli chcesz usunąć wszystkie dane i partycje zapisane\n"
"na tym dysku. Pamiętaj, po wybraniu \"%s\", nie będzie\n"
"możliwe odzyskanie żadnych danych oraz partycji obecnych na dysku,\n"
"włączając w to dane partycji Windows.\n"
"\n"
"Wybierz \"%s\", by anulować tą operację bez utraty danych i partycji\n"
"obecnych w systemie."
#: ../../steps.pm:1
#, c-format
msgid "Exit install"
msgstr "Wyjście z instalacji"
#: ../../standalone/drakgw:1
#, c-format
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
"Area Network, using automatic network configuration (DHCP)."
msgstr ""
"Wszystko zostało skonfigurowane.\n"
"Możesz udostępniać połączenie z Internetem innym komputerem w sieci "
"lokalnej, używając automatycznej konfiguracji sieci (DHCP)"
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Remote CUPS server"
msgstr "Zdalny serwer CUPS"
#: ../../mouse.pm:1
#, c-format
msgid "Sun - Mouse"
msgstr "Mysz Sun"
#: ../../standalone/drakgw:1
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
"\n"
"%s\n"
"\n"
"I am about to setup your Local Area Network with that adapter."
msgstr ""
"W Twoim systemie istnieje tylko jedna skonfigurowana karta sieciowa:\n"
"\n"
"%s\n"
"\n"
"Można skonfigurować sieć lokalną (LAN) przy wykorzystaniu tej karty."
#: ../../install_steps_gtk.pm:1
#, c-format
msgid "Minimal install"
msgstr "Minimalna instalacja"
#: ../../lang.pm:1
#, c-format
msgid "Ethiopia"
msgstr "Etiopia"
#: ../../security/l10n.pm:1
#, c-format
msgid "Enable \"crontab\" and \"at\" for users"
msgstr "Włączony \"crontab\" i \"at\" dla użytkowników"
#: ../../keyboard.pm:1
#, c-format
msgid "Devanagari"
msgstr "devenagari"
#: ../../standalone/harddrake2:1
#, c-format
msgid ""
"- pci devices: this gives the PCI slot, device and function of this card\n"
"- eide devices: the device is either a slave or a master device\n"
"- scsi devices: the scsi bus and the scsi device ids"
msgstr ""
"- urządzenia pci: to pole wyświetla złącze PCI, urządzenie i funkcję karty\n"
"- urządzenia eide: to pole określa tryb urządzenia \"master\" lub \"slave\"\n"
"- urządzenia scsi: identyfikatory szyny scsi oraz urządzenia scsi"
#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Rozmiar: %d / %d MB"
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "disabled"
msgstr "wyłączono"
#: ../../standalone/scannerdrake:1
#, c-format
msgid "Search for new scanners"
msgstr "Wyszukiwanie nowych skanerów"
#: ../../standalone/drakgw:1
#, c-format
msgid "Disabling servers..."
msgstr "Wyłączenie serwerów..."
#: ../../standalone/drakboot:1
#, c-format
msgid "Installation of %s failed. The following error occured:"
msgstr "Instalacja %s nie powiodła się. Wystąpił następujący błąd:"
#: ../../standalone/drakboot:1
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr "Nie można uruchomić mkinitrd -f /boot/initrd-%s.img %s."
#: ../../install_any.pm:1
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
"\n"
"\n"
"These servers are activated by default. They don't have any known security\n"
"issues, but some new ones could be found. In that case, you must make sure\n"
"to upgrade as soon as possible.\n"
"\n"
"\n"
"Do you really want to install these servers?\n"
msgstr ""
"Wybrano następujące serwery: %s\n"
"\n"
"\n"
"Będą one domyślnie uruchamiane. Nie zawierają one żadnych znanych błędów\n"
"związanych z bezpieczeństwem, lecz mogą one zostać w przyszłości ujawnione.\n"
"W takiej sytuacji należy dokonać jak najszybszego uaktualnienia.\n"
"\n"
"\n"
"Czy na pewno chcesz zainstalować te serwery?\n"
#: ../../printer/main.pm:1
#, c-format
msgid "Network printer (TCP/Socket)"
msgstr "Drukarka sieciowa (TCP/Socket)"
#: ../../standalone/drakbackup:1
#, c-format
msgid "Backup User files..."
msgstr "Pliki archiwum użytkowników..."
#: ../../steps.pm:1
#, c-format
msgid "Install system"
msgstr "Instalacja pakietów"
#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "First DNS Server (optional)"
msgstr "Pierwszy serwer DNS (opcjonalnie)"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Alternatively, you can specify a device name/file name in the input line"
msgstr ""
"Inną możliwością, jest wybranie nazwy urządzenia/pliku w wierszu wejściowym"
#: ../../security/help.pm:1
#, c-format
msgid ""
"If SERVER_LEVEL (or SECURE_LEVEL if absent)\n"
"is greater than 3 in /etc/security/msec/security.conf, creates the\n"
"symlink /etc/security/msec/server to point to\n"
"/etc/security/msec/server.<SERVER_LEVEL>.\n"
"\n"
"The /etc/security/msec/server is used by chkconfig --add to decide to\n"
"add a service if it is present in the file during the installation of\n"
"packages."
msgstr ""
"Jeśli SERVER_LEVEL (lub brakuje SECURE_LEVEL) jest większe niż 3\n"
"w /etc/security/msec/security.conf, tworzone jest dowiązanie symboliczne\n"
"/etc/security/msec/server do punktu /etc/security/msec/server."
"<SERVER_LEVEL>.\n"
"\n"
"Serwer /etc/security/msec/ jest używany przez chkconfig --add przy\n"
"decydowaniu czy dodać usługę jeśli jest obecna w pliku podczas instalacji\n"
"pakietów."
#: ../../keyboard.pm:1
#, c-format
msgid "Russian (Phonetic)"
msgstr "rosyjski (fonetyczny)"
#: ../../standalone/drakTermServ:1
#, c-format
msgid "dhcpd Config..."
msgstr "Konfiguracja dhcpd..."
#: ../../standalone/drakgw:1
#, c-format
msgid "The setup has already been done, but it's currently disabled."
msgstr ""
"Konfiguracja współdzielenia połączenia została już wykonana, lecz usługa ta "
"jest teraz wyłączona."
#: ../../any.pm:1
#, c-format
msgid "LILO/grub Installation"
msgstr "Instalacja LILO/Grub"
#: ../../keyboard.pm:1
#, c-format
msgid "Israeli"
msgstr "izraelski"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printer \"%s\" on server \"%s\""
msgstr "Drukarka \"%s\" na serwerze \"%s\""
#: ../../standalone/drakTermServ:1
#, c-format
msgid "Floppy can be removed now"
msgstr "Można teraz wyjąć dyskietkę"
#: ../../help.pm:1
#, c-format
msgid "Truly minimal install"
msgstr "Naprawdę minimalna instalacja"
#: ../../lang.pm:1
#, c-format
msgid "Denmark"
msgstr "Dania"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Moving partition..."
msgstr "Przenoszenie partycji..."
#: ../../standalone/drakgw:1
#, c-format
msgid "(This) DHCP Server IP"
msgstr "(Ten) Numer IP serwera DHCP"
#: ../../Xconfig/test.pm:1
#, c-format
msgid "Test of the configuration"
msgstr "Test konfiguracji"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Installing %s ..."
msgstr "Instalowanie %s ..."
#: ../../help.pm:1
#, c-format
msgid ""
"If you told the installer that you wanted to individually select packages,\n"
"it will present a tree containing all packages classified by groups and\n"
"subgroups. While browsing the tree, you can select entire groups,\n"
"subgroups, or individual packages.\n"
"\n"
"Whenever you select a package on the tree, a description appears on the\n"
"right to let you know the purpose of the package.\n"
"\n"
"!! If a server package has been selected, either because you specifically\n"
"chose the individual package or because it was part of a group of packages,\n"
"you will be asked to confirm that you really want those servers to be\n"
"installed. By default Mandrake Linux will automatically start any installed\n"
"services at boot time. Even if they are safe and have no known issues at\n"
"the time the distribution was shipped, it is entirely possible that that\n"
"security holes were discovered after this version of Mandrake Linux was\n"
"finalized. If you do not know what a particular service is supposed to do\n"
"or why it is being installed, then click \"%s\". Clicking \"%s\" will\n"
"install the listed services and they will be started automatically by\n"
"default during boot. !!\n"
"\n"
"The \"%s\" option is used to disable the warning dialog which appears\n"
"whenever the installer automatically selects a package to resolve a\n"
"dependency issue. Some packages have relationships between each other such\n"
"that installation of a package requires that some other program is also\n"
"rerquired to be installed. The installer can determine which packages are\n"
"required to satisfy a dependency to successfully complete the installation.\n"
"\n"
"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
"package list created during a previous installation. This is useful if you\n"
"have a number of machines that you wish to configure identically. Clicking\n"
"on this icon will ask you to insert a floppy disk previously created at the\n"
"end of another installation. See the second tip of last step on how to\n"
"create such a floppy."
msgstr ""
"W zależności od tego czy zaznaczono opcję wyboru indywidualnych\n"
"pakietów, wyświetlona zostanie struktura drzewa zawierająca\n"
"wszystkie pakiety podzielone na grupy i podgrupy. W trakcie przeglądania\n"
"drzewa można wybrać całą grupę, podgrupę lub pojedyncze pakiety.\n"
"\n"
"Po wybraniu pakietu ze struktury, po prawej stronie wyświetlony zostanie\n"
"jego opis, pomagający w zorientowaniu się do czego on służy.\n"
"\n"
"!! Jeśli zostanie wybrany pakiet serwera, zostanie wyświetlona prośba\n"
"o potwierdzenie wyboru pakietu przed jego instalacją. W systemie Mandrake\n"
"Linux, wszystkie zainstalowane serwery są uruchamiane domyślnie w trakcie\n"
"uruchamiania całego systemu. Nawet jeśli dany pakiet jest uważany\n"
"za bezpieczny i w trakcie instalacji nie są znane żadne problemy z nim\n"
"związane, może się zdarzyć, że zostaną wykryte luki w jego\n"
"zabezpieczeniach już po instalacji. Jeśli użytkownik nie posiada\n"
"informacji o tym do czego dana usługa jest przeznaczona lub też dlaczego\n"
"jest instalowana, wówczas powinien kliknąć przycisk \"%s\".\n"
"Kliknięcie \"%s\" spowoduje zainstalowanie wypisanych usług, które\n"
"będą automatycznie uruchamiane w trakcie uruchamiania całego systemu. !!\n"
"\n"
"Opcja \"%s\" jest używana do zablokowania okna ostrzeżeń\n"
"pojawiającego się w momencie automatycznego wyboru pakietów przez\n"
"instalatora. Okno to określa czy jakiś pakiet jest dodatkowo wymagany\n"
"do spełnienia zależności w stosunku do innego pakietu, w celu pomyślnego\n"
"zakończenia instalacji.\n"
"\n"
"Niewielka ikona dyskietki na dole listy umożliwia wczytanie listy pakietów\n"
"wybranych w trakcie poprzedniej instalacji. Kliknięcie tej ikony\n"
"spowoduje wyświetlenie prośby o włożenie dyskietki utworzonej po\n"
"zakończeniu poprzedniego procesu instalacji. Zobacz drugą podpowiedź\n"
"ostatniego kroku zawierającą informację o tym jak utworzyć taką dyskietkę."
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Choose your filesystem encryption key"
msgstr "Wybierz klucz szyfrujący system plików"
#: ../../lang.pm:1
#, c-format
msgid "Sierra Leone"
msgstr "Sierra Leone"
#: ../../lang.pm:1
#, c-format
msgid "Botswana"
msgstr "Bostwana"
#: ../../lang.pm:1
#, c-format
msgid "Andorra"
msgstr "Andora"
#: ../../standalone/draksec:1
#, c-format
msgid "(default value: %s)"
msgstr "(domyślna wartość: %s)"
#: ../../security/help.pm:1
#, c-format
msgid "Set password aging to \"max\" days and delay to change to \"inactive\"."
msgstr ""
"Ustaw wiek hasła na \"max\" dni oraz opóźnienie w zmianie na \"inactive\"."
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Alternative test page (Letter)"
msgstr "Alternatywna Strona testowa (Letter)"
#: ../../standalone/drakgw:1
#, c-format
msgid ""
"DHCP Server Configuration.\n"
"\n"
"Here you can select different options for the DHCP server configuration.\n"
"If you don't know the meaning of an option, simply leave it as it is.\n"
"\n"
msgstr ""
"Konfiguracja serwera DHCP.\n"
"\n"
"W tym miejscu można określić różne opcje dla konfiguracji serwera DHCP.\n"
"Jeśli nie rozumiesz znaczenia opcji, po prostu nie zmieniaj jej wartości.\n"
"\n"
#: ../../Xconfig/card.pm:1
#, c-format
msgid "Choose an X server"
msgstr "Wybierz serwer X"
#: ../../install_interactive.pm:1
#, c-format
msgid "Swap partition size in MB: "
msgstr "Rozmiar partycji swap w MB: "
#: ../../standalone/drakbackup:1
#, c-format
msgid "No changes to backup!"
msgstr "Brak zmian w archiwum!"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Formatted\n"
msgstr "Sformatowana\n"
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Type of install"
msgstr "Typ instalacji"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printer \"%s\" on SMB/Windows server \"%s\""
msgstr "Drukarka \"%s\" na serwerze SMB/Windows \"%s\""
#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"\n"
"- Daemon (%s) include:\n"
msgstr ""
"\n"
"- Demon (%s) zawiera :\n"
#: ../../modules/parameters.pm:1
#, c-format
msgid "%d comma separated numbers"
msgstr "%d oddzielonych przecinkami numerów"
#: ../../services.pm:1
#, c-format
msgid ""
"The rusers protocol allows users on a network to identify who is\n"
"logged in on other responding machines."
msgstr ""
"Protokół rusers pozwala na sprawdzanie, kto jest zalogowany na innych\n"
"dostępnych komputerach w sieci."
#: ../../standalone/drakautoinst:1
#, c-format
msgid "Automatic Steps Configuration"
msgstr "Automatyczne kroki konfiguracji"
#: ../../lang.pm:1
#, c-format
msgid "Barbados"
msgstr "Barbados"
#: ../../share/advertising/02-community.pl:1
#, c-format
msgid ""
"Want to know more and to contribute to the Open Source community? Get "
"involved in the Free Software world!"
msgstr ""
"Chcesz wiedzieć o społeczeństwie otwartego oprogramowania? Dołącz do świata "
"otwartego oprogramowania!"
#: ../../standalone/drakbackup:1
#, c-format
msgid "Please select data to backup..."
msgstr "Wybierz dane do archiwizacji..."
#: ../../standalone/net_monitor:1
#, c-format
msgid ""
"Connection failed.\n"
"Verify your configuration in the Mandrake Control Center."
msgstr ""
"Próba połączenia zakończona niepowodzeniem.\n"
"Sprawdź konfigurację w Centrum Sterowania Mandrake."
#: ../../standalone/net_monitor:1
#, c-format
msgid "received"
msgstr "odebrano"
#: ../../security/l10n.pm:1
#, c-format
msgid "Enable su only from the wheel group members or for any user"
msgstr ""
"Mechanizm su tylko dla członków grupy wheel lub dla wszystkich użytkowników"
#: ../../standalone/logdrake:1
#, c-format
msgid "/File/_New"
msgstr "/Plik/_Nowy"
#: ../../standalone/drakgw:1
#, c-format
msgid "The DNS Server IP"
msgstr "Numer IP serwera DNS"
#: ../../standalone/drakTermServ:1
#, c-format
msgid "IP Range End:"
msgstr "Koniec zakresu IP:"
#: ../../security/level.pm:1
#, c-format
msgid "High"
msgstr "Wysoki"
#: ../../standalone/printerdrake:1
#, c-format
msgid "Add a new printer to the system"
msgstr "Dodaje nową drukarkę do systemu"
#: ../../any.pm:1
#, c-format
msgid "NoVideo"
msgstr "Brak wideo"
#: ../../standalone/harddrake2:1
#, c-format
msgid "this field describes the device"
msgstr "to pole opisuje urządzenie"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
msgstr "Dodawanie drukarki do Star Office/OpenOffice.org/GIMP"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Local Printers"
msgstr "Drukarki lokalne"
#: ../../standalone/drakpxe:1
#, c-format
msgid "Installation image directory"
msgstr "Katalog obrazu instalacyjnego"
#: ../../any.pm:1
#, c-format
msgid "NIS Server"
msgstr "Serwer NIS"
#: ../../standalone/scannerdrake:1
#, c-format
msgid "Port: %s"
msgstr "Port: %s"
#: ../../lang.pm:1
#, c-format
msgid "Spain"
msgstr "Hiszpania"
#: ../../standalone/drakTermServ:1
#, c-format
msgid "local config: %s"
msgstr "konfiguracja lokalna: %s"
#: ../../any.pm:1
#, c-format
msgid "This user name has already been added"
msgstr "Ten użytkownik został już dodany"
#: ../../interactive.pm:1
#, c-format
msgid "Choose a file"
msgstr "Wybierz plik"
#: ../../standalone/drakconnect:1
#, c-format
msgid "Apply"
msgstr "Zastosuj"
#: ../../standalone/scannerdrake:1
#, c-format
msgid "Auto-detect available ports"
msgstr "Automatycznie wykryj dostępne porty"
#: ../../lang.pm:1
#, c-format
msgid "San Marino"
msgstr "San Marino"
#: ../../standalone/drakgw:1
#, c-format
msgid "Internet Connection Sharing currently disabled"
msgstr "Współdzielenie połączenia z Internetem jest wyłączone"
#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
#, c-format
msgid "Belgium"
msgstr "Belgia"
#: ../../lang.pm:1
#, c-format
msgid "Kuwait"
msgstr "Kuwejt"
#: ../../any.pm:1
#, c-format
msgid "Choose the window manager to run:"
msgstr "Wybierz uruchamiane środowisko graficzne:"
#: ../../standalone/drakbackup:1
#, c-format
msgid "December"
msgstr "Grudzie"
#: ../../standalone/harddrake2:1
#, c-format
msgid "sub generation of the cpu"
msgstr "podgeneracja procesora"
#: ../../standalone/drakbug:1
#, c-format
msgid "First Time Wizard"
msgstr "Druid pierwszego uruchomienia"
#: ../../install_steps.pm:1
#, c-format
msgid ""
"An error occurred, but I don't know how to handle it nicely.\n"
"Continue at your own risk."
msgstr ""
"Wystąpił jakiś błąd. Nie można poprawnie go obsłużyć\n"
"Kontynuuj na własną odpowiedzialność."
#: ../../lang.pm:1
#, c-format
msgid "Taiwan"
msgstr "Tajwan"
#: ../../lang.pm:1
#, c-format
msgid "Pakistan"
msgstr "Pakistan"
#: ../../standalone/logdrake:1
#, c-format
msgid "please wait, parsing file: %s"
msgstr "proszę czekać, przetwarzanie pliku: %s"
#: ../../install_steps_gtk.pm:1
#, c-format
msgid "Importance: "
msgstr "Ważność: "
#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
"\"Linux\" as operating system. The drivers come as RPM packages or shell "
"scripts with interactive graphical installation. You do not need to do this "
"configuration by the graphical frontends. Cancel directly after the license "
"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
"adjust the head alignment settings with this program."
msgstr ""
"Aby mieć możliwość drukowania za pomocą drukarek Lexmark inkjet oraz móc je "
"konfigurować, potrzebny jest sterownik drukarki dostarczony przez Lexmarka "
"(http://www.lexmark.com/). Kliknij przycisk \"Sterowniki\" (ang. Drivers). "
"Następnie wybierz model a następnie jako system operacyjny \"Linux\". "
"Sterowniki są dostarczane jako pakiety RPM lub skrypty powłoki z "
"interaktywną instalacją graficzną. Nie jest wymagane wykonanie tej "
"konfiguracji przez graficzne nakładki. Anuluj od razu po wyświetleniu umowy "
"licencyjnej. Następnie wydrukuj strony dopasowujące głowice za pomocą opcji "
"\"lexmarkmaintain\" oraz dopasuj ustawienia głowic za pomocą tego programu."
#: ../../standalone/drakperm:1
#, c-format
msgid "Permissions"
msgstr "Prawa dostępu"
#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Provider name (ex provider.net)"
msgstr "Nazwa dostawcy usług (np. Dialog, Netia, TPSA)"
#: ../../install_steps_gtk.pm:1
#, c-format
msgid ""
"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
msgstr ""
"Twój system ma mało zasobów. Mogą wystąpić problemy z instalacją.\n"
"Jeśli tak się stanie, spróbuj instalacji w trybie tekstowym.\n"
"By ją uruchomić, naciśnij F1 podczas startu z CD i wpisz \"text\"."
#: ../../install_interactive.pm:1
#, c-format
msgid "Use the Windows partition for loopback"
msgstr "Wykorzystaj miejsce na partycji Windows na plikopartycję"
#: ../../keyboard.pm:1
#, c-format
msgid "Armenian (typewriter)"
msgstr "armeński - fonetyczny"
#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
#, c-format
msgid "Connection type: "
msgstr "Rodzaj połączenia:"
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Graphical interface"
msgstr "Interfejs graficzny"
#: ../../lang.pm:1
#, c-format
msgid "Chad"
msgstr "Czad"
#: ../../lang.pm:1
#, c-format
msgid "India"
msgstr "Indie"
#: ../../Xconfig/card.pm:1 ../../Xconfig/various.pm:1
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s z obsługą sprzętowej akceleracji 3D"
#: ../../lang.pm:1
#, c-format
msgid "Slovakia"
msgstr "Słowacja"
#: ../../lang.pm:1
#, c-format
msgid "Singapore"
msgstr "Singapur"
#: ../../lang.pm:1
#, c-format
msgid "Cambodia"
msgstr "Kambodża"
#: ../../Xconfig/various.pm:1
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Synchronizacja pozioma monitora: %s\n"
#: ../../standalone/drakperm:1
#, c-format
msgid "Path"
msgstr "Ścieżka"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Here you can specify any arbitrary command line into which the job should be "
"piped instead of being sent directly to a printer."
msgstr ""
"W tym miejscu można określić odpowiedni wiersz poleceń, do którego zadanie "
"powinno zostać przekierowane zamiast przesyłania go bezpośrednio do drukarki."
#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
"is booted.\n"
"\n"
"It is possible that the automatic starting was turned off by changing to a "
"higher security level, because the printing system is a potential point for "
"attacks.\n"
"\n"
"Do you want to have the automatic starting of the printing system turned on "
"again?"
msgstr ""
"System wydruku (%s) nie będzie uruchamiany automatycznie po uruchomieniu "
"komputera.\n"
"\n"
"Możliwe jest, że automatyczne uruchamianie zostało wyłączone przez zmianę "
"poziomu bezpieczeństwa na wyższy, ponieważ system wydruku jest potencjalną "
"luką w zabezpieczeniach podatną na ataki.\n"
"\n"
"Czy chcesz włączyć ponownie automatyczne uruchamianie systemu wydruku?"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Printer %s\n"
"What do you want to modify on this printer?"
msgstr ""
"Drukarka %s\n"
"Jakie parametry chcesz zmodyfikować dla tej drukarki?"
#: ../../standalone/scannerdrake:1
#, c-format
msgid "Add host"
msgstr "Dodawanie komputera"
#: ../../harddrake/sound.pm:1
#, c-format
msgid ""
"If you really think that you know which driver is the right one for your "
"card\n"
"you can pick one in the above list.\n"
"\n"
"The current driver for your \"%s\" sound card is \"%s\" "
msgstr ""
"Jeśli naprawdę sądzisz, że wiesz który sterownik pasuje do twojej karty\n"
"możesz wybrać jeden z listy.\n"
"\n"
"Bieżącym sterownikiem dla twojej karty dźwiękowej \"%s\" jest \"%s\""
#: ../../any.pm:1
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
"Czy chcesz zezwolić użytkownikom na eksport niektórych katalogów w ich "
"katalogu domowym?\n"
"Udostępnienie tej opcji pozwoli użytkownikom na kliknięcie przycisku"
"\"Współdziel\" w konquerorze i nautilusie.\n"
"\n"
"\"Własne\" pozwoli na ustawienia indywidualne dla każdego użytkownika.\n"
#: ../../install_steps_interactive.pm:1
#, c-format
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
msgstr ""
"Wybierz odczyt lub zapis listy wybranych pakietów\n"
"na dyskietkę. Format jest identyczny z dyskiem automatycznej\n"
"instalacji."
#: ../../standalone/drakxtv:1
#, c-format
msgid "China (broadcast)"
msgstr "Chiny (broadcast)"
#: ../../standalone/drakbackup:1
#, c-format
msgid "Use quota for backup files."
msgstr "Użyj limitu dla plików archiwum."
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Configuring printer \"%s\"..."
msgstr "Konfigurowanie drukarki \"%s\"..."
#: ../../fs.pm:1
#, c-format
msgid ""
"Do not allow execution of any binaries on the mounted\n"
"file system. This option might be useful for a server that has file systems\n"
"containing binaries for architectures other than its own."
msgstr ""
"Bez zezwolenia na uruchamianie jakichkolwiek plików binarnych\n"
"na zamontowanym systemie plików. Ta opcja może być użyteczna dla\n"
"serwera, którego systemy plików zawierają pliki wykonywalne dla\n"
"architektur innych niż własna."
#: ../../network/netconnect.pm:1
#, c-format
msgid "Internet connection"
msgstr "Połączenie z Internetem"
#: ../../modules/interactive.pm:1
#, c-format
msgid ""
"Loading module %s failed.\n"
"Do you want to try again with other parameters?"
msgstr ""
"Ładowanie modułu %s zakończone niepowodzeniem.\n"
"Czy chcesz spróbować z innymi parametrami?"
#: ../../share/advertising/01-thanks.pl:1
#, c-format
msgid "Welcome to the Open Source world."
msgstr "Witaj w świecie Otwartego Oprogramowania"
#: ../../lang.pm:1
#, c-format
msgid "Bosnia and Herzegovina"
msgstr "Bośnia i Hercegowina"
#: ../../fsedit.pm:1
#, c-format
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
"point\n"
msgstr ""
"Dla tego punktu montowania wymagany jest porządny system plików (ext2, "
"reiserfs, xfs, jfs)\n"
#: ../../standalone/scannerdrake:1
#, c-format
msgid "You must enter a host name or an IP address.\n"
msgstr "Należy podać nazwę komputera lub adres IP.\n"
#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
#, c-format
msgid "Netherlands"
msgstr "Holandia"
#: ../../standalone/drakbackup:1
#, c-format
msgid "Sending files by FTP"
msgstr "Przesyłanie plików przez FTP..."
#: ../../network/isdn.pm:1
#, c-format
msgid "Internal ISDN card"
msgstr "Wewnętrzna karta ISDN"
#: ../../harddrake/sound.pm:1
#, c-format
msgid ""
"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
"currently uses \"%s\""
msgstr ""
"Brak alternatywnego sterownika OSS/ALSA dla twojej karty dźwiękowej (%s) "
"aktualnie wykorzystującej \"%s\""
#: ../../network/modem.pm:1
#, c-format
msgid "Title"
msgstr "Tytuł"
#: ../../standalone/drakfont:1
#, c-format
msgid "Install & convert Fonts"
msgstr "Zainstaluj i skonwertuj czcionki"
#: ../../standalone/drakbackup:1
#, c-format
msgid "WARNING"
msgstr "OSTRZEŻENIE"
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Installing bootloader"
msgstr "Instalacja programu rozruchowego"
#: ../../standalone/drakautoinst:1
#, c-format
msgid "replay"
msgstr "powtórzenie"
#: ../../network/netconnect.pm:1
#, c-format
msgid "detected %s"
msgstr "wykryto %s"
#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"Expect is an extension to the Tcl scripting language that allows interactive "
"sessions without user intervention."
msgstr ""
"Expect jest rozszerzeniem dla języka skryptowego Tcl umożliwiającym "
"interaktywne sesje bez udziału użytkownika."
#: ../../lang.pm:1
#, c-format
msgid "Virgin Islands (U.S.)"
msgstr "Wyspy Dziewicze (USA)"
#: ../../partition_table.pm:1
#, c-format
msgid "Bad backup file"
msgstr "Uszkodzony plik archiwum"
#: ../../standalone/drakgw:1
#, c-format
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
"\n"
"What would you like to do?"
msgstr ""
"Konfiguracja współdzielenia połączenia z Internetem została już wykonana.\n"
"Usługa ta jest teraz wyłączona.\n"
"\n"
"Co chcesz zrobić?"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Enter IP address and port of the host whose printers you want to use."
msgstr "Podaj adres IP i port komputera, którego chcesz używać."
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Pipe into command"
msgstr "Potok do polecenia"
#: ../../install_interactive.pm:1
#, c-format
msgid ""
"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
"You can find some information about them at: %s"
msgstr ""
"Część sprzętu w Twoim komputerze wymaga \"firmowych\" sterowników.\n"
"Więcej informacji na ten temat uzyskasz z %s"
#: ../../lang.pm:1
#, c-format
msgid "Haiti"
msgstr "Haiti"
#: ../../network/netconnect.pm:1 ../../printer/printerdrake.pm:1
#, c-format
msgid "Detecting devices..."
msgstr "Wykrywanie urządzeń..."
#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"Custom allows you to specify your own day and time. The other options use "
"run-parts in /etc/crontab."
msgstr ""
"Dowolna umożliwia ci określenie własnej daty i czasu. Inne opcje używają "
"części run w /etc/crontab."
#: ../../standalone/harddrake2:1
#, c-format
msgid ""
"Description of the fields:\n"
"\n"
msgstr ""
"Opis pól:\n"
"\n"
#: ../../standalone/draksec:1
#, c-format
msgid "Basic options"
msgstr "Podstawowe opcje"
#: ../../standalone/harddrake2:1
#, c-format
msgid "the name of the CPU"
msgstr "nazwa procesora"
#: ../../security/l10n.pm:1
#, c-format
msgid "Accept bogus IPv4 error messages"
msgstr "Akceptowanie fałszywych komunikatów o błędach IPv4"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Refreshing printer data..."
msgstr "Odświeżanie danych drukarki..."
#: ../../install2.pm:1
#, c-format
msgid "You must also format %s"
msgstr "Należy także sformatować %s"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Be careful: this operation is dangerous."
msgstr "Uważaj: ta operacja jest niebezpieczna"
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Insert a floppy containing package selection"
msgstr "Włóż dyskietkę zawierającą listę wybranych pakietów"
#: ../../diskdrake/dav.pm:1
#, c-format
msgid "Server: "
msgstr "Serwer: "
#: ../../standalone/draksec:1
#, c-format
msgid "Security Alerts:"
msgstr "Alarmy bezpieczeństwa:"
#: ../../crypto.pm:1 ../../lang.pm:1
#, c-format
msgid "Sweden"
msgstr "Szwecja"
#: ../../standalone/drakbackup:1
#, c-format
msgid "Use Expect for SSH"
msgstr "Użyj Expect dla SSH"
#: ../../lang.pm:1
#, c-format
msgid "Poland"
msgstr "Polska"
#: ../../network/drakfirewall.pm:1
#, c-format
msgid "Other ports"
msgstr "Inne porty"
#: ../../harddrake/v4l.pm:1
#, c-format
msgid "number of capture buffers for mmap'ed capture"
msgstr "liczba buforów pobierania dla pobierania mmap"
#: ../../harddrake/data.pm:1
#, c-format
msgid "SMBus controllers"
msgstr "Kontrolery SMBus"
#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Connection timeout (in sec)"
msgstr "Limit czasu bezczynności (w sek.)"
#: ../../standalone/harddrake2:1
#, c-format
msgid ""
"Some of the early i486DX-100 chips cannot reliably return to operating mode "
"after the \"halt\" instruction is used"
msgstr ""
"Niektóre wczesne czipy i486DX-100 nie potrafiły poprawnie powrócić do trybu "
"operacyjnego po wykonaniu instrukcji \"halt\""
#: ../../keyboard.pm:1
#, c-format
msgid "Croatian"
msgstr "chorwacki"
#: ../../help.pm:1
#, c-format
msgid "Use existing partition"
msgstr "Użyj istniejących partycji"
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Unable to contact mirror %s"
msgstr "Nie można skontaktować się z serwerem zwierciadlanym %s"
#: ../../standalone/logdrake:1
#, c-format
msgid "/Help/_About..."
msgstr "/Pomoc/O _programie"
#: ../../standalone/drakbackup:1
#, c-format
msgid "Remove user directories before restore."
msgstr "Usuń katalogi użytkowników przed odtwarzaniem."
#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
"configuration, you will not be able to use the printer which you are "
"configuring now. How do you want to proceed?"
msgstr ""
"Zostanie skonfigurowana drukarka zdalna. Czynność konfiguracji wymaga "
"działającego dostępu do sieci, lecz drukarka nie jest jeszcze "
"skonfigurowana. Bez skonfigurowanej sieci nie można użyć drukarki zdalnej. "
"Jak chcesz kontynuować?"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "CUPS printer configuration"
msgstr "Konfiguracja drukarki CUPS"
#: ../../standalone/drakfont:1
#, c-format
msgid "could not find any font in your mounted partitions"
msgstr "nie można znaleźć żadnej czcionki na zamontowanych partycjach"
#: ../../standalone/harddrake2:1
#, c-format
msgid "F00f bug"
msgstr "Błąd F00F"
#: ../../Xconfig/card.pm:1 ../../Xconfig/various.pm:1
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
#: ../../standalone/drakTermServ:1
#, c-format
msgid "Domain Name:"
msgstr "Nazwa domeny:"
#: ../../security/l10n.pm:1
#, c-format
msgid "Root umask"
msgstr "Maska roota"
#: ../../any.pm:1
#, c-format
msgid "On Floppy"
msgstr "Na dyskietce"
#: ../../security/l10n.pm:1
#, c-format
msgid "Reboot by the console user"
msgstr "Ponowne uruchamianie przez użytkownka konsoli"
#: ../../standalone/drakbackup:1
#, c-format
msgid "Restore"
msgstr "Przywróć"
#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, check if the network devices are in promiscuous mode."
msgstr "jeśli ustawiono na tak, sprawdza urządzenia sieciowe w tryb gadatliwy."
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Looking for available packages..."
msgstr "Wyszukiwanie dostępnych pakietów..."
#: ../../any.pm:1
#, c-format
msgid "Init Message"
msgstr "Komunikat początkowy"
#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
#, c-format
msgid "Rescue partition table"
msgstr "Odzyskaj tablicę partycji"
#: ../../lang.pm:1
#, c-format
msgid "Cyprus"
msgstr "Cypr"
#: ../../standalone/net_monitor:1
#, c-format
msgid "Connection complete."
msgstr "Próba połączenia zakończona powodzeniem."
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Remove from RAID"
msgstr "Usuń z RAID"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr "Ten klucz jest zbyt prosty (musi posiadać co najmniej %d znaków)"
#: ../../standalone/drakbug:1
#, c-format
msgid "Configuration Wizards"
msgstr "Druidy konfiguracji"
#: ../../network/netconnect.pm:1
#, c-format
msgid "ISDN connection"
msgstr "Połączenie ISDN"
#: ../../standalone/drakbackup:1
#, c-format
msgid "CD-R / DVD-R"
msgstr "CDROM / DVDROM"
#: ../../standalone/harddrake2:1
#, c-format
msgid "primary"
msgstr "główny"
#: ../../printer/main.pm:1
#, c-format
msgid " on SMB/Windows server \"%s\", share \"%s\""
msgstr " na serwerze SMB/Windows \"%s\", współudział \"%s\""
#: ../../help.pm:1
#, c-format
msgid ""
"This dialog is used to choose which services you wish to start at boot\n"
"time.\n"
"\n"
"DrakX will list all the services available on the current installation.\n"
"Review each one carefully and uncheck those which are not needed at boot\n"
"time.\n"
"\n"
"A short explanatory text will be displayed about a service when it is\n"
"selected. However, if you are not sure whether a service is useful or not,\n"
"it is safer to leave the default behavior.\n"
"\n"
"!! At this stage, be very careful if you intend to use your machine as a\n"
"server: you will probably not want to start any services that you do not\n"
"need. Please remember that several services can be dangerous if they are\n"
"enabled on a server. In general, select only the services you really need.\n"
"!!"
msgstr ""
"To okno dialogowe jest używane do wybrania usług włączanych podczas\n"
"uruchamianiu systemu.\n"
"\n"
"Zaprezentowane zostaną wszystkie dostępne usługi z bieżącej instalacji.\n"
"Przejrzyj je uważnie i odznacz te z nich, które nie są zawsze potrzebne\n"
"przy uruchamianiu systemu.\n"
"\n"
"Po zaznaczeniu elementu listy, pojawi się objaśnienie z opisem tej usługi.\n"
"Jednak w przypadku braku pewności czy ta usługa jest\n"
"potrzebna czy nie, bezpieczniej jest pozostawić domyślne zachowanie.\n"
"\n"
"!! Należy zachować szczególną ostrożność przy wyborze. Jeżeli maszyna\n"
"ma pracować jako serwer - zazwyczaj nie będzie potrzeby uruchamiania\n"
"niektórych usług. Należy pamiętać, że uruchomienie niektórych z nich na\n"
"serwerze może być niebezpieczne. W ogólności, należy uruchamiać tylko\n"
"te usługi, które naprawdę są naprawdę potrzebne.\n"
"!!"
#: ../../lang.pm:1
#, c-format
msgid "Niue"
msgstr "Niue"
#: ../../any.pm:1 ../../help.pm:1 ../../printer/printerdrake.pm:1
#, c-format
msgid "Skip"
msgstr "Pomiń"
#: ../../services.pm:1
#, c-format
msgid ""
"Activates/Deactivates all network interfaces configured to start\n"
"at boot time."
msgstr ""
"Włącza/wyłącza skonfigurowane interfejsy sieciowe\n"
"podczas uruchamiania systemu."
#: ../../standalone/harddrake2:1
#, c-format
msgid ""
"the CPU frequency in MHz (Megahertz which in first approximation may be "
"coarsely assimilated to number of instructions the cpu is able to execute "
"per second)"
msgstr ""
"Częstotliwość procesora w MHz (Megaherce, które mogą w pierwszym "
"przybliżeniu być związane z liczbą instrukcji procesora, które mogą być "
"wykonane w czasie jednej sekundy)"
#: ../../standalone/printerdrake:1
#, c-format
msgid "Mandrake Linux Printer Management Tool"
msgstr "Narzędzie do drukarkami dla Linuksa Mandrake"
#: ../../pkgs.pm:1
#, c-format
msgid "important"
msgstr "ważny"
#: ../../standalone/drakbackup:1
#, c-format
msgid "Total Progress"
msgstr "Postęp całkowity"
#: ../../standalone/drakTermServ:1
#, c-format
msgid ""
" - Maintain /etc/shadow\\$\\$CLIENT\\$\\$:\n"
" \t\tFor users to be able to log into the system from a diskless "
"client, their entry in\n"
" \t\t/etc/shadow needs to be duplicated in /etc/shadow\\$\\$CLIENTS\\$"
"\\$. drakTermServ helps\n"
" \t\tin this respect by adding or removing system users from this "
"file."
msgstr ""
" - Zarządzanie plikiem /etc/shadow\\$\\$CLIENT\\$\\$:\n"
" \t\tDla użytkowników, którzy powinni mieć możliwość zalogowania\n"
" \t\tsię do systemu z bezdyskowego klienta, wpis w pliku shadow\n"
" \t\tmusi być zduplikowany w /etc/shadow\\$\\$CLIENTS\\$\\$.\n"
" \t\tdrakTermServ pomaga w tym poprzez dodanie lub usunięcie\n"
" \t\tużytkowników systemowych z tego pliku."
#: ../../help.pm:1
#, c-format
msgid ""
"DrakX will first detect any IDE devices present in your computer. It will\n"
"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
"found, DrakX will automatically install the appropriate driver.\n"
"\n"
"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
"your hard drives. If so, you'll have to specify your hardware by hand.\n"
"\n"
"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
"want to configure options for it. You should allow DrakX to probe the\n"
"hardware for the card-specific options which are needed to initialize the\n"
"adapter. Most of the time, DrakX will get through this step without any\n"
"issues.\n"
"\n"
"If DrakX is not able to probe for the options to automatically determine\n"
"which parameters need to be passed to the hardware, you'll need to manually\n"
"configure the driver."
msgstr ""
"Instalator próbuje najpierw wykryć urządzenia IDE obecne w komputerze.\n"
"Przeszukiwana jest także jedna (lub więcej) karta PCI SCSI. Jeśli karta "
"SCSI\n"
"zostanie znaleziona, instalator automatycznie zainstaluje odpowiedni\n"
"sterownik.\n"
"\n"
"Trzeba jednak przyznać, że proces wykrywania nie zawsze zakończy się\n"
"wykryciem całego sprzętu. Jeśli taki przypadek zajdzie, należy ręcznie "
"wybrać\n"
"odpowiednie urządzenie.\n"
"Jeśli istnieje potrzeba ręcznego wyboru karty SCSI, instalator zapyta czy\n"
"dla niej mają zostać ustawione jakiś opcje. Należy zezwolić na zbadanie\n"
"sprzętu w celu ustawienia opcji specyficznych dla karty, które powinny "
"zostać\n"
"zainicjowane. Zazwyczaj działa to dobrze.\n"
"\n"
"Jeśli instalator nie będzie potrafił zbadać sprzętu w celu określenia,\n"
"które z parametrów muszą zostać ustawione do poprawnego działania sprzętu,\n"
"należy ręcznie skonfigurować sterownik."
#: ../../lang.pm:1
#, c-format
msgid "Aruba"
msgstr "Aruba"
#: ../../standalone/drakbackup:1
#, c-format
msgid "Users"
msgstr "Użytkownicy"
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Preparing bootloader..."
msgstr "Przygotowywanie programu rozruchowego..."
#: ../../network/network.pm:1
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Brama (np. %s)"
#: ../../any.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "The passwords do not match"
msgstr "Hasła nie zgadzają się"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Examples for correct IPs:\n"
msgstr "Przykłady poprawnych adresów IP:\n"
#: ../../standalone/drakbackup:1
#, c-format
msgid "Please choose the media for backup."
msgstr "Wybierz nośnik dla archiwum."
#: ../../standalone/harddrake2:1
#, c-format
msgid "Frequency (MHz)"
msgstr "Częstotliwość (MHz)"
#: ../../install_any.pm:1
#, c-format
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
msgstr ""
"Aby użyć zapisaną listę pakietów, należy uruchomić instalację z opcją "
"''linux defcfg=floppy''"
#: ../../standalone/harddrake2:1
#, c-format
msgid "the number of the processor"
msgstr "numer procesora"
#: ../../help.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "Hardware clock set to GMT"
msgstr "Ustawienie zegara sprzętowego na czas GMT"
#: ../../network/isdn.pm:1
#, c-format
msgid "Do you want to start a new configuration ?"
msgstr "Czy chcesz uruchomić nową konfigurację?"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Give a file name"
msgstr "Podaj nazwę pliku"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Please choose the port that your printer is connected to."
msgstr "Wybierz port do którego podłączona jest drukarka."
#: ../../standalone/livedrake:1
#, c-format
msgid "Change Cd-Rom"
msgstr "Zmiana CD-ROM"
#: ../../lang.pm:1
#, c-format
msgid "Paraguay"
msgstr "Paragwaj"
#: ../../network/netconnect.pm:1
#, c-format
msgid "Configuration is complete, do you want to apply settings ?"
msgstr "Konfiguracja została zakończona, czy chcesz zastosować ustawienia?"
#: ../../standalone/drakbackup:1
#, c-format
msgid "Use Incremental/Differential Backups (do not replace old backups)"
msgstr ""
"Używaj archiwów przyrostowych/różnicowych (bez usuwania starszych archiwów)"
#: ../../harddrake/sound.pm:1
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr "Brak znanego sterownika dla twojej karty dźwiękowej (%s)"
#: ../../standalone/drakfloppy:1
#, c-format
msgid "force"
msgstr "wymuś"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Exit"
msgstr "Wyjdź"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"NOTE: Depending on the printer model and the printing system up to %d MB of "
"additional software will be installed."
msgstr ""
"UWAGA: W zależności od modelu drukarki oraz systemu wydruku zostanie "
"zainstalowane do %d MB dodatkowego oprogramowania."
#: ../../standalone/drakconnect:1
#, c-format
msgid ""
"You don't have any configured interface.\n"
"Configure them first by clicking on 'Configure'"
msgstr ""
"Nie skonfigurowano jeszcze żadnego interfejsu.\n"
"Zacznij konfigurację przez kliknięcie na \"Konfiguruj\""
#: ../../keyboard.pm:1
#, c-format
msgid "Estonian"
msgstr "estoński"
#: ../../services.pm:1
#, c-format
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
"Apache to serwer WWW. Jest używany do udostępniania plików \n"
"HTML i CGI w Internecie/Intranecie."
#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"Enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
"Podaj nazwę urządzenia nagrywarki CD\n"
" np: 0,1,0"
#: ../../standalone/draksec:1
#, c-format
msgid "ALL"
msgstr "WSZYSTKO"
#: ../../standalone/drakTermServ:1
#, c-format
msgid "Add/Del Clients"
msgstr "Dodaj/usuń programy klienckie"
#: ../../network/ethernet.pm:1 ../../standalone/drakgw:1
#: ../../standalone/drakpxe:1
#, c-format
msgid "Choose the network interface"
msgstr "Wybierz interfejs sieciowy"
#: ../../printer/detect.pm:1 ../../printer/printerdrake.pm:1
#, c-format
msgid "Unknown Model"
msgstr "Nieznany model"
#: ../../harddrake/data.pm:1
#, c-format
msgid "CD/DVD burners"
msgstr "Nagrywarki CD/DVD"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
msgstr ""
"Domyślna partycja startowa\n"
" (uruchamianie MS-DOS, nie dla lilo)\n"
#: ../../standalone/drakperm:1
#, c-format
msgid "Enable \"%s\" to read the file"
msgstr "Włącz \\\"%s\\\" aby odczytać plik"
#: ../../standalone/draksplash:1
#, c-format
msgid "choose image"
msgstr "wybierz obraz"
#: ../../network/shorewall.pm:1
#, c-format
msgid "Firewalling configuration detected!"
msgstr "Wykryto konfigurację zapory ogniowej!"
#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Connection name"
msgstr "Nazwa połączenia"
#: ../../standalone/draksplash:1
#, c-format
msgid ""
"x coordinate of text box\n"
"in number of characters"
msgstr ""
"Współrzędna x okienka\n"
"tekstowego w liczbie znaków"
#: ../../install_steps_gtk.pm:1
#, c-format
msgid "Updating package selection"
msgstr "Uaktualnianie listy wybranych pakietów"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Where do you want to mount the loopback file %s?"
msgstr "Gdzie chcesz zamontować plikopartycję %s?"
#: ../../standalone/drakautoinst:1
#, c-format
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
msgstr ""
"Dyskietka została pomyślnie utworzona.\n"
"Można teraz powtórzyć instalację."
#: ../../standalone/drakbackup:1
#, c-format
msgid "Use CD-R/DVD-R to backup"
msgstr "Użyj napędu CD/DVD do archiwizacji"
#: ../../standalone/harddrake2:1
#, c-format
msgid "the number of buttons the mouse has"
msgstr "liczba przycisków myszy"
#: ../../help.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "Replay"
msgstr "Powtórzona"
#: ../../standalone/drakbackup:1
#, c-format
msgid "Backup other files"
msgstr "Archiwizuj inne pliki"
#: ../../install_steps.pm:1
#, c-format
msgid "No floppy drive available"
msgstr "Niedostępna stacja dyskietek"
#: ../../standalone/drakbackup:1
#, c-format
msgid "Backup files are corrupted"
msgstr "Pliki archiwum są uszkodzone"
#: ../../standalone/drakxtv:1
#, c-format
msgid "TV norm:"
msgstr "Standard TV :"
#: ../../standalone/harddrake2:1
#, c-format
msgid "Cpuid family"
msgstr "Rodzina procesora"
#: ../../Xconfig/card.pm:1
#, c-format
msgid "32 MB"
msgstr "32 MB"
#: ../../standalone/drakTermServ:1
#, c-format
msgid "type: thin"
msgstr "rodzaj: cienki"
#: ../../keyboard.pm:1
#, c-format
msgid "Lithuanian AZERTY (new)"
msgstr "litewski AZERTY (nowy)"
#: ../../standalone/harddrake2:1
#, c-format
msgid "yes means the arithmetic coprocessor has an exception vector attached"
msgstr ""
"tak - oznacza, że kooprocesor arytmetyczny posiada dołączony wektor przerwań"
#: ../../fsedit.pm:1
#, c-format
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
"Please be sure to add a /boot partition"
msgstr ""
"Jako partycję root (/) wybrano programową partycję RAID.\n"
"Żaden program rozruchowy nie jest w stanie obsłużyć jej bez partycji /boot.\n"
"Pamiętaj więc o dodaniu partycji /boot."
#: ../../any.pm:1
#, c-format
msgid "Other OS (MacOS...)"
msgstr "Inny system operacyjny (MacOS...)"
#: ../../mouse.pm:1
#, c-format
msgid "To activate the mouse,"
msgstr "By uaktywnić mysz,"
#: ../../install_interactive.pm:1
#, c-format
msgid "Bringing up the network"
msgstr "Uruchamianie sieci"
#: ../../common.pm:1
#, c-format
msgid "Screenshots will be available after install in %s"
msgstr "Zrzuty ekranu będą dostępne po instalacji w %s"
#: ../../help.pm:1
#, c-format
msgid ""
"More than one Microsoft partition has been detected on your hard drive.\n"
"Please choose which one you want to resize in order to install your new\n"
"Mandrake Linux operating system.\n"
"\n"
"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
"\"Capacity\".\n"
"\n"
"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
"\"sd\" if it is a SCSI hard drive.\n"
"\n"
"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
"hard drives:\n"
"\n"
" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
"\n"
" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
"\n"
" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
"\n"
" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
"\n"
"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
"\"second lowest SCSI ID\", etc.\n"
"\n"
"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
"disk or partition is called \"C:\")."
msgstr ""
"Na dysku wykryto więcej niż jedną partycję Windows. Wybierz, którą\n"
"z nich chcesz zmniejszyć w celu zainstalowania Linuksa Mandrake\n"
"\n"
"Każda partycja jest określana za pomocą informacji: \"Nazwa linuksowa\",\n"
"\"Nazwa Windows\" i \"Rozmiar\".\n"
"\n"
"Nazwa linuksowa jest określana następująco: \"typ dysku\",\"numer dysku\",\n"
"\"numer partycji\". (na przykład \"hda1\").\n"
"\n"