package install_steps_interactive; # $Id$ use diagnostics; use strict; use vars qw(@ISA $new_bootstrap); @ISA = qw(install_steps); #-###################################################################################### #- misc imports #-###################################################################################### use common; use partition_table qw(:types); use partition_table::raw; use install_steps; use install_interactive; use install_any; use install_messages; use detect_devices; use run_program; use devices; use fsedit; use loopback; use mouse; use modules; use modules::interactive; use lang; use keyboard; use any; use fs; use log; #-###################################################################################### #- In/Out Steps Functions #-###################################################################################### sub errorInStep { my ($o, $err) = @_; $o->ask_warn(N("Error"), [ N("An error occurred"), formatError($err) ]); } sub kill_action { my ($o) = @_; $o->kill; } #-###################################################################################### #- Steps Functions #-###################################################################################### #------------------------------------------------------------------------------ sub selectLanguage { my ($o) = @_; $o->{locale}{lang} = any::selectLanguage($o, $o->{locale}{lang}, $o->{locale}{langs} ||= {}); install_steps::selectLanguage($o); if ($o->isa('interactive::gtk')) { $o->ask_warn('', formatAlaTeX( "If you see this message it is because you chose a language for which DrakX does not include a translation yet; however the fact that it is listed means there is some support for it anyway. That is, once GNU/Linux will be installed, you will be able to at least read and write in that language; and possibly more (various fonts, spell checkers, various programs translated etc. that varies from language to language).")) if $o->{locale}{lang} !~ /^en/ && !lang::load_mo(); } else { #- no need to have this in po since it is never translated $o->ask_warn('', "The characters of your language can't be displayed in console, so the messages will be displayed in english during installation") if $ENV{LANGUAGE} eq 'C'; } } sub acceptLicense { my ($o) = @_; my $r = $::testing ? 'Accept' : 'Refuse'; ($::recovery ? $o->ask_yesorno('', N("Do you want to recover your system?"), 0) : $o->ask_from_({ title => N("License agreement"), cancel => N("Quit"), messages => formatAlaTeX(install_messages::main_license() . "\n\n\n" . install_messages::warning_about_patents()), interactive_help_id => 'acceptLicense', callbacks => { ok_disabled => sub { $r eq 'Refuse' } }, }, [ { list => [ N_("Accept"), N_("Refuse") ], val => \$r, type => 'list', format => sub { translate($_[0]) } } ])) or do { if ($::globetrotter) { system("killall XFree86"); exec("/sbin/reboot"); }; install_any::ejectCdrom(); $o->exit; }; } #------------------------------------------------------------------------------ sub selectKeyboard { my ($o, $clicked) = @_; my $from_usb = keyboard::from_usb(); my $l = keyboard::lang2keyboards(lang::langs($o->{locale}{langs})); if ($::expert || $clicked || !($from_usb || @$l && $l->[0][1] >= 90) || listlength(lang::langs($o->{locale}{langs})) > 1) { add2hash($o->{keyboard}, $from_usb); my @best = uniq($from_usb ? $from_usb->{KEYBOARD} : (), (map { $_->[0] } @$l), 'us_intl'); my $format = sub { translate(keyboard::KEYBOARD2text($_[0])) }; my $other; my $ext_keyboard = my $KEYBOARD = $o->{keyboard}{KEYBOARD}; $o->ask_from_( { title => N("Keyboard"), messages => N("Please choose your keyboard layout."), interactive_help_id => 'selectKeyboard', advanced_messages => N("Here is the full list of available keyboards"), advanced_label => N("More"), callbacks => { changed => sub { $other = $_[0] == 1 } }, }, [ if_(@best > 1, { val => \$KEYBOARD, type => 'list', format => $format, sort => 1, list => [ @best ] }), { val => \$ext_keyboard, type => 'list', format => $format, list => [ difference2([ keyboard::KEYBOARDs() ], \@best) ], advanced => @best > 1 } ]); $o->{keyboard}{KEYBOARD} = $other ? $ext_keyboard : $KEYBOARD; delete $o->{keyboard}{unsafe}; } keyboard::group_toggle_choose($o, $o->{keyboard}) or goto &selectKeyboard; install_steps::selectKeyboard($o); } #------------------------------------------------------------------------------ sub selectInstallClass { my ($o) = @_; if (my @l = install_any::find_root_parts($o->{fstab}, $o->{prefix})) { log::l("proposing to upgrade partitions " . join(" ", map { $_->{part}{device} } @l)); my @releases = uniq(map { $_->{release} } @l); if (@releases != @l) { #- same release name so adding the device to differentiate them: $_->{release} .= " ($_->{part}{device})" foreach @l; } my $p; $o->ask_from_({ title => N("Install/Upgrade"), messages => N("Is this an install or an upgrade?"), interactive_help_id => 'selectInstallClass', }, [ { val => \$p, list => [ @l, N_("Install") ], type => 'list', format => sub { ref($_[0]) ? N("Upgrade %s", $_[0]{release}) : translate($_[0]) } } ]); if (ref $p) { my $part = $p->{part}; log::l("choosing to upgrade partition $part->{device}"); install_any::use_root_part($o->{all_hds}, $part, $o->{prefix}); foreach (grep { $_->{mntpoint} } @{$o->{fstab}}) { my ($options, $_unknown) = fs::mount_options_unpack($_); $options->{encrypted} or next; $o->ask_from_({ focus_first => 1 }, [ { label => N("Encryption key for %s", $_->{mntpoint}), hidden => 1, val => \$_->{encrypt_key} } ]); } $o->{isUpgrade} = 1; } } } #------------------------------------------------------------------------------ sub selectMouse { my ($o, $force) = @_; $force ||= $o->{mouse}{unsafe}; if ($force) { my $prev = $o->{mouse}{type} . '|' . $o->{mouse}{name}; $o->ask_from_({ messages => N("Please choose your type of mouse."), interactive_help_id => 'selectMouse', }, [ { list => [ mouse::fullnames() ], separator => '|', val => \$prev, format => sub { join('|', map { translate($_) } split('\|', $_[0])) } } ]); $o->{mouse} = mouse::fullname2mouse($prev); } if ($force && $o->{mouse}{type} eq 'serial') { $o->{mouse}{device} = $o->ask_from_listf_raw({ title => N("Mouse Port"), messages => N("Please choose which serial port your mouse is connected to."), interactive_help_id => 'selectSerialPort', }, \&mouse::serial_port2text, [ mouse::serial_ports() ]) or return &selectMouse; } if (arch() =~ /ppc/ && $o->{mouse}{nbuttons} == 1) { #- set a sane default F11/F12 $o->{mouse}{button2_key} = 87; $o->{mouse}{button3_key} = 88; $o->ask_from('', N("Buttons emulation"), [ { label => N("Button 2 Emulation"), val => \$o->{mouse}{button2_key}, list => [ mouse::ppc_one_button_keys() ], format => \&mouse::ppc_one_button_key2text }, { label => N("Button 3 Emulation"), val => \$o->{mouse}{button3_key}, list => [ mouse::ppc_one_button_keys() ], format => \&mouse::ppc_one_button_key2text }, ]) or return; } if ($o->{mouse}{device} eq "usbmouse") { modules::interactive::load_category($o, 'bus/usb', 1, 1); eval { devices::make("usbmouse"); modules::load(qw(hid mousedev usbmouse)); }; } $o->SUPER::selectMouse; 1; } #------------------------------------------------------------------------------ sub setupSCSI { my ($o) = @_; if (!$::noauto && arch() =~ /i.86/) { if ($o->{pcmcia} ||= !$::testing && c::pcmcia_probe()) { my $w = $o->wait_message(N("PCMCIA"), N("Configuring PCMCIA cards...")); my $results = install_any::configure_pcmcia($o->{pcmcia}); undef $w; $results and $o->ask_warn('', $results); } } { my $_w = $o->wait_message(N("IDE"), N("Configuring IDE")); modules::load(modules::category2modules('disk/cdrom')); } modules::interactive::load_category($o, 'bus/firewire', 1); my $have_non_scsi = detect_devices::hds(); #- at_least_one scsi device if we have no disks modules::interactive::load_category($o, 'disk/scsi|hardware_raid|firewire', 1, !$have_non_scsi); modules::interactive::load_category($o, 'disk/scsi|hardware_raid|firewire') if !detect_devices::hds(); #- we really want a disk! install_interactive::tellAboutProprietaryModules($o); install_any::getHds($o, $o); } sub ask_mntpoint_s { #- }{} my ($o, $fstab) = @_; my @fstab = grep { isTrueFS($_) } @$fstab; @fstab = grep { isSwap($_) } @$fstab if @fstab == 0; @fstab = @$fstab if @fstab == 0; die N("No partition available") if @fstab == 0; { my $_w = $o->wait_message('', N("Scanning partitions to find mount points")); install_any::suggest_mount_points($fstab, $o->{prefix}, 'uniq'); log::l("default mntpoint $_->{mntpoint} $_->{device}") foreach @fstab; } if (@fstab == 1) { $fstab[0]{mntpoint} = '/'; } else { $o->ask_from_({ messages => N("Choose the mount points"), interactive_help_id => 'ask_mntpoint_s', }, [ map { { label => partition_table::description($_), val => \$_->{mntpoint}, not_edit => 0, list => [ '', fsedit::suggestions_mntpoint(fsedit::empty_all_hds()) ] } } grep { !$_->{real_mntpoint} || common::usingRamdisk() } @fstab ]) or return; } $o->SUPER::ask_mntpoint_s($fstab); } #------------------------------------------------------------------------------ sub doPartitionDisks { my ($o) = @_; if (arch() =~ /ppc/ && detect_devices::get_mac_generation() =~ /NewWorld/) { #- need to make bootstrap part if NewWorld machine - thx Pixel ;^) if (defined $partition_table::mac::bootstrap_part) { #- don't do anything if we've got the bootstrap setup #- otherwise, go ahead and create one somewhere in the drive free space } else { undef = $partition_table::mac::freepart; #- please "perl -w" my $freepart = $partition_table::mac::freepart; if ($freepart && $freepart->{size} >= 1) { log::l("creating bootstrap partition on drive /dev/$freepart->{hd}{device}, block $freepart->{start}"); $partition_table::mac::bootstrap_part = $freepart->{part}; log::l("bootstrap now at $partition_table::mac::bootstrap_part"); fsedit::add($freepart->{hd}, { start => $freepart->{start}, size => 1 << 11, pt_type => 0x401, mntpoint => '' }, $o->{all_hds}, { force => 1, primaryOrExtended => 'Primary' }); $new_bootstrap = 1; } else { $o->ask_warn('', N("No free space for 1MB bootstrap! Install will continue, but to boot your system, you'll need to create the bootstrap partition in DiskDrake")); } } } if (!$o->{isUpgrade}) { install_interactive::partitionWizard($o); } } #------------------------------------------------------------------------------ sub rebootNeeded { my ($o) = @_; $o->ask_warn('', N("You need to reboot for the partition table modifications to take place")); install_steps::rebootNeeded($o); } #------------------------------------------------------------------------------ sub choosePartitionsToFormat { my ($o, $fstab) = @_; $o->SUPER::choosePartitionsToFormat($fstab); my @l = grep { !$_->{isMounted} && $_->{mntpoint} && (!isSwap($_) || $::expert) && (!isFat_or_NTFS($_) || $_->{notFormatted} || $::expert) && (!isOtherAvailableFS($_) || $::expert || $_->{toFormat}) } @$fstab; $_->{toFormat} = 1 foreach grep { isSwap($_) && !$::expert } @$fstab; return if @l == 0 || !$::expert && every { $_->{toFormat} } @l; #- keep it temporary until the guy has accepted $_->{toFormatTmp} = $_->{toFormat} || $_->{toFormatUnsure} foreach @l; $o->ask_from_( { messages => N("Choose the partitions you want to format"), interactive_help_id => 'formatPartitions', advanced_messages => N("Check bad blocks?"), }, [ map { my $e = $_; ({ text => partition_table::description($e), type => 'bool', val => \$e->{toFormatTmp} }, if_(!isLoopback($_) && !isThisFs("reiserfs", $_) && !isThisFs("xfs", $_) && !isThisFs("jfs", $_), { text => partition_table::description($e), type => 'bool', advanced => 1, disabled => sub { !$e->{toFormatTmp} }, val => \$e->{toFormatCheck} })) } @l ] ) or die 'already displayed'; #- ok now we can really set toFormat foreach (@l) { $_->{toFormat} = delete $_->{toFormatTmp}; $_->{isFormatted} = 0; } } sub formatMountPartitions { my ($o, $_fstab) = @_; my $w; catch_cdie { fs::formatMount_all($o->{all_hds}{raids}, $o->{fstab}, $o->{prefix}, sub { my ($msg) = @_; $w ||= $o->wait_message('', $msg); $w->set($msg); }); } sub { $@ =~ /fsck failed on (\S+)/ or return; $o->ask_yesorno('', N("Failed to check filesystem %s. Do you want to repair the errors? (beware, you can lose data)", $1), 1); }; undef $w; #- help perl (otherwise wait_message stays forever in newt) die N("Not enough swap space to fulfill installation, please add some") if availableMemory() < 40 * 1024; } #------------------------------------------------------------------------------ sub setPackages { my ($o, $rebuild_needed) = @_; my $w = $o->wait_message('', $rebuild_needed ? N("Looking for available packages and rebuilding rpm database...") : N("Looking for available packages...")); install_any::setPackages($o, $rebuild_needed); $w->set(N("Looking at packages already installed...")); pkgs::selectPackagesAlreadyInstalled($o->{packages}, $o->{prefix}); if ($rebuild_needed) { $w->set(N("Finding packages to upgrade...")); pkgs::selectPackagesToUpgrade($o->{packages}, $o->{prefix}); } } #------------------------------------------------------------------------------ sub choosePackages { my ($o, $packages, $compssUsers, $_first_time) = @_; #- this is done at the very beginning to take into account #- selection of CD by user if using a cdrom. $o->chooseCD($packages) if install_any::method_allows_medium_change($o->{method}) && !$::oem; my $w = $o->wait_message('', N("Looking for available packages...")); my $availableC = &install_steps::choosePackages; my $individual; require pkgs; my $min_size = pkgs::selectedSize($packages); unless ($min_size < $availableC) { undef $w; $o->ask_warn('', N("Your system does not have enough space left for installation or upgrade (%d > %d)", $min_size, $availableC)); install_steps::rebootNeeded($o); } my $min_mark = 4; my $b = pkgs::saveSelected($packages); my $_level = pkgs::setSelectedFromCompssList($packages, { map { $_ => 1 } map { @{$compssUsers->{$_}{flags}} } @{$o->{compssUsersSorted}} }, $min_mark, 0); my $max_size = pkgs::selectedSize($packages) + 1; #- avoid division by zero. log::l("max size (level $min_mark) is : " . formatXiB($max_size)); pkgs::restoreSelected($b); undef $w; chooseGroups: $o->chooseGroups($packages, $compssUsers, $min_mark, \$individual, $max_size) if !$o->{isUpgrade} && !$::corporate && $o->{meta_class} ne 'desktop'; ($o->{packages_}{ind}) = pkgs::setSelectedFromCompssList($packages, $o->{compssUsersChoice}, $min_mark, $availableC); $o->choosePackagesTree($packages) or goto chooseGroups if $individual; install_any::warnAboutRemovedPackages($o, $o->{packages}); install_any::warnAboutNaughtyServers($o) or goto chooseGroups if !$o->{isUpgrade}; } sub choosePackagesTree { my ($o, $packages, $o_limit_to_medium) = @_; $o->ask_many_from_list('', N("Choose the packages you want to install"), { list => [ grep { !$o_limit_to_medium || pkgs::packageMedium($packages, $_) == $o_limit_to_medium } @{$packages->{depslist}} ], value => \&URPM::Package::flag_selected, label => \&URPM::Package::name, sort => 1, }); } sub loadSavePackagesOnFloppy { my ($o, $packages) = @_; $o->ask_from('', N("Please choose load or save package selection on floppy. The format is the same as auto_install generated floppies."), [ { val => \ (my $choice), list => [ N_("Load from floppy"), N_("Save on floppy") ], format => \&translate, type => 'list' } ]) or return; if ($choice eq 'Load from floppy') { while (1) { my $w = $o->wait_message(N("Package selection"), N("Loading from floppy")); log::l("load package selection from floppy"); my $O = eval { install_any::loadO(undef, 'floppy') }; if ($@) { undef $w; #- close wait message. $o->ask_okcancel('', N("Insert a floppy containing package selection")) or return; } else { install_any::unselectMostPackages($o); foreach (@{$O->{default_packages} || []}) { my $pkg = pkgs::packageByName($packages, $_); pkgs::selectPackage($packages, $pkg) if $pkg; } return 1; } } } else { log::l("save package selection to floppy"); install_any::g_default_packages($o, 'quiet'); } } sub chooseGroups { my ($o, $packages, $compssUsers, $min_level, $individual, $max_size) = @_; #- for all groups available, determine package which belongs to each one. #- this will enable getting the size of each groups more quickly due to #- limitation of current implementation. #- use an empty state for each one (no flag update should be propagated). #- OLD VERSION my $b = pkgs::saveSelected($packages); install_any::unselectMostPackages($o); pkgs::setSelectedFromCompssList($packages, {}, $min_level, $max_size); my $system_size = pkgs::selectedSize($packages); my ($sizes, $pkgs) = pkgs::computeGroupSize($packages, $min_level); pkgs::restoreSelected($b); log::l("system_size: $system_size"); my @groups = @{$o->{compssUsersSorted}}; my %stable_flags = grep_each { $::b } %{$o->{compssUsersChoice}}; delete $stable_flags{$_} foreach map { @{$compssUsers->{$_}{flags}} } @groups; my $compute_size = sub { my %pkgs; my %flags = %stable_flags; @flags{@_} = (); my $total_size; A: while (my ($k, $size) = each %$sizes) { Or: foreach (split "\t", $k) { foreach (split "&&") { exists $flags{$_} or next Or; } $total_size += $size; $pkgs{$_} = 1 foreach @{$pkgs->{$k}}; next A; } } log::l("computed size $total_size"); log::l("chooseGroups: ", join(" ", sort keys %pkgs)); int $total_size; }; my %val = map { $_ => every { $o->{compssUsersChoice}{$_} } @{$compssUsers->{$_}{flags}} } @groups; # @groups = grep { $size{$_} = round_down($size{$_} / sqr(1024), 10) } @groups; #- don't display the empty or small one (eg: because all packages are below $min_level) my ($size, $unselect_all); my $available_size = install_any::getAvailableSpace($o) / sqr(1024); my $size_to_display = sub { my $lsize = $system_size + $compute_size->(map { @{$compssUsers->{$_}{flags}} } grep { $val{$_} } @groups); #- if a profile is deselected, deselect everything (easier than deselecting the profile packages) $unselect_all ||= $size > $lsize; $size = $lsize; N("Total size: %d / %d MB", pkgs::correctSize($size / sqr(1024)), $available_size); }; while (1) { if ($available_size < 140) { # too small to choose anything. Defaulting to no group chosen $val{$_} = 0 foreach keys %val; last; } $o->reallyChooseGroups($size_to_display, $individual, \%val) or return; last if $::testing || pkgs::correctSize($size / sqr(1024)) < $available_size; $o->ask_warn('', N("Selected size is larger than available space")); } $o->{compssUsersChoice}{$_} = 0 foreach map { @{$compssUsers->{$_}{flags}} } grep { !$val{$_} } keys %val; $o->{compssUsersChoice}{$_} = 1 foreach map { @{$compssUsers->{$_}{flags}} } grep { $val{$_} } keys %val; log::l("compssUsersChoice: " . (!$val{$_} && "not ") . "selected [$_] as [$o->{compssUsers}{$_}{label}]") foreach keys %val; #- do not try to deselect package (by default no groups are selected). $o->{isUpgrade} or $unselect_all and install_any::unselectMostPackages($o); #- if no group have been chosen, ask for using base system only, or no X, or normal. if (!$o->{isUpgrade} && !any { $_ } values %val) { my $docs = !$o->{excludedocs}; my $minimal = !any { $_ } values %{$o->{compssUsersChoice}}; $o->ask_from(N("Type of install"), N("You haven't selected any group of packages. Please choose the minimal installation you want:"), [ { val => \$o->{compssUsersChoice}{X}, type => 'bool', text => N("With X"), disabled => sub { $minimal } }, { val => \$docs, type => 'bool', text => N("With basic documentation (recommended!)"), disabled => sub { $minimal } }, { val => \$minimal, type => 'bool', text => N("Truly minimal install (especially no urpmi)") }, ], changed => sub { $o->{compssUsersChoice}{X} = $docs = 0 if $minimal }, ) or return &chooseGroups; $o->{excludedocs} = !$docs || $minimal; #- reselect according to user selection. if ($minimal) { $o->{compssUsersChoice}{$_} = 0 foreach keys %{$o->{compssUsersChoice}}; } else { my $X = $o->{compssUsersChoice}{X}; #- don't let setDefaultPackages modify this one install_any::setDefaultPackages($o, 'clean'); $o->{compssUsersChoice}{X} = $X; } install_any::unselectMostPackages($o); } 1; } sub reallyChooseGroups { my ($o, $size_to_display, $individual, $val) = @_; my $size_text = &$size_to_display; my ($path, $all); $o->ask_from_({ messages => N("Package Group Selection"), interactive_help_id => 'choosePackages', callbacks => { changed => sub { $size_text = &$size_to_display } }, }, [ { val => \$size_text, type => 'label' }, {}, (map { my $old = $path; $path = $o->{compssUsers}{$_}{path}; if_($old ne $path, { val => translate($path) }), { val => \$val->{$_}, type => 'bool', disabled => sub { $all }, text => translate($o->{compssUsers}{$_}{label}), help => translate($o->{compssUsers}{$_}{descr}), } } @{$o->{compssUsersSorted}}), if_($o->{meta_class} eq 'desktop', { text => N("All"), val => \$all, type => 'bool' }), if_($individual, { text => N("Individual package selection"), val => $individual, advanced => 1, type => 'bool' }), ]); if ($all) { $val->{$_} = 1 foreach keys %$val; } 1; } sub chooseCD { my ($o, $packages) = @_; my @mediums = grep { $_ != $install_any::boot_medium } pkgs::allMediums($packages); my @mediumsDescr; my %mediumsDescr; if (!common::usingRamdisk()) { #- mono-cd in case of no ramdisk foreach (@mediums) { pkgs::mediumDescr($packages, $install_any::boot_medium) eq pkgs::mediumDescr($packages, $_) and next; undef $packages->{mediums}{$_}{selected}; } log::l("low memory install, using single CD installation (as it is not ejectable)"); return; } #- the boot medium is already selected. $mediumsDescr{pkgs::mediumDescr($packages, $install_any::boot_medium)} = 1; #- build mediumDescr according to mediums, this avoid asking multiple times #- all the medium grouped together on only one CD. foreach (@mediums) { my $descr = pkgs::mediumDescr($packages, $_); $packages->{mediums}{$_}{ignored} and next; exists $mediumsDescr{$descr} or push @mediumsDescr, $descr; $mediumsDescr{$descr} ||= $packages->{mediums}{$_}{selected}; } if (install_any::method_is_from_ISO_images($o->{method})) { $mediumsDescr{$_} = to_bool(install_any::find_ISO_image_labelled($_)) foreach @mediumsDescr; } elsif ($method eq "cdrom") { #- if no other medium available or a poor beginner, we are choosing for him! #- note first CD is always selected and should not be unselected! return if @mediumsDescr == () || !$::expert; # $o->set_help('chooseCD'); $o->ask_many_from_list('', N("If you have all the CDs in the list below, click Ok. If you have none of those CDs, click Cancel. If only some CDs are missing, unselect them, then click Ok."), { list => \@mediumsDescr, label => sub { N("Cd-Rom labeled \"%s\"", $_[0]) }, val => sub { \$mediumsDescr{$_[0]} }, }) or do { $mediumsDescr{$_} = 0 foreach @mediumsDescr; #- force unselection of other CDs. }; } #- restore true selection of medium (which may have been grouped together) foreach (@mediums) { my $descr = pkgs::mediumDescr($packages, $_); $packages->{mediums}{$_}{ignored} and next; $packages->{mediums}{$_}{selected} = $mediumsDescr{$descr}; log::l("select status of medium $_ is $packages->{mediums}{$_}{selected}"); } } #------------------------------------------------------------------------------ sub installPackages { my ($o, $packages) = @_; my ($current, $total) = (0, 0); my $w = $o->wait_message(N("Installing"), N("Preparing installation")); my $old = \&pkgs::installCallback; local *pkgs::installCallback = sub { my ($data, $type, $id, $subtype, $_amount, $total_) = @_; if ($type eq 'user' && $subtype eq 'install') { $total = $total_; } elsif ($type eq 'inst' && $subtype eq 'start') { my $p = $data->{depslist}[$id]; $w->set(N("Installing package %s\n%d%%", $p->name, $total && 100 * $current / $total)); $current += $p->size; } else { goto $old } }; #- the modification is not local as the box should be living for other package installation. #- BEWARE this is somewhat duplicated (but not exactly from gtk code). undef *install_any::changeMedium; *install_any::changeMedium = sub { my ($method, $medium) = @_; #- if not using a cdrom medium or an iso image, always abort. return unless install_any::method_allows_medium_change($method) && !$::oem; my $name = pkgs::mediumDescr($o->{packages}, $medium); local $| = 1; print "\a"; my $r = $name !~ /commercial/i || ($o->{useless_thing_accepted2} ||= $o->ask_from_list_('', formatAlaTeX(install_messages::com_license()), [ N_("Accept"), N_("Refuse") ], "Accept") eq "Accept"); if ($method =~ /-iso$/) { $r = install_any::changeIso($name); } else { $r &&= $o->ask_okcancel('', N("Change your Cd-Rom! Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when done. If you don't have it, press Cancel to avoid installation from this Cd-Rom.", $name), 1); } return $r; }; my $install_result; catch_cdie { $install_result = $o->install_steps::installPackages($packages) } sub { if ($@ =~ /^error ordering package list: (.*)/) { $o->ask_yesorno('', [ N("There was an error ordering packages:"), $1, N("Go on anyway?") ], 1) and return 1; ${$_[0]} = "already displayed"; } elsif ($@ =~ /^error installing package list: (.*)/) { $o->ask_yesorno('', [ N("There was an error installing packages:"), $1, N("Go on anyway?") ], 1) and return 1; ${$_[0]} = "already displayed"; } 0; }; if ($pkgs::cancel_install) { $pkgs::cancel_install = 0; die "setstep choosePackages\n"; } $install_result; } sub afterInstallPackages($) { my ($o) = @_; my $_w = $o->wait_message('', N("Post-install configuration")); $o->SUPER::afterInstallPackages; } sub updateModulesFromFloppy { my ($o) = @_; $o->ask_okcancel('', N("Please insert the Update Modules floppy in drive %s", $o->{updatemodules}), 1) or return; $o->SUPER::updateModulesFromFloppy; } #------------------------------------------------------------------------------ sub configureNetwork { my ($o) = @_; require network::network; network::network::easy_dhcp($o->{netc}, $o->{intf}) and $o->{netcnx}{type} = 'lan'; $o->SUPER::configureNetwork; } #------------------------------------------------------------------------------ sub installUpdates { my ($o) = @_; my $u = $o->{updates} ||= {}; $o->hasNetwork or return; if (is_empty_hash_ref($u)) { $o->ask_yesorno_({ messages => formatAlaTeX( N("You now have the opportunity to download updated packages. These packages have been updated after the distribution was released. They may contain security or bug fixes. To download these packages, you will need to have a working Internet connection. Do you want to install the updates ?")), interactive_help_id => 'installUpdates', }) or return; } #- bring all interface up for installing crypto packages. install_interactive::upNetwork($o); #- update medium available and working. my $update_medium; do { require crypto; eval { my @mirrors = do { my $_w = $o->wait_message('', N("Contacting Mandrakelinux web site to get the list of available mirrors...")); crypto::mirrors($o->{distro_type}); }; #- if no mirror have been found, use current time zone and propose among available. $u->{mirror} ||= crypto::bestMirror($o->{timezone}{timezone}, $o->{distro_type}); $o->ask_from_({ messages => N("Choose a mirror from which to get the packages"), cancel => N("Cancel"), }, [ { separator => '|', format => \&crypto::mirror2text, list => \@mirrors, val => \$u->{mirror}, }, ], ) or $u->{mirror} = ''; }; return if $@ || !$u->{mirror}; eval { if ($u->{mirror}) { my $_w = $o->wait_message('', N("Contacting the mirror to get the list of available packages...")); $update_medium = crypto::getPackages($o->{prefix}, $o->{packages}, $u->{mirror}); } }; } while $@ || !$update_medium && $o->ask_yesorno('', N("Unable to contact mirror %s", $u->{mirror}) . ($@ ? " :\n$@" : "") . "\n\n" . N("Would you like to try again?")); if ($update_medium) { if ($o->choosePackagesTree($o->{packages}, $update_medium)) { $o->{isUpgrade} = 1; #- now force upgrade mode, else update will be installed instead of upgraded. $o->pkg_install; } else { #- make sure to not try to install the packages (which are automatically selected by getPackage above). #- this is possible by deselecting the medium (which can be re-selected above). delete $update_medium->{selected}; } #- update urpmi even, because there is an hdlist available and everything is good, #- this will allow user to update the medium but update his machine later. $o->install_urpmi; } #- stop interface using ppp only. FIXME REALLY TOCHECK isdn (costly network) ? # FIXME damien install_interactive::downNetwork($o, 'pppOnly'); } #------------------------------------------------------------------------------ sub configureTimezone { my ($o, $clicked) = @_; require timezone; $o->{timezone}{timezone} = $o->ask_from_treelist('', N("Which is your timezone?"), '/', [ timezone::getTimeZones() ], $o->{timezone}{timezone}) || return; my $ntp = to_bool($o->{timezone}{ntp}); $o->ask_from_({ interactive_help_id => 'configureTimezoneGMT' }, [ { text => N("Hardware clock set to GMT"), val => \$o->{timezone}{UTC}, type => 'bool' }, { text => N("Automatic time synchronization (using NTP)"), val => \$ntp, type => 'bool' }, ]) or goto &configureTimezone if $::expert || $clicked; if ($ntp) { my $servers = timezone::ntp_servers(); $o->{timezone}{ntp} ||= 'pool.ntp.org'; $o->ask_from_({}, [ { label => N("NTP Server"), val => \$o->{timezone}{ntp}, list => [ keys %$servers ], not_edit => 0, format => sub { $servers->{$_[0]} ? "$servers->{$_[0]} ($_[0])" : $_[0] } } ] ) or goto &configureTimezone; } else { $o->{timezone}{ntp} = ''; } install_steps::configureTimezone($o); 1; } #------------------------------------------------------------------------------ sub configureServices { my ($o, $clicked) = @_; require services; $o->{services} = services::ask($o) if $::expert || $clicked; install_steps::configureServices($o); } sub summaryBefore { my ($o) = @_; #- auto-detection $o->configurePrinter(0); install_any::preConfigureTimezone($o); #- get back network configuration. require network::network; eval { network::network::read_all_conf($o->{prefix}, $o->{netc} ||= {}, $o->{intf} ||= {}, $o->{netcnx} ||= {}); }; log::l("summaryBefore: network configuration: ", formatError($@)) if $@; } sub summary_prompt { my ($o, $l, $check_complete) = @_; foreach (@$l) { my $val = $_->{val}; ($_->{format}, $_->{val}) = (sub { $val->() || N("not configured") }, ''); } $o->ask_from_({ messages => N("Summary"), interactive_help_id => 'summary', cancel => '', callbacks => { complete => sub { !$check_complete->() } }, }, $l); } sub summary { my ($o) = @_; my @l; push @l, { group => N("System"), label => N("Keyboard"), val => sub { $o->{keyboard} && translate(keyboard::keyboard2text($o->{keyboard})) }, clicked => sub { $o->selectKeyboard(1) }, }; my $timezone_manually_set; push @l, { group => N("System"), label => N("Country / Region"), val => sub { lang::c2name($o->{locale}{country}) }, clicked => sub { any::selectCountry($o, $o->{locale}) or return; my $pkg_locale = lang::locale_to_main_locale(lang::getlocale_for_country($o->{locale}{lang}, $o->{locale}{country})); my @pkgs = pkgs::packagesProviding($o->{packages}, "locales-$pkg_locale"); $o->pkg_install(map { $_->name } @pkgs) if @pkgs; lang::write($o->{prefix}, $o->{locale}); if (!$timezone_manually_set) { delete $o->{timezone}; install_any::preConfigureTimezone($o); #- now we can precise the timezone thanks to the country } }, }; push @l, { group => N("System"), label => N("Timezone"), val => sub { $o->{timezone}{timezone} }, clicked => sub { $timezone_manually_set = $o->configureTimezone(1) || $timezone_manually_set }, }; push @l, { group => N("System"), label => N("Mouse"), val => sub { translate($o->{mouse}{type}) . ' ' . translate($o->{mouse}{name}) }, clicked => sub { $o->selectMouse(1); mouse::write($o, $o->{mouse}) }, }; push @l, { group => N("Hardware"), label => N("Printer"), val => sub { if (is_empty_hash_ref($o->{printer}{configured})) { require pkgs; my $p = pkgs::packageByName($o->{packages}, 'cups'); $p && $p->flag_installed ? N("Remote CUPS server") : N("No printer"); } elsif (defined($o->{printer}{configured}{$o->{printer}{DEFAULT}}) && (my $p = find { $_ && ($_->{make} || $_->{model}) } $o->{printer}{configured}{$o->{printer}{DEFAULT}}{queuedata})) { "$p->{make} $p->{model}"; } elsif ($p = find { $_ && ($_->{make} || $_->{model}) } map { $_->{queuedata} } (values %{$o->{printer}{configured}})) { "$p->{make} $p->{model}"; } else { N("Remote CUPS server"); #- fall back in case of something wrong. } }, clicked => sub { $o->configurePrinter(1) }, }; my @sound_cards = detect_devices::getSoundDevices(); my $sound_index = 0; foreach my $device (@sound_cards) { $device->{sound_slot_index} = $sound_index; push @l, { group => N("Hardware"), label => N("Sound card"), val => sub { $device->{driver} && modules::module2description($device->{driver}) || $device->{description}; }, clicked => sub { require harddrake::sound; harddrake::sound::config($o, $device); }, }; $sound_index++; } if (!@sound_cards && ($o->{compssUsersChoice}{GAMES} || $o->{compssUsersChoice}{AUDIO})) { #- if no sound card are detected AND the user selected things needing a sound card, #- propose a special case for ISA cards push @l, { group => N("Hardware"), label => N("Sound card"), val => sub {}, clicked => sub { if ($o->ask_yesorno('', N("Do you have an ISA sound card?"))) { $o->do_pkgs->install(qw(alsaconf sndconfig)); $o->ask_warn('', N("Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound card")); } else { $o->ask_warn('', N("No sound card detected. Try \"harddrake\" after installation")); } }, }; } foreach my $tv (detect_devices::getTVcards()) { push @l, { group => N("Hardware"), label => N("TV card"), val => sub { $tv->{description} }, clicked => sub { require harddrake::v4l; harddrake::v4l::config($o, $tv->{driver}); } }; } push @l, { group => N("Hardware"), label => N("Graphical interface"), val => sub { $o->{raw_X} ? Xconfig::various::to_string($o->{raw_X}) : '' }, clicked => sub { configureX($o, 'expert') }, }; push @l, { group => N("Network & Internet"), label => N("Network"), val => sub { $o->{netcnx}{type} }, clicked => sub { local $::expert = $::expert; require network::netconnect; network::netconnect::main($o->{prefix}, $o->{netcnx} ||= {}, $o, $o->{netc}, $o->{mouse}, $o->{intf}, 0, 1); #- in case netcnx type is not updated. require network::network; network::network::probe_netcnx_type($o->{prefix}, $o->{netc}, $o->{intf}, $o->{netcnx}); }, }; $::o->{miscellaneous} ||= {}; push @l, { group => N("Network & Internet"), label => N("Proxies"), val => sub { $::o->{miscellaneous}{http_proxy} || $::o->{miscellaneous}{ftp_proxy} ? N("configured") : N("not configured") }, clicked => sub { require network::network; network::network::miscellaneous_choose($o, $::o->{miscellaneous}); network::network::proxy_configure($::o->{miscellaneous}) if !$::testing; }, }; push @l, { group => N("Security"), label => N("Security Level"), val => sub { require security::level; security::level::to_string($o->{security}); }, clicked => sub { require security::level; security::level::level_choose($o, \$o->{security}, \$o->{libsafe}, \$o->{security_user}) and install_any::set_security($o); }, }; push @l, { group => N("Security"), label => N("Firewall"), val => sub { require network::shorewall; my $shorewall = network::shorewall::read($o, 'silent'); $shorewall && !$shorewall->{disabled} ? N("activated") : N("disabled"); }, clicked => sub { require network::drakfirewall; network::drakfirewall::main($o, $o->{security} <= 3); }, } if detect_devices::getNet(); push @l, { group => N("Boot"), label => N("Bootloader"), val => sub { #-PO: example: lilo-graphic on /dev/hda1 N("%s on %s", $o->{bootloader}{method}, $o->{bootloader}{boot}) }, clicked => sub { any::setupBootloader($o, $o->{bootloader}, $o->{all_hds}, $o->{fstab}, $o->{security}) }, }; push @l, { group => N("System"), label => N("Services"), val => sub { require services; my ($l, $activated) = services::services(); N("Services: %d activated for %d registered", int(@$activated), int(@$l)); }, clicked => sub { require services; $o->{services} = services::ask($o) and services::doit($o, $o->{services}); }, }; my $check_complete = sub { $o->{raw_X} || !$::testing && !pkgs::packageByName($o->{packages}, 'xorg-x11')->flag_installed || $o->ask_yesorno('', N("You have not configured X. Are you sure you really want this?")); }; $o->summary_prompt(\@l, $check_complete); $o->cleanupPrinter; install_steps::configureTimezone($o) if !$timezone_manually_set; #- do not forget it. } #------------------------------------------------------------------------------ sub configurePrinter { my ($o, $clicked) = @_; require printer::main; require printer::printerdrake; require printer::detect; #- $clicked = 0: Preparation of "Summary" step, check whether there are #- are local printers. Continue for automatically setting up print #- queues if so, return otherwise #- $clicked = 1: User clicked "Configure" button in "Summary", enter #- Printerdrake for manual configuration my $go_on = $clicked ? 2 : $o && printer::detect::local_detect(); $go_on-- or return; #- install packages needed for printer::getinfo() $::testing or $o->do_pkgs->install('foomatic-db-engine'); #- take default configuration, this include choosing the right spooler #- currently used by the system. my $printer = $o->{printer} ||= {}; eval { add2hash($printer, printer::main::getinfo($o->{prefix})) }; $printer->{PAPERSIZE} = $o->{locale}{lang} eq 'en_US' || $o->{locale}{country} eq 'CA' ? 'Letter' : 'A4'; printer::printerdrake::main($printer, $o, $clicked, sub { install_interactive::upNetwork($o, 'pppAvoided') }); } sub cleanupPrinter { my ($o) = @_; #- Clean up $o->{printer} so that the records for an auto-installation #- contain only the important stuff return if !defined($o->{printer}); require printer::printerdrake; printer::printerdrake::final_cleanup($o->{printer}); } #------------------------------------------------------------------------------ sub setRootPassword { my ($o, $clicked) = @_; my $sup = $o->{superuser} ||= {}; $sup->{password2} ||= $sup->{password} ||= ""; if ($o->{security} >= 1 || $clicked) { require authentication; my $authentication_kind = authentication::to_kind($o->{authentication} ||= {}); $o->ask_from_({ title => N("Set root password and network authentication methods"), messages => N("Set root password"), interactive_help_id => "setRootPassword", cancel => ($o->{security} <= 2 && !$::corporate ? #-PO: keep this short or else the buttons will not fit in the window N("No password") : ''), focus_first => 1, callbacks => { complete => sub { $sup->{password} eq $sup->{password2} or $o->ask_warn('', [ N("The passwords do not match"), N("Please try again") ]), return 1,0; length $sup->{password} < 2 * $o->{security} and $o->ask_warn('', N("This password is too short (it must be at least %d characters long)", 2 * $o->{security})), return 1,0; return 0 } } }, [ { label => N("Password"), val => \$sup->{password}, hidden => 1 }, { label => N("Password (again)"), val => \$sup->{password2}, hidden => 1 }, { label => N("Authentication"), val => \$authentication_kind, list => [ authentication::kinds() ], format => \&authentication::kind2description, advanced => 1 }, ]) or delete $sup->{password}; authentication::ask_parameters($o, $o->{netc}, $o->{authentication}, $authentication_kind) or goto &setRootPassword; } install_steps::setRootPassword($o); } #------------------------------------------------------------------------------ #-addUser #------------------------------------------------------------------------------ sub addUser { my ($o, $clicked) = @_; $o->{users} ||= []; if ($o->{security} < 1) { push @{$o->{users}}, { password => 'mandrake', realname => 'default', icon => 'automagic' } if !member('mandrake', map { $_->{name} } @{$o->{users}}); } if ($o->{security} >= 1 || $clicked) { my @suggested_names = @{$o->{users}} ? () : all("$::prefix/home"); any::ask_users($o, $o->{users}, $o->{security}, \@suggested_names); } add2hash($o, any::get_autologin()); any::autologin($o, $o); install_steps::addUser($o); } #------------------------------------------------------------------------------ sub setupBootloaderBefore { my ($o) = @_; my $_w = $o->wait_message('', N("Preparing bootloader...")); $o->SUPER::setupBootloaderBefore; } #------------------------------------------------------------------------------ sub setupBootloader { my ($o, $ent_number) = @_; if (arch() =~ /ppc/) { my $machtype = detect_devices::get_mac_generation(); if ($machtype !~ /NewWorld/) { $o->ask_warn('', N("You appear to have an OldWorld or Unknown\n machine, the yaboot bootloader will not work for you.\nThe install will continue, but you'll\n need to use BootX or some other means to boot your machine")); log::l("OldWorld or Unknown Machine - no yaboot setup"); return; } } if (arch() =~ /^alpha/) { $o->ask_yesorno('', N("Do you want to use aboot?"), 1) or return; catch_cdie { $o->SUPER::setupBootloader } sub { $o->ask_yesorno('', N("Error installing aboot, try to force installation even if that destroys the first partition?")); }; } else { if ($ent_number == 1) { any::setupBootloader_simple($o, $o->{bootloader}, $o->{all_hds}, $o->{fstab}, $o->{security}) or return; } else { any::setupBootloader($o, $o->{bootloader}, $o->{all_hds}, $o->{fstab}, $o->{security}) or return; } { my $_w = $o->wait_message('', N("Installing bootloader")); eval { $o->SUPER::setupBootloader }; } if (my $err = $@) { $err =~ s/^\w+ failed// or die; $err = formatError($err); while ($err =~ s/^Warning:.*//m) {} $o->ask_warn('', [ N("Installation of bootloader failed. The following error occured:"), $err ]); die "already displayed"; } elsif (arch() =~ /ppc/) { my $of_boot = cat_("$o->{prefix}/tmp/of_boot_dev") || die "Can't open $o->{prefix}/tmp/of_boot_dev"; chop($of_boot); $o->ask_warn('', N("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\nAt your next boot you should see the bootloader prompt.", $of_boot)); } } } sub miscellaneous { my ($o, $_clicked) = @_; if ($o->{meta_class} ne 'desktop' && !$o->{isUpgrade}) { require security::level; security::level::level_choose($o, \$o->{security}, \$o->{libsafe}, \$o->{security_user}); if ($o->{security} > 2 && find { isFat($_) } @{$o->{fstab}}) { $o->ask_okcancel('', N("In this security level, access to the files in the Windows partition is restricted to the administrator.")) or goto &miscellaneous; } } install_steps::miscellaneous($o); } #------------------------------------------------------------------------------ sub configureX { my ($o, $expert) = @_; install_steps::configureXBefore($o); symlink "$o->{prefix}/etc/gtk", "/etc/gtk"; require Xconfig::main; if (my $raw_X = Xconfig::main::configure_everything_or_configure_chooser($o, install_any::X_options_from_o($o), !$expert, $o->{keyboard}, $o->{mouse})) { $o->{raw_X} = $raw_X; install_steps::configureXAfter($o); } } #------------------------------------------------------------------------------ sub generateAutoInstFloppy { my ($o, $replay) = @_; my @imgs = install_any::getAndSaveAutoInstallFloppies($o, $replay) or return; my $floppy = detect_devices::floppy(); $o->ask_okcancel('', N("Insert a blank floppy in drive %s", $floppy), 1) or return; my $i; foreach (@imgs) { if ($i++) { $o->ask_okcancel('', N("Please insert another floppy for drivers disk"), 1) or return; } my $_w = $o->wait_message('', N("Creating auto install floppy...")); require commands; commands::dd("if=$_", 'of=' . devices::make($floppy)); common::sync(); } } #------------------------------------------------------------------------------ sub exitInstall { my ($o, $alldone) = @_; return $o->{step} = '' if !$alldone && !$o->ask_yesorno('', N("Some steps are not completed. Do you really want to quit now?"), 0); install_steps::exitInstall($o); $o->exit unless $alldone; $o->ask_from_no_check( { messages => formatAlaTeX(install_messages::install_completed()), interactive_help_id => 'exitInstall', ok => N("Reboot"), }, [ { val => \ (my $_t1 = N("Generate auto install floppy")), clicked => sub { my $t = $o->ask_from_list_('', N("The auto install can be fully automated if wanted, in that case it will take over the hard drive!! (this is meant for installing on another box). You may prefer to replay the installation. "), [ N_("Replay"), N_("Automated") ]); $t and $o->generateAutoInstFloppy($t eq 'Replay'); }, advanced => 1 }, { val => \ (my $_t2 = N("Save packages selection")), clicked => sub { install_any::g_default_packages($o) }, advanced => 1 }, ] ) if $alldone; } #-###################################################################################### #- Misc Steps Functions #-###################################################################################### 1; msgid "Monitor VertRefresh: %s\n"
msgstr "רענון אנכי של המסך: %s\n"
-#: Xconfig/various.pm:35
+#: Xconfig/various.pm:37
#, c-format
msgid "Graphics card: %s\n"
msgstr "כרטיס מסך: %s\n"
-#: Xconfig/various.pm:36
+#: Xconfig/various.pm:38
#, c-format
msgid "Graphics memory: %s kB\n"
msgstr "זיכרון כרטיס מסך: %s kB\n"
-#: Xconfig/various.pm:38
+#: Xconfig/various.pm:40
#, c-format
msgid "Color depth: %s\n"
msgstr "עומק צבע: %s\n"
-#: Xconfig/various.pm:39
+#: Xconfig/various.pm:41
#, c-format
msgid "Resolution: %s\n"
msgstr "הפרדת מסך: %s\n"
-#: Xconfig/various.pm:41
-#, c-format
-msgid "XFree86 server: %s\n"
-msgstr "שרת Xfree86: %s\n"
-
-#: Xconfig/various.pm:42
+#: Xconfig/various.pm:43
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "מנהל התקן XFree %s: \n"
-#: Xconfig/various.pm:71
+#: Xconfig/various.pm:72
#, c-format
msgid "Graphical interface at startup"
msgstr "הפעלת ממשק גרפי באיתחול המחשב"
-#: Xconfig/various.pm:73
+#: Xconfig/various.pm:74
#, c-format
msgid ""
"I can setup your computer to automatically start the graphical interface "
@@ -732,7 +689,7 @@ msgstr ""
"בעת הפעלת המחשב (מומלץ). עליך לבחור האם\n"
"להפעיל את הממשק הגרפי בזמן הפעלת המחשב:"
-#: Xconfig/various.pm:86
+#: Xconfig/various.pm:87
#, c-format
msgid ""
"Your graphic card seems to have a TV-OUT connector.\n"
@@ -745,15 +702,15 @@ msgid ""
"Do you have this feature?"
msgstr ""
-#: Xconfig/various.pm:98
+#: Xconfig/various.pm:99
#, c-format
msgid "What norm is your TV using?"
msgstr "באיזה תקן שידור הטלוויזיה שלך משתמשת?"
#: any.pm:103 harddrake/sound.pm:150 interactive.pm:441 standalone/drakbug:259
#: standalone/drakconnect:167 standalone/draksec:56 standalone/drakups:90
-#: standalone/drakxtv:90 standalone/harddrake2:134
-#: standalone/service_harddrake:107
+#: standalone/drakxtv:90 standalone/harddrake2:140
+#: standalone/service_harddrake:126
#, c-format
msgid "Please wait"
msgstr "נא להמתין"
@@ -837,13 +794,13 @@ msgstr "יש להגדיראת גודל הזיכרון בMB"
msgid "Option ``Restrict command line options'' is of no use without a password"
msgstr "אפשרות ''הגבלת אפשרויות שורת הפקודה'' לא שימושית ללא הגדרת סיסמה"
-#: any.pm:218 any.pm:531 install_steps_interactive.pm:1156
+#: any.pm:218 any.pm:531 install_steps_interactive.pm:1150
#, c-format
msgid "The passwords do not match"
msgstr "הסיסמאות לא זהות"
-#: any.pm:218 any.pm:531 diskdrake/interactive.pm:1255
-#: install_steps_interactive.pm:1156
+#: any.pm:218 any.pm:531 diskdrake/interactive.pm:1262
+#: install_steps_interactive.pm:1150
#, c-format
msgid "Please try again"
msgstr "יש לנסות שנית"
@@ -884,15 +841,15 @@ msgid "Force No Local APIC"
msgstr "הפעלה ללא APIC מקומי(בקר פסיקות מתוכנת מתקדם)"
#: any.pm:236 any.pm:558 diskdrake/smbnfs_gtk.pm:180
-#: install_steps_interactive.pm:1161 network/netconnect.pm:575
+#: install_steps_interactive.pm:1155 network/netconnect.pm:574
#: printer/printerdrake.pm:1374 printer/printerdrake.pm:1494
-#: standalone/drakbackup:1717 standalone/drakbackup:3592
+#: standalone/drakbackup:1626 standalone/drakbackup:3496
#: standalone/drakups:278
#, c-format
msgid "Password"
msgstr "סיסמה"
-#: any.pm:237 any.pm:559 install_steps_interactive.pm:1162
+#: any.pm:237 any.pm:559 install_steps_interactive.pm:1156
#, c-format
msgid "Password (again)"
msgstr "סיסמה (שוב)"
@@ -982,8 +939,8 @@ msgstr "Initrd"
msgid "Label"
msgstr "תווית"
-#: any.pm:319 any.pm:329 harddrake/v4l.pm:255 standalone/drakfloppy:88
-#: standalone/drakfloppy:94
+#: any.pm:319 any.pm:329 harddrake/v4l.pm:275 standalone/drakfloppy:89
+#: standalone/drakfloppy:95
#, c-format
msgid "Default"
msgstr "ברירת מחדל"
@@ -1040,7 +997,7 @@ msgstr "מערכת הפעלה אחרת (MacOS...)"
#: any.pm:356
#, c-format
-msgid "Other OS (windows...)"
+msgid "Other OS (Windows...)"
msgstr "מערכת הפעלה אחרת (חלונות...)"
#: any.pm:384
@@ -1130,8 +1087,8 @@ msgstr ""
#: diskdrake/removable.pm:27 diskdrake/smbnfs_gtk.pm:82 help.pm:544
#: interactive/http.pm:152 printer/printerdrake.pm:165
#: printer/printerdrake.pm:352 printer/printerdrake.pm:4076
-#: standalone/drakbackup:2802 standalone/scannerdrake:636
-#: standalone/scannerdrake:786
+#: standalone/drakbackup:2708 standalone/scannerdrake:641
+#: standalone/scannerdrake:791
#, c-format
msgid "Done"
msgstr "סיום"
@@ -1213,38 +1170,38 @@ msgstr "שימוש ביוניקוד בתור ברירת מחדל"
msgid "All languages"
msgstr "כל השפות"
-#: any.pm:695 help.pm:581 help.pm:991 install_steps_interactive.pm:901
+#: any.pm:698 help.pm:581 help.pm:991 install_steps_interactive.pm:895
#, c-format
msgid "Country / Region"
msgstr "מדינה / אזור"
-#: any.pm:696
+#: any.pm:699
#, c-format
msgid "Please choose your country."
msgstr "עליך לבחור את המדינה שלך."
-#: any.pm:698
+#: any.pm:701
#, c-format
msgid "Here is the full list of available countries"
msgstr "להלן הרשימה המלאה של המדינות הזמינות"
-#: any.pm:699 diskdrake/interactive.pm:292 help.pm:544 help.pm:581 help.pm:621
+#: any.pm:702 diskdrake/interactive.pm:297 help.pm:544 help.pm:581 help.pm:621
#: help.pm:991 install_steps_interactive.pm:114
#, c-format
msgid "More"
msgstr "מתקדם"
-#: any.pm:830
+#: any.pm:833
#, c-format
msgid "No sharing"
msgstr "ללא שיתוף"
-#: any.pm:830
+#: any.pm:833
#, c-format
msgid "Allow all users"
msgstr "הרשה לכל המשתמשים"
-#: any.pm:834
+#: any.pm:837
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -1258,22 +1215,31 @@ msgstr ""
"\n"
"\" התאמה אישית\" תאפשר התאמה לכל משתמש.\n"
-#: any.pm:850
+#: any.pm:849
+#, c-format
+msgid ""
+"NFS: the traditional Unix file sharing system, with less support on Mac and "
+"Windows."
+msgstr ""
+
+#: any.pm:852
#, c-format
-msgid "You can export using NFS or Samba. Please select which you'd like to use."
-msgstr "ניתן לייצא בעזרת NFS או Samba. עליך לבחור במה להשתמש."
+msgid ""
+"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
+"systems."
+msgstr ""
-#: any.pm:858
+#: any.pm:860
#, c-format
-msgid "The package %s is going to be removed."
-msgstr "החבילה %s עומדות להיות מוסרת"
+msgid "You can export using NFS or SMB. Please select which you would like to use."
+msgstr "ניתן לייצא בעזרת NFS או SMB. עליך לבחור במה להשתמש."
-#: any.pm:870
+#: any.pm:883
#, c-format
msgid "Launch userdrake"
msgstr "הפעלת userdrake"
-#: any.pm:872
+#: any.pm:885
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -1297,42 +1263,77 @@ msgstr "LDAP"
msgid "NIS"
msgstr "NIS"
-#: authentication.pm:12 authentication.pm:50
+#: authentication.pm:12 authentication.pm:72
#, c-format
msgid "Windows Domain"
msgstr "Windows Domain"
-#: authentication.pm:33
+#: authentication.pm:12
+#, c-format
+msgid "Active Directory"
+msgstr ""
+
+#: authentication.pm:38
#, c-format
msgid "Authentication LDAP"
msgstr ""
-#: authentication.pm:34
+#: authentication.pm:39
#, c-format
msgid "LDAP Base dn"
msgstr ""
-#: authentication.pm:35
+#: authentication.pm:40
#, c-format
msgid "LDAP Server"
msgstr "שרת LDAP"
-#: authentication.pm:40
+#: authentication.pm:50
+#, c-format
+msgid "Authentication Active Directory"
+msgstr ""
+
+#: authentication.pm:51 diskdrake/smbnfs_gtk.pm:181
+#, c-format
+msgid "Domain"
+msgstr "מתחם"
+
+#: authentication.pm:52 diskdrake/dav.pm:65 help.pm:137
+#, c-format
+msgid "Server"
+msgstr "שרת"
+
+#: authentication.pm:53
+#, c-format
+msgid "LDAP users database"
+msgstr ""
+
+#: authentication.pm:54
+#, c-format
+msgid "LDAP user allowed to browse the Active Directory"
+msgstr ""
+
+#: authentication.pm:55
+#, c-format
+msgid "Password for user"
+msgstr "סיסמה עבור המשתמש"
+
+#: authentication.pm:62
#, c-format
msgid "Authentication NIS"
msgstr ""
-#: authentication.pm:41
+#: authentication.pm:63
#, c-format
msgid "NIS Domain"
msgstr "מתחם NIS"
-#: authentication.pm:42
+#: authentication.pm:64
#, c-format
msgid "NIS Server"
msgstr "שרת NIS"
-#: authentication.pm:47
+#: authentication.pm:69
#, c-format
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
@@ -1349,22 +1350,22 @@ msgid ""
"good."
msgstr ""
-#: authentication.pm:49
+#: authentication.pm:71
#, c-format
msgid "Authentication Windows Domain"
msgstr "אימות של Windows Domain"
-#: authentication.pm:51
+#: authentication.pm:73
#, c-format
msgid "Domain Admin User Name"
msgstr "שם מהשתמש של מנהל המתחם"
-#: authentication.pm:52
+#: authentication.pm:74
#, c-format
msgid "Domain Admin Password"
msgstr "סיסמת מנהל המתחם"
-#: authentication.pm:83
+#: authentication.pm:149
#, c-format
msgid "Can't use broadcast with no NIS domain"
msgstr "לא יכול להשתמש בשידור מתפרץ ללא הגדרת מתחם NIS"
@@ -1410,24 +1411,24 @@ msgstr "Grub"
msgid "Yaboot"
msgstr "Yaboot"
-#: bootloader.pm:1143
+#: bootloader.pm:1142
#, c-format
msgid "not enough room in /boot"
msgstr "אין מספיק מקום ב-/boot"
-#: bootloader.pm:1171
+#: bootloader.pm:1170
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "אי אפשר להתקין את מנהל האתחול על המחיצה %s\n"
-#: bootloader.pm:1215
+#: bootloader.pm:1214
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
"renumbered"
msgstr "יש צורך בעדכון תצורת טוען המערכת שלך מאחר ושונו מספרי מחיצות"
-#: bootloader.pm:1222
+#: bootloader.pm:1221
#, c-format
msgid ""
"The bootloader can't be installed correctly. You have to boot rescue and "
@@ -1436,7 +1437,7 @@ msgstr ""
"אין אפשרות להתקין את טוען המערכת באופן תקין. עליך להפעיל את המערכת עם פרמטר "
"rescue ולבחור \"%s\""
-#: bootloader.pm:1223
+#: bootloader.pm:1222
#, c-format
msgid "Re-install Boot Loader"
msgstr "התקנה חוזרת של מנהל האיתחול"
@@ -1496,7 +1497,7 @@ msgstr "חסר kdesu"
msgid "consolehelper missing"
msgstr "עוזר-המעטפת חסר (consolehelper)"
-#: crypto.pm:14 crypto.pm:28 lang.pm:238 network/adsl_consts.pm:44
+#: crypto.pm:14 crypto.pm:28 lang.pm:240 network/adsl_consts.pm:44
#: network/adsl_consts.pm:55 network/adsl_consts.pm:65
#: network/adsl_consts.pm:75 network/adsl_consts.pm:86
#: network/adsl_consts.pm:97 network/adsl_consts.pm:107
@@ -1506,61 +1507,61 @@ msgstr "עוזר-המעטפת חסר (consolehelper)"
msgid "France"
msgstr "צרפת"
-#: crypto.pm:15 lang.pm:214
+#: crypto.pm:15 lang.pm:216
#, c-format
msgid "Costa Rica"
msgstr "קוסטה ריקה"
-#: crypto.pm:16 crypto.pm:29 lang.pm:186 network/adsl_consts.pm:26
+#: crypto.pm:16 crypto.pm:29 lang.pm:188 network/adsl_consts.pm:26
#: network/adsl_consts.pm:36 network/netconnect.pm:49
#, c-format
msgid "Belgium"
msgstr "בלגיה"
-#: crypto.pm:17 crypto.pm:30 lang.pm:219
+#: crypto.pm:17 crypto.pm:30 lang.pm:221
#, c-format
msgid "Czech Republic"
msgstr "הרפובליקה הצ'כית"
-#: crypto.pm:18 crypto.pm:31 lang.pm:220 network/adsl_consts.pm:134
+#: crypto.pm:18 crypto.pm:31 lang.pm:222 network/adsl_consts.pm:134
#: network/adsl_consts.pm:142
#, c-format
msgid "Germany"
msgstr "גרמניה"
-#: crypto.pm:19 crypto.pm:32 lang.pm:251
+#: crypto.pm:19 crypto.pm:32 lang.pm:253
#, c-format
msgid "Greece"
msgstr "יוון"
-#: crypto.pm:20 crypto.pm:33 lang.pm:324
+#: crypto.pm:20 crypto.pm:33 lang.pm:326
#, c-format
msgid "Norway"
msgstr "נורווגיה"
-#: crypto.pm:21 crypto.pm:34 lang.pm:353 network/adsl_consts.pm:240
+#: crypto.pm:21 crypto.pm:34 lang.pm:355 network/adsl_consts.pm:240
#, c-format
msgid "Sweden"
msgstr "שבדיה"
-#: crypto.pm:22 crypto.pm:36 lang.pm:323 network/adsl_consts.pm:178
+#: crypto.pm:22 crypto.pm:36 lang.pm:325 network/adsl_consts.pm:178
#: network/netconnect.pm:47
#, c-format
msgid "Netherlands"
msgstr "הולנד"
-#: crypto.pm:23 crypto.pm:37 lang.pm:271 network/adsl_consts.pm:158
+#: crypto.pm:23 crypto.pm:37 lang.pm:273 network/adsl_consts.pm:158
#: network/adsl_consts.pm:168 network/netconnect.pm:48 standalone/drakxtv:45
#, c-format
msgid "Italy"
msgstr "איטליה"
-#: crypto.pm:24 crypto.pm:38 lang.pm:179 network/adsl_consts.pm:20
+#: crypto.pm:24 crypto.pm:38 lang.pm:181 network/adsl_consts.pm:20
#, c-format
msgid "Austria"
msgstr "אוסטריה"
-#: crypto.pm:35 crypto.pm:65 lang.pm:387 network/netconnect.pm:50
+#: crypto.pm:35 crypto.pm:65 lang.pm:389 network/netconnect.pm:50
#, c-format
msgid "United States"
msgstr "ארצות הברית"
@@ -1583,23 +1584,18 @@ msgstr ""
msgid "New"
msgstr "חדש"
-#: diskdrake/dav.pm:63 diskdrake/interactive.pm:417 diskdrake/smbnfs_gtk.pm:75
+#: diskdrake/dav.pm:63 diskdrake/interactive.pm:422 diskdrake/smbnfs_gtk.pm:75
#, c-format
msgid "Unmount"
msgstr "ניתוק"
-#: diskdrake/dav.pm:64 diskdrake/interactive.pm:414 diskdrake/smbnfs_gtk.pm:76
+#: diskdrake/dav.pm:64 diskdrake/interactive.pm:419 diskdrake/smbnfs_gtk.pm:76
#, c-format
msgid "Mount"
msgstr "עיגון"
-#: diskdrake/dav.pm:65 help.pm:137
-#, c-format
-msgid "Server"
-msgstr "שרת"
-
-#: diskdrake/dav.pm:66 diskdrake/interactive.pm:408
-#: diskdrake/interactive.pm:616 diskdrake/interactive.pm:635
+#: diskdrake/dav.pm:66 diskdrake/interactive.pm:413
+#: diskdrake/interactive.pm:621 diskdrake/interactive.pm:640
#: diskdrake/removable.pm:24 diskdrake/smbnfs_gtk.pm:79
#, c-format
msgid "Mount point"
@@ -1620,19 +1616,19 @@ msgstr "שם האתר חייב להתחיל בhttp:// או בhttps://"
msgid "Server: "
msgstr "שרת:"
-#: diskdrake/dav.pm:112 diskdrake/interactive.pm:469
-#: diskdrake/interactive.pm:1149 diskdrake/interactive.pm:1225
+#: diskdrake/dav.pm:112 diskdrake/interactive.pm:474
+#: diskdrake/interactive.pm:1154 diskdrake/interactive.pm:1232
#, c-format
msgid "Mount point: "
msgstr "נקודת עיגון: "
-#: diskdrake/dav.pm:113 diskdrake/interactive.pm:1233
+#: diskdrake/dav.pm:113 diskdrake/interactive.pm:1240
#, c-format
msgid "Options: %s"
msgstr "אפשרויות: %s"
-#: diskdrake/hd_gtk.pm:96 diskdrake/interactive.pm:995
-#: diskdrake/interactive.pm:1005 diskdrake/interactive.pm:1065
+#: diskdrake/hd_gtk.pm:96 diskdrake/interactive.pm:1000
+#: diskdrake/interactive.pm:1010 diskdrake/interactive.pm:1070
#, c-format
msgid "Read carefully!"
msgstr "יש לקרוא בעיון!"
@@ -1680,7 +1676,7 @@ msgid "Please click on a partition"
msgstr "יש לבחור מחיצה"
#: diskdrake/hd_gtk.pm:209 diskdrake/smbnfs_gtk.pm:63 install_steps_gtk.pm:477
-#: standalone/drakbackup:3040 standalone/drakbackup:3102
+#: standalone/drakbackup:2942 standalone/drakbackup:3004
#, c-format
msgid "Details"
msgstr "פרטים"
@@ -1721,12 +1717,12 @@ msgid "Windows"
msgstr "חלונות"
#: diskdrake/hd_gtk.pm:327 install_steps_gtk.pm:329 mouse.pm:167
-#: services.pm:164 standalone/drakbackup:1673 standalone/drakperm:250
+#: services.pm:164 standalone/drakbackup:1582 standalone/drakperm:254
#, c-format
msgid "Other"
msgstr "אחר"
-#: diskdrake/hd_gtk.pm:327 diskdrake/interactive.pm:1165
+#: diskdrake/hd_gtk.pm:327 diskdrake/interactive.pm:1172
#, c-format
msgid "Empty"
msgstr "ריק"
@@ -1742,20 +1738,21 @@ msgid "Use ``%s'' instead"
msgstr "השתמש ב''%s'' במקום"
#: diskdrake/hd_gtk.pm:348 diskdrake/hd_gtk.pm:353
-#: diskdrake/interactive.pm:409 diskdrake/interactive.pm:569
+#: diskdrake/interactive.pm:414 diskdrake/interactive.pm:574
#: diskdrake/removable.pm:26 diskdrake/removable.pm:49
-#: standalone/harddrake2:67
+#: standalone/harddrake2:72
#, c-format
msgid "Type"
msgstr "סוג"
-#: diskdrake/hd_gtk.pm:348 diskdrake/interactive.pm:431
+#: diskdrake/hd_gtk.pm:348 diskdrake/interactive.pm:436
#, c-format
msgid "Create"
msgstr "יצירה"
-#: diskdrake/hd_gtk.pm:350 diskdrake/interactive.pm:418
-#: standalone/drakperm:124 standalone/printerdrake:231
+#. -PO: "Delete" is a button text and the translation has to be AS SHORT AS POSSIBLE
+#: diskdrake/hd_gtk.pm:350 diskdrake/interactive.pm:423
+#: standalone/drakperm:124 standalone/printerdrake:236
#, c-format
msgid "Delete"
msgstr "מחיקה"
@@ -1765,124 +1762,124 @@ msgstr "מחיקה"
msgid "Use ``Unmount'' first"
msgstr "נא לבחור קודם כל ב\"ניתוק\""
-#: diskdrake/interactive.pm:179
+#: diskdrake/interactive.pm:184
#, c-format
msgid "Choose another partition"
msgstr "נא לבחור מחיצה אחרת"
-#: diskdrake/interactive.pm:179
+#: diskdrake/interactive.pm:184
#, c-format
msgid "Choose a partition"
msgstr "יש לבחור מחיצה"
-#: diskdrake/interactive.pm:208
+#: diskdrake/interactive.pm:213
#, c-format
msgid "Exit"
msgstr "יציאה"
-#: diskdrake/interactive.pm:241 help.pm:544
+#: diskdrake/interactive.pm:246 help.pm:544
#, c-format
msgid "Undo"
msgstr "בטל"
-#: diskdrake/interactive.pm:241
+#: diskdrake/interactive.pm:246
#, c-format
msgid "Toggle to normal mode"
msgstr "עבור למצב רגיל"
-#: diskdrake/interactive.pm:241
+#: diskdrake/interactive.pm:246
#, c-format
msgid "Toggle to expert mode"
msgstr "עבור למצב מומחה"
-#: diskdrake/interactive.pm:260
+#: diskdrake/interactive.pm:265
#, c-format
msgid "Continue anyway?"
msgstr "האם להמשיך בכל זאת?"
-#: diskdrake/interactive.pm:265
+#: diskdrake/interactive.pm:270
#, c-format
msgid "Quit without saving"
msgstr "יציאה ללא שמירה"
-#: diskdrake/interactive.pm:265
+#: diskdrake/interactive.pm:270
#, c-format
msgid "Quit without writing the partition table?"
msgstr "האם לצאת בלי לשמור את טבלת המחיצות?"
-#: diskdrake/interactive.pm:270
+#: diskdrake/interactive.pm:275
#, c-format
msgid "Do you want to save /etc/fstab modifications"
msgstr "האם ברצונך לשמור את שינויי /etc/fstab"
-#: diskdrake/interactive.pm:277 install_steps_interactive.pm:301
+#: diskdrake/interactive.pm:282 install_steps_interactive.pm:301
#, c-format
msgid "You need to reboot for the partition table modifications to take place"
msgstr "יש צורך בהפעלת המחשב מחדש בכדי שהשינויים בטבלת המחיצות יכנסו לתוקף"
-#: diskdrake/interactive.pm:290 help.pm:544
+#: diskdrake/interactive.pm:295 help.pm:544
#, c-format
msgid "Clear all"
msgstr "נקה הכל"
-#: diskdrake/interactive.pm:291 help.pm:544
+#: diskdrake/interactive.pm:296 help.pm:544
#, c-format
msgid "Auto allocate"
msgstr "הקצבה אוטומטית"
-#: diskdrake/interactive.pm:297
+#: diskdrake/interactive.pm:302
#, c-format
msgid "Hard drive information"
msgstr "מידע על הכונן הקשיח"
-#: diskdrake/interactive.pm:329
+#: diskdrake/interactive.pm:334
#, c-format
msgid "All primary partitions are used"
msgstr "כל המחיצות הראשיות בשימוש"
-#: diskdrake/interactive.pm:330
+#: diskdrake/interactive.pm:335
#, c-format
msgid "I can't add any more partitions"
msgstr "אין אפשרות להוסיף מחיצות נוספות"
-#: diskdrake/interactive.pm:331
+#: diskdrake/interactive.pm:336
#, c-format
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
msgstr "כדי לאפשר יצירת מחיצות חדשות, נא למחוק אחת כדי לאפשר הגדרת מחיצה מורחבת"
-#: diskdrake/interactive.pm:342 help.pm:544
+#: diskdrake/interactive.pm:347 help.pm:544
#, c-format
msgid "Save partition table"
msgstr "שמור את טבלת המחיצות"
-#: diskdrake/interactive.pm:343 help.pm:544
+#: diskdrake/interactive.pm:348 help.pm:544
#, c-format
msgid "Restore partition table"
msgstr "שחזר את טבלת המחיצות"
-#: diskdrake/interactive.pm:344 help.pm:544
+#: diskdrake/interactive.pm:349 help.pm:544
#, c-format
msgid "Rescue partition table"
msgstr "הצל את טבלת המחיצות"
-#: diskdrake/interactive.pm:346 help.pm:544
+#: diskdrake/interactive.pm:351 help.pm:544
#, c-format
msgid "Reload partition table"
msgstr "טען מחדש את טבלת המחיצות"
-#: diskdrake/interactive.pm:348
+#: diskdrake/interactive.pm:353
#, c-format
msgid "Removable media automounting"
msgstr "עיגון אוטומטי של התקן-נשלף"
-#: diskdrake/interactive.pm:357 diskdrake/interactive.pm:377
+#: diskdrake/interactive.pm:362 diskdrake/interactive.pm:382
#, c-format
msgid "Select file"
msgstr "יש לבחור קובץ"
-#: diskdrake/interactive.pm:364
+#: diskdrake/interactive.pm:369
#, c-format
msgid ""
"The backup partition table has not the same size\n"
@@ -1891,24 +1888,23 @@ msgstr ""
"גיבוי טבלת המחיצות אינה תואמת בגודלה\n"
"האם להמשיך בכל זאת?"
-#: diskdrake/interactive.pm:378 harddrake/sound.pm:226 keyboard.pm:314
-#: network/netconnect.pm:338 network/netconnect.pm:451
-#: network/netconnect.pm:470 network/netconnect.pm:655
+#: diskdrake/interactive.pm:383 harddrake/sound.pm:226 keyboard.pm:340
+#: network/netconnect.pm:450 network/netconnect.pm:469
#: printer/printerdrake.pm:936 printer/printerdrake.pm:1891
#: printer/printerdrake.pm:1953 printer/printerdrake.pm:1987
#: printer/printerdrake.pm:2291 printer/printerdrake.pm:3149
#: printer/printerdrake.pm:3426 printer/printerdrake.pm:3545
-#: printer/printerdrake.pm:4543 standalone/drakTermServ:352
-#: standalone/drakTermServ:1083 standalone/drakTermServ:1139
-#: standalone/drakTermServ:1802 standalone/drakbackup:580
-#: standalone/drakbackup:678 standalone/drakboot:156 standalone/drakclock:212
-#: standalone/drakconnect:908 standalone/drakfloppy:295 standalone/drakups:27
-#: standalone/scannerdrake:50 standalone/scannerdrake:908
+#: printer/printerdrake.pm:4543 standalone/drakTermServ:340
+#: standalone/drakTermServ:1072 standalone/drakTermServ:1128
+#: standalone/drakTermServ:1801 standalone/drakbackup:510
+#: standalone/drakbackup:609 standalone/drakboot:156 standalone/drakclock:214
+#: standalone/drakconnect:921 standalone/drakfloppy:296 standalone/drakups:27
+#: standalone/scannerdrake:50 standalone/scannerdrake:913
#, c-format
msgid "Warning"
msgstr "אזהרה"
-#: diskdrake/interactive.pm:379
+#: diskdrake/interactive.pm:384
#, c-format
msgid ""
"Insert a floppy in drive\n"
@@ -1917,92 +1913,92 @@ msgstr ""
"נא להכניס תקליטון לכונן\n"
"כל המידע על תקליטון זה יאבד"
-#: diskdrake/interactive.pm:390
+#: diskdrake/interactive.pm:395
#, c-format
msgid "Trying to rescue partition table"
msgstr "מנסה להציל את טבלת המחיצות"
-#: diskdrake/interactive.pm:396
+#: diskdrake/interactive.pm:401
#, c-format
msgid "Detailed information"
msgstr "מידע מפורט"
-#: diskdrake/interactive.pm:411 diskdrake/interactive.pm:706
+#: diskdrake/interactive.pm:416 diskdrake/interactive.pm:711
#, c-format
msgid "Resize"
msgstr "שנה גודל"
-#: diskdrake/interactive.pm:412 diskdrake/interactive.pm:774
+#: diskdrake/interactive.pm:417 diskdrake/interactive.pm:779
#, c-format
msgid "Move"
msgstr "העבר"
-#: diskdrake/interactive.pm:413
+#: diskdrake/interactive.pm:418
#, c-format
msgid "Format"
msgstr "יצירת מערכת קבצים (Format)"
-#: diskdrake/interactive.pm:415
+#: diskdrake/interactive.pm:420
#, c-format
msgid "Add to RAID"
msgstr "הוספה ל-RAID"
-#: diskdrake/interactive.pm:416
+#: diskdrake/interactive.pm:421
#, c-format
msgid "Add to LVM"
msgstr "הוספה ל-LVM"
-#: diskdrake/interactive.pm:419
+#: diskdrake/interactive.pm:424
#, c-format
msgid "Remove from RAID"
msgstr "הסרה מ-RAID"
-#: diskdrake/interactive.pm:420
+#: diskdrake/interactive.pm:425
#, c-format
msgid "Remove from LVM"
msgstr "הסרה מ-LVM"
-#: diskdrake/interactive.pm:421
+#: diskdrake/interactive.pm:426
#, c-format
msgid "Modify RAID"
msgstr "שינוי RAID"
-#: diskdrake/interactive.pm:422
+#: diskdrake/interactive.pm:427
#, c-format
msgid "Use for loopback"
msgstr "שימוש כ loopback"
-#: diskdrake/interactive.pm:462
+#: diskdrake/interactive.pm:467
#, c-format
msgid "Create a new partition"
msgstr "יצרת מחיצה חדשה"
-#: diskdrake/interactive.pm:465
+#: diskdrake/interactive.pm:470
#, c-format
msgid "Start sector: "
msgstr "מקטע התחלה:"
-#: diskdrake/interactive.pm:467 diskdrake/interactive.pm:876
+#: diskdrake/interactive.pm:472 diskdrake/interactive.pm:881
#, c-format
msgid "Size in MB: "
msgstr "גודל ב-MB: "
-#: diskdrake/interactive.pm:468 diskdrake/interactive.pm:877
+#: diskdrake/interactive.pm:473 diskdrake/interactive.pm:882
#, c-format
msgid "Filesystem type: "
msgstr "סוג מערכת קבצים: "
-#: diskdrake/interactive.pm:473
+#: diskdrake/interactive.pm:478
#, c-format
msgid "Preference: "
msgstr "העדפות: "
-#: diskdrake/interactive.pm:476
+#: diskdrake/interactive.pm:481
#, c-format
msgid "Logical volume name "
msgstr "שם מחיצה לוגית "
-#: diskdrake/interactive.pm:505
+#: diskdrake/interactive.pm:510
#, c-format
msgid ""
"You can't create a new partition\n"
@@ -2013,42 +2009,42 @@ msgstr ""
"(מאחר והגעת למספר המירבי של מחיצות ראשיות)\n"
"עליך להסיר מחיצה ראשית ואז ליצור מחיצה מורחבת"
-#: diskdrake/interactive.pm:535
+#: diskdrake/interactive.pm:540
#, c-format
msgid "Remove the loopback file?"
msgstr "מחיקת קובץ ה-loopback?"
-#: diskdrake/interactive.pm:554
+#: diskdrake/interactive.pm:559
#, c-format
msgid "After changing type of partition %s, all data on this partition will be lost"
msgstr "אחרי שינוי סוג של מחיצה %s, כל המידע שעליה יאבד"
-#: diskdrake/interactive.pm:565
+#: diskdrake/interactive.pm:570
#, c-format
msgid "Change partition type"
msgstr "שנה סוג מחיצה"
-#: diskdrake/interactive.pm:566 diskdrake/removable.pm:48
+#: diskdrake/interactive.pm:571 diskdrake/removable.pm:48
#, c-format
msgid "Which filesystem do you want?"
msgstr "באיזו מערכת קבצים יש להשתמש?"
-#: diskdrake/interactive.pm:574
+#: diskdrake/interactive.pm:579
#, c-format
msgid "Switching from ext2 to ext3"
msgstr "מחליף מ-ext2 ל-ext3"
-#: diskdrake/interactive.pm:603
+#: diskdrake/interactive.pm:608
#, c-format
msgid "Where do you want to mount the loopback file %s?"
msgstr "איפה ברצונך לעגן את קובץ הloopback ששמו %s?"
-#: diskdrake/interactive.pm:604
+#: diskdrake/interactive.pm:609
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "לאן ברצונך לעגן את ההתקן %s?"
-#: diskdrake/interactive.pm:609
+#: diskdrake/interactive.pm:614
#, c-format
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
@@ -2057,48 +2053,48 @@ msgstr ""
"אין אפשרות להסיר את נקודת העיגון מאחר ומחיצה זו משמשת ל-loopback.\n"
"עליך להסיר בשלב ראשון את ה-loopback"
-#: diskdrake/interactive.pm:634
+#: diskdrake/interactive.pm:639
#, c-format
msgid "Where do you want to mount %s?"
msgstr "לאן ברצונך לעגן את %s?"
-#: diskdrake/interactive.pm:658 diskdrake/interactive.pm:738
+#: diskdrake/interactive.pm:663 diskdrake/interactive.pm:743
#: install_interactive.pm:156 install_interactive.pm:186
#, c-format
msgid "Resizing"
msgstr "משנה גודל"
-#: diskdrake/interactive.pm:658
+#: diskdrake/interactive.pm:663
#, c-format
msgid "Computing FAT filesystem bounds"
msgstr "מחשב תחומי מערכת קבצים מסוג FAT"
-#: diskdrake/interactive.pm:694
+#: diskdrake/interactive.pm:699
#, c-format
msgid "This partition is not resizeable"
msgstr "לא ניתן לשנות את גודלה של מחיצה זו"
-#: diskdrake/interactive.pm:699
+#: diskdrake/interactive.pm:704
#, c-format
msgid "All data on this partition should be backed-up"
msgstr "יש לגבות את כל המידע שעל מחיצה זו"
-#: diskdrake/interactive.pm:701
+#: diskdrake/interactive.pm:706
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "אחרי שינוי הגודל של המחיצה %s, כל המידע על מחיצה זו יאבד"
-#: diskdrake/interactive.pm:706
+#: diskdrake/interactive.pm:711
#, c-format
msgid "Choose the new size"
msgstr "יש לבחור את הגודל החדש"
-#: diskdrake/interactive.pm:707
+#: diskdrake/interactive.pm:712
#, c-format
msgid "New size in MB: "
msgstr "גודל חדש ב-MB: "
-#: diskdrake/interactive.pm:751 install_interactive.pm:194
+#: diskdrake/interactive.pm:756 install_interactive.pm:194
#, c-format
msgid ""
"To ensure data integrity after resizing the partition(s), \n"
@@ -2107,147 +2103,147 @@ msgstr ""
"על מנת להבטיח את שלמות הנתונים אחרי שינוי גודל המחיצה(ות) \n"
"תןפעל בדיקה של מערכת הקבצים באתחול הבא של חלונות"
-#: diskdrake/interactive.pm:775
+#: diskdrake/interactive.pm:780
#, c-format
msgid "Which disk do you want to move it to?"
msgstr "לאיזה כונן ברצונך להעביר את זה?"
-#: diskdrake/interactive.pm:776
+#: diskdrake/interactive.pm:781
#, c-format
msgid "Sector"
msgstr "מקטע"
-#: diskdrake/interactive.pm:777
+#: diskdrake/interactive.pm:782
#, c-format
msgid "Which sector do you want to move it to?"
msgstr "לאיזה מקטע ברצונך להעביר את זה?"
-#: diskdrake/interactive.pm:780
+#: diskdrake/interactive.pm:785
#, c-format
msgid "Moving"
msgstr "מעביר"
-#: diskdrake/interactive.pm:780
+#: diskdrake/interactive.pm:785
#, c-format
msgid "Moving partition..."
msgstr "מעביר מחיצה..."
-#: diskdrake/interactive.pm:802
+#: diskdrake/interactive.pm:807
#, c-format
msgid "Choose an existing RAID to add to"
msgstr "יש לבחור RAID קיים אליו יש להוסיף"
-#: diskdrake/interactive.pm:803 diskdrake/interactive.pm:820
+#: diskdrake/interactive.pm:808 diskdrake/interactive.pm:825
#, c-format
msgid "new"
msgstr "חדש"
-#: diskdrake/interactive.pm:818
+#: diskdrake/interactive.pm:823
#, c-format
msgid "Choose an existing LVM to add to"
msgstr "יש לבחור LVM קיים אליו יש להוסיף"
-#: diskdrake/interactive.pm:824
+#: diskdrake/interactive.pm:829
#, c-format
msgid "LVM name?"
msgstr "שם LVM?"
-#: diskdrake/interactive.pm:861
+#: diskdrake/interactive.pm:866
#, c-format
msgid "This partition can't be used for loopback"
msgstr "לא יכול לעשות שימוש במחיצה זאת עבור loopback"
-#: diskdrake/interactive.pm:874
+#: diskdrake/interactive.pm:879
#, c-format
msgid "Loopback"
msgstr "Loopback"
-#: diskdrake/interactive.pm:875
+#: diskdrake/interactive.pm:880
#, c-format
msgid "Loopback file name: "
msgstr "שם קובץ loopback: "
-#: diskdrake/interactive.pm:880
+#: diskdrake/interactive.pm:885
#, c-format
msgid "Give a file name"
msgstr "עליך להגדיר שם קובץ"
-#: diskdrake/interactive.pm:883
+#: diskdrake/interactive.pm:888
#, c-format
msgid "File is already used by another loopback, choose another one"
msgstr "הקובץ בשימוש loopback אחר, נא לבחור קובץ אחר."
-#: diskdrake/interactive.pm:884
+#: diskdrake/interactive.pm:889
#, c-format
msgid "File already exists. Use it?"
msgstr "קובץ זה כבר קיים. האם להשתמש בו?"
-#: diskdrake/interactive.pm:907
+#: diskdrake/interactive.pm:912
#, c-format
msgid "Mount options"
msgstr "אפשרויות עיגון"
-#: diskdrake/interactive.pm:914
+#: diskdrake/interactive.pm:919
#, c-format
msgid "Various"
msgstr "שונות"
-#: diskdrake/interactive.pm:978
+#: diskdrake/interactive.pm:983
#, c-format
msgid "device"
msgstr "התקן"
-#: diskdrake/interactive.pm:979
+#: diskdrake/interactive.pm:984
#, c-format
msgid "level"
msgstr "רמה"
-#: diskdrake/interactive.pm:980
+#: diskdrake/interactive.pm:985
#, c-format
msgid "chunk size"
msgstr "גודל חתיכה"
-#: diskdrake/interactive.pm:996
+#: diskdrake/interactive.pm:1001
#, c-format
msgid "Be careful: this operation is dangerous."
msgstr "זהירות: פעולה זו מסוכנת."
-#: diskdrake/interactive.pm:1011
+#: diskdrake/interactive.pm:1016
#, c-format
msgid "What type of partitioning?"
msgstr "איזה סוג חלוקה למחיצות?"
-#: diskdrake/interactive.pm:1027
+#: diskdrake/interactive.pm:1032
#, c-format
msgid "The package %s is needed. Install it?"
msgstr "החבילה %s נדרשת. האם להתקינה?"
-#: diskdrake/interactive.pm:1056
+#: diskdrake/interactive.pm:1061
#, c-format
msgid "You'll need to reboot before the modification can take place"
msgstr "יש צורך להפעיל מחדש את המחשב בכדי שהשינויים יכנסו לתוקף"
-#: diskdrake/interactive.pm:1065
+#: diskdrake/interactive.pm:1070
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "טבלת המחיצות של הכונן %s עומדת להיכתב לכונן!"
-#: diskdrake/interactive.pm:1078
+#: diskdrake/interactive.pm:1083
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "אחרי יצירת מערכת קבצים במחיצה %s, כל המידע במחיצה זו יאבד"
-#: diskdrake/interactive.pm:1095
+#: diskdrake/interactive.pm:1100
#, c-format
msgid "Move files to the new partition"
msgstr "העבר קבצים למחיצה החדשה"
-#: diskdrake/interactive.pm:1095
+#: diskdrake/interactive.pm:1100
#, c-format
msgid "Hide files"
msgstr "הסתר קבצים"
-#: diskdrake/interactive.pm:1096
+#: diskdrake/interactive.pm:1101
#, c-format
msgid ""
"Directory %s already contains data\n"
@@ -2256,100 +2252,110 @@ msgstr ""
"הספרייה %s כבר כוללת מידע\n"
"(%s("
-#: diskdrake/interactive.pm:1107
+#: diskdrake/interactive.pm:1112
#, c-format
msgid "Moving files to the new partition"
msgstr "מעביר קבצים למחיצה החדשה"
-#: diskdrake/interactive.pm:1111
+#: diskdrake/interactive.pm:1116
#, c-format
msgid "Copying %s"
msgstr "מעתיק %s"
-#: diskdrake/interactive.pm:1115
+#: diskdrake/interactive.pm:1120
#, c-format
msgid "Removing %s"
msgstr "מסיר את %s"
-#: diskdrake/interactive.pm:1129
+#: diskdrake/interactive.pm:1134
#, c-format
msgid "partition %s is now known as %s"
msgstr "המחיצה %s זמינה כעת כ-%s"
-#: diskdrake/interactive.pm:1150 diskdrake/interactive.pm:1210
+#: diskdrake/interactive.pm:1155 diskdrake/interactive.pm:1217
#, c-format
msgid "Device: "
msgstr "התקן:"
-#: diskdrake/interactive.pm:1151
+#: diskdrake/interactive.pm:1156
+#, c-format
+msgid "Devfs name: "
+msgstr "שם התקן Devfs: "
+
+#: diskdrake/interactive.pm:1157
+#, c-format
+msgid "Volume label: "
+msgstr ""
+
+#: diskdrake/interactive.pm:1158
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "אות כונן DOS: %s (לפי ניחוש)\n"
-#: diskdrake/interactive.pm:1155 diskdrake/interactive.pm:1163
-#: diskdrake/interactive.pm:1229
+#: diskdrake/interactive.pm:1162 diskdrake/interactive.pm:1170
+#: diskdrake/interactive.pm:1236
#, c-format
msgid "Type: "
msgstr "סוג: "
-#: diskdrake/interactive.pm:1159 install_steps_gtk.pm:341
+#: diskdrake/interactive.pm:1166 install_steps_gtk.pm:341
#, c-format
msgid "Name: "
msgstr "שם: "
-#: diskdrake/interactive.pm:1167
+#: diskdrake/interactive.pm:1174
#, c-format
msgid "Start: sector %s\n"
msgstr "התחלה: מקטע %s\n"
-#: diskdrake/interactive.pm:1168
+#: diskdrake/interactive.pm:1175
#, c-format
msgid "Size: %s"
msgstr "גודל: %s"
-#: diskdrake/interactive.pm:1170
+#: diskdrake/interactive.pm:1177
#, c-format
msgid ", %s sectors"
msgstr ", %s מקטעים"
-#: diskdrake/interactive.pm:1172
+#: diskdrake/interactive.pm:1179
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "מסילה %d ל%d\n"
-#: diskdrake/interactive.pm:1173
+#: diskdrake/interactive.pm:1180
#, c-format
msgid "Number of logical extents: %d"
msgstr ""
-#: diskdrake/interactive.pm:1174
+#: diskdrake/interactive.pm:1181
#, c-format
msgid "Formatted\n"
msgstr "מפורמט\n"
-#: diskdrake/interactive.pm:1175
+#: diskdrake/interactive.pm:1182
#, c-format
msgid "Not formatted\n"
msgstr "לא מפורמט\n"
-#: diskdrake/interactive.pm:1176
+#: diskdrake/interactive.pm:1183
#, c-format
msgid "Mounted\n"
msgstr "מעוגן\n"
-#: diskdrake/interactive.pm:1177
+#: diskdrake/interactive.pm:1184
#, c-format
msgid "RAID md%s\n"
msgstr ""
-#: diskdrake/interactive.pm:1179
+#: diskdrake/interactive.pm:1186
#, c-format
msgid ""
"Loopback file(s):\n"
" %s\n"
msgstr ""
-#: diskdrake/interactive.pm:1180
+#: diskdrake/interactive.pm:1187
#, c-format
msgid ""
"Partition booted by default\n"
@@ -2358,27 +2364,27 @@ msgstr ""
"מחיצה מאתחלת כברירת מחדל\n"
" (לאתחול מ-DOS, לא מ-Lilo)\n"
-#: diskdrake/interactive.pm:1182
+#: diskdrake/interactive.pm:1189
#, c-format
msgid "Level %s\n"
msgstr "שלב %s\n"
-#: diskdrake/interactive.pm:1183
+#: diskdrake/interactive.pm:1190
#, c-format
msgid "Chunk size %s\n"
msgstr "גודל חתיכה %s\n"
-#: diskdrake/interactive.pm:1184
+#: diskdrake/interactive.pm:1191
#, c-format
msgid "RAID-disks %s\n"
msgstr ""
-#: diskdrake/interactive.pm:1186
+#: diskdrake/interactive.pm:1193
#, c-format
msgid "Loopback file name: %s"
msgstr ""
-#: diskdrake/interactive.pm:1189
+#: diskdrake/interactive.pm:1196
#, c-format
msgid ""
"\n"
@@ -2391,7 +2397,7 @@ msgstr ""
"מחיצה של מנהלי התקנים. כנראה שעליך\n"
"להשאירה כמות שהיא.\n"
-#: diskdrake/interactive.pm:1192
+#: diskdrake/interactive.pm:1199
#, c-format
msgid ""
"\n"
@@ -2403,68 +2409,68 @@ msgstr ""
"מחיצת אתחול מיוחדת הזאת \n"
"היא עבור אתחול כפול של המערכת שלך.\n"
-#: diskdrake/interactive.pm:1211
+#: diskdrake/interactive.pm:1218
#, c-format
msgid "Read-only"
msgstr "קריאה-בלבד"
-#: diskdrake/interactive.pm:1212
+#: diskdrake/interactive.pm:1219
#, c-format
msgid "Size: %s\n"
msgstr "גודל: %s\n"
-#: diskdrake/interactive.pm:1213
+#: diskdrake/interactive.pm:1220
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "תכונות: %s מסילות, %s ראשים, %s מקטעים\n"
-#: diskdrake/interactive.pm:1214
+#: diskdrake/interactive.pm:1221
#, c-format
msgid "Info: "
msgstr "מידע: "
-#: diskdrake/interactive.pm:1215
+#: diskdrake/interactive.pm:1222
#, c-format
msgid "LVM-disks %s\n"
msgstr "כונני LVM %s\n"
-#: diskdrake/interactive.pm:1216
+#: diskdrake/interactive.pm:1223
#, c-format
msgid "Partition table type: %s\n"
msgstr "סוג טבלת המחיצות: %s\n"
-#: diskdrake/interactive.pm:1217
+#: diskdrake/interactive.pm:1224
#, c-format
msgid "on channel %d id %d\n"
msgstr "בערוץ %d זיהוי %d\n"
-#: diskdrake/interactive.pm:1250
+#: diskdrake/interactive.pm:1257
#, c-format
msgid "Filesystem encryption key"
msgstr "מפתח ההצפנה של המערכת"
-#: diskdrake/interactive.pm:1251
+#: diskdrake/interactive.pm:1258
#, c-format
msgid "Choose your filesystem encryption key"
msgstr "עליך לבחור את מפתח ההצפנה של המערכת שלך"
-#: diskdrake/interactive.pm:1254
+#: diskdrake/interactive.pm:1261
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr "מפתח ההצפנה פשוט מדי (חייב להיות באורך של %d תווים לפחות)"
-#: diskdrake/interactive.pm:1255
+#: diskdrake/interactive.pm:1262
#, c-format
msgid "The encryption keys do not match"
msgstr "מפתחות ההצפנה לא תואמים"
-#: diskdrake/interactive.pm:1258 network/netconnect.pm:987
-#: standalone/drakconnect:393
+#: diskdrake/interactive.pm:1265 network/netconnect.pm:979
+#: standalone/drakconnect:404
#, c-format
msgid "Encryption key"
msgstr "מפתח הצפנה"
-#: diskdrake/interactive.pm:1259
+#: diskdrake/interactive.pm:1266
#, c-format
msgid "Encryption key (again)"
msgstr "חזרה על מפתח הצפנה"
@@ -2499,16 +2505,11 @@ msgstr "עוד אחד"
msgid "Please enter your username, password and domain name to access this host."
msgstr ""
-#: diskdrake/smbnfs_gtk.pm:179 standalone/drakbackup:3591
+#: diskdrake/smbnfs_gtk.pm:179 standalone/drakbackup:3495
#, c-format
msgid "Username"
msgstr "שם משתמש"
-#: diskdrake/smbnfs_gtk.pm:181
-#, c-format
-msgid "Domain"
-msgstr "מתחם"
-
#: diskdrake/smbnfs_gtk.pm:205
#, c-format
msgid "Search servers"
@@ -2539,7 +2540,7 @@ msgstr "מתקין חבילות..."
msgid "Removing packages..."
msgstr "מסיר חבילות..."
-#: fs.pm:409
+#: fs.pm:416
#, c-format
msgid ""
"Do not update inode access times on this file system\n"
@@ -2548,7 +2549,7 @@ msgstr ""
"אל תעדכן זמני גישה ל inode במערכת קבצים זו\n"
"(יכול לשמש לכוונון שרתים)"
-#: fs.pm:412
+#: fs.pm:419
#, c-format
msgid ""
"Can only be mounted explicitly (i.e.,\n"
@@ -2557,12 +2558,12 @@ msgstr ""
"אפשר עיגון ישיר בלבד (דהיינו mount -a\n"
"לא יגרום לעיגון אוטומטי של מערכת קבצים זו)"
-#: fs.pm:415
+#: fs.pm:422
#, c-format
msgid "Do not interpret character or block special devices on the file system."
msgstr "אל תפענח התקני character והתקני block על מערכת קבצים זו."
-#: fs.pm:417
+#: fs.pm:424
#, c-format
msgid ""
"Do not allow execution of any binaries on the mounted\n"
@@ -2573,7 +2574,7 @@ msgstr ""
"לאחר העיגון. אפשרות זו עשויה לשמש בהגדרת שרתים\n"
"המאכסנים קבצים בינאריים למעבדים שונים מזה שלהם."
-#: fs.pm:421
+#: fs.pm:428
#, c-format
msgid ""
"Do not allow set-user-identifier or set-group-identifier\n"
@@ -2584,17 +2585,17 @@ msgstr ""
"(גם אם הדבר נראה בטוח, הוא עלול לגרום לפרצת\n"
"אבטחה באם suidperl מותקן)."
-#: fs.pm:425
+#: fs.pm:432
#, c-format
msgid "Mount the file system read-only."
msgstr "עגן את מערכת הקבצים לקריאה בלבד."
-#: fs.pm:427
+#: fs.pm:434
#, c-format
msgid "All I/O to the file system should be done synchronously."
msgstr "כל גישות כתיבה/קריאה למערכת הקבצים אמורות להתבצע באופן סינכרוני."
-#: fs.pm:431
+#: fs.pm:438
#, c-format
msgid ""
"Allow an ordinary user to mount the file system. The\n"
@@ -2609,57 +2610,57 @@ msgstr ""
"בחירה באפשרות זו תגדיר גם noexec, nosuid, nodev (אלא אם\n"
"תוגדר תצורה אחרת מאוחר יותר, למשל user,exec,dev,suid)."
-#: fs.pm:439
+#: fs.pm:446
#, c-format
msgid "Give write access to ordinary users"
msgstr "אפשר הרשאת כתיבה למשתמשים רגילים"
-#: fs.pm:441
+#: fs.pm:448
#, c-format
msgid "Give read-only access to ordinary users"
msgstr "אפשר הרשאת קריאה בלבד למשתמשים רגילים"
-#: fs.pm:581 fs.pm:591 fs.pm:595 fs.pm:599 fs.pm:603 fs.pm:607 swap.pm:12
+#: fs.pm:588 fs.pm:598 fs.pm:602 fs.pm:606 fs.pm:610 fs.pm:614 swap.pm:12
#, c-format
msgid "%s formatting of %s failed"
msgstr "פירמוט %s של %s נכשל"
-#: fs.pm:648
+#: fs.pm:655
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "לא ידוע לי איך לפרמט את %s בסוג %s"
-#: fs.pm:655 fs.pm:662
+#: fs.pm:662 fs.pm:669
#, c-format
msgid "Formatting partition %s"
msgstr "מפרמט מחיצה %s"
-#: fs.pm:659
+#: fs.pm:666
#, c-format
msgid "Creating and formatting file %s"
msgstr "יוצר ומפרמט את הקובץ %s"
-#: fs.pm:719 fs.pm:772
+#: fs.pm:726 fs.pm:775
#, c-format
msgid "Mounting partition %s"
msgstr "מעגן מחיצה %s"
-#: fs.pm:720 fs.pm:773
+#: fs.pm:727 fs.pm:776
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "עיגון המחיצה %s לתיקייה %s נכשל"
-#: fs.pm:740 fs.pm:748
+#: fs.pm:747 fs.pm:754
#, c-format
msgid "Checking %s"
msgstr "בודק %s"
-#: fs.pm:789 partition_table.pm:638
+#: fs.pm:792 partition_table.pm:639
#, c-format
msgid "error unmounting %s: %s"
msgstr "שגיאה בניתוק %s: %s"
-#: fs.pm:821
+#: fs.pm:824
#, c-format
msgid "Enabling swap partition %s"
msgstr "מאפשר מחיצת זיכרון החלפה %s"
@@ -2679,7 +2680,7 @@ msgstr "עם /usr"
msgid "server"
msgstr "שרת"
-#: fsedit.pm:254
+#: fsedit.pm:263
#, c-format
msgid ""
"I can't read the partition table of device %s, it's too corrupted for me :(\n"
@@ -2697,32 +2698,32 @@ msgstr ""
"\n"
"האם ניתן להמשיך תוך סיכון של אובדן כל המחיצות?\n"
-#: fsedit.pm:513
+#: fsedit.pm:524
#, c-format
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "אין אפשרות להשתמש ב-JFS עבור מחיצה קטנה מ- 16MB"
-#: fsedit.pm:514
+#: fsedit.pm:525
#, c-format
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "אין אפשרות להשתמש ב-ReiserFS למחיצה קטנה מ-32MB"
-#: fsedit.pm:533
+#: fsedit.pm:544
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "נקודות עיגון חייבות להתחיל בלוכסן (/)"
-#: fsedit.pm:534
+#: fsedit.pm:545
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr "שמות נקודות עיגון צריכות להכיל רק אותיות, מספרים וקו תחתון"
-#: fsedit.pm:535
+#: fsedit.pm:546
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "כבר קיימת מחיצה עם נקודת עיגון %s\n"
-#: fsedit.pm:537
+#: fsedit.pm:548
#, c-format
msgid ""
"You've selected a software RAID partition as root (/).\n"
@@ -2730,12 +2731,12 @@ msgid ""
"Please be sure to add a /boot partition"
msgstr ""
-#: fsedit.pm:540
+#: fsedit.pm:551
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "אינך יכול/ה להשתמש במחיצה לוגית של LVM לנקודת חיבור %s"
-#: fsedit.pm:542
+#: fsedit.pm:553
#, c-format
msgid ""
"You've selected a LVM Logical Volume as root (/).\n"
@@ -2743,19 +2744,19 @@ msgid ""
"Please be sure to add a /boot partition"
msgstr ""
-#: fsedit.pm:545
+#: fsedit.pm:556
#, c-format
msgid ""
"You may not be able to install lilo (since lilo doesn't handle a LV on "
"multiple PVs)"
msgstr ""
-#: fsedit.pm:548 fsedit.pm:550
+#: fsedit.pm:559 fsedit.pm:561
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr "ספרייה זו צריכה להישאר במערכת הקבצים הראשית (root)."
-#: fsedit.pm:552
+#: fsedit.pm:563 fsedit.pm:565
#, c-format
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
@@ -2764,176 +2765,184 @@ msgstr ""
"יש להגדיר מערכת קבצים אמתית (ext2/ext3, reiserfs, xfs, או jfs) בשביל נקודת "
"העיגון הזאת\n"
-#: fsedit.pm:554
+#: fsedit.pm:567
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "אסור להשתמש במערכת קבצים מוצפנת לנקודת העיגון %s"
-#: fsedit.pm:615
+#: fsedit.pm:628
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr "אין מספיק מקום פנוי לחלוקה אוטומטית"
-#: fsedit.pm:617
+#: fsedit.pm:630
#, c-format
msgid "Nothing to do"
msgstr "לא נדרש לעשות דבר"
-#: fsedit.pm:713
+#: fsedit.pm:726
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "שגיאה בפתיחת %s לכתיבה של: %s"
-#: harddrake/data.pm:53
+#: harddrake/data.pm:55
#, c-format
msgid "Floppy"
msgstr "תקליטון"
-#: harddrake/data.pm:54
+#: harddrake/data.pm:65
#, c-format
msgid "Zip"
msgstr "ZIP"
-#: harddrake/data.pm:55
+#: harddrake/data.pm:75
#, c-format
msgid "Disk"
msgstr "דיסק"
-#: harddrake/data.pm:56
+#: harddrake/data.pm:84
#, c-format
msgid "CDROM"
msgstr "תקליטור"
-#: harddrake/data.pm:57
+#: harddrake/data.pm:94
#, c-format
msgid "CD/DVD burners"
msgstr "צורבי CD/DVD"
-#: harddrake/data.pm:58
+#: harddrake/data.pm:104
#, c-format
msgid "DVD-ROM"
msgstr "DVD-ROM"
-#: harddrake/data.pm:59 standalone/drakbackup:2116
+#: harddrake/data.pm:114 standalone/drakbackup:2025
#, c-format
msgid "Tape"
msgstr "טייפ"
-#: harddrake/data.pm:60
+#: harddrake/data.pm:123
#, c-format
msgid "Videocard"
msgstr "כרטיס מסך"
-#: harddrake/data.pm:61
+#: harddrake/data.pm:133
#, c-format
msgid "Tvcard"
msgstr "כרטיס טלוויזיה"
-#: harddrake/data.pm:62
+#: harddrake/data.pm:142
#, c-format
msgid "Other MultiMedia devices"
msgstr "התקני מולטימדיה אחרים"
-#: harddrake/data.pm:63
+#: harddrake/data.pm:151
#, c-format
msgid "Soundcard"
msgstr "כרטיס קול"
-#: harddrake/data.pm:64
+#: harddrake/data.pm:160
#, c-format
msgid "Webcam"
msgstr "מצלמת רשת"
-#: harddrake/data.pm:68
+#: harddrake/data.pm:174
#, c-format
msgid "Processors"
msgstr "מעבדים"
-#: harddrake/data.pm:69
+#: harddrake/data.pm:183
#, c-format
msgid "ISDN adapters"
msgstr "מתאמי ISDN"
-#: harddrake/data.pm:70
+#: harddrake/data.pm:192
#, c-format
msgid "Ethernetcard"
msgstr "כרטיס Ethernet"
-#: harddrake/data.pm:78 network/netconnect.pm:465 standalone/drakconnect:272
-#: standalone/drakconnect:292 standalone/drakconnect:472
-#: standalone/drakconnect:473 standalone/drakconnect:576
+#: harddrake/data.pm:208 network/netconnect.pm:464
#, c-format
msgid "Modem"
msgstr "מודם"
-#: harddrake/data.pm:79
+#: harddrake/data.pm:217
#, c-format
msgid "ADSL adapters"
msgstr "מתאמי ADSL"
-#: harddrake/data.pm:81
+#: harddrake/data.pm:230
#, c-format
msgid "AGP controllers"
msgstr "בקרי AGP"
-#: harddrake/data.pm:82
+#: harddrake/data.pm:239
#, c-format
msgid "Bridges and system controllers"
msgstr ""
-#: harddrake/data.pm:83 help.pm:203 help.pm:991
-#: install_steps_interactive.pm:933 printer/printerdrake.pm:687
+#: harddrake/data.pm:248 help.pm:203 help.pm:991
+#: install_steps_interactive.pm:927 printer/printerdrake.pm:687
#: printer/printerdrake.pm:4175
#, c-format
msgid "Printer"
msgstr "מדפסת"
-#: harddrake/data.pm:85 help.pm:991 install_steps_interactive.pm:926
+#: harddrake/data.pm:257 help.pm:991 install_steps_interactive.pm:920
#, c-format
msgid "Mouse"
msgstr "עכבר"
-#: harddrake/data.pm:90
+#: harddrake/data.pm:271
#, c-format
msgid "Joystick"
msgstr "ג'ויסטיק"
-#: harddrake/data.pm:92
+#: harddrake/data.pm:281
#, c-format
msgid "(E)IDE/ATA controllers"
msgstr "בקרי (E)IDE/ATA"
-#: harddrake/data.pm:94
+#: harddrake/data.pm:290
+#, c-format
+msgid "SATA controllers"
+msgstr "בקרי SATA"
+
+#: harddrake/data.pm:299
#, c-format
msgid "Firewire controllers"
msgstr "בקרי Firewire"
-#: harddrake/data.pm:95
+#: harddrake/data.pm:308
#, c-format
msgid "SCSI controllers"
msgstr "בקרי SCSI"
-#: harddrake/data.pm:96
+#: harddrake/data.pm:317
#, c-format
msgid "USB controllers"
msgstr "בקרי USB"
-#: harddrake/data.pm:97
+#: harddrake/data.pm:326
+#, c-format
+msgid "USB ports"
+msgstr "יציאות USB"
+
+#: harddrake/data.pm:335
#, c-format
msgid "SMBus controllers"
msgstr "בקרי SMBus"
-#: harddrake/data.pm:98
+#: harddrake/data.pm:344
#, c-format
msgid "Scanner"
msgstr "סורק"
-#: harddrake/data.pm:100 standalone/harddrake2:319
+#: harddrake/data.pm:354 standalone/harddrake2:336
#, c-format
msgid "Unknown/Others"
msgstr "לא ידוע/אחרים"
-#: harddrake/data.pm:114
+#: harddrake/data.pm:374
#, c-format
msgid "cpu # "
msgstr "מעבד # "
@@ -3106,22 +3115,22 @@ msgstr ""
msgid "Auto-detect"
msgstr "זיהוי-אוטומטי"
-#: harddrake/v4l.pm:69 harddrake/v4l.pm:227
+#: harddrake/v4l.pm:72 harddrake/v4l.pm:235
#, c-format
msgid "Unknown|Generic"
msgstr "לא ידוע|כללי"
-#: harddrake/v4l.pm:102
+#: harddrake/v4l.pm:105
#, c-format
msgid "Unknown|CPH05X (bt878) [many vendors]"
msgstr ""
-#: harddrake/v4l.pm:103
+#: harddrake/v4l.pm:106
#, c-format
msgid "Unknown|CPH06X (bt878) [many vendors]"
msgstr "לא ידוע (CPH06X (bt878 [הרבה ספקים]"
-#: harddrake/v4l.pm:289
+#: harddrake/v4l.pm:309
#, c-format
msgid ""
"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
@@ -3134,37 +3143,37 @@ msgstr ""
"אם הכרטיס שלך לא מזוהה נכון, יש באפשרותך להגדיר את הכוונן (tuner) וסוג "
"הכרטיס הנכון במידת הצורך."
-#: harddrake/v4l.pm:292
+#: harddrake/v4l.pm:312
#, c-format
msgid "Card model:"
msgstr "דגם הכרטיס:"
-#: harddrake/v4l.pm:293
+#: harddrake/v4l.pm:313
#, c-format
msgid "Tuner type:"
msgstr "סוג כוונן (Tuner):"
-#: harddrake/v4l.pm:294
+#: harddrake/v4l.pm:314
#, c-format
msgid "Number of capture buffers:"
msgstr "מספר של חוצצי תפיסה:"
-#: harddrake/v4l.pm:294
+#: harddrake/v4l.pm:314
#, c-format
msgid "number of capture buffers for mmap'ed capture"
msgstr ""
-#: harddrake/v4l.pm:296
+#: harddrake/v4l.pm:316
#, c-format
msgid "PLL setting:"
msgstr "הגדרות PLL"
-#: harddrake/v4l.pm:297
+#: harddrake/v4l.pm:317
#, c-format
msgid "Radio support:"
msgstr "תמיכת רדיו:"
-#: harddrake/v4l.pm:297
+#: harddrake/v4l.pm:317
#, c-format
msgid "enable radio support"
msgstr "אפשר תמיכת רדיו"
@@ -3231,9 +3240,10 @@ msgstr ""
#: help.pm:52 help.pm:197 help.pm:444 help.pm:691 help.pm:784 help.pm:1005
#: install_steps_gtk.pm:277 interactive.pm:403 interactive/newt.pm:308
-#: network/netconnect.pm:271 network/tools.pm:206 printer/printerdrake.pm:3090
-#: standalone/drakTermServ:409 standalone/drakbackup:4199
-#: standalone/drakbackup:4229 standalone/drakbackup:4251 ugtk2.pm:510
+#: network/netconnect.pm:271 network/tools.pm:166 printer/printerdrake.pm:3090
+#: standalone/drakTermServ:397 standalone/drakbackup:3920
+#: standalone/drakbackup:4014 standalone/drakbackup:4031
+#: standalone/drakbackup:4049 ugtk2.pm:510
#, c-format
msgid "Next"
msgstr "הבא"
@@ -3496,17 +3506,17 @@ msgstr ""
"קודמת. הסבר נוסף לגבי יצירת תקליטון זה עבור ההתקנה הנוכחית\n"
"יופיע בהמשך."
-#: help.pm:172 help.pm:301 help.pm:329 help.pm:457 install_any.pm:413
-#: interactive.pm:149 modules/interactive.pm:71 standalone/harddrake2:219
-#: ugtk2.pm:1074 wizards.pm:156
+#: help.pm:172 help.pm:301 help.pm:329 help.pm:457 install_any.pm:411
+#: interactive.pm:149 modules/interactive.pm:71 standalone/harddrake2:225
+#: ugtk2.pm:1083 wizards.pm:156
#, c-format
msgid "No"
msgstr "לא"
-#: help.pm:172 help.pm:301 help.pm:457 install_any.pm:413 interactive.pm:149
+#: help.pm:172 help.pm:301 help.pm:457 install_any.pm:411 interactive.pm:149
#: modules/interactive.pm:71 printer/printerdrake.pm:607 standalone/drakgw:288
#: standalone/drakgw:289 standalone/drakgw:297 standalone/drakgw:307
-#: standalone/harddrake2:218 ugtk2.pm:1074 wizards.pm:156
+#: standalone/harddrake2:224 ugtk2.pm:1083 wizards.pm:156
#, c-format
msgid "Yes"
msgstr "כן"
@@ -3559,8 +3569,8 @@ msgid ""
msgstr ""
#: help.pm:203 help.pm:581 help.pm:991 install_steps_gtk.pm:648
-#: standalone/drakbackup:2406 standalone/drakbackup:2414
-#: standalone/drakbackup:2422 standalone/drakbackup:2430
+#: standalone/drakbackup:2313 standalone/drakbackup:2321
+#: standalone/drakbackup:2329 standalone/drakbackup:2337
#, c-format
msgid "Configure"
msgstr "הגדרות"
@@ -3603,7 +3613,7 @@ msgid ""
"other machines on your local network as well."
msgstr ""
-#: help.pm:235 install_steps_interactive.pm:828
+#: help.pm:235 install_steps_interactive.pm:822
#, c-format
msgid "Hardware clock set to GMT"
msgstr "שעון מערכת מכוון ל-GMT"
@@ -3947,17 +3957,17 @@ msgstr ""
msgid "Generate auto-install floppy"
msgstr "יצירת תקליטון התקנה אוטומטית"
-#: help.pm:418 install_steps_interactive.pm:1322
+#: help.pm:418 install_steps_interactive.pm:1316
#, c-format
msgid "Replay"
msgstr "שחזור התקנה"
-#: help.pm:418 install_steps_interactive.pm:1322
+#: help.pm:418 install_steps_interactive.pm:1316
#, c-format
msgid "Automated"
msgstr "אוטומטי"
-#: help.pm:418 install_steps_interactive.pm:1325
+#: help.pm:418 install_steps_interactive.pm:1319
#, c-format
msgid "Save packages selection"
msgstr "שמירת בחירת החבילות"
@@ -3993,11 +4003,9 @@ msgstr ""
#: help.pm:444 help.pm:1005 install_steps_gtk.pm:433 interactive.pm:404
#: interactive/newt.pm:307 printer/printerdrake.pm:3088
-#: standalone/drakTermServ:388 standalone/drakbackup:4012
-#: standalone/drakbackup:4041 standalone/drakbackup:4095
-#: standalone/drakbackup:4119 standalone/drakbackup:4143
-#: standalone/drakbackup:4195 standalone/drakbackup:4225
-#: standalone/drakbackup:4247 ugtk2.pm:508
+#: standalone/drakTermServ:376 standalone/drakbackup:3880
+#: standalone/drakbackup:3919 standalone/drakbackup:4030
+#: standalone/drakbackup:4045 ugtk2.pm:508
#, c-format
msgid "Previous"
msgstr "קודם"
@@ -4019,7 +4027,7 @@ msgid ""
msgstr ""
#: help.pm:457 help.pm:602 install_steps_gtk.pm:432
-#: install_steps_interactive.pm:148 standalone/drakbackup:4279
+#: install_steps_interactive.pm:148 standalone/drakbackup:4077
#, c-format
msgid "Install"
msgstr "התקנה"
@@ -4417,7 +4425,7 @@ msgid "authentication"
msgstr "אימות"
#. -PO: keep this short or else the buttons will not fit in the window
-#: help.pm:733 install_steps_interactive.pm:1152
+#: help.pm:733 install_steps_interactive.pm:1146
#, c-format
msgid "No password"
msgstr "בלי סיסמה"
@@ -4539,7 +4547,7 @@ msgid ""
msgstr ""
#: help.pm:784 interactive.pm:295 interactive/gtk.pm:480
-#: standalone/drakbackup:1604 standalone/drakfont:589 standalone/drakfont:655
+#: standalone/drakbackup:1513 standalone/drakfont:589 standalone/drakfont:655
#: standalone/drakups:280 standalone/drakups:329 standalone/drakups:349
#: standalone/drakvpn:333 standalone/drakvpn:694
#, c-format
@@ -4824,8 +4832,8 @@ msgstr ""
"אם שמת לב שהכרטיס הקול שמוצג אינו מתאים לחומרה שלך, באפשרותך,\n"
"ללחוץ על הכפתור ולבחור מנהל-התקן אחר."
-#: help.pm:929 help.pm:991 install_steps_interactive.pm:960
-#: install_steps_interactive.pm:977
+#: help.pm:929 help.pm:991 install_steps_interactive.pm:954
+#: install_steps_interactive.pm:971
#, c-format
msgid "Sound card"
msgstr "כרטיס קול"
@@ -4896,12 +4904,12 @@ msgid ""
msgstr ""
#: help.pm:991 install_steps_interactive.pm:110
-#: install_steps_interactive.pm:893 standalone/keyboarddrake:23
+#: install_steps_interactive.pm:887 standalone/keyboarddrake:23
#, c-format
msgid "Keyboard"
msgstr "מקלדת"
-#: help.pm:991 install_steps_interactive.pm:919 standalone/drakclock:75
+#: help.pm:991 install_steps_interactive.pm:913 standalone/drakclock:75
#, c-format
msgid "Timezone"
msgstr "אזור זמן"
@@ -4911,7 +4919,7 @@ msgstr "אזור זמן"
msgid "Graphical Interface"
msgstr "ממשק גרפי"
-#: help.pm:991 install_steps_interactive.pm:993
+#: help.pm:991 install_steps_interactive.pm:987
#, c-format
msgid "TV card"
msgstr "כרטיס טלוויזיה"
@@ -4921,27 +4929,27 @@ msgstr "כרטיס טלוויזיה"
msgid "ISDN card"
msgstr "מודם ISDN "
-#: help.pm:991 install_steps_interactive.pm:1011 standalone/drakbackup:2101
+#: help.pm:991 install_steps_interactive.pm:1005 standalone/drakbackup:2010
#, c-format
msgid "Network"
msgstr "רשת"
-#: help.pm:991 install_steps_interactive.pm:1037
+#: help.pm:991 install_steps_interactive.pm:1031
#, c-format
msgid "Security Level"
msgstr "סף האבטחה המבוקש:"
-#: help.pm:991 install_steps_interactive.pm:1051
+#: help.pm:991 install_steps_interactive.pm:1045
#, c-format
msgid "Firewall"
msgstr "חומת אש"
-#: help.pm:991 install_steps_interactive.pm:1065
+#: help.pm:991 install_steps_interactive.pm:1059
#, c-format
msgid "Bootloader"
msgstr "מנהל אתחול"
-#: help.pm:991 install_steps_interactive.pm:1075 services.pm:195
+#: help.pm:991 install_steps_interactive.pm:1069 services.pm:195
#, c-format
msgid "Services"
msgstr "שרותים"
@@ -4986,7 +4994,7 @@ msgstr ""
msgid "You must also format %s"
msgstr "חובה עליך לפרמט גם את %s"
-#: install_any.pm:404
+#: install_any.pm:402
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -5009,7 +5017,7 @@ msgstr ""
"\n"
"האם ברצונך להתקין שרתים אלו בשלב זה?\n"
-#: install_any.pm:425
+#: install_any.pm:423
#, c-format
msgid ""
"The following packages will be removed to allow upgrading your system: %s\n"
@@ -5022,17 +5030,17 @@ msgstr ""
"\n"
"האם באמת ברצונך להסיר חבילות אלה?\n"
-#: install_any.pm:820
+#: install_any.pm:818
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "יש להכניס תקליטון מפורמט כ FAT לכונן %s"
-#: install_any.pm:824
+#: install_any.pm:822
#, c-format
msgid "This floppy is not FAT formatted"
msgstr "תקליטון זה אינו מפורמט במערכת קבצים FAT"
-#: install_any.pm:836
+#: install_any.pm:834
#, c-format
msgid ""
"To use this saved packages selection, boot installation with ``linux "
@@ -5041,12 +5049,12 @@ msgstr ""
"כדי להשתמש בבחירת החבילות השמורה, יש להפעיל את ההתקנה עם ``linux "
"defcfg=floppy'' "
-#: install_any.pm:864 partition_table.pm:847
+#: install_any.pm:862 partition_table.pm:848
#, c-format
msgid "Error reading file %s"
msgstr "שגיאה בקריאת הקובץ %s"
-#: install_any.pm:988
+#: install_any.pm:987
#, c-format
msgid ""
"An error occurred - no valid devices were found on which to create new "
@@ -5096,7 +5104,7 @@ msgstr ""
"\n"
"האם ברצונך להמשיך בכל זאת ?"
-#: install_interactive.pm:70 install_steps.pm:206
+#: install_interactive.pm:70 install_steps.pm:207
#, c-format
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr ""
@@ -5595,12 +5603,12 @@ msgstr ""
msgid "http://www.mandrakelinux.com/en/100errata.php3"
msgstr "http://www.mandrakelinux.com/en/100errata.php3"
-#: install_steps.pm:241
+#: install_steps.pm:242
#, c-format
msgid "Duplicate mount point %s"
msgstr "משכפל נקודת עיגון %s"
-#: install_steps.pm:406
+#: install_steps.pm:407
#, c-format
msgid ""
"Some important packages didn't get installed properly.\n"
@@ -5612,7 +5620,7 @@ msgstr ""
"כנראה שיש בעיה בכונן התקליטורים או בתקליטור(י) ההתקנה. יש לבדוק\n"
"את תקליטור(י) ההתקנה על מחשב מותקן בעזרת \"rpm -qpl Mandrake/RPMS/*.rpm\"\n"
-#: install_steps.pm:535
+#: install_steps.pm:533
#, c-format
msgid "No floppy drive available"
msgstr "אין כונן תקליטונים זמין"
@@ -5831,8 +5839,8 @@ msgstr "האם להמשיך בכל מקרה?"
msgid "There was an error installing packages:"
msgstr "התרחשה שגיאה בהתקנת החבילות:"
-#: install_steps_gtk.pm:658 install_steps_interactive.pm:875
-#: install_steps_interactive.pm:1027
+#: install_steps_gtk.pm:658 install_steps_interactive.pm:869
+#: install_steps_interactive.pm:1021
#, c-format
msgid "not configured"
msgstr "לא מוגדר"
@@ -5854,8 +5862,8 @@ msgstr "בשלב זה עליך להגדיר את פריסת המקלדת שלך:
#: install_steps_interactive.pm:113
#, c-format
-msgid "Here is the full list of keyboards available"
-msgstr "להלן הרשימה המלאה של פריסות המקלדת הזמינות:"
+msgid "Here is the full list of available keyboards"
+msgstr "להלן הרשימה המלאה של המדפסות הזמינות"
#: install_steps_interactive.pm:143
#, c-format
@@ -5929,7 +5937,7 @@ msgstr "IDE"
msgid "Configuring IDE"
msgstr "מגדיר IDE"
-#: install_steps_interactive.pm:248 network/tools.pm:195
+#: install_steps_interactive.pm:248 network/tools.pm:155
#, c-format
msgid "No partition available"
msgstr "אין מחיצות זמינות"
@@ -6105,15 +6113,10 @@ msgstr "מבצע הגדרות לאחר-התקנה"
#: install_steps_interactive.pm:727
#, c-format
-msgid "Please insert the Boot floppy used in drive %s"
-msgstr "נא להכניס את תקליטון האתחול בו נעשה שימוש לכונן %s"
-
-#: install_steps_interactive.pm:733
-#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "נא להכניס את תקליטון עדכון המודולים לכונן %s"
-#: install_steps_interactive.pm:754
+#: install_steps_interactive.pm:748
#, c-format
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -6132,175 +6135,179 @@ msgstr ""
"להורדת חבילות אלה נדרש חיבור אינטרנט עובד. האם ברצונך לעדכן את המערכת בשלב "
"זה ?"
-#: install_steps_interactive.pm:775
+#: install_steps_interactive.pm:769
#, c-format
msgid "Contacting Mandrakelinux web site to get the list of available mirrors..."
msgstr "מתחבר לאתר Mandrakelinux בכדי לקבל רשימה של אתרי מראה זמינים..."
-#: install_steps_interactive.pm:780
+#: install_steps_interactive.pm:774
#, c-format
msgid "Choose a mirror from which to get the packages"
msgstr "עליך לבחור את אתר המראה ממנו יורדו החבילות"
-#: install_steps_interactive.pm:794
+#: install_steps_interactive.pm:788
#, c-format
msgid "Contacting the mirror to get the list of available packages..."
msgstr "מתחבר לאתר המראה כדי לקבל את רשימת החבילות הזמינות..."
-#: install_steps_interactive.pm:798
+#: install_steps_interactive.pm:792
#, c-format
msgid "Unable to contact mirror %s"
msgstr "לא יכול להתחבר לאתר המראה %s"
-#: install_steps_interactive.pm:798
+#: install_steps_interactive.pm:792
#, c-format
msgid "Would you like to try again?"
msgstr "האם ברצונך לנסות שנית?"
-#: install_steps_interactive.pm:824 standalone/drakclock:45
+#: install_steps_interactive.pm:818 standalone/drakclock:45
#, c-format
msgid "Which is your timezone?"
msgstr "מהו אזור הזמן שלך?"
-#: install_steps_interactive.pm:829
+#: install_steps_interactive.pm:823
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "סנכרון זמן אוטומטי (שימוש ב-NTP)"
-#: install_steps_interactive.pm:837
+#: install_steps_interactive.pm:831
#, c-format
msgid "NTP Server"
msgstr "שרת NTP"
-#: install_steps_interactive.pm:879 steps.pm:30
+#: install_steps_interactive.pm:873 steps.pm:30
#, c-format
msgid "Summary"
msgstr "סיכום ובדיקת הגדרות"
-#: install_steps_interactive.pm:892 install_steps_interactive.pm:900
-#: install_steps_interactive.pm:918 install_steps_interactive.pm:925
-#: install_steps_interactive.pm:1074 services.pm:135
-#: standalone/drakbackup:1663
+#: install_steps_interactive.pm:886 install_steps_interactive.pm:894
+#: install_steps_interactive.pm:912 install_steps_interactive.pm:919
+#: install_steps_interactive.pm:1068 services.pm:135
+#: standalone/drakbackup:1572
#, c-format
msgid "System"
msgstr "מערכת"
-#: install_steps_interactive.pm:932 install_steps_interactive.pm:959
-#: install_steps_interactive.pm:976 install_steps_interactive.pm:992
-#: install_steps_interactive.pm:1003
+#: install_steps_interactive.pm:926 install_steps_interactive.pm:953
+#: install_steps_interactive.pm:970 install_steps_interactive.pm:986
+#: install_steps_interactive.pm:997
#, c-format
msgid "Hardware"
msgstr "חומרה"
-#: install_steps_interactive.pm:938 install_steps_interactive.pm:947
+#: install_steps_interactive.pm:932 install_steps_interactive.pm:941
#, c-format
msgid "Remote CUPS server"
msgstr "שרת CUPS מרוחק"
-#: install_steps_interactive.pm:938
+#: install_steps_interactive.pm:932
#, c-format
msgid "No printer"
msgstr "ללא מדפסת"
-#: install_steps_interactive.pm:980
+#: install_steps_interactive.pm:974
#, c-format
msgid "Do you have an ISA sound card?"
msgstr "האם יש לך כרטיס קול ISA?"
-#: install_steps_interactive.pm:982
+#: install_steps_interactive.pm:976
#, c-format
-msgid "Run \"sndconfig\" after installation to configure your sound card"
-msgstr "נא להריץ \"sndconfig\" אחרי ההתקנה בכדי להגדיר את כרטיס הקול שלך"
+msgid ""
+"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
+"card"
+msgstr ""
+"עליך להריץ \"alsaconf\" או \"sndconfig\" אחרי ההתקנה בכדי "
+"להגדיר את כרטיס הקול שלך"
-#: install_steps_interactive.pm:984
+#: install_steps_interactive.pm:978
#, c-format
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr "לא זוהו כרטיסי קול. יש לנסות את האשף \"harddrake\" לאחר ההתקנה"
-#: install_steps_interactive.pm:1004
+#: install_steps_interactive.pm:998
#, c-format
msgid "Graphical interface"
msgstr "ממשק גרפי"
-#: install_steps_interactive.pm:1010 install_steps_interactive.pm:1025
+#: install_steps_interactive.pm:1004 install_steps_interactive.pm:1019
#, c-format
msgid "Network & Internet"
msgstr "רשת ואינטרנט"
-#: install_steps_interactive.pm:1026
+#: install_steps_interactive.pm:1020
#, c-format
msgid "Proxies"
msgstr "שרתים מתווכים"
-#: install_steps_interactive.pm:1027
+#: install_steps_interactive.pm:1021
#, c-format
msgid "configured"
msgstr "מוגדר"
-#: install_steps_interactive.pm:1036 install_steps_interactive.pm:1050
+#: install_steps_interactive.pm:1030 install_steps_interactive.pm:1044
#: steps.pm:20
#, c-format
msgid "Security"
msgstr "הגדרות אבטחה"
-#: install_steps_interactive.pm:1055
+#: install_steps_interactive.pm:1049
#, c-format
msgid "activated"
msgstr "פועל"
-#: install_steps_interactive.pm:1055
+#: install_steps_interactive.pm:1049
#, c-format
msgid "disabled"
msgstr "מנותק"
-#: install_steps_interactive.pm:1064
+#: install_steps_interactive.pm:1058
#, c-format
msgid "Boot"
msgstr "אתחול"
#. -PO: example: lilo-graphic on /dev/hda1
-#: install_steps_interactive.pm:1068
+#: install_steps_interactive.pm:1062
#, c-format
msgid "%s on %s"
msgstr "%s על %s"
-#: install_steps_interactive.pm:1079 services.pm:177
+#: install_steps_interactive.pm:1073 services.pm:177
#, c-format
msgid "Services: %d activated for %d registered"
msgstr "%d שרותים מופעלים מתוך %d שרותים מוגדרים"
-#: install_steps_interactive.pm:1089
+#: install_steps_interactive.pm:1083
#, c-format
msgid "You have not configured X. Are you sure you really want this?"
msgstr "לא הוגדר ממשק גרפי (X). האם אכן ברצונך לבחור אפשרות זו?"
-#: install_steps_interactive.pm:1147
+#: install_steps_interactive.pm:1141
#, c-format
msgid "Set root password and network authentication methods"
msgstr "קביעת סיסמת מנהל ושיטות זיהוי מבוססות רשת"
-#: install_steps_interactive.pm:1148
+#: install_steps_interactive.pm:1142
#, c-format
msgid "Set root password"
msgstr "הגדרת סיסמת מנהל (root)"
-#: install_steps_interactive.pm:1158
+#: install_steps_interactive.pm:1152
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr "הסיסמה הזו קצרה מדי (חייבת להכיל לפחות %d אותיות או סימנים)"
-#: install_steps_interactive.pm:1163 network/netconnect.pm:576
-#: standalone/drakauth:26 standalone/drakconnect:451
+#: install_steps_interactive.pm:1157 network/netconnect.pm:575
+#: standalone/drakauth:26 standalone/drakconnect:461
#, c-format
msgid "Authentication"
msgstr "אימות"
-#: install_steps_interactive.pm:1194
+#: install_steps_interactive.pm:1188
#, c-format
msgid "Preparing bootloader..."
msgstr "מכין את מנהל האתחול..."
-#: install_steps_interactive.pm:1204
+#: install_steps_interactive.pm:1198
#, c-format
msgid ""
"You appear to have an OldWorld or Unknown\n"
@@ -6309,12 +6316,12 @@ msgid ""
" need to use BootX or some other means to boot your machine"
msgstr ""
-#: install_steps_interactive.pm:1210
+#: install_steps_interactive.pm:1204
#, c-format
msgid "Do you want to use aboot?"
msgstr "האם ברצונך להשתמש בaboot?"
-#: install_steps_interactive.pm:1213
+#: install_steps_interactive.pm:1207
#, c-format
msgid ""
"Error installing aboot, \n"
@@ -6323,17 +6330,17 @@ msgstr ""
"שגיאה בהתקנת aboot,\n"
"האם לנסות לאלץ את ההתקנה אפילו אם המחיצה הראשונה עלולה להיהרס?"
-#: install_steps_interactive.pm:1224
+#: install_steps_interactive.pm:1218
#, c-format
msgid "Installing bootloader"
msgstr "מתקין את מנהל האתחול"
-#: install_steps_interactive.pm:1231
+#: install_steps_interactive.pm:1225
#, c-format
msgid "Installation of bootloader failed. The following error occured:"
msgstr "התקנת מנהל האתחול נכשלה. השגיאות הבאות התרחשו:"
-#: install_steps_interactive.pm:1236
+#: install_steps_interactive.pm:1230
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -6344,29 +6351,29 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: install_steps_interactive.pm:1249
+#: install_steps_interactive.pm:1243
#, c-format
msgid ""
"In this security level, access to the files in the Windows partition is "
"restricted to the administrator."
msgstr ""
-#: install_steps_interactive.pm:1281 standalone/drakautoinst:76
+#: install_steps_interactive.pm:1275 standalone/drakautoinst:76
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "נא להכניס תקליטון ריק לכונן %s"
-#: install_steps_interactive.pm:1286
+#: install_steps_interactive.pm:1280
#, c-format
msgid "Please insert another floppy for drivers disk"
msgstr "נא להכניס תקליטון אחר בשביל מנהלי התקנים"
-#: install_steps_interactive.pm:1288
+#: install_steps_interactive.pm:1282
#, c-format
msgid "Creating auto install floppy..."
msgstr "יוצר תקליטון הפעלה אוטומטית..."
-#: install_steps_interactive.pm:1300
+#: install_steps_interactive.pm:1294
#, c-format
msgid ""
"Some steps are not completed.\n"
@@ -6377,12 +6384,12 @@ msgstr ""
"\n"
"האם באמת ברצונך לצאת עכשיו?"
-#: install_steps_interactive.pm:1315
+#: install_steps_interactive.pm:1309
#, c-format
msgid "Generate auto install floppy"
msgstr "בניית תקליטון הפעלה אוטומטית"
-#: install_steps_interactive.pm:1317
+#: install_steps_interactive.pm:1311
#, c-format
msgid ""
"The auto install can be fully automated if wanted,\n"
@@ -6500,562 +6507,572 @@ msgstr ""
msgid "Re-submit"
msgstr "טען מחדש"
-#: keyboard.pm:137 keyboard.pm:169
+#: keyboard.pm:161 keyboard.pm:193
#, c-format
msgid "Czech (QWERTZ)"
msgstr "צ'כית (QWERTZ)"
-#: keyboard.pm:138 keyboard.pm:171
+#: keyboard.pm:162 keyboard.pm:195
#, c-format
msgid "German"
msgstr "גרמנית"
-#: keyboard.pm:139
+#: keyboard.pm:163
#, c-format
msgid "Dvorak"
msgstr ""
-#: keyboard.pm:140 keyboard.pm:179
+#: keyboard.pm:164 keyboard.pm:204
#, c-format
msgid "Spanish"
msgstr "ספרדית"
-#: keyboard.pm:141 keyboard.pm:180
+#: keyboard.pm:165 keyboard.pm:205
#, c-format
msgid "Finnish"
msgstr "פינית"
-#: keyboard.pm:142 keyboard.pm:181
+#: keyboard.pm:166 keyboard.pm:206
#, c-format
msgid "French"
msgstr "צרפתית"
-#: keyboard.pm:143 keyboard.pm:220
+#: keyboard.pm:167 keyboard.pm:246
#, c-format
msgid "Norwegian"
msgstr "נורבגית"
-#: keyboard.pm:144
+#: keyboard.pm:168
#, c-format
msgid "Polish"
msgstr "פולנית"
-#: keyboard.pm:145 keyboard.pm:229
+#: keyboard.pm:169 keyboard.pm:255
#, c-format
msgid "Russian"
msgstr "רוסית"
-#: keyboard.pm:147 keyboard.pm:233
+#: keyboard.pm:171 keyboard.pm:259
#, c-format
msgid "Swedish"
msgstr "שוודית"
-#: keyboard.pm:148 keyboard.pm:252
+#: keyboard.pm:172 keyboard.pm:278
#, c-format
msgid "UK keyboard"
msgstr "מקלדת אנגלית"
-#: keyboard.pm:149 keyboard.pm:253
+#: keyboard.pm:173 keyboard.pm:279
#, c-format
msgid "US keyboard"
msgstr "מקלדת ארה\"ב"
-#: keyboard.pm:151
+#: keyboard.pm:175
#, c-format
msgid "Albanian"
msgstr "אלבנית"
-#: keyboard.pm:152
+#: keyboard.pm:176
#, c-format
msgid "Armenian (old)"
msgstr "ארמנית (ישן)"
-#: keyboard.pm:153
+#: keyboard.pm:177
#, c-format
msgid "Armenian (typewriter)"
msgstr "ארמנית (מכונות כתיבה)"
-#: keyboard.pm:154
+#: keyboard.pm:178
#, c-format
msgid "Armenian (phonetic)"
msgstr "ארמנית (פונטית)"
-#: keyboard.pm:155
+#: keyboard.pm:179
#, c-format
msgid "Arabic"
msgstr "ערבית"
-#: keyboard.pm:156
+#: keyboard.pm:180
#, c-format
msgid "Azerbaidjani (latin)"
msgstr "אזרביג'אן (לטינית) "
-#: keyboard.pm:158
+#: keyboard.pm:182
#, c-format
msgid "Belgian"
msgstr "בלגית"
-#: keyboard.pm:159
+#: keyboard.pm:183
#, c-format
msgid "Bengali"
msgstr "בנגאלי"
-#: keyboard.pm:160
+#: keyboard.pm:184
#, c-format
msgid "Bulgarian (phonetic)"
msgstr "בולגרית (פונטית)"
-#: keyboard.pm:161
+#: keyboard.pm:185
#, c-format
msgid "Bulgarian (BDS)"
msgstr "בולגרית (BSD)"
-#: keyboard.pm:162
+#: keyboard.pm:186
#, c-format
msgid "Brazilian (ABNT-2)"
msgstr "ברזילאית (ABNT-2)"
-#: keyboard.pm:165
+#: keyboard.pm:189
#, c-format
msgid "Bosnian"
msgstr "בוסנית"
-#: keyboard.pm:166
+#: keyboard.pm:190
#, c-format
msgid "Belarusian"
msgstr "בלרוסית"
-#: keyboard.pm:167
+#: keyboard.pm:191
#, c-format
msgid "Swiss (German layout)"
msgstr "שוויץ (פריסה גרמנית)"
-#: keyboard.pm:168
+#: keyboard.pm:192
#, c-format
msgid "Swiss (French layout)"
msgstr "שווייץ (פריסה צרפתית)"
-#: keyboard.pm:170
+#: keyboard.pm:194
#, c-format
msgid "Czech (QWERTY)"
msgstr "צ'כית (QWERTY)"
-#: keyboard.pm:172
+#: keyboard.pm:196
#, c-format
msgid "German (no dead keys)"
msgstr "גרמנית (ללא מקשים מתים)"
-#: keyboard.pm:173
+#: keyboard.pm:197
#, c-format
msgid "Devanagari"
msgstr ""
-#: keyboard.pm:174
+#: keyboard.pm:198
#, c-format
msgid "Danish"
msgstr "דנית"
-#: keyboard.pm:175
+#: keyboard.pm:199
#, c-format
msgid "Dvorak (US)"
msgstr ""
-#: keyboard.pm:176
+#: keyboard.pm:200
+#, c-format
+msgid "Dvorak (Esperanto)"
+msgstr "דבורק (אספרנטו)"
+
+#: keyboard.pm:201
#, c-format
msgid "Dvorak (Norwegian)"
msgstr "דבורק (נורבגית)"
-#: keyboard.pm:177
+#: keyboard.pm:202
#, c-format
msgid "Dvorak (Swedish)"
msgstr ""
-#: keyboard.pm:178
+#: keyboard.pm:203
#, c-format
msgid "Estonian"
msgstr "אסטונית"
-#: keyboard.pm:182
+#: keyboard.pm:207
#, c-format
msgid "Georgian (\"Russian\" layout)"
msgstr "גגורג'יאנית (פריסה \"רוסית\")"
-#: keyboard.pm:183
+#: keyboard.pm:208
#, c-format
msgid "Georgian (\"Latin\" layout)"
msgstr "גורג'יאנית (פריסה \"לטינית\")"
-#: keyboard.pm:184
+#: keyboard.pm:209
#, c-format
msgid "Greek"
msgstr "יוונית"
-#: keyboard.pm:185
+#: keyboard.pm:210
#, c-format
msgid "Greek (polytonic)"
msgstr "יוונית (פוליטונית)"
-#: keyboard.pm:186
+#: keyboard.pm:211
#, c-format
msgid "Gujarati"
msgstr ""
-#: keyboard.pm:187
+#: keyboard.pm:212
#, c-format
msgid "Gurmukhi"
msgstr "גורמוקי"
-#: keyboard.pm:188
+#: keyboard.pm:213
#, c-format
msgid "Hungarian"
msgstr "הונגרית"
-#: keyboard.pm:189
+#: keyboard.pm:214
#, c-format
msgid "Croatian"
msgstr "קרואטית"
-#: keyboard.pm:190
+#: keyboard.pm:215
#, c-format
msgid "Irish"
msgstr "אירי"
-#: keyboard.pm:191
+#: keyboard.pm:216
#, c-format
msgid "Israeli"
msgstr "מקלדת ישראלית (רגילה)"
-#: keyboard.pm:192
+#: keyboard.pm:217
#, c-format
msgid "Israeli (Phonetic)"
msgstr "מקלדת ישראלית (פונטית)"
-#: keyboard.pm:193
+#: keyboard.pm:218
#, c-format
msgid "Iranian"
msgstr "אירנית"
-#: keyboard.pm:194
+#: keyboard.pm:219
#, c-format
msgid "Icelandic"
msgstr ""
-#: keyboard.pm:195
+#: keyboard.pm:220
#, c-format
msgid "Italian"
msgstr "איטלקית"
-#: keyboard.pm:196
+#: keyboard.pm:221
#, c-format
msgid "Inuktitut"
msgstr "אינוקטיטוט"
-#: keyboard.pm:200
+#: keyboard.pm:225
#, c-format
msgid "Japanese 106 keys"
msgstr "יפנית 106 תווים"
-#: keyboard.pm:201
+#: keyboard.pm:226
#, c-format
msgid "Kannada"
msgstr ""
-#: keyboard.pm:204
+#: keyboard.pm:229
#, c-format
msgid "Korean keyboard"
msgstr "מקלדת קוריאנית"
-#: keyboard.pm:205
+#: keyboard.pm:230
+#, c-format
+msgid "Kyrgyz keyboard"
+msgstr "מקלדת קירגיזית"
+
+#: keyboard.pm:231
#, c-format
msgid "Latin American"
msgstr "אמריקה הלטינית"
-#: keyboard.pm:206
+#: keyboard.pm:232
#, c-format
msgid "Laotian"
msgstr ""
-#: keyboard.pm:207
+#: keyboard.pm:233
#, c-format
msgid "Lithuanian AZERTY (old)"
msgstr ""
-#: keyboard.pm:209
+#: keyboard.pm:235
#, c-format
msgid "Lithuanian AZERTY (new)"
msgstr ""
-#: keyboard.pm:210
+#: keyboard.pm:236
#, c-format
msgid "Lithuanian \"number row\" QWERTY"
msgstr ""
-#: keyboard.pm:211
+#: keyboard.pm:237
#, c-format
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr ""
-#: keyboard.pm:212
+#: keyboard.pm:238
#, c-format
msgid "Latvian"
msgstr "לאטוויה"
-#: keyboard.pm:213
+#: keyboard.pm:239
#, c-format
msgid "Malayalam"
msgstr ""
-#: keyboard.pm:214
+#: keyboard.pm:240
#, c-format
msgid "Macedonian"
msgstr "מקדונית"
-#: keyboard.pm:215
+#: keyboard.pm:241
#, c-format
msgid "Myanmar (Burmese)"
msgstr ""
-#: keyboard.pm:216
+#: keyboard.pm:242
#, c-format
msgid "Mongolian (cyrillic)"
msgstr "מוגולית (קירילית)"
-#: keyboard.pm:217
+#: keyboard.pm:243
#, c-format
msgid "Maltese (UK)"
msgstr "מלטה (UK)"
-#: keyboard.pm:218
+#: keyboard.pm:244
#, c-format
msgid "Maltese (US)"
msgstr "מלטה (ארה\"ב)"
-#: keyboard.pm:219
+#: keyboard.pm:245
#, c-format
msgid "Dutch"
msgstr "צ'כית"
-#: keyboard.pm:221
+#: keyboard.pm:247
#, c-format
msgid "Oriya"
msgstr "אוריה"
-#: keyboard.pm:222
+#: keyboard.pm:248
#, c-format
msgid "Polish (qwerty layout)"
msgstr "פולנית (פריסת qwerty)"
-#: keyboard.pm:223
+#: keyboard.pm:249
#, c-format
msgid "Polish (qwertz layout)"
msgstr "פולנית (פריסת qwetrz)"
-#: keyboard.pm:224
+#: keyboard.pm:250
#, c-format
msgid "Portuguese"
msgstr "פורטוגזית"
-#: keyboard.pm:225
+#: keyboard.pm:251
#, c-format
msgid "Canadian (Quebec)"
msgstr "קנדית (קויבק)"
-#: keyboard.pm:227
+#: keyboard.pm:253
#, c-format
msgid "Romanian (qwertz)"
msgstr "רומנית (qwertz)"
-#: keyboard.pm:228
+#: keyboard.pm:254
#, c-format
msgid "Romanian (qwerty)"
msgstr "רומנית (qwerty)"
-#: keyboard.pm:230
+#: keyboard.pm:256
#, c-format
msgid "Russian (Phonetic)"
msgstr "רוסית (פונטית)"
-#: keyboard.pm:231
+#: keyboard.pm:257
#, c-format
msgid "Saami (norwegian)"
msgstr "סאמי (נורבגית)"
-#: keyboard.pm:232
+#: keyboard.pm:258
#, c-format
msgid "Saami (swedish/finnish)"
msgstr ""
-#: keyboard.pm:234
+#: keyboard.pm:260
#, c-format
msgid "Slovenian"
msgstr "סלובנית"
-#: keyboard.pm:235
+#: keyboard.pm:261
#, c-format
msgid "Slovakian (QWERTZ)"
msgstr "סלובקית (QWERTZ)"
-#: keyboard.pm:236
+#: keyboard.pm:262
#, c-format
msgid "Slovakian (QWERTY)"
msgstr "סלובקית (QWERTY)"
-#: keyboard.pm:238
+#: keyboard.pm:264
#, c-format
msgid "Serbian (cyrillic)"
msgstr "סרבית (קרילית)"
-#: keyboard.pm:239
+#: keyboard.pm:265
#, c-format
msgid "Syriac"
msgstr "סוריה"
-#: keyboard.pm:240
+#: keyboard.pm:266
#, c-format
msgid "Syriac (phonetic)"
msgstr "סורית (פונטית)"
-#: keyboard.pm:241
+#: keyboard.pm:267
#, c-format
msgid "Telugu"
msgstr "טאלוגו"
-#: keyboard.pm:243
+#: keyboard.pm:269
#, c-format
msgid "Tamil (ISCII-layout)"
msgstr ""
-#: keyboard.pm:244
+#: keyboard.pm:270
#, c-format
msgid "Tamil (Typewriter-layout)"
msgstr ""
-#: keyboard.pm:245
+#: keyboard.pm:271
#, c-format
msgid "Thai keyboard"
msgstr "מדלקת תאילנדית"
-#: keyboard.pm:247
+#: keyboard.pm:273
#, c-format
msgid "Tajik keyboard"
msgstr ""
-#: keyboard.pm:248
+#: keyboard.pm:274
#, c-format
msgid "Turkish (traditional \"F\" model)"
msgstr "טורקית (מודל \"F\" מסורתי)"
-#: keyboard.pm:249
+#: keyboard.pm:275
#, c-format
msgid "Turkish (modern \"Q\" model)"
msgstr "טורקית (דגם \"Q\" מודרני)"
-#: keyboard.pm:251
+#: keyboard.pm:277
#, c-format
msgid "Ukrainian"
msgstr "אוקראינית"
-#: keyboard.pm:254
+#: keyboard.pm:280
#, c-format
msgid "US keyboard (international)"
msgstr "מקלדת ארה\"ב (בינלאומית)"
-#: keyboard.pm:255
+#: keyboard.pm:281
#, c-format
msgid "Uzbek (cyrillic)"
msgstr ""
-#: keyboard.pm:256
+#: keyboard.pm:282
#, c-format
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "וייטנמית \"מספרים בשורה\" QWERTY"
-#: keyboard.pm:257
+#: keyboard.pm:283
#, c-format
msgid "Yugoslavian (latin)"
msgstr "יוגוסלבית (latin)"
-#: keyboard.pm:264
+#: keyboard.pm:290
#, c-format
msgid "Right Alt key"
msgstr "מקש Alt הימני"
-#: keyboard.pm:265
+#: keyboard.pm:291
#, c-format
msgid "Both Shift keys simultaneously"
msgstr "שני מקשי ה-Shift בו זמנית"
-#: keyboard.pm:266
+#: keyboard.pm:292
#, c-format
msgid "Control and Shift keys simultaneously"
msgstr "מקשי Ctrl ו-Shift בו-זמנית"
-#: keyboard.pm:267
+#: keyboard.pm:293
#, c-format
msgid "CapsLock key"
msgstr "מקש CapsLock"
-#: keyboard.pm:268
+#: keyboard.pm:294
#, c-format
msgid "Ctrl and Alt keys simultaneously"
msgstr "מקשי Ctrl ו-Alt בו זמנית"
-#: keyboard.pm:269
+#: keyboard.pm:295
#, c-format
msgid "Alt and Shift keys simultaneously"
msgstr "מקשי Alt ו-Shift בו זמנית"
-#: keyboard.pm:270
+#: keyboard.pm:296
#, c-format
msgid "\"Menu\" key"
msgstr "מקש \"תפריט\""
-#: keyboard.pm:271
+#: keyboard.pm:297
#, c-format
msgid "Left \"Windows\" key"
msgstr "מקש \"חלונות\" השמאלי"
-#: keyboard.pm:272
+#: keyboard.pm:298
#, c-format
msgid "Right \"Windows\" key"
msgstr "מקש \"חלונות\" הימני"
-#: keyboard.pm:273
+#: keyboard.pm:299
#, c-format
msgid "Both Control keys simultaneously"
msgstr "שני מקשי ה-Control בו זמנית"
-#: keyboard.pm:274
+#: keyboard.pm:300
#, c-format
msgid "Both Alt keys simultaneously"
msgstr "שני מקשי ה-Alt בו זמנית"
-#: keyboard.pm:275
+#: keyboard.pm:301
#, c-format
msgid "Left Shift key"
msgstr "מקש Shift השמאלי"
-#: keyboard.pm:276
+#: keyboard.pm:302
#, c-format
msgid "Right Shift key"
msgstr "מקש Shift הימני"
-#: keyboard.pm:277
+#: keyboard.pm:303
#, c-format
msgid "Left Alt key"
msgstr "מקש Alt השמאלי"
-#: keyboard.pm:278
+#: keyboard.pm:304
#, c-format
msgid "Left Control key"
msgstr "מקש Control השמאלי"
-#: keyboard.pm:279
+#: keyboard.pm:305
#, c-format
msgid "Right Control key"
msgstr "מקש Control הימני"
-#: keyboard.pm:310
+#: keyboard.pm:336
#, c-format
msgid ""
"Here you can choose the key or key combination that will \n"
@@ -7065,7 +7082,7 @@ msgstr ""
"בשלב זה עליך לבחור את שילוב המקשים שיאפשר לך להחליף\n"
"בין פריסות מקלדת שונות שהגדרת, ואשר מייצגות שפות שונות:"
-#: keyboard.pm:315
+#: keyboard.pm:341
#, c-format
msgid ""
"This setting will be activated after the installation.\n"
@@ -7076,1144 +7093,1144 @@ msgstr ""
"תופעל רק לאחר ההתקנה. במהלך ההתקנה עצמה,\n"
"מקש Control הימני משמש להחלפת פריסת מקלדת."
-#: lang.pm:151
+#: lang.pm:153
#, c-format
msgid "default:LTR"
msgstr "default:RTL"
-#: lang.pm:167
+#: lang.pm:169
#, c-format
msgid "Afghanistan"
msgstr "אפגניסטן"
-#: lang.pm:168
+#: lang.pm:170
#, c-format
msgid "Andorra"
msgstr "אנדורה"
-#: lang.pm:169
+#: lang.pm:171
#, c-format
msgid "United Arab Emirates"
msgstr "איחוד הנסיכויות הערביות"
-#: lang.pm:170
+#: lang.pm:172
#, c-format
msgid "Antigua and Barbuda"
msgstr "אנטיגה וברבודה"
-#: lang.pm:171
+#: lang.pm:173
#, c-format
msgid "Anguilla"
msgstr "אנגוויה"
-#: lang.pm:172
+#: lang.pm:174
#, c-format
msgid "Albania"
msgstr "אלבניה"
-#: lang.pm:173
+#: lang.pm:175
#, c-format
msgid "Armenia"
msgstr "ארמניה"
-#: lang.pm:174
+#: lang.pm:176
#, c-format
msgid "Netherlands Antilles"
msgstr "האנטילים ההולנדיים"
-#: lang.pm:175
+#: lang.pm:177
#, c-format
msgid "Angola"
msgstr "אנגולה"
-#: lang.pm:176
+#: lang.pm:178
#, c-format
msgid "Antarctica"
msgstr "אנטארקטיקה"
-#: lang.pm:177 standalone/drakxtv:48
+#: lang.pm:179 standalone/drakxtv:48
#, c-format
msgid "Argentina"
msgstr "ארגנטינה"
-#: lang.pm:178
+#: lang.pm:180
#, c-format
msgid "American Samoa"
msgstr "סמואה האמריקאית"
-#: lang.pm:180 standalone/drakxtv:46
+#: lang.pm:182 standalone/drakxtv:46
#, c-format
msgid "Australia"
msgstr "אוסטרליה"
-#: lang.pm:181
+#: lang.pm:183
#, c-format
msgid "Aruba"
msgstr "ארובה"
-#: lang.pm:182
+#: lang.pm:184
#, c-format
msgid "Azerbaijan"
msgstr "אזרביג'אן"
-#: lang.pm:183
+#: lang.pm:185
#, c-format
msgid "Bosnia and Herzegovina"
msgstr "בוסניה-הרצגובינה"
-#: lang.pm:184
+#: lang.pm:186
#, c-format
msgid "Barbados"
msgstr "ברבדוס"
-#: lang.pm:185
+#: lang.pm:187
#, c-format
msgid "Bangladesh"
msgstr "בנגלדש"
-#: lang.pm:187
+#: lang.pm:189
#, c-format
msgid "Burkina Faso"
msgstr "בורקינה פאסו"
-#: lang.pm:188
+#: lang.pm:190
#, c-format
msgid "Bulgaria"
msgstr "בולגריה"
-#: lang.pm:189
+#: lang.pm:191
#, c-format
msgid "Bahrain"
msgstr "בחריין"
-#: lang.pm:190
+#: lang.pm:192
#, c-format
msgid "Burundi"
msgstr "בורונדי"
-#: lang.pm:191
+#: lang.pm:193
#, c-format
msgid "Benin"
msgstr "בינן (דהומיי)"
-#: lang.pm:192
+#: lang.pm:194
#, c-format
msgid "Bermuda"
msgstr "ברמודה"
-#: lang.pm:193
+#: lang.pm:195
#, c-format
msgid "Brunei Darussalam"
msgstr "בורני דורסלם"
-#: lang.pm:194
+#: lang.pm:196
#, c-format
msgid "Bolivia"
msgstr "בוליביה"
-#: lang.pm:195
+#: lang.pm:197
#, c-format
msgid "Brazil"
msgstr "ברזיל"
-#: lang.pm:196
+#: lang.pm:198
#, c-format
msgid "Bahamas"
msgstr "איי בהאמה"
-#: lang.pm:197
+#: lang.pm:199
#, c-format
msgid "Bhutan"
msgstr "בהוטן"
-#: lang.pm:198
+#: lang.pm:200
#, c-format
msgid "Bouvet Island"
msgstr "אי Bouvet"
-#: lang.pm:199
+#: lang.pm:201
#, c-format
msgid "Botswana"
msgstr "בוטסואנה"
-#: lang.pm:200
+#: lang.pm:202
#, c-format
msgid "Belarus"
msgstr "בלרוס"
-#: lang.pm:201
+#: lang.pm:203
#, c-format
msgid "Belize"
msgstr "בליז"
-#: lang.pm:202
+#: lang.pm:204
#, c-format
msgid "Canada"
msgstr "קנדה"
-#: lang.pm:203
+#: lang.pm:205
#, c-format
msgid "Cocos (Keeling) Islands"
msgstr "איי קוקוס (Keeling)"
-#: lang.pm:204
+#: lang.pm:206
#, c-format
msgid "Congo (Kinshasa)"
msgstr "קונגו (קינסהסה)"
-#: lang.pm:205
+#: lang.pm:207
#, c-format
msgid "Central African Republic"
msgstr "הרפובליקה המרכז-אפריקאית"
-#: lang.pm:206
+#: lang.pm:208
#, c-format
msgid "Congo (Brazzaville)"
msgstr "קונגו (Brazzaville)"
-#: lang.pm:207
+#: lang.pm:209
#, c-format
msgid "Switzerland"
msgstr "שוייץ"
-#: lang.pm:208
+#: lang.pm:210
#, c-format
msgid "Cote d'Ivoire"
msgstr "חוף השנהב"
-#: lang.pm:209
+#: lang.pm:211
#, c-format
msgid "Cook Islands"
msgstr "איי קוק"
-#: lang.pm:210
+#: lang.pm:212
#, c-format
msgid "Chile"
msgstr "צ'ילה"
-#: lang.pm:211
+#: lang.pm:213
#, c-format
msgid "Cameroon"
msgstr "קמרון"
-#: lang.pm:212
+#: lang.pm:214
#, c-format
msgid "China"
msgstr "סין"
-#: lang.pm:213
+#: lang.pm:215
#, c-format
msgid "Colombia"
msgstr "קולומביה"
-#: lang.pm:215
+#: lang.pm:217
#, c-format
msgid "Cuba"
msgstr "קובה"
-#: lang.pm:216
+#: lang.pm:218
#, c-format
msgid "Cape Verde"
msgstr "Cape Verde"
-#: lang.pm:217
+#: lang.pm:219
#, c-format
msgid "Christmas Island"
msgstr "איי חַג הַמּוֹלָד"
-#: lang.pm:218
+#: lang.pm:220
#, c-format
msgid "Cyprus"
msgstr "קפריסין"
-#: lang.pm:221
+#: lang.pm:223
#, c-format
msgid "Djibouti"
msgstr "ג'יבוטי"
-#: lang.pm:222
+#: lang.pm:224
#, c-format
msgid "Denmark"
msgstr "דנמרק"
-#: lang.pm:223
+#: lang.pm:225
#, c-format
msgid "Dominica"
msgstr "דומיניקה"
-#: lang.pm:224
+#: lang.pm:226
#, c-format
msgid "Dominican Republic"
msgstr "הרפובליקה הדומיניקנית"
-#: lang.pm:225
+#: lang.pm:227
#, c-format
msgid "Algeria"
msgstr "אלג'יריה"
-#: lang.pm:226
+#: lang.pm:228
#, c-format
msgid "Ecuador"
msgstr "אקוודור"
-#: lang.pm:227
+#: lang.pm:229
#, c-format
msgid "Estonia"
msgstr "אסטוניה"
-#: lang.pm:228
+#: lang.pm:230
#, c-format
msgid "Egypt"
msgstr "מצריים"
-#: lang.pm:229
+#: lang.pm:231
#, c-format
msgid "Western Sahara"
msgstr "סהרה המערבית"
-#: lang.pm:230
+#: lang.pm:232
#, c-format
msgid "Eritrea"
msgstr "אריתריאה"
-#: lang.pm:231 network/adsl_consts.pm:202 network/adsl_consts.pm:210
+#: lang.pm:233 network/adsl_consts.pm:202 network/adsl_consts.pm:210
#: network/adsl_consts.pm:219 network/adsl_consts.pm:230
#, c-format
msgid "Spain"
msgstr "ספרד"
-#: lang.pm:232
+#: lang.pm:234
#, c-format
msgid "Ethiopia"
msgstr "אתיופיה"
-#: lang.pm:233 network/adsl_consts.pm:127
+#: lang.pm:235 network/adsl_consts.pm:127
#, c-format
msgid "Finland"
msgstr "פינלנד"
-#: lang.pm:234
+#: lang.pm:236
#, c-format
msgid "Fiji"
msgstr "פיג'י"
-#: lang.pm:235
+#: lang.pm:237
#, c-format
msgid "Falkland Islands (Malvinas)"
msgstr "איי פוקלנד (מאלבינאס) "
-#: lang.pm:236
+#: lang.pm:238
#, c-format
msgid "Micronesia"
msgstr "מיקרונזיה"
-#: lang.pm:237
+#: lang.pm:239
#, c-format
msgid "Faroe Islands"
msgstr "איי פארו"
-#: lang.pm:239
+#: lang.pm:241
#, c-format
msgid "Gabon"
msgstr "גבון"
-#: lang.pm:240 network/adsl_consts.pm:247 network/adsl_consts.pm:255
+#: lang.pm:242 network/adsl_consts.pm:247 network/adsl_consts.pm:255
#: network/netconnect.pm:51
#, c-format
msgid "United Kingdom"
msgstr "בריטניה"
-#: lang.pm:241
+#: lang.pm:243
#, c-format
msgid "Grenada"
msgstr "גרנדה"
-#: lang.pm:242
+#: lang.pm:244
#, c-format
msgid "Georgia"
msgstr "ג'ורג'יה"
-#: lang.pm:243
+#: lang.pm:245
#, c-format
msgid "French Guiana"
msgstr "גיאנה הצרפתית"
-#: lang.pm:244
+#: lang.pm:246
#, c-format
msgid "Ghana"
msgstr "גאנה"
-#: lang.pm:245
+#: lang.pm:247
#, c-format
msgid "Gibraltar"
msgstr "ג'יברלטר"
-#: lang.pm:246
+#: lang.pm:248
#, c-format
msgid "Greenland"
msgstr "גרינלנד"
-#: lang.pm:247
+#: lang.pm:249
#, c-format
msgid "Gambia"
msgstr "גמביה"
-#: lang.pm:248
+#: lang.pm:250
#, c-format
msgid "Guinea"
msgstr "גינאה"
-#: lang.pm:249
+#: lang.pm:251
#, c-format
msgid "Guadeloupe"
msgstr "גוואדלופ"
-#: lang.pm:250
+#: lang.pm:252
#, c-format
msgid "Equatorial Guinea"
msgstr "גיניאה המשוונית"
-#: lang.pm:252
+#: lang.pm:254
#, c-format
msgid "South Georgia and the South Sandwich Islands"
msgstr ""
-#: lang.pm:253
+#: lang.pm:255
#, c-format
msgid "Guatemala"
msgstr "גואטמלה"
-#: lang.pm:254
+#: lang.pm:256
#, c-format
msgid "Guam"
msgstr "גואם"
-#: lang.pm:255
+#: lang.pm:257
#, c-format
msgid "Guinea-Bissau"
msgstr "גיניאה ביסאו"
-#: lang.pm:256
+#: lang.pm:258
#, c-format
msgid "Guyana"
msgstr "גיאנה"
-#: lang.pm:257
+#: lang.pm:259
#, c-format
msgid "China (Hong Kong)"
msgstr "סין (הונג קונג)"
-#: lang.pm:258
+#: lang.pm:260
#, c-format
msgid "Heard and McDonald Islands"
msgstr "איי Heard ו-McDonald"
-#: lang.pm:259
+#: lang.pm:261
#, c-format
msgid "Honduras"
msgstr "הונדורס"
-#: lang.pm:260
+#: lang.pm:262
#, c-format
msgid "Croatia"
msgstr "קרואטיה"
-#: lang.pm:261
+#: lang.pm:263
#, c-format
msgid "Haiti"
msgstr "האיטי"
-#: lang.pm:262 network/adsl_consts.pm:152
+#: lang.pm:264 network/adsl_consts.pm:152
#, c-format
msgid "Hungary"
msgstr "הונגריה"
-#: lang.pm:263
+#: lang.pm:265
#, c-format
msgid "Indonesia"
msgstr "אינדונזיה"
-#: lang.pm:264 standalone/drakxtv:45
+#: lang.pm:266 standalone/drakxtv:45
#, c-format
msgid "Ireland"
msgstr "אירלנד"
-#: lang.pm:265
+#: lang.pm:267
#, c-format
msgid "Israel"
msgstr "ישראל"
-#: lang.pm:266
+#: lang.pm:268
#, c-format
msgid "India"
msgstr "הודו"
-#: lang.pm:267
+#: lang.pm:269
#, c-format
msgid "British Indian Ocean Territory"
msgstr "טריטוריית האוקיינוס הבריטי-הודי"
-#: lang.pm:268
+#: lang.pm:270
#, c-format
msgid "Iraq"
msgstr "עירק"
-#: lang.pm:269
+#: lang.pm:271
#, c-format
msgid "Iran"
msgstr "אירן"
-#: lang.pm:270
+#: lang.pm:272
#, c-format
msgid "Iceland"
msgstr "איסלנד"
-#: lang.pm:272
+#: lang.pm:274
#, c-format
msgid "Jamaica"
msgstr "ג'מייקה"
-#: lang.pm:273
+#: lang.pm:275
#, c-format
msgid "Jordan"
msgstr "ירדן"
-#: lang.pm:274
+#: lang.pm:276
#, c-format
msgid "Japan"
msgstr "יפן"
-#: lang.pm:275
+#: lang.pm:277
#, c-format
msgid "Kenya"
msgstr "קניה"
-#: lang.pm:276
+#: lang.pm:278
#, c-format
msgid "Kyrgyzstan"
msgstr "קירגיסטן"
-#: lang.pm:277
+#: lang.pm:279
#, c-format
msgid "Cambodia"
msgstr "קמבודיה"
-#: lang.pm:278
+#: lang.pm:280
#, c-format
msgid "Kiribati"
msgstr "קיריבטי"
-#: lang.pm:279
+#: lang.pm:281
#, c-format
msgid "Comoros"
msgstr "איי קומורו"
-#: lang.pm:280
+#: lang.pm:282
#, c-format
msgid "Saint Kitts and Nevis"
msgstr "סנט קיטס ונוויס"
-#: lang.pm:281
+#: lang.pm:283
#, c-format
msgid "Korea (North)"
msgstr "קוריאה (צפון)"
-#: lang.pm:282
+#: lang.pm:284
#, c-format
msgid "Korea"
msgstr "קוריאה"
-#: lang.pm:283
+#: lang.pm:285
#, c-format
msgid "Kuwait"
msgstr "כווית"
-#: lang.pm:284
+#: lang.pm:286
#, c-format
msgid "Cayman Islands"
msgstr "איי קיימאן"
-#: lang.pm:285
+#: lang.pm:287
#, c-format
msgid "Kazakhstan"
msgstr "קזחסטן"
-#: lang.pm:286
+#: lang.pm:288
#, c-format
msgid "Laos"
msgstr "לאוס"
-#: lang.pm:287
+#: lang.pm:289
#, c-format
msgid "Lebanon"
msgstr "לבנון"
-#: lang.pm:288
+#: lang.pm:290
#, c-format
msgid "Saint Lucia"
msgstr "סנט לוצ'יה"
-#: lang.pm:289
+#: lang.pm:291
#, c-format
msgid "Liechtenstein"
msgstr "ליכטנשטיין"
-#: lang.pm:290
+#: lang.pm:292
#, c-format
msgid "Sri Lanka"
msgstr "סרי לנקה"
-#: lang.pm:291
+#: lang.pm:293
#, c-format
msgid "Liberia"
msgstr "ליבריה"
-#: lang.pm:292
+#: lang.pm:294
#, c-format
msgid "Lesotho"
msgstr "לסוטו"
-#: lang.pm:293
+#: lang.pm:295
#, c-format
msgid "Lithuania"
msgstr "ליטא"
-#: lang.pm:294
+#: lang.pm:296
#, c-format
msgid "Luxembourg"
msgstr "לוכסמבורג"
-#: lang.pm:295
+#: lang.pm:297
#, c-format
msgid "Latvia"
msgstr "לטוויה"
-#: lang.pm:296
+#: lang.pm:298
#, c-format
msgid "Libya"
msgstr "לוב"
-#: lang.pm:297
+#: lang.pm:299
#, c-format
msgid "Morocco"
msgstr "מרוקו"
-#: lang.pm:298
+#: lang.pm:300
#, c-format
msgid "Monaco"
msgstr "מונקו"
-#: lang.pm:299
+#: lang.pm:301
#, c-format
msgid "Moldova"
msgstr "מולדובה"
-#: lang.pm:300
+#: lang.pm:302
#, c-format
msgid "Madagascar"
msgstr "מדגסקר"
-#: lang.pm:301
+#: lang.pm:303
#, c-format
msgid "Marshall Islands"
msgstr "איי מרשל"
-#: lang.pm:302
+#: lang.pm:304
#, c-format
msgid "Macedonia"
msgstr "מקדוניה"
-#: lang.pm:303
+#: lang.pm:305
#, c-format
msgid "Mali"
msgstr "מאלי"
-#: lang.pm:304
+#: lang.pm:306
#, c-format
msgid "Myanmar"
msgstr "מיאנמר"
-#: lang.pm:305
+#: lang.pm:307
#, c-format
msgid "Mongolia"
msgstr "מונגוליה"
-#: lang.pm:306
+#: lang.pm:308
#, c-format
msgid "Northern Mariana Islands"
msgstr "איי מריאנה הצפוניים"
-#: lang.pm:307
+#: lang.pm:309
#, c-format
msgid "Martinique"
msgstr "מרטיניק"
-#: lang.pm:308
+#: lang.pm:310
#, c-format
msgid "Mauritania"
msgstr "מאוריטניה"
-#: lang.pm:309
+#: lang.pm:311
#, c-format
msgid "Montserrat"
msgstr "מונסראט"
-#: lang.pm:310
+#: lang.pm:312
#, c-format
msgid "Malta"
msgstr "מלטה"
-#: lang.pm:311
+#: lang.pm:313
#, c-format
msgid "Mauritius"
msgstr "מאוריציוס"
-#: lang.pm:312
+#: lang.pm:314
#, c-format
msgid "Maldives"
msgstr "האיים המלדיביים"
-#: lang.pm:313
+#: lang.pm:315
#, c-format
msgid "Malawi"
msgstr "מלאווי"
-#: lang.pm:314
+#: lang.pm:316
#, c-format
msgid "Mexico"
msgstr "מקסיקו"
-#: lang.pm:315
+#: lang.pm:317
#, c-format
msgid "Malaysia"
msgstr "מלזיה"
-#: lang.pm:316
+#: lang.pm:318
#, c-format
msgid "Mozambique"
msgstr "מוזמביק"
-#: lang.pm:317
+#: lang.pm:319
#, c-format
msgid "Namibia"
msgstr "נמיביה"
-#: lang.pm:318
+#: lang.pm:320
#, c-format
msgid "New Caledonia"
msgstr "קלדוניה החדשה"
-#: lang.pm:319
+#: lang.pm:321
#, c-format
msgid "Niger"
msgstr "ניגר"
-#: lang.pm:320
+#: lang.pm:322
#, c-format
msgid "Norfolk Island"
msgstr "אי נורפולק"
-#: lang.pm:321
+#: lang.pm:323
#, c-format
msgid "Nigeria"
msgstr "ניגריה"
-#: lang.pm:322
+#: lang.pm:324
#, c-format
msgid "Nicaragua"
msgstr "ניקאראגואה"
-#: lang.pm:325
+#: lang.pm:327
#, c-format
msgid "Nepal"
msgstr "נפאל"
-#: lang.pm:326
+#: lang.pm:328
#, c-format
msgid "Nauru"
msgstr "נאורו"
-#: lang.pm:327
+#: lang.pm:329
#, c-format
msgid "Niue"
msgstr "Niue"
-#: lang.pm:328
+#: lang.pm:330
#, c-format
msgid "New Zealand"
msgstr "ניו-זילנד"
-#: lang.pm:329
+#: lang.pm:331
#, c-format
msgid "Oman"
msgstr "עומן"
-#: lang.pm:330
+#: lang.pm:332
#, c-format
msgid "Panama"
msgstr "פנמה"
-#: lang.pm:331
+#: lang.pm:333
#, c-format
msgid "Peru"
msgstr "פרו"
-#: lang.pm:332
+#: lang.pm:334
#, c-format
msgid "French Polynesia"
msgstr "פולינזיה הצָרְפָתִית"
-#: lang.pm:333
+#: lang.pm:335
#, c-format
msgid "Papua New Guinea"
msgstr "פאפואה-גינאה החדשה"
-#: lang.pm:334
+#: lang.pm:336
#, c-format
msgid "Philippines"
msgstr "הפיליפינים"
-#: lang.pm:335
+#: lang.pm:337
#, c-format
msgid "Pakistan"
msgstr "פקיסטן"
-#: lang.pm:336 network/adsl_consts.pm:186
+#: lang.pm:338 network/adsl_consts.pm:186
#, c-format
msgid "Poland"
msgstr "פולין"
-#: lang.pm:337
+#: lang.pm:339
#, c-format
msgid "Saint Pierre and Miquelon"
msgstr "סנט פייר ומיקואלון"
-#: lang.pm:338
+#: lang.pm:340
#, c-format
msgid "Pitcairn"
msgstr "Pitcairn"
-#: lang.pm:339
+#: lang.pm:341
#, c-format
msgid "Puerto Rico"
msgstr "פוארטו-ריקו"
-#: lang.pm:340
+#: lang.pm:342
#, c-format
msgid "Palestine"
msgstr "הרשות הפלסטינית"
-#: lang.pm:341 network/adsl_consts.pm:196
+#: lang.pm:343 network/adsl_consts.pm:196
#, c-format
msgid "Portugal"
msgstr "פורטוגל"
-#: lang.pm:342
+#: lang.pm:344
#, c-format
msgid "Paraguay"
msgstr "פרגוואי"
-#: lang.pm:343
+#: lang.pm:345
#, c-format
msgid "Palau"
msgstr "פאולו"
-#: lang.pm:344
+#: lang.pm:346
#, c-format
msgid "Qatar"
msgstr "קטאר"
-#: lang.pm:345
+#: lang.pm:347
#, c-format
msgid "Reunion"
msgstr "Reunion"
-#: lang.pm:346
+#: lang.pm:348
#, c-format
msgid "Romania"
msgstr "רומניה"
-#: lang.pm:347
+#: lang.pm:349
#, c-format
msgid "Russia"
msgstr "רוסיה"
-#: lang.pm:348
+#: lang.pm:350
#, c-format
msgid "Rwanda"
msgstr "רואנדה"
-#: lang.pm:349
+#: lang.pm:351
#, c-format
msgid "Saudi Arabia"
msgstr "ערב הסעודית"
-#: lang.pm:350
+#: lang.pm:352
#, c-format
msgid "Solomon Islands"
msgstr "איי שלמה"
-#: lang.pm:351
+#: lang.pm:353
#, c-format
msgid "Seychelles"
msgstr "איי סיישל"
-#: lang.pm:352
+#: lang.pm:354
#, c-format
msgid "Sudan"
msgstr "סודן"
-#: lang.pm:354
+#: lang.pm:356
#, c-format
msgid "Singapore"
msgstr "סינגפור"
-#: lang.pm:355
+#: lang.pm:357
#, c-format
msgid "Saint Helena"
msgstr "סנט הלנה"
-#: lang.pm:356
+#: lang.pm:358
#, c-format
msgid "Slovenia"
msgstr "סלובניה"
-#: lang.pm:357
+#: lang.pm:359
#, c-format
msgid "Svalbard and Jan Mayen Islands"
msgstr "איי Svalbard ואיי Jan Mayen"
-#: lang.pm:358
+#: lang.pm:360
#, c-format
msgid "Slovakia"
msgstr "סלובקיה"
-#: lang.pm:359
+#: lang.pm:361
#, c-format
msgid "Sierra Leone"
msgstr "סיירה ליאונה"
-#: lang.pm:360
+#: lang.pm:362
#, c-format
msgid "San Marino"
msgstr "סאן-מארינו"
-#: lang.pm:361
+#: lang.pm:363
#, c-format
msgid "Senegal"
msgstr "סנגל"
-#: lang.pm:362
+#: lang.pm:364
#, c-format
msgid "Somalia"
msgstr "סומליה"
-#: lang.pm:363
+#: lang.pm:365
#, c-format
msgid "Suriname"
msgstr "סורינאם"
-#: lang.pm:364
+#: lang.pm:366
#, c-format
msgid "Sao Tome and Principe"
msgstr "סאו תומה ופרינסיפה"
-#: lang.pm:365
+#: lang.pm:367
#, c-format
msgid "El Salvador"
msgstr "אל סלבדור"
-#: lang.pm:366
+#: lang.pm:368
#, c-format
msgid "Syria"
msgstr "סורינאם"
-#: lang.pm:367
+#: lang.pm:369
#, c-format
msgid "Swaziland"
msgstr "סווזילנד"
-#: lang.pm:368
+#: lang.pm:370
#, c-format
msgid "Turks and Caicos Islands"
msgstr "איי קייקוס"
-#: lang.pm:369
+#: lang.pm:371
#, c-format
msgid "Chad"
msgstr "צ'אד"
-#: lang.pm:370
+#: lang.pm:372
#, c-format
msgid "French Southern Territories"
msgstr "הטריטוריה הצרפתיתי הדרומית"
-#: lang.pm:371
+#: lang.pm:373
#, c-format
msgid "Togo"
msgstr "טוגו"
-#: lang.pm:372
+#: lang.pm:374
#, c-format
msgid "Thailand"
msgstr "תאילנד"
-#: lang.pm:373
+#: lang.pm:375
#, c-format
msgid "Tajikistan"
msgstr "טאנג'יקיסטן"
-#: lang.pm:374
+#: lang.pm:376
#, c-format
msgid "Tokelau"
msgstr "Tokelau"
-#: lang.pm:375
+#: lang.pm:377
#, c-format
msgid "East Timor"
msgstr "מזרח טימור"
-#: lang.pm:376
+#: lang.pm:378
#, c-format
msgid "Turkmenistan"
msgstr "טורקמניסטאן"
-#: lang.pm:377
+#: lang.pm:379
#, c-format
msgid "Tunisia"
msgstr "טוניסיה"
-#: lang.pm:378
+#: lang.pm:380
#, c-format
msgid "Tonga"
msgstr "טונגה"
-#: lang.pm:379
+#: lang.pm:381
#, c-format
msgid "Turkey"
msgstr "טורקיה"
-#: lang.pm:380
+#: lang.pm:382
#, c-format
msgid "Trinidad and Tobago"
msgstr "טרינידד וטובגו"
-#: lang.pm:381
+#: lang.pm:383
#, c-format
msgid "Tuvalu"
msgstr "טובאלו"
-#: lang.pm:382
+#: lang.pm:384
#, c-format
msgid "Taiwan"
msgstr "טאיוואן"
-#: lang.pm:383
+#: lang.pm:385
#, c-format
msgid "Tanzania"
msgstr ""
-#: lang.pm:384
+#: lang.pm:386
#, c-format
msgid "Ukraine"
msgstr "אוקראינה"
-#: lang.pm:385
+#: lang.pm:387
#, c-format
msgid "Uganda"
msgstr "אוגנדה"
-#: lang.pm:386
+#: lang.pm:388
#, c-format
msgid "United States Minor Outlying Islands"
msgstr "איי Minor Outlying של אר\"הב"
-#: lang.pm:388
+#: lang.pm:390
#, c-format
msgid "Uruguay"
msgstr "אורוגוואי"
-#: lang.pm:389
+#: lang.pm:391
#, c-format
msgid "Uzbekistan"
msgstr "אוזבקיסטן"
-#: lang.pm:390
+#: lang.pm:392
#, c-format
msgid "Vatican"
msgstr "ותיקן"
-#: lang.pm:391
+#: lang.pm:393
#, c-format
msgid "Saint Vincent and the Grenadines"
msgstr "סנט וינסנט והגרנידים"
-#: lang.pm:392
+#: lang.pm:394
#, c-format
msgid "Venezuela"
msgstr "ונצואלה"
-#: lang.pm:393
+#: lang.pm:395
#, c-format
msgid "Virgin Islands (British)"
msgstr "איי הבתולה הבריטיים"
-#: lang.pm:394
+#: lang.pm:396
#, c-format
msgid "Virgin Islands (U.S.)"
msgstr "איי הבתולה האמקריים (ארה\"ב)"
-#: lang.pm:395
+#: lang.pm:397
#, c-format
msgid "Vietnam"
msgstr "וייטנאם"
-#: lang.pm:396
+#: lang.pm:398
#, c-format
msgid "Vanuatu"
msgstr "ונואטו"
-#: lang.pm:397
+#: lang.pm:399
#, c-format
msgid "Wallis and Futuna"
msgstr ""
-#: lang.pm:398
+#: lang.pm:400
#, c-format
msgid "Samoa"
msgstr "סמואה"
-#: lang.pm:399
+#: lang.pm:401
#, c-format
msgid "Yemen"
msgstr "תימן"
-#: lang.pm:400
+#: lang.pm:402
#, c-format
msgid "Mayotte"
msgstr "מאיוט"
-#: lang.pm:401
+#: lang.pm:403
#, c-format
msgid "Serbia & Montenegro"
msgstr ""
-#: lang.pm:402 standalone/drakxtv:47
+#: lang.pm:404 standalone/drakxtv:47
#, c-format
msgid "South Africa"
msgstr "דרום אפריקה"
-#: lang.pm:403
+#: lang.pm:405
#, c-format
msgid "Zambia"
msgstr "זמביה"
-#: lang.pm:404
+#: lang.pm:406
#, c-format
msgid "Zimbabwe"
msgstr "זימבבואה"
-#: lang.pm:985
+#: lang.pm:1004
#, c-format
msgid "Welcome to %s"
msgstr "ברוכים הבאים ל- %s"
@@ -8228,7 +8245,7 @@ msgstr ""
msgid "Remove the logical volumes first\n"
msgstr ""
-#: modules/interactive.pm:21 standalone/drakconnect:969
+#: modules/interactive.pm:21 standalone/drakconnect:982
#, c-format
msgid "Parameters"
msgstr "פרמטרים"
@@ -8392,9 +8409,9 @@ msgstr "GlidePoint"
#: mouse.pm:36 network/modem.pm:42 network/modem.pm:43 network/modem.pm:44
#: network/modem.pm:58 network/modem.pm:72 network/modem.pm:77
-#: network/modem.pm:108 network/netconnect.pm:587 network/netconnect.pm:592
-#: network/netconnect.pm:604 network/netconnect.pm:609
-#: network/netconnect.pm:625 network/netconnect.pm:627
+#: network/modem.pm:108 network/netconnect.pm:586 network/netconnect.pm:591
+#: network/netconnect.pm:603 network/netconnect.pm:608
+#: network/netconnect.pm:624 network/netconnect.pm:626
#, c-format
msgid "Automatic"
msgstr "אוטומטי"
@@ -8549,17 +8566,17 @@ msgstr "כלום"
msgid "No mouse"
msgstr "ללא עכבר"
-#: mouse.pm:515
+#: mouse.pm:514
#, c-format
msgid "Please test the mouse"
msgstr "בדיקת הגדרות העכבר"
-#: mouse.pm:517
+#: mouse.pm:516
#, c-format
msgid "To activate the mouse,"
msgstr "יש לבדוק את תנועת העכבר,"
-#: mouse.pm:518
+#: mouse.pm:517
#, c-format
msgid "MOVE YOUR WHEEL!"
msgstr "וכן את הלחצנים והגלגלת (אם ישנה)."
@@ -8599,12 +8616,12 @@ msgstr "Sagem (using pppoa) usb"
msgid "Sagem (using dhcp) usb"
msgstr "Sagem (using dhcp) usb"
-#: network/adsl.pm:35 network/netconnect.pm:769
+#: network/adsl.pm:35 network/netconnect.pm:761
#, c-format
msgid "Connect to the Internet"
msgstr "חיבור לאינטרנט"
-#: network/adsl.pm:36 network/netconnect.pm:770
+#: network/adsl.pm:36 network/netconnect.pm:762
#, c-format
msgid ""
"The most common way to connect with adsl is pppoe.\n"
@@ -8615,7 +8632,7 @@ msgstr ""
"מסויימים משתמשים ב pptp, במקרים אחרים משתמשים\n"
"ב dhcp. ספק האינטרנט שלך יוכל לעזור בבחירת השיטה."
-#: network/adsl.pm:41 network/netconnect.pm:774
+#: network/adsl.pm:41 network/netconnect.pm:766
#, c-format
msgid "ADSL connection type :"
msgstr "סוגי חיבור ADSL :"
@@ -8670,12 +8687,17 @@ msgstr "שרת CUPS"
msgid "Echo request (ping)"
msgstr "בדיקת הידהוד (ping)"
-#: network/drakfirewall.pm:125
+#: network/drakfirewall.pm:65
+#, c-format
+msgid "BitTorrent"
+msgstr ""
+
+#: network/drakfirewall.pm:131
#, c-format
msgid "No network card"
msgstr "אין כרטיס רשת"
-#: network/drakfirewall.pm:146
+#: network/drakfirewall.pm:152
#, c-format
msgid ""
"drakfirewall configurator\n"
@@ -8685,7 +8707,7 @@ msgid ""
"specialized MandrakeSecurity Firewall distribution."
msgstr ""
-#: network/drakfirewall.pm:152
+#: network/drakfirewall.pm:158
#, c-format
msgid ""
"drakfirewall configurator\n"
@@ -8694,12 +8716,12 @@ msgid ""
"drakconnect before going any further."
msgstr ""
-#: network/drakfirewall.pm:169
+#: network/drakfirewall.pm:175
#, c-format
msgid "Which services would you like to allow the Internet to connect to?"
msgstr "לאיזה שרותים ברצונך לאפשר חיבור מהאינטרנט?"
-#: network/drakfirewall.pm:170
+#: network/drakfirewall.pm:176
#, c-format
msgid ""
"You can enter miscellaneous ports. \n"
@@ -8710,7 +8732,7 @@ msgstr ""
"לדוגמא: tcp/139 או udp/139. למידע נוסף\n"
"יש לעיין בקובץ /etc/services."
-#: network/drakfirewall.pm:176
+#: network/drakfirewall.pm:182
#, c-format
msgid ""
"Invalid port given: %s.\n"
@@ -8720,51 +8742,50 @@ msgid ""
"You can also give a range of ports (eg: 24300:24350/udp)"
msgstr ""
-#: network/drakfirewall.pm:186
+#: network/drakfirewall.pm:192
#, c-format
msgid "Everything (no firewall)"
msgstr "הכל (ללא חומת אש)"
-#: network/drakfirewall.pm:188
+#: network/drakfirewall.pm:194
#, c-format
msgid "Other ports"
msgstr "יציאות אחרות"
-#: network/isdn.pm:115 network/netconnect.pm:437
+#: network/isdn.pm:109 network/netconnect.pm:436
#, c-format
msgid "Unlisted - edit manually"
msgstr ""
-#: network/isdn.pm:157 network/netconnect.pm:389
+#: network/isdn.pm:151 network/netconnect.pm:385
#, c-format
msgid "ISA / PCMCIA"
msgstr "ISA / PCMCIA"
-#: network/isdn.pm:157 network/netconnect.pm:389
+#: network/isdn.pm:151 network/netconnect.pm:385
#, c-format
msgid "I don't know"
msgstr "לא ידוע"
-#: network/isdn.pm:158 network/netconnect.pm:389
+#: network/isdn.pm:152 network/netconnect.pm:385
#, c-format
msgid "PCI"
msgstr "PCI"
-#: network/isdn.pm:159 network/netconnect.pm:389
+#: network/isdn.pm:153 network/netconnect.pm:385
#, c-format
msgid "USB"
msgstr "USB"
#: network/modem.pm:42 network/modem.pm:43 network/modem.pm:44
-#: network/netconnect.pm:592 network/netconnect.pm:609
-#: network/netconnect.pm:625
+#: network/netconnect.pm:591 network/netconnect.pm:608
+#: network/netconnect.pm:624
#, c-format
msgid "Manual"
msgstr "ידני"
-#: network/netconnect.pm:88 network/netconnect.pm:466
-#: network/netconnect.pm:476 network/netconnect.pm:837
-#: network/netconnect.pm:842
+#: network/netconnect.pm:88 network/netconnect.pm:465
+#: network/netconnect.pm:475
#, c-format
msgid "Manual choice"
msgstr "בחירה ידנית"
@@ -8825,114 +8846,114 @@ msgstr "כתובת IP אוטומטית (BOOTP/DHCP/Zeroconf)"
msgid "Protocol for the rest of the world"
msgstr "פרוטוקול לשאר העולם"
-#: network/netconnect.pm:113 standalone/drakconnect:528
+#: network/netconnect.pm:113 standalone/drakconnect:541
#, c-format
msgid "European protocol (EDSS1)"
msgstr "פרוטוקול אירופאי (EDSS1)"
-#: network/netconnect.pm:114 standalone/drakconnect:529
+#: network/netconnect.pm:114 standalone/drakconnect:542
#, c-format
msgid ""
"Protocol for the rest of the world\n"
"No D-Channel (leased lines)"
msgstr ""
-#: network/netconnect.pm:146
+#: network/netconnect.pm:147
#, c-format
msgid "Alcatel speedtouch USB modem"
msgstr "מודם Alcatel speedtouch USB"
-#: network/netconnect.pm:147
+#: network/netconnect.pm:148
#, c-format
msgid "Sagem USB modem"
msgstr "מודם Sagem USB"
-#: network/netconnect.pm:148
+#: network/netconnect.pm:149
#, c-format
msgid "Bewan modem"
msgstr ""
-#: network/netconnect.pm:149
+#: network/netconnect.pm:150
#, c-format
msgid "ECI Hi-Focus modem"
msgstr ""
-#: network/netconnect.pm:153
+#: network/netconnect.pm:154
#, c-format
msgid "Dynamic Host Configuration Protocol (DHCP)"
msgstr "פרוטוקול הגדרת מארח באופן דינמי (DHCP)"
-#: network/netconnect.pm:154
+#: network/netconnect.pm:155
#, c-format
msgid "Manual TCP/IP configuration"
msgstr "הגדרה ידנית של TCP/IP"
-#: network/netconnect.pm:155
+#: network/netconnect.pm:156
#, c-format
msgid "Point to Point Tunneling Protocol (PPTP)"
msgstr "פרוטוקול ערוץ נקודה לנקודה (PPTP)"
-#: network/netconnect.pm:156
+#: network/netconnect.pm:157
#, c-format
msgid "PPP over Ethernet (PPPoE)"
msgstr "PPP מעל תשתית Ethernet (PPPoE)"
-#: network/netconnect.pm:157
+#: network/netconnect.pm:158
#, c-format
msgid "PPP over ATM (PPPoA)"
msgstr "PPP מעל תשתית ATM (PPPoA)"
-#: network/netconnect.pm:161
+#: network/netconnect.pm:162
#, c-format
msgid "Bridged Ethernet LLC"
msgstr "Bridged Ethernet LLC"
-#: network/netconnect.pm:162
+#: network/netconnect.pm:163
#, c-format
msgid "Bridged Ethernet VC"
msgstr "Bridged Ethernet VC"
-#: network/netconnect.pm:163
+#: network/netconnect.pm:164
#, c-format
msgid "Routed IP LLC"
msgstr "Routed IP LLC"
-#: network/netconnect.pm:164
+#: network/netconnect.pm:165
#, c-format
msgid "Routed IP VC"
msgstr "Routed IP VC"
-#: network/netconnect.pm:165
+#: network/netconnect.pm:166
#, c-format
msgid "PPPOA LLC"
msgstr "PPPOA LLC"
-#: network/netconnect.pm:166
+#: network/netconnect.pm:167
#, c-format
msgid "PPPOA VC"
msgstr "PPPOA VC"
-#: network/netconnect.pm:170 standalone/drakconnect:466
+#: network/netconnect.pm:171 standalone/drakconnect:477
#, c-format
msgid "Script-based"
msgstr "מבוסס תסריט (סקריפט)"
-#: network/netconnect.pm:171 standalone/drakconnect:466
+#: network/netconnect.pm:172 standalone/drakconnect:477
#, c-format
msgid "PAP"
msgstr "PAP"
-#: network/netconnect.pm:172 standalone/drakconnect:466
+#: network/netconnect.pm:173 standalone/drakconnect:477
#, c-format
msgid "Terminal-based"
msgstr "מבוסס-מסוף"
-#: network/netconnect.pm:173 standalone/drakconnect:466
+#: network/netconnect.pm:174 standalone/drakconnect:477
#, c-format
msgid "CHAP"
msgstr "CHAP"
-#: network/netconnect.pm:174 standalone/drakconnect:466
+#: network/netconnect.pm:175 standalone/drakconnect:477
#, c-format
msgid "PAP/CHAP"
msgstr "PAP/CHAP"
@@ -9006,32 +9027,32 @@ msgstr ""
"\n"
"יש ללחוץ על \"%s\" בכדי להמשיך."
-#: network/netconnect.pm:278 network/netconnect.pm:796
+#: network/netconnect.pm:278 network/netconnect.pm:788
#, c-format
msgid "Connection Configuration"
msgstr "הגדרת חיבור"
-#: network/netconnect.pm:279 network/netconnect.pm:797
+#: network/netconnect.pm:279 network/netconnect.pm:789
#, c-format
msgid "Please fill or check the field below"
msgstr "נא למלא או לבדוק את הערכים בטופס הבא:"
-#: network/netconnect.pm:286 standalone/drakconnect:519
+#: network/netconnect.pm:286 standalone/drakconnect:532
#, c-format
msgid "Card IRQ"
msgstr ""
-#: network/netconnect.pm:287 standalone/drakconnect:520
+#: network/netconnect.pm:287 standalone/drakconnect:533
#, c-format
msgid "Card mem (DMA)"
msgstr "כרטיס זכרון (DMA)"
-#: network/netconnect.pm:288 standalone/drakconnect:521
+#: network/netconnect.pm:288 standalone/drakconnect:534
#, c-format
msgid "Card IO"
msgstr "קלט פלט של הכרטיס"
-#: network/netconnect.pm:289 standalone/drakconnect:522
+#: network/netconnect.pm:289 standalone/drakconnect:535
#, c-format
msgid "Card IO_0"
msgstr ""
@@ -9046,12 +9067,12 @@ msgstr ""
msgid "Your personal phone number"
msgstr "מספר הטלפון הפרטי שלך"
-#: network/netconnect.pm:292 network/netconnect.pm:800
+#: network/netconnect.pm:292 network/netconnect.pm:792
#, c-format
msgid "Provider name (ex provider.net)"
msgstr "שם הספק (לדוגמה provider.net)"
-#: network/netconnect.pm:293 standalone/drakconnect:463
+#: network/netconnect.pm:293 standalone/drakconnect:473
#, c-format
msgid "Provider phone number"
msgstr "מספר הטלפון של הספק"
@@ -9066,76 +9087,71 @@ msgstr "שרת DNS ראשון של ספק השירות (לא חובה)"
msgid "Provider DNS 2 (optional)"
msgstr "שרת DNS משני של ספק השירות (לא חובה)"
-#: network/netconnect.pm:296 standalone/drakconnect:419
+#: network/netconnect.pm:296 standalone/drakconnect:429
#, c-format
msgid "Dialing mode"
msgstr "שיטת חיוג"
-#: network/netconnect.pm:297 standalone/drakconnect:424
-#: standalone/drakconnect:484
+#: network/netconnect.pm:297 standalone/drakconnect:434
+#: standalone/drakconnect:495
#, c-format
msgid "Connection speed"
msgstr "מהירות חיבור"
-#: network/netconnect.pm:298 standalone/drakconnect:429
+#: network/netconnect.pm:298 standalone/drakconnect:439
#, c-format
msgid "Connection timeout (in sec)"
msgstr ""
-#: network/netconnect.pm:301 network/netconnect.pm:803
-#: standalone/drakconnect:461
+#: network/netconnect.pm:301 network/netconnect.pm:795
+#: standalone/drakconnect:471
#, c-format
msgid "Account Login (user name)"
msgstr "שם משתמש (כניסה לחשבון)"
-#: network/netconnect.pm:302 network/netconnect.pm:804
-#: standalone/drakconnect:462
+#: network/netconnect.pm:302 network/netconnect.pm:796
+#: standalone/drakconnect:472
#, c-format
msgid "Account Password"
msgstr "סיסמת חשבון"
-#: network/netconnect.pm:332 network/netconnect.pm:650
-#: network/netconnect.pm:835
+#: network/netconnect.pm:332 network/netconnect.pm:649
+#: network/netconnect.pm:827
#, c-format
msgid "Select the network interface to configure:"
msgstr "עליך לבחור את ממשק הרשת שברצונך להגדיר:"
-#: network/netconnect.pm:334 network/netconnect.pm:379
-#: network/netconnect.pm:651 network/netconnect.pm:837 network/shorewall.pm:84
-#: standalone/drakconnect:643 standalone/drakgw:225 standalone/drakvpn:221
+#: network/netconnect.pm:334 network/netconnect.pm:375
+#: network/netconnect.pm:650 network/netconnect.pm:829 network/shorewall.pm:84
+#: standalone/drakconnect:656 standalone/drakgw:225 standalone/drakvpn:221
#, c-format
msgid "Net Device"
msgstr "התקן רשת"
-#: network/netconnect.pm:335 network/netconnect.pm:347
+#: network/netconnect.pm:335 network/netconnect.pm:343
#, c-format
msgid "External ISDN modem"
msgstr "מודם ISDN חיצוני"
-#: network/netconnect.pm:338 network/netconnect.pm:470
-#: network/netconnect.pm:655 standalone/drakgw:113 standalone/drakvpn:51
-#, c-format
-msgid "Sorry, we support only 2.4 and above kernels."
-msgstr "סליחה, קיימת תמיכה רק בגרעינים מסדרות 2.4 ומעלה בלבד."
-
-#: network/netconnect.pm:378 standalone/harddrake2:115
+#. -PO: Do not alter the <span ..> and </span> tags
+#: network/netconnect.pm:374 standalone/harddrake2:121
#, c-format
msgid "Select a device !"
msgstr "יש לבחור התקן!"
-#: network/netconnect.pm:387 network/netconnect.pm:397
-#: network/netconnect.pm:407 network/netconnect.pm:423
-#: network/netconnect.pm:434
+#: network/netconnect.pm:383 network/netconnect.pm:393
+#: network/netconnect.pm:403 network/netconnect.pm:419
+#: network/netconnect.pm:433
#, c-format
msgid "ISDN Configuration"
msgstr "הגדרת ISDN"
-#: network/netconnect.pm:388
+#: network/netconnect.pm:384
#, c-format
msgid "What kind of card do you have?"
msgstr "איזה סוג כרטיס יש לך?"
-#: network/netconnect.pm:398
+#: network/netconnect.pm:394
#, c-format
msgid ""
"\n"
@@ -9148,33 +9164,34 @@ msgstr ""
"אם יש לך כרטיס ISA הערכים במסך הבא אמורים להיות נכונים \n"
"אם יש לך כרטיס מסוג PCMCIA אתה צריך לציין את ה \"irq\" ו \"io\" של הכרטיס \n"
-#: network/netconnect.pm:402
+#: network/netconnect.pm:398
#, c-format
msgid "Continue"
msgstr "המשך"
-#: network/netconnect.pm:402
+#: network/netconnect.pm:398
#, c-format
msgid "Abort"
msgstr "ביטול"
-#: network/netconnect.pm:408
+#: network/netconnect.pm:404
#, c-format
msgid "Which of the following is your ISDN card?"
msgstr ""
-#: network/netconnect.pm:423
+#: network/netconnect.pm:419
#, c-format
msgid "Which protocol do you want to use?"
msgstr "באיזה פרוטוקול ברצונך להשתמש?"
-#: network/netconnect.pm:425 standalone/drakconnect:116
-#: standalone/drakconnect:527 standalone/drakvpn:1142
+#: network/netconnect.pm:421 standalone/drakconnect:116
+#: standalone/drakconnect:318 standalone/drakconnect:540
+#: standalone/drakvpn:1142
#, c-format
msgid "Protocol"
msgstr "פרוטוקול"
-#: network/netconnect.pm:434
+#: network/netconnect.pm:433
#, c-format
msgid ""
"Select your provider.\n"
@@ -9183,13 +9200,13 @@ msgstr ""
"עליך לבחור את ספק החומרה שלך. אם הספק\n"
"לא מופיע ברשימה עליך לבחור \"לא ברשימה\"."
-#: network/netconnect.pm:436 network/netconnect.pm:542
-#: network/netconnect.pm:690
+#: network/netconnect.pm:435 network/netconnect.pm:541
+#: network/netconnect.pm:683
#, c-format
msgid "Provider:"
msgstr "ספק שרות:"
-#: network/netconnect.pm:451
+#: network/netconnect.pm:450
#, c-format
msgid ""
"Your modem isn't supported by the system.\n"
@@ -9198,117 +9215,122 @@ msgstr ""
"המערכת אינה כוללת מנהל התקן מתאים למודם שלך. יש\n"
"לבקר באתר http://www.linmodems.org למידע נוסף."
-#: network/netconnect.pm:463
+#: network/netconnect.pm:462
#, c-format
msgid "Select the modem to configure:"
msgstr "עליך לבחור את המודם שברצונך להגדיר:"
-#: network/netconnect.pm:511
+#: network/netconnect.pm:469 standalone/drakgw:113 standalone/drakvpn:51
+#, c-format
+msgid "Sorry, we support only 2.4 and above kernels."
+msgstr "סליחה, קיימת תמיכה רק בגרעינים מסדרות 2.4 ומעלה בלבד."
+
+#: network/netconnect.pm:510
#, c-format
msgid "Please choose which serial port your modem is connected to."
msgstr ""
-#: network/netconnect.pm:540
+#: network/netconnect.pm:539
#, c-format
msgid "Select your provider:"
msgstr ""
-#: network/netconnect.pm:569
+#: network/netconnect.pm:568
#, c-format
msgid "Dialup: account options"
msgstr "חיוג: הגדרות חשבון"
-#: network/netconnect.pm:572
+#: network/netconnect.pm:571
#, c-format
msgid "Connection name"
msgstr "שם התחברות"
-#: network/netconnect.pm:573
+#: network/netconnect.pm:572
#, c-format
msgid "Phone number"
msgstr "מספר טלפון"
-#: network/netconnect.pm:574
+#: network/netconnect.pm:573
#, c-format
msgid "Login ID"
msgstr ""
-#: network/netconnect.pm:589 network/netconnect.pm:622
+#: network/netconnect.pm:588 network/netconnect.pm:621
#, c-format
msgid "Dialup: IP parameters"
msgstr "חיוג: נתוני IP"
-#: network/netconnect.pm:592
+#: network/netconnect.pm:591
#, c-format
msgid "IP parameters"
msgstr "מאפייני IP"
-#: network/netconnect.pm:593 network/netconnect.pm:927
+#: network/netconnect.pm:592 network/netconnect.pm:919
#: printer/printerdrake.pm:431 standalone/drakconnect:116
-#: standalone/drakconnect:325 standalone/drakconnect:816
+#: standalone/drakconnect:332 standalone/drakconnect:829
#: standalone/drakups:266
#, c-format
msgid "IP address"
msgstr "כתובת IP"
-#: network/netconnect.pm:594
+#: network/netconnect.pm:593
#, c-format
msgid "Subnet mask"
msgstr "מסיכת Subnet"
-#: network/netconnect.pm:606
+#: network/netconnect.pm:605
#, c-format
msgid "Dialup: DNS parameters"
msgstr ""
-#: network/netconnect.pm:609
+#: network/netconnect.pm:608
#, c-format
msgid "DNS"
msgstr "DNS"
-#: network/netconnect.pm:610
+#: network/netconnect.pm:609
#, c-format
msgid "Domain name"
msgstr ""
-#: network/netconnect.pm:611 network/netconnect.pm:801
-#: standalone/drakconnect:934
+#: network/netconnect.pm:610 network/netconnect.pm:793
+#: standalone/drakconnect:947
#, c-format
msgid "First DNS Server (optional)"
msgstr "שרת DNS ראשון (לא חובה)"
-#: network/netconnect.pm:612 network/netconnect.pm:802
-#: standalone/drakconnect:935
+#: network/netconnect.pm:611 network/netconnect.pm:794
+#: standalone/drakconnect:948
#, c-format
msgid "Second DNS Server (optional)"
msgstr "שרת DNS שני (לא חובה)"
-#: network/netconnect.pm:613
+#: network/netconnect.pm:612
#, c-format
msgid "Set hostname from IP"
msgstr "הגדרת שם מארח עפ\"י כתובת IP"
-#: network/netconnect.pm:625 standalone/drakconnect:336
+#: network/netconnect.pm:624 standalone/drakconnect:343
#, c-format
msgid "Gateway"
msgstr ""
-#: network/netconnect.pm:626
+#: network/netconnect.pm:625
#, c-format
msgid "Gateway IP address"
msgstr "כתובת IP של השער"
-#: network/netconnect.pm:650
+#: network/netconnect.pm:649
#, c-format
msgid "ADSL configuration"
msgstr "הגדרת ADSL"
-#: network/netconnect.pm:688
+#: network/netconnect.pm:681
#, c-format
msgid "Please choose your ADSL provider"
msgstr "עליך לבחור את ספק ה ADSL שלך"
-#: network/netconnect.pm:706
+#: network/netconnect.pm:699
#, c-format
msgid ""
"You need the Alcatel microcode.\n"
@@ -9316,32 +9338,32 @@ msgid ""
"or skip and do it later."
msgstr ""
-#: network/netconnect.pm:710 network/netconnect.pm:715
+#: network/netconnect.pm:703 network/netconnect.pm:708
#, c-format
msgid "Use a floppy"
msgstr "שימוש בתקליטון"
-#: network/netconnect.pm:710 network/netconnect.pm:719
+#: network/netconnect.pm:703 network/netconnect.pm:712
#, c-format
msgid "Use my Windows partition"
msgstr "השתמש במחיצת החלונות שלי"
-#: network/netconnect.pm:710 network/netconnect.pm:723
+#: network/netconnect.pm:703 network/netconnect.pm:715
#, c-format
msgid "Do it later"
msgstr "עשה את זה מאוחר יותר"
-#: network/netconnect.pm:730
+#: network/netconnect.pm:722
#, c-format
msgid "Firmware copy failed, file %s not found"
msgstr ""
-#: network/netconnect.pm:737
+#: network/netconnect.pm:729
#, c-format
msgid "Firmware copy succeeded"
msgstr ""
-#: network/netconnect.pm:752
+#: network/netconnect.pm:744
#, c-format
msgid ""
"You need the Alcatel microcode.\n"
@@ -9353,22 +9375,22 @@ msgstr ""
"מהאתר:%s\n"
"ולהעתיק הקובץ mgmt.o לתיקייה /usr/share/speedtouch"
-#: network/netconnect.pm:805
+#: network/netconnect.pm:797
#, c-format
msgid "Virtual Path ID (VPI):"
msgstr "זיהוי נתיב וירטואלי (VPI):"
-#: network/netconnect.pm:806
+#: network/netconnect.pm:798
#, c-format
msgid "Virtual Circuit ID (VCI):"
msgstr "זיהוי מעגל וירטואלי (VCI):"
-#: network/netconnect.pm:808
+#: network/netconnect.pm:800
#, c-format
msgid "Encapsulation :"
msgstr "מעטפת (Encapsulation):"
-#: network/netconnect.pm:825
+#: network/netconnect.pm:817
#, c-format
msgid ""
"The ECI Hi-Focus modem cannot be supported due to binary driver distribution "
@@ -9377,7 +9399,12 @@ msgid ""
"You can find a driver on http://eciadsl.flashtux.org/"
msgstr ""
-#: network/netconnect.pm:852
+#: network/netconnect.pm:829
+#, c-format
+msgid "Manually load a driver"
+msgstr ""
+
+#: network/netconnect.pm:844
#, c-format
msgid ""
"WARNING: this device has been previously configured to connect to the "
@@ -9386,7 +9413,7 @@ msgid ""
"Modifying the fields below will override this configuration."
msgstr ""
-#: network/netconnect.pm:865 network/netconnect.pm:1231
+#: network/netconnect.pm:857 network/netconnect.pm:1228
#, c-format
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
@@ -9395,17 +9422,17 @@ msgstr ""
"ברכותינו! הגדרת הרשת והאינטרנט הסתיימה.\n"
"\n"
-#: network/netconnect.pm:879
+#: network/netconnect.pm:871
#, c-format
msgid "Zeroconf hostname resolution"
msgstr "פענוח שם מארח Zeroconf"
-#: network/netconnect.pm:880 network/netconnect.pm:914
+#: network/netconnect.pm:872 network/netconnect.pm:906
#, c-format
msgid "Configuring network device %s (driver %s)"
msgstr "הגדרת התקן רשת %s (מנהל התקן %s)"
-#: network/netconnect.pm:881
+#: network/netconnect.pm:873
#, c-format
msgid ""
"The following protocols can be used to configure an ethernet connection. "
@@ -9415,7 +9442,7 @@ msgstr ""
"אחד הפרוטוקולים הבאים. עליך לבחור את\n"
"הפרוטוקול שבו ברצונך להשתמש:"
-#: network/netconnect.pm:915
+#: network/netconnect.pm:907
#, c-format
msgid ""
"Please enter the IP configuration for this machine.\n"
@@ -9426,108 +9453,108 @@ msgstr ""
"כל נתון אמור להיות בעל 4 שדות מופרדים\n"
"בנקודות, לדוגמה 1.2.3.4"
-#: network/netconnect.pm:922
+#: network/netconnect.pm:914
#, c-format
msgid "Assign host name from DHCP address"
msgstr ""
-#: network/netconnect.pm:923
+#: network/netconnect.pm:915
#, c-format
msgid "DHCP host name"
msgstr "שם מארח DHCP"
-#: network/netconnect.pm:928 standalone/drakconnect:330
-#: standalone/drakconnect:817 standalone/drakgw:321
+#: network/netconnect.pm:920 standalone/drakconnect:337
+#: standalone/drakconnect:830 standalone/drakgw:321
#, c-format
msgid "Netmask"
msgstr "מיסוך רשת"
-#: network/netconnect.pm:930 standalone/drakconnect:412
+#: network/netconnect.pm:922 standalone/drakconnect:422
#, c-format
msgid "Track network card id (useful for laptops)"
msgstr "מעקב אחר זיהוי כרטיס הרשת (שימושי במחשבים ניידים)"
-#: network/netconnect.pm:931 standalone/drakconnect:413
+#: network/netconnect.pm:923 standalone/drakconnect:423
#, c-format
msgid "Network Hotplugging"
msgstr "חיבור \"חם\" לרשת"
-#: network/netconnect.pm:932 standalone/drakconnect:407
+#: network/netconnect.pm:924 standalone/drakconnect:417
#, c-format
msgid "Start at boot"
msgstr "חיבור באתחול המערכת"
-#: network/netconnect.pm:934 standalone/drakconnect:820
+#: network/netconnect.pm:926 standalone/drakconnect:833
#, c-format
msgid "DHCP client"
msgstr "לקוח DHCP"
-#: network/netconnect.pm:944 printer/printerdrake.pm:1383
-#: standalone/drakconnect:608
+#: network/netconnect.pm:936 printer/printerdrake.pm:1383
+#: standalone/drakconnect:621
#, c-format
msgid "IP address should be in format 1.2.3.4"
msgstr "כתובת IP צריכה להראות ככה 1.2.3.4"
-#: network/netconnect.pm:947
+#: network/netconnect.pm:939
#, c-format
msgid "Warning : IP address %s is usually reserved !"
msgstr ""
-#: network/netconnect.pm:977 network/netconnect.pm:1006
+#: network/netconnect.pm:969 network/netconnect.pm:998
#, c-format
msgid "Please enter the wireless parameters for this card:"
msgstr ""
-#: network/netconnect.pm:980 standalone/drakconnect:378
+#: network/netconnect.pm:972 standalone/drakconnect:389
#, c-format
msgid "Operating Mode"
msgstr "אופן פעולה"
-#: network/netconnect.pm:982 standalone/drakconnect:379
+#: network/netconnect.pm:974 standalone/drakconnect:390
#, c-format
msgid "Network name (ESSID)"
msgstr "שם הרשת (ESSID)"
-#: network/netconnect.pm:983 standalone/drakconnect:380
+#: network/netconnect.pm:975 standalone/drakconnect:391
#, c-format
msgid "Network ID"
msgstr "זיהוי רשת"
-#: network/netconnect.pm:984 standalone/drakconnect:381
+#: network/netconnect.pm:976 standalone/drakconnect:392
#, c-format
msgid "Operating frequency"
msgstr ""
-#: network/netconnect.pm:985 standalone/drakconnect:382
+#: network/netconnect.pm:977 standalone/drakconnect:393
#, c-format
msgid "Sensitivity threshold"
msgstr ""
-#: network/netconnect.pm:986 standalone/drakconnect:383
+#: network/netconnect.pm:978 standalone/drakconnect:394
#, c-format
msgid "Bitrate (in b/s)"
msgstr ""
-#: network/netconnect.pm:992
+#: network/netconnect.pm:984
#, c-format
msgid ""
"Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz "
"frequency), or add enough '0' (zeroes)."
msgstr ""
-#: network/netconnect.pm:996
+#: network/netconnect.pm:988
#, c-format
msgid ""
"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
"enough '0' (zeroes)."
msgstr ""
-#: network/netconnect.pm:1009 standalone/drakconnect:394
+#: network/netconnect.pm:1001 standalone/drakconnect:405
#, c-format
msgid "RTS/CTS"
msgstr ""
-#: network/netconnect.pm:1010
+#: network/netconnect.pm:1002
#, c-format
msgid ""
"RTS/CTS adds a handshake before each packet transmission to make sure that "
@@ -9541,17 +9568,17 @@ msgid ""
"or off."
msgstr ""
-#: network/netconnect.pm:1017 standalone/drakconnect:395
+#: network/netconnect.pm:1009 standalone/drakconnect:406
#, c-format
msgid "Fragmentation"
msgstr "פיצוליות"
-#: network/netconnect.pm:1018 standalone/drakconnect:396
+#: network/netconnect.pm:1010 standalone/drakconnect:407
#, c-format
msgid "Iwconfig command extra arguments"
msgstr ""
-#: network/netconnect.pm:1019
+#: network/netconnect.pm:1011
#, c-format
msgid ""
"Here, one can configure some extra wireless parameters such as:\n"
@@ -9562,12 +9589,12 @@ msgid ""
msgstr ""
#. -PO: split the "xyz command extra argument" translated string into two lines if it's bigger than the english one
-#: network/netconnect.pm:1026 standalone/drakconnect:397
+#: network/netconnect.pm:1018 standalone/drakconnect:408
#, c-format
msgid "Iwspy command extra arguments"
msgstr ""
-#: network/netconnect.pm:1027
+#: network/netconnect.pm:1019
#, c-format
msgid ""
"Iwspy is used to set a list of addresses in a wireless network\n"
@@ -9579,12 +9606,12 @@ msgid ""
"See iwpspy(8) man page for further information."
msgstr ""
-#: network/netconnect.pm:1035 standalone/drakconnect:398
+#: network/netconnect.pm:1027 standalone/drakconnect:409
#, c-format
msgid "Iwpriv command extra arguments"
msgstr ""
-#: network/netconnect.pm:1036
+#: network/netconnect.pm:1028
#, c-format
msgid ""
"Iwpriv enable to set up optionals (private) parameters of a wireless "
@@ -9602,7 +9629,7 @@ msgid ""
"See iwpriv(8) man page for further information."
msgstr ""
-#: network/netconnect.pm:1063
+#: network/netconnect.pm:1055
#, c-format
msgid ""
"No ethernet network adapter has been detected on your system.\n"
@@ -9611,17 +9638,17 @@ msgstr ""
"לא נמצא מתאם רשת במערכת שלך.\n"
"אין אפשרות להגדיר סוג חיבור זה."
-#: network/netconnect.pm:1067 standalone/drakgw:261 standalone/drakpxe:142
+#: network/netconnect.pm:1059 standalone/drakgw:261 standalone/drakpxe:142
#, c-format
msgid "Choose the network interface"
msgstr ""
-#: network/netconnect.pm:1068
+#: network/netconnect.pm:1060
#, c-format
msgid "Please choose which network adapter you want to use to connect to Internet."
msgstr ""
-#: network/netconnect.pm:1089
+#: network/netconnect.pm:1081
#, c-format
msgid ""
"Please enter your host name.\n"
@@ -9634,67 +9661,67 @@ msgstr ""
"mybox.mylab.myco.co יש באפשרותך גם\n"
"להגדיר את כתובת ה-IP של השער אם יש לך אחד."
-#: network/netconnect.pm:1093
+#: network/netconnect.pm:1085
#, c-format
msgid "Last but not least you can also type in your DNS server IP addresses."
msgstr ""
-#: network/netconnect.pm:1095 standalone/drakconnect:933
+#: network/netconnect.pm:1087 standalone/drakconnect:946
#, c-format
msgid "Host name (optional)"
msgstr "שם מחשב (לא חובה)"
-#: network/netconnect.pm:1095
+#: network/netconnect.pm:1087
#, c-format
msgid "Host name"
msgstr "שם מארח"
-#: network/netconnect.pm:1097
+#: network/netconnect.pm:1089
#, c-format
msgid "DNS server 1"
msgstr "שרת DNS ראשון"
-#: network/netconnect.pm:1098
+#: network/netconnect.pm:1090
#, c-format
msgid "DNS server 2"
msgstr "שרת DNS שני"
-#: network/netconnect.pm:1099
+#: network/netconnect.pm:1091
#, c-format
msgid "DNS server 3"
msgstr "שרת DNS שלישי"
-#: network/netconnect.pm:1100
+#: network/netconnect.pm:1092
#, c-format
msgid "Search domain"
msgstr "חיפוש מתחם"
-#: network/netconnect.pm:1101
+#: network/netconnect.pm:1093
#, c-format
msgid "By default search domain will be set from the fully-qualified host name"
msgstr ""
-#: network/netconnect.pm:1102
+#: network/netconnect.pm:1094
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "שער (למשל %s)"
-#: network/netconnect.pm:1104
+#: network/netconnect.pm:1096
#, c-format
msgid "Gateway device"
msgstr "התקן שער"
-#: network/netconnect.pm:1113
+#: network/netconnect.pm:1105
#, c-format
msgid "DNS server address should be in format 1.2.3.4"
msgstr ""
-#: network/netconnect.pm:1118 standalone/drakconnect:611
+#: network/netconnect.pm:1110 standalone/drakconnect:624
#, c-format
msgid "Gateway address should be in format 1.2.3.4"
msgstr ""
-#: network/netconnect.pm:1129
+#: network/netconnect.pm:1121
#, c-format
msgid ""
"Enter a Zeroconf host name which will be the one that your machine will get "
@@ -9704,17 +9731,17 @@ msgstr ""
"לזיהוי המחשב בחיבור ישיר של מספר מחשבים\n"
"ברשת (מחשבים בעלי תכונת ZeroConf):"
-#: network/netconnect.pm:1130
+#: network/netconnect.pm:1122
#, c-format
msgid "Zeroconf Host name"
msgstr ""
-#: network/netconnect.pm:1133
+#: network/netconnect.pm:1125
#, c-format
msgid "Zeroconf host name must not contain a ."
msgstr "שם מארח Zeroconf חייב שלא להכיל a ."
-#: network/netconnect.pm:1143
+#: network/netconnect.pm:1135
#, c-format
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
@@ -9725,32 +9752,32 @@ msgstr ""
"עליך לבחור את חיבור ברירת המחדל\n"
"\n"
-#: network/netconnect.pm:1145
+#: network/netconnect.pm:1137
#, c-format
msgid "Internet connection"
msgstr "חיבור אינטרנט"
-#: network/netconnect.pm:1153
+#: network/netconnect.pm:1145
#, c-format
msgid "Configuration is complete, do you want to apply settings ?"
msgstr "הגדרת התצורה הסתיימה, האם להפעיל את ההגדרות?"
-#: network/netconnect.pm:1163
+#: network/netconnect.pm:1155
#, c-format
msgid "Do you want to start the connection at boot?"
msgstr "האם ברצונך לבצע את ההתחברות בזמן האתחול?"
-#: network/netconnect.pm:1175
+#: network/netconnect.pm:1172
#, c-format
msgid "The network needs to be restarted. Do you want to restart it ?"
msgstr "יש צורך לאתחל את הרשת. האם ברצונך לאתחל אותה עכשיו?"
-#: network/netconnect.pm:1182 network/netconnect.pm:1247
+#: network/netconnect.pm:1179 network/netconnect.pm:1244
#, c-format
msgid "Network Configuration"
msgstr "הגדרת הרשת"
-#: network/netconnect.pm:1183
+#: network/netconnect.pm:1180
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -9761,27 +9788,27 @@ msgstr ""
"\n"
"%s"
-#: network/netconnect.pm:1191
+#: network/netconnect.pm:1188
#, c-format
msgid "Do you want to try to connect to the Internet now?"
msgstr "האם לנסות להתחבר לאינטרנט עכשיו?"
-#: network/netconnect.pm:1199 standalone/drakconnect:965
+#: network/netconnect.pm:1196 standalone/drakconnect:978
#, c-format
msgid "Testing your connection..."
msgstr "בודק את החיבור שלך..."
-#: network/netconnect.pm:1215
+#: network/netconnect.pm:1212
#, c-format
msgid "The system is now connected to the Internet."
msgstr ""
-#: network/netconnect.pm:1216
+#: network/netconnect.pm:1213
#, c-format
msgid "For security reasons, it will be disconnected now."
msgstr ""
-#: network/netconnect.pm:1217
+#: network/netconnect.pm:1214
#, c-format
msgid ""
"The system doesn't seem to be connected to the Internet.\n"
@@ -9790,7 +9817,7 @@ msgstr ""
"נראה שהמערכת אינה מחוברת לאינטרנט.\n"
"כדאי לנסות להגדיר מחדש את החיבור שלך."
-#: network/netconnect.pm:1234
+#: network/netconnect.pm:1231
#, c-format
msgid ""
"After this is done, we recommend that you restart your X environment to "
@@ -9799,7 +9826,7 @@ msgstr ""
"עם סיום פעולה זו, אנו ממליצים לך לאתחל את הסביבה הגרפית שלך בכדי למנוע בעיות "
"שקשורות לשם המארח."
-#: network/netconnect.pm:1235
+#: network/netconnect.pm:1232
#, c-format
msgid ""
"Problems occured during configuration.\n"
@@ -9810,7 +9837,7 @@ msgstr ""
"נא לבדוק את החיבור דרך net_monitor או mcc. אם החיבור לא עובד, יהיה צורך "
"להריץ את תצורה שוב."
-#: network/netconnect.pm:1248
+#: network/netconnect.pm:1245
#, c-format
msgid ""
"Because you are doing a network installation, your network is already "
@@ -9819,7 +9846,7 @@ msgid ""
"Internet & Network connection.\n"
msgstr ""
-#: network/netconnect.pm:1336
+#: network/netconnect.pm:1333
#, c-format
msgid ""
"An unexpected error has happened:\n"
@@ -9880,34 +9907,34 @@ msgstr ""
"\t\teth0, או eth1 עבור חיבור כבלים, \n"
"\t\tippp+ עבור חיבור ISDN.\n"
-#: network/tools.pm:205
+#: network/tools.pm:165
#, c-format
msgid "Insert floppy"
msgstr "נא להכניס תקליטון"
-#: network/tools.pm:206
+#: network/tools.pm:166
#, c-format
msgid ""
"Insert a FAT formatted floppy in drive %s with %s in root directory and "
"press %s"
msgstr "יש להכניס תקליטון מפורמט כ FAT לכונן %s, עם %s בספריית שורש וללחוץ על %s"
-#: network/tools.pm:207
+#: network/tools.pm:167
#, c-format
msgid "Floppy access error, unable to mount device %s"
msgstr "שגיאת בעת גישה אל התקליטון. לא יכול לעגן את ההתקן %s"
-#: partition_table.pm:644
+#: partition_table.pm:645
#, c-format
msgid "mount failed: "
msgstr "העיגון נכשל:"
-#: partition_table.pm:749
+#: partition_table.pm:750
#, c-format
msgid "Extended partition not supported on this platform"
msgstr "מחיצה מורחבת לא נתמכת בפלטפורמה הזאת"
-#: partition_table.pm:767
+#: partition_table.pm:768
#, c-format
msgid ""
"You have a hole in your partition table but I can't use it.\n"
@@ -9918,17 +9945,17 @@ msgstr ""
"הפתרון היחידי הוא להזיז את המחיצה הראשית כדי למקם את השטח\n"
"הפנוי ליד המחיצות המורחבות."
-#: partition_table.pm:854
+#: partition_table.pm:855
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "שחזור מתוך קובץ %s נכשל: %s"
-#: partition_table.pm:856
+#: partition_table.pm:857
#, c-format
msgid "Bad backup file"
msgstr "קובץ גיבוי שגוי"
-#: partition_table.pm:876
+#: partition_table.pm:877
#, c-format
msgid "Error writing to file %s"
msgstr "שגיאה בכתיבה לקובץ %s"
@@ -10029,243 +10056,243 @@ msgstr "LPRng"
msgid "CUPS - Common Unix Printing System"
msgstr "CUPS - מערת הדפסה נפוצה של יוניקס"
-#: printer/detect.pm:148 printer/detect.pm:226 printer/detect.pm:428
-#: printer/detect.pm:465 printer/printerdrake.pm:686
+#: printer/detect.pm:149 printer/detect.pm:227 printer/detect.pm:429
+#: printer/detect.pm:466 printer/printerdrake.pm:686
#, c-format
msgid "Unknown Model"
msgstr "מודל לא ידוע"
-#: printer/main.pm:28
+#: printer/main.pm:29
#, c-format
msgid "Local printer"
msgstr "מדפסת מקומית"
-#: printer/main.pm:29
+#: printer/main.pm:30
#, c-format
msgid "Remote printer"
msgstr "מדפסת מרוחקת"
-#: printer/main.pm:30
+#: printer/main.pm:31
#, c-format
msgid "Printer on remote CUPS server"
msgstr "מדפסת על שרת cups מרוחק"
-#: printer/main.pm:31 printer/printerdrake.pm:1406
+#: printer/main.pm:32 printer/printerdrake.pm:1406
#, c-format
msgid "Printer on remote lpd server"
msgstr "מדפסת על שרת lpd מרוחק"
-#: printer/main.pm:32
+#: printer/main.pm:33
#, c-format
msgid "Network printer (TCP/Socket)"
msgstr "מדפסת רשת (TCP/Socket)"
-#: printer/main.pm:33
+#: printer/main.pm:34
#, c-format
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "מדפסת על שרת SMB/Windows 95/98/NT"
-#: printer/main.pm:34
+#: printer/main.pm:35
#, c-format
msgid "Printer on NetWare server"
msgstr ""
-#: printer/main.pm:35 printer/printerdrake.pm:1410
+#: printer/main.pm:36 printer/printerdrake.pm:1410
#, c-format
msgid "Enter a printer device URI"
msgstr "הכנס את כתובת של התקן הדפסה"
-#: printer/main.pm:36
+#: printer/main.pm:37
#, c-format
msgid "Pipe job into a command"
msgstr ""
-#: printer/main.pm:306 printer/main.pm:574 printer/main.pm:1544
-#: printer/main.pm:2228 printer/main.pm:2239 printer/printerdrake.pm:1866
+#: printer/main.pm:307 printer/main.pm:575 printer/main.pm:1545
+#: printer/main.pm:2229 printer/main.pm:2240 printer/printerdrake.pm:1866
#: printer/printerdrake.pm:4396
#, c-format
msgid "Unknown model"
msgstr "דגם לא ידוע"
-#: printer/main.pm:331 standalone/printerdrake:196
+#: printer/main.pm:332 standalone/printerdrake:196
#, c-format
msgid "Configured on this machine"
msgstr "מוגדרות על מערכת זו"
-#: printer/main.pm:337 printer/printerdrake.pm:963
+#: printer/main.pm:338 printer/printerdrake.pm:963
#, c-format
msgid " on parallel port #%s"
msgstr " על יציאה מקבילית #%s"
-#: printer/main.pm:340 printer/printerdrake.pm:965
+#: printer/main.pm:341 printer/printerdrake.pm:965
#, c-format
msgid ", USB printer #%s"
msgstr ", מדפסת USB #%s"
-#: printer/main.pm:342
+#: printer/main.pm:343
#, c-format
msgid ", USB printer"
msgstr ", מדפסת USB"
-#: printer/main.pm:347
+#: printer/main.pm:348
#, c-format
msgid ", multi-function device on parallel port #%s"
msgstr ", התקן רב תכליתי על יציאה מקבילית #%s"
-#: printer/main.pm:350
+#: printer/main.pm:351
#, c-format
msgid ", multi-function device on a parallel port"
msgstr ", התקן רב תכליתי על יציאה מקבילית"
-#: printer/main.pm:352
+#: printer/main.pm:353
#, c-format
msgid ", multi-function device on USB"
msgstr ""
-#: printer/main.pm:354
+#: printer/main.pm:355
#, c-format
msgid ", multi-function device on HP JetDirect"
msgstr ", התקן רב-תכליתי על HP JetDirect"
-#: printer/main.pm:356
+#: printer/main.pm:357
#, c-format
msgid ", multi-function device"
msgstr ", התקן רב-תכליתי"
-#: printer/main.pm:359
+#: printer/main.pm:360
#, c-format
msgid ", printing to %s"
msgstr ", הדפסה אל %s"
-#: printer/main.pm:361
+#: printer/main.pm:362
#, c-format
msgid " on LPD server \"%s\", printer \"%s\""
msgstr "על שרת LPD - \"%s\" מדפסת \"%s\""
-#: printer/main.pm:363
+#: printer/main.pm:364
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ", מארח TCP/IP \"%s\", פורט %s"
-#: printer/main.pm:367
+#: printer/main.pm:368
#, c-format
msgid " on SMB/Windows server \"%s\", share \"%s\""
msgstr "על שרת SMB/Windows \"%s\", שיתוף \"%s\""
-#: printer/main.pm:371
+#: printer/main.pm:372
#, c-format
msgid " on Novell server \"%s\", printer \"%s\""
msgstr "על שרת נובל \"%s\", מדפסת \"%s\""
-#: printer/main.pm:373
+#: printer/main.pm:374
#, c-format
msgid ", using command %s"
msgstr ", שימוש בפקודה %s"
-#: printer/main.pm:388
+#: printer/main.pm:389
#, c-format
msgid "Parallel port #%s"
msgstr "על יציאה מקבילית #%s"
-#: printer/main.pm:391 printer/printerdrake.pm:979
+#: printer/main.pm:392 printer/printerdrake.pm:979
#: printer/printerdrake.pm:1002 printer/printerdrake.pm:1020
#, c-format
msgid "USB printer #%s"
msgstr "מדפסת USB #%s"
-#: printer/main.pm:393
+#: printer/main.pm:394
#, c-format
msgid "USB printer"
msgstr "מדפסת USB"
-#: printer/main.pm:398
+#: printer/main.pm:399
#, c-format
msgid "Multi-function device on parallel port #%s"
msgstr "התקן רב תכליתי על יציאה מקבילית #%s"
-#: printer/main.pm:401
+#: printer/main.pm:402
#, c-format
msgid "Multi-function device on a parallel port"
msgstr "התקן רב תכליתי על ממשק מקבילי"
-#: printer/main.pm:403
+#: printer/main.pm:404
#, c-format
msgid "Multi-function device on USB"
msgstr "התקן רב תכליתי על USB"
-#: printer/main.pm:405
+#: printer/main.pm:406
#, c-format
msgid "Multi-function device on HP JetDirect"
msgstr "התקן רב תכליתי על HP JetDirect"
-#: printer/main.pm:407
+#: printer/main.pm:408
#, c-format
msgid "Multi-function device"
msgstr "התקן רב-תכליתי"
-#: printer/main.pm:410
+#: printer/main.pm:411
#, c-format
msgid "Prints into %s"
msgstr "הדפסה אל %s"
-#: printer/main.pm:412
+#: printer/main.pm:413
#, c-format
msgid "LPD server \"%s\", printer \"%s\""
msgstr "שרת LDP \"%s\", מדפסת \"%s\""
-#: printer/main.pm:414
+#: printer/main.pm:415
#, c-format
msgid "TCP/IP host \"%s\", port %s"
msgstr ", מארח TCP/IP \"%s\", פורט %s"
-#: printer/main.pm:418
+#: printer/main.pm:419
#, c-format
msgid "SMB/Windows server \"%s\", share \"%s\""
msgstr "על שרת SMB/Windows \"%s\", שיתוף \"%s\""
-#: printer/main.pm:422
+#: printer/main.pm:423
#, c-format
msgid "Novell server \"%s\", printer \"%s\""
msgstr "שרת נובל \"%s\", מדפסת \"%s\""
-#: printer/main.pm:424
+#: printer/main.pm:425
#, c-format
msgid "Uses command %s"
msgstr "שימוש בפקודה %s"
-#: printer/main.pm:426
+#: printer/main.pm:427
#, c-format
msgid "URI: %s"
msgstr ""
-#: printer/main.pm:571 printer/printerdrake.pm:732
+#: printer/main.pm:572 printer/printerdrake.pm:732
#: printer/printerdrake.pm:2463
#, c-format
msgid "Raw printer (No driver)"
msgstr "מדפסת כללית (ללא התקן)"
-#: printer/main.pm:1085 printer/printerdrake.pm:179
+#: printer/main.pm:1086 printer/printerdrake.pm:179
#: printer/printerdrake.pm:191
#, c-format
msgid "Local network(s)"
msgstr "רשת/ות מקומיות"
-#: printer/main.pm:1087 printer/printerdrake.pm:195
+#: printer/main.pm:1088 printer/printerdrake.pm:195
#, c-format
msgid "Interface \"%s\""
msgstr "ממשק \"%s\""
-#: printer/main.pm:1089
+#: printer/main.pm:1090
#, c-format
msgid "Network %s"
msgstr "רשת %s"
-#: printer/main.pm:1091
+#: printer/main.pm:1092
#, c-format
msgid "Host %s"
msgstr "מארח %s"
-#: printer/main.pm:1120
+#: printer/main.pm:1121
#, c-format
msgid "%s (Port %s)"
msgstr "%s (יציאה %s)"
@@ -10325,8 +10352,8 @@ msgstr "שיתוף מדפסות על מארחים/רשתות:"
msgid "Custom configuration"
msgstr "הגדרות מותאמות אישית"
-#: printer/printerdrake.pm:78 standalone/scannerdrake:561
-#: standalone/scannerdrake:578
+#: printer/printerdrake.pm:78 standalone/scannerdrake:566
+#: standalone/scannerdrake:583
#, c-format
msgid "No remote machines"
msgstr "אין מכונות מרוחקות"
@@ -10519,7 +10546,7 @@ msgid "This server is already in the list, it cannot be added again.\n"
msgstr "השרות כבר נימצא ברשימה ולכן אין אפשרות להוסיף אותו שנית.\n"
#: printer/printerdrake.pm:433 printer/printerdrake.pm:1650
-#: standalone/drakups:233 standalone/harddrake2:64
+#: standalone/drakups:233 standalone/harddrake2:68
#, c-format
msgid "Port"
msgstr ""
@@ -10548,7 +10575,7 @@ msgstr ""
#: printer/printerdrake.pm:4313 printer/printerdrake.pm:4459
#: printer/printerdrake.pm:4517 printer/printerdrake.pm:4546
#: standalone/printerdrake:65 standalone/printerdrake:85
-#: standalone/printerdrake:515
+#: standalone/printerdrake:522
#, c-format
msgid "Printerdrake"
msgstr "Printerdrake"
@@ -11156,14 +11183,12 @@ msgid "Remote printer name missing!"
msgstr "חסר שם מדפסת מרוחקת!"
#: printer/printerdrake.pm:1228 printer/printerdrake.pm:1799
-#: standalone/drakTermServ:466 standalone/drakTermServ:764
-#: standalone/drakTermServ:780 standalone/drakTermServ:1418
-#: standalone/drakTermServ:1426 standalone/drakTermServ:1437
-#: standalone/drakbackup:582 standalone/drakbackup:687
-#: standalone/drakbackup:722 standalone/drakbackup:840
-#: standalone/drakconnect:263 standalone/drakconnect:298
-#: standalone/drakconnect:542 standalone/drakconnect:552
-#: standalone/drakconnect:576 standalone/harddrake2:160
+#: standalone/drakTermServ:454 standalone/drakTermServ:753
+#: standalone/drakTermServ:769 standalone/drakTermServ:1432
+#: standalone/drakTermServ:1440 standalone/drakTermServ:1451
+#: standalone/drakbackup:512 standalone/drakbackup:618
+#: standalone/drakbackup:653 standalone/drakbackup:771
+#: standalone/harddrake2:166
#, c-format
msgid "Information"
msgstr "מידע"
@@ -11527,8 +11552,8 @@ msgstr ""
msgid "Name of printer"
msgstr "שם המדפסת"
-#: printer/printerdrake.pm:2302 standalone/drakconnect:557
-#: standalone/harddrake2:40 standalone/printerdrake:212
+#: printer/printerdrake.pm:2302 standalone/drakconnect:570
+#: standalone/harddrake2:41 standalone/printerdrake:212
#: standalone/printerdrake:219
#, c-format
msgid "Description"
@@ -12028,10 +12053,10 @@ msgstr "מדפיס על המדפסת \"%s\""
#: printer/printerdrake.pm:3293 printer/printerdrake.pm:3296
#: printer/printerdrake.pm:3297 printer/printerdrake.pm:3298
-#: printer/printerdrake.pm:4384 standalone/drakTermServ:325
-#: standalone/drakbackup:4265 standalone/drakbug:177 standalone/drakfont:500
-#: standalone/drakfont:591 standalone/net_monitor:106
-#: standalone/printerdrake:508
+#: printer/printerdrake.pm:4384 standalone/drakTermServ:313
+#: standalone/drakbackup:4063 standalone/drakbug:177 standalone/drakfont:500
+#: standalone/drakfont:591 standalone/net_monitor:107
+#: standalone/printerdrake:515
#, c-format
msgid "Close"
msgstr "סגור"
@@ -12561,15 +12586,15 @@ msgid "Could not set permissions of firmware file %s!"
msgstr ""
#: scanner.pm:200 standalone/scannerdrake:65 standalone/scannerdrake:69
-#: standalone/scannerdrake:77 standalone/scannerdrake:339
-#: standalone/scannerdrake:414 standalone/scannerdrake:458
-#: standalone/scannerdrake:462 standalone/scannerdrake:484
-#: standalone/scannerdrake:549
+#: standalone/scannerdrake:77 standalone/scannerdrake:344
+#: standalone/scannerdrake:419 standalone/scannerdrake:463
+#: standalone/scannerdrake:467 standalone/scannerdrake:489
+#: standalone/scannerdrake:554
#, c-format
msgid "Scannerdrake"
msgstr "Scannerdrake"
-#: scanner.pm:201 standalone/scannerdrake:915
+#: scanner.pm:201 standalone/scannerdrake:920
#, c-format
msgid "Could not install the packages needed to share your scanner(s)."
msgstr ""
@@ -13624,7 +13649,7 @@ msgstr ""
"מצטער, אין מידע \n"
"נוסף על שירות זה."
-#: services.pm:226 ugtk2.pm:1167
+#: services.pm:226 ugtk2.pm:1176
#, c-format
msgid "Info"
msgstr "מידע"
@@ -13871,8 +13896,8 @@ msgstr "אנו מזמינים אותך לבקר כבר היום בכתובת www
msgid "Become a <b>MandrakeClub</b> member!"
msgstr "באפשרותך להרשם לחברות במועדון מנדרייק!"
-#: share/advertising/dis-10.pl:15 share/advertising/ppp-10.pl:15
-#: share/advertising/pwp-09.pl:15
+#: share/advertising/dis-10.pl:15 share/advertising/dwd-07.pl:15
+#: share/advertising/ppp-10.pl:15 share/advertising/pwp-09.pl:15
#, c-format
msgid ""
"Take advantage of valuable benefits, products and services by joining "
@@ -14092,13 +14117,6 @@ msgstr ""
msgid "<b>Become a MandrakeClub member!</b>"
msgstr "באפשרותך להרשם לחברות למועדון מנדרייק!"
-#: share/advertising/dwd-07.pl:15
-#, c-format
-msgid ""
-"Take advantage of valuable benefits, products and services by joining "
-"Mandrake Club, such as:"
-msgstr "Mandrake Club מאפשר לך להנות מהטבות יקרות ערך, מוצרים ושרותים כגון:"
-
#: share/advertising/dwd-08.pl:14 share/advertising/ppp-11.pl:13
#: share/advertising/pwp-10.pl:13
#, c-format
@@ -14642,17 +14660,17 @@ msgstr ""
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
-#: standalone/drakTermServ:77
+#: standalone/drakTermServ:79
#, c-format
msgid "Useless without Terminal Server"
msgstr ""
-#: standalone/drakTermServ:114 standalone/drakTermServ:121
+#: standalone/drakTermServ:116 standalone/drakTermServ:123
#, c-format
msgid "%s: %s requires a username...\n"
msgstr ""
-#: standalone/drakTermServ:134
+#: standalone/drakTermServ:136
#, c-format
msgid ""
"%s: %s requires hostname, MAC address, IP, nbi-image, 0/1 for THIN_CLIENT, "
@@ -14661,78 +14679,73 @@ msgstr ""
"%s: %s מצריך שם תחנה, כתובת MAC, כתובת IP, nbi-image, 0/1 עבור לקוח רזה, וגם "
"0/1 בשביל תצורה מקומית\n"
-#: standalone/drakTermServ:141
+#: standalone/drakTermServ:143
#, c-format
msgid "%s: %s requires hostname...\n"
msgstr "%s: %s דורש שם מארח...\n"
-#: standalone/drakTermServ:153
-#, c-format
-msgid "You must be root to read configuration file. \n"
-msgstr "אתה חייב להיות מנהל (root) בכדי לקרוא את קבצי ההגדרות. \n"
-
-#: standalone/drakTermServ:238 standalone/drakTermServ:512
+#: standalone/drakTermServ:226 standalone/drakTermServ:500
#: standalone/drakfont:575
#, c-format
msgid "OK"
msgstr "אישור"
-#: standalone/drakTermServ:249 standalone/drakTermServ:252
+#: standalone/drakTermServ:237 standalone/drakTermServ:240
#, c-format
msgid "Terminal Server Configuration"
msgstr "הגדרת Terminal Server"
-#: standalone/drakTermServ:267
+#: standalone/drakTermServ:255
#, c-format
msgid "Enable Server"
msgstr "אפשר שרת"
-#: standalone/drakTermServ:273
+#: standalone/drakTermServ:261
#, c-format
msgid "Disable Server"
msgstr "בטל שרת"
-#: standalone/drakTermServ:281
+#: standalone/drakTermServ:269
#, c-format
msgid "Start Server"
msgstr "התחל את השרת"
-#: standalone/drakTermServ:287
+#: standalone/drakTermServ:275
#, c-format
msgid "Stop Server"
msgstr "עצירת השרת"
-#: standalone/drakTermServ:295
+#: standalone/drakTermServ:283
#, c-format
msgid "Etherboot Floppy/ISO"
msgstr ""
-#: standalone/drakTermServ:299
+#: standalone/drakTermServ:287
#, c-format
msgid "Net Boot Images"
msgstr ""
-#: standalone/drakTermServ:305
+#: standalone/drakTermServ:293
#, c-format
msgid "Add/Del Users"
msgstr ""
-#: standalone/drakTermServ:309
+#: standalone/drakTermServ:297
#, c-format
msgid "Add/Del Clients"
msgstr ""
-#: standalone/drakTermServ:320 standalone/drakbug:54
+#: standalone/drakTermServ:308 standalone/drakbug:54
#, c-format
msgid "First Time Wizard"
msgstr "אשף הפעם הראשונה"
-#: standalone/drakTermServ:352 standalone/drakTermServ:353
+#: standalone/drakTermServ:340 standalone/drakTermServ:341
#, c-format
msgid "%s defined as dm, adding gdm user to /etc/passwd$$CLIENT$$"
msgstr ""
-#: standalone/drakTermServ:359
+#: standalone/drakTermServ:347
#, c-format
msgid ""
"\n"
@@ -14755,22 +14768,22 @@ msgid ""
" f) If it's thin clients, ask if you want to restart KDM.\n"
msgstr ""
-#: standalone/drakTermServ:404
+#: standalone/drakTermServ:392
#, c-format
msgid "Cancel Wizard"
msgstr "ביטול האשף"
-#: standalone/drakTermServ:416
+#: standalone/drakTermServ:404
#, c-format
msgid "Please save dhcpd config!"
msgstr ""
-#: standalone/drakTermServ:444
+#: standalone/drakTermServ:432
#, c-format
msgid "Use thin clients."
msgstr "אפשר לקוחות רזים"
-#: standalone/drakTermServ:446
+#: standalone/drakTermServ:434
#, c-format
msgid ""
"Please select default client type.\n"
@@ -14779,45 +14792,45 @@ msgid ""
" 'Fat' clients use their own CPU/RAM but the server's filesystem."
msgstr ""
-#: standalone/drakTermServ:458 standalone/drakTermServ:1072
+#: standalone/drakTermServ:446 standalone/drakTermServ:1061
#, c-format
msgid "Sync client X keyboard settings with server."
msgstr ""
-#: standalone/drakTermServ:465
+#: standalone/drakTermServ:453
#, c-format
msgid "Creating net boot images for all kernels"
msgstr ""
-#: standalone/drakTermServ:466 standalone/drakTermServ:764
-#: standalone/drakTermServ:780
+#: standalone/drakTermServ:454 standalone/drakTermServ:753
+#: standalone/drakTermServ:769
#, c-format
msgid "This will take a few minutes."
msgstr "פעולה זו תמשך מספר דקות "
-#: standalone/drakTermServ:470 standalone/drakTermServ:490
+#: standalone/drakTermServ:458 standalone/drakTermServ:478
#, c-format
msgid "Done!"
msgstr "הסתיים!"
-#: standalone/drakTermServ:476
+#: standalone/drakTermServ:464
#, c-format
msgid "Syncing server user list with client list, including root."
msgstr ""
-#: standalone/drakTermServ:496
+#: standalone/drakTermServ:484
#, c-format
msgid ""
"In order to enable changes made for thin clients, the display manager must "
"be restarted. Restart now?"
msgstr ""
-#: standalone/drakTermServ:531
+#: standalone/drakTermServ:519
#, c-format
msgid "Terminal Server Overview"
msgstr "סקירת Terminal Server"
-#: standalone/drakTermServ:532
+#: standalone/drakTermServ:520
#, c-format
msgid ""
" - Create Etherboot Enabled Boot Images:\n"
@@ -14833,7 +14846,7 @@ msgid ""
"one full kernel."
msgstr ""
-#: standalone/drakTermServ:538
+#: standalone/drakTermServ:526
#, c-format
msgid ""
" - Maintain /etc/dhcpd.conf:\n"
@@ -14853,7 +14866,7 @@ msgid ""
"like:"
msgstr ""
-#: standalone/drakTermServ:556
+#: standalone/drakTermServ:544
#, c-format
msgid ""
" While you can use a pool of IP addresses, rather than setup a "
@@ -14892,7 +14905,7 @@ msgid ""
"clients."
msgstr ""
-#: standalone/drakTermServ:576
+#: standalone/drakTermServ:564
#, c-format
msgid ""
" - Maintain /etc/exports:\n"
@@ -14910,7 +14923,7 @@ msgid ""
" \tWith SUBNET/MASK being defined for your network."
msgstr ""
-#: standalone/drakTermServ:588
+#: standalone/drakTermServ:576
#, c-format
msgid ""
" - Maintain %s:\n"
@@ -14921,7 +14934,7 @@ msgid ""
"file."
msgstr ""
-#: standalone/drakTermServ:592
+#: standalone/drakTermServ:580
#, c-format
msgid ""
" - Per client %s:\n"
@@ -14932,7 +14945,7 @@ msgid ""
" \tdrakTermServ will help create these files."
msgstr ""
-#: standalone/drakTermServ:597
+#: standalone/drakTermServ:585
#, c-format
msgid ""
" - Per client system configuration files:\n"
@@ -14952,7 +14965,7 @@ msgid ""
"machine is configured."
msgstr ""
-#: standalone/drakTermServ:606
+#: standalone/drakTermServ:594
#, c-format
msgid ""
" - /etc/xinetd.d/tftp:\n"
@@ -14982,7 +14995,7 @@ msgid ""
" \tputs its images."
msgstr ""
-#: standalone/drakTermServ:627
+#: standalone/drakTermServ:615
#, c-format
msgid ""
" - Create etherboot floppies/CDs:\n"
@@ -15000,62 +15013,62 @@ msgid ""
" \t\t/usr/lib/etherboot/zimg/3c509.zimg > /dev/fd0"
msgstr ""
-#: standalone/drakTermServ:662
+#: standalone/drakTermServ:650
#, c-format
msgid "Boot Floppy"
msgstr "תקליטון איתחול"
-#: standalone/drakTermServ:664
+#: standalone/drakTermServ:652
#, c-format
msgid "Boot ISO"
msgstr "Boot ISO"
-#: standalone/drakTermServ:666
+#: standalone/drakTermServ:654
#, c-format
msgid "PXE Image"
msgstr "תצורת PXE"
-#: standalone/drakTermServ:735
+#: standalone/drakTermServ:723
#, c-format
msgid "Default kernel version"
msgstr "גרסת ברירת מחדל של הגרעין"
-#: standalone/drakTermServ:762
+#: standalone/drakTermServ:751
#, c-format
msgid "Build Whole Kernel -->"
msgstr "בניית גרעין שלמה -->"
-#: standalone/drakTermServ:769
+#: standalone/drakTermServ:758
#, c-format
msgid "No kernel selected!"
msgstr "לא נבחר גרעין!"
-#: standalone/drakTermServ:772
+#: standalone/drakTermServ:761
#, c-format
msgid "Build Single NIC -->"
msgstr ""
-#: standalone/drakTermServ:776
+#: standalone/drakTermServ:765
#, c-format
msgid "No NIC selected!"
msgstr "לא נבחר כרטיס רשת!"
-#: standalone/drakTermServ:779
+#: standalone/drakTermServ:768
#, c-format
msgid "Build All Kernels -->"
msgstr "בניית כל הגרעינים -->"
-#: standalone/drakTermServ:787
+#: standalone/drakTermServ:776
#, c-format
msgid "<-- Delete"
msgstr " <-- מחיקה "
-#: standalone/drakTermServ:794
+#: standalone/drakTermServ:783
#, c-format
msgid "Delete All NBIs"
msgstr ""
-#: standalone/drakTermServ:881
+#: standalone/drakTermServ:870
#, c-format
msgid ""
"!!! Indicates the password in the system database is different than\n"
@@ -15063,94 +15076,94 @@ msgid ""
"Delete/re-add the user to the Terminal Server to enable login."
msgstr ""
-#: standalone/drakTermServ:886
+#: standalone/drakTermServ:875
#, c-format
msgid "Add User -->"
msgstr "הוספת משתמש -->"
-#: standalone/drakTermServ:892
+#: standalone/drakTermServ:881
#, c-format
msgid "<-- Del User"
msgstr "<- מחיקת משתמש"
-#: standalone/drakTermServ:928
+#: standalone/drakTermServ:917
#, c-format
msgid "type: %s"
msgstr ""
-#: standalone/drakTermServ:932
+#: standalone/drakTermServ:921
#, c-format
msgid "local config: %s"
msgstr ""
-#: standalone/drakTermServ:962
+#: standalone/drakTermServ:951
#, c-format
msgid ""
"Allow local hardware\n"
"configuration."
msgstr "אפשר הגדרות חומרה מקומיות"
-#: standalone/drakTermServ:971
+#: standalone/drakTermServ:960
#, c-format
msgid "No net boot images created!"
msgstr "לא נבחרו מראות אתחול לרשת!"
-#: standalone/drakTermServ:989
+#: standalone/drakTermServ:978
#, c-format
msgid "Thin Client"
msgstr "לקוח רזה"
-#: standalone/drakTermServ:993
+#: standalone/drakTermServ:982
#, c-format
msgid "Allow Thin Clients"
msgstr "אפשר לקוחות רזים"
-#: standalone/drakTermServ:994
+#: standalone/drakTermServ:983
#, c-format
msgid "Add Client -->"
msgstr ""
-#: standalone/drakTermServ:1008
+#: standalone/drakTermServ:997
#, c-format
msgid "type: fat"
msgstr "סוג: שמן"
-#: standalone/drakTermServ:1009
+#: standalone/drakTermServ:998
#, c-format
msgid "type: thin"
msgstr "סוג: רזה"
-#: standalone/drakTermServ:1016
+#: standalone/drakTermServ:1005
#, c-format
msgid "local config: false"
msgstr "הגדרות מקומיות: לא"
-#: standalone/drakTermServ:1017
+#: standalone/drakTermServ:1006
#, c-format
msgid "local config: true"
msgstr "תצורה מקומית: לא"
-#: standalone/drakTermServ:1025
+#: standalone/drakTermServ:1014
#, c-format
msgid "<-- Edit Client"
msgstr "<-- עריכת לקוח"
-#: standalone/drakTermServ:1051
+#: standalone/drakTermServ:1040
#, c-format
msgid "Disable Local Config"
msgstr ""
-#: standalone/drakTermServ:1058
+#: standalone/drakTermServ:1047
#, c-format
msgid "Delete Client"
msgstr ""
-#: standalone/drakTermServ:1067
+#: standalone/drakTermServ:1056
#, c-format
msgid "dhcpd Config..."
msgstr ""
-#: standalone/drakTermServ:1083
+#: standalone/drakTermServ:1072
#, c-format
msgid ""
"Need to restart the Display Manager for full changes to take effect. \n"
@@ -15159,67 +15172,77 @@ msgstr ""
"יש צורך לאתחל את מנהל הכניסה כדי שהשינויים יכנסו לתוקף.\n"
"(להריץ במסוף \"service dm restart\")"
-#: standalone/drakTermServ:1123
+#: standalone/drakTermServ:1112
#, c-format
msgid "Thin clients won't work with autologin. Disable autologin?"
msgstr ""
-#: standalone/drakTermServ:1139
+#: standalone/drakTermServ:1128
#, c-format
msgid "All clients will use %s"
msgstr ""
-#: standalone/drakTermServ:1169
+#: standalone/drakTermServ:1160
#, c-format
msgid "Subnet:"
msgstr "רשת משנה:"
-#: standalone/drakTermServ:1176
+#: standalone/drakTermServ:1167
#, c-format
msgid "Netmask:"
msgstr "מסיכת רשת:"
-#: standalone/drakTermServ:1183
+#: standalone/drakTermServ:1174
#, c-format
msgid "Routers:"
msgstr ""
-#: standalone/drakTermServ:1190
+#: standalone/drakTermServ:1181
#, c-format
msgid "Subnet Mask:"
msgstr "מסיכת רשת:"
-#: standalone/drakTermServ:1197
+#: standalone/drakTermServ:1188
#, c-format
msgid "Broadcast Address:"
msgstr ""
-#: standalone/drakTermServ:1204
+#: standalone/drakTermServ:1195
#, c-format
msgid "Domain Name:"
msgstr ""
-#: standalone/drakTermServ:1212
+#: standalone/drakTermServ:1203
#, c-format
msgid "Name Servers:"
msgstr ""
-#: standalone/drakTermServ:1223
+#: standalone/drakTermServ:1214
#, c-format
msgid "IP Range Start:"
msgstr "התחלה של טווחי כתובת IP:"
-#: standalone/drakTermServ:1224
+#: standalone/drakTermServ:1215
#, c-format
msgid "IP Range End:"
msgstr ""
-#: standalone/drakTermServ:1276
+#: standalone/drakTermServ:1257
+#, c-format
+msgid "Append TS Includes To Existing Config"
+msgstr ""
+
+#: standalone/drakTermServ:1259
+#, c-format
+msgid "Write Config"
+msgstr ""
+
+#: standalone/drakTermServ:1275
#, c-format
msgid "dhcpd Server Configuration"
msgstr "תצורת לקוח dhcp"
-#: standalone/drakTermServ:1277
+#: standalone/drakTermServ:1276
#, c-format
msgid ""
"Most of these values were extracted\n"
@@ -15229,113 +15252,103 @@ msgstr ""
"רב הערכים הללו נלקחו מהמערכת הנוכחית שלך. \n"
"ניצן לשנות כנדרש"
-#: standalone/drakTermServ:1280
+#: standalone/drakTermServ:1279
#, c-format
msgid "Dynamic IP Address Pool:"
msgstr ""
-#: standalone/drakTermServ:1293
-#, c-format
-msgid "Write Config"
-msgstr ""
-
-#: standalone/drakTermServ:1412
+#: standalone/drakTermServ:1426
#, c-format
msgid "Please insert floppy disk:"
msgstr "נא להכניס תקליטון:"
-#: standalone/drakTermServ:1416
+#: standalone/drakTermServ:1430
#, c-format
msgid "Couldn't access the floppy!"
msgstr "אין אפשרות גישה לתקליטון!"
-#: standalone/drakTermServ:1418
+#: standalone/drakTermServ:1432
#, c-format
msgid "Floppy can be removed now"
msgstr "ניתן להסיר את התקליטון עכשיו"
-#: standalone/drakTermServ:1421
+#: standalone/drakTermServ:1435
#, c-format
msgid "No floppy drive available!"
msgstr "אין כונן תקליטונים זמין!"
-#: standalone/drakTermServ:1426
+#: standalone/drakTermServ:1440
#, c-format
msgid "PXE image is %s/%s"
msgstr ""
-#: standalone/drakTermServ:1428
+#: standalone/drakTermServ:1442
#, c-format
msgid "Error writing %s/%s"
msgstr "שגיאה בכתיבה ל %s/%s"
-#: standalone/drakTermServ:1437
+#: standalone/drakTermServ:1451
#, c-format
msgid "Etherboot ISO image is %s"
msgstr ""
-#: standalone/drakTermServ:1439
+#: standalone/drakTermServ:1453
#, c-format
msgid "Something went wrong! - Is mkisofs installed?"
msgstr ""
-#: standalone/drakTermServ:1459
+#: standalone/drakTermServ:1475
#, c-format
msgid "Need to create /etc/dhcpd.conf first!"
msgstr ""
-#: standalone/drakTermServ:1620
+#: standalone/drakTermServ:1634
#, c-format
msgid "%s passwd bad in Terminal Server - rewriting...\n"
msgstr ""
-#: standalone/drakTermServ:1638
+#: standalone/drakTermServ:1647
#, c-format
msgid "%s is not a user..\n"
msgstr ""
-#: standalone/drakTermServ:1639
+#: standalone/drakTermServ:1648
#, c-format
msgid "%s is already a Terminal Server user\n"
msgstr "%s הינו כבר משתמש Terminal Server \n"
-#: standalone/drakTermServ:1641
+#: standalone/drakTermServ:1650
#, c-format
msgid "Addition of %s to Terminal Server failed!\n"
msgstr ""
-#: standalone/drakTermServ:1643
+#: standalone/drakTermServ:1652
#, c-format
msgid "%s added to Terminal Server\n"
msgstr ""
-#: standalone/drakTermServ:1695
+#: standalone/drakTermServ:1698
#, c-format
msgid "Deleted %s...\n"
msgstr "%s נמחק...\n"
-#: standalone/drakTermServ:1697 standalone/drakTermServ:1774
+#: standalone/drakTermServ:1700 standalone/drakTermServ:1773
#, c-format
msgid "%s not found...\n"
msgstr ""
-#: standalone/drakTermServ:1719 standalone/drakTermServ:1720
-#: standalone/drakTermServ:1721
+#: standalone/drakTermServ:1722 standalone/drakTermServ:1723
+#: standalone/drakTermServ:1724
#, c-format
msgid "%s already in use\n"
msgstr "%s כבר בשימוש \n"
-#: standalone/drakTermServ:1745
-#, c-format
-msgid "Can't open %s!"
-msgstr "לא יכול לפתוח %s!"
-
-#: standalone/drakTermServ:1802
+#: standalone/drakTermServ:1801
#, c-format
msgid "/etc/hosts.allow and /etc/hosts.deny already configured - not changed"
msgstr "הקבצים /etc/hosts.allow ו /etc/hosts.deny כבר מוגדרים - אין שינוי"
-#: standalone/drakTermServ:1959
+#: standalone/drakTermServ:1953
#, c-format
msgid "Configuration changed - restart clusternfs/dhcpd?"
msgstr "התצורה השתנתה. האם לאתחל מחדש את clusternfs/dhcpd?"
@@ -15419,7 +15432,7 @@ msgid ""
msgstr ""
#: standalone/drakautoinst:252 standalone/drakgw:598 standalone/drakvpn:902
-#: standalone/scannerdrake:374
+#: standalone/scannerdrake:379
#, c-format
msgid "Congratulations!"
msgstr "ברכותינו!"
@@ -15461,61 +15474,61 @@ msgstr "טייפ"
msgid "No devices found"
msgstr "לא נמצאו התקנים"
-#: standalone/drakbackup:154
+#: standalone/drakbackup:152
#, c-format
msgid ""
"Expect is an extension to the Tcl scripting language that allows interactive "
"sessions without user intervention."
msgstr ""
-#: standalone/drakbackup:155
+#: standalone/drakbackup:153
#, c-format
msgid "Store the password for this system in drakbackup configuration."
msgstr "שמור את סיסמת המערכת בתצורת drakbackup "
-#: standalone/drakbackup:156
+#: standalone/drakbackup:154
#, c-format
msgid ""
"For a multisession CD, only the first session will erase the cdrw. Otherwise "
"the cdrw is erased before each backup."
msgstr ""
-#: standalone/drakbackup:157
+#: standalone/drakbackup:155
#, c-format
msgid ""
"This option will save files that have changed. Exact behavior depends on "
"whether incremental or differential mode is used."
msgstr ""
-#: standalone/drakbackup:158
+#: standalone/drakbackup:156
#, c-format
msgid ""
"Incremental backups only save files that have changed or are new since the "
"last backup."
msgstr ""
-#: standalone/drakbackup:159
+#: standalone/drakbackup:157
#, c-format
msgid ""
"Differential backups only save files that have changed or are new since the "
"original 'base' backup."
msgstr ""
-#: standalone/drakbackup:160
+#: standalone/drakbackup:158
#, c-format
msgid ""
"This should be a local user or email addresse that you want the backup "
"results sent to. You will need to define a functioning mail server."
msgstr ""
-#: standalone/drakbackup:161
+#: standalone/drakbackup:159
#, c-format
msgid ""
"Files or wildcards listed in a .backupignore file at the top of a directory "
"tree will not be backed up."
msgstr ""
-#: standalone/drakbackup:162
+#: standalone/drakbackup:160
#, c-format
msgid ""
"For backups to other media, files are still created on the hard drive, then "
@@ -15523,7 +15536,7 @@ msgid ""
"tar files after the backup."
msgstr ""
-#: standalone/drakbackup:163
+#: standalone/drakbackup:161
#, c-format
msgid ""
"Some protocols, like rsync, may be configured at the server end. Rather "
@@ -15533,34 +15546,34 @@ msgstr ""
"כמה פרוטוקולים כגון RSYNC, התצורה שלהם צריכה להיעשות בצד השרת. במקום להשתמש "
"בנתיב ספרייה ניתן להשתמש ב\"שם המודול\" עבוד נתיב השירות."
-#: standalone/drakbackup:164
+#: standalone/drakbackup:162
#, c-format
msgid ""
"Custom allows you to specify your own day and time. The other options use "
"run-parts in /etc/crontab."
msgstr ""
-#: standalone/drakbackup:396
+#: standalone/drakbackup:326
#, c-format
msgid "No media selected for cron operation."
msgstr ""
-#: standalone/drakbackup:400
+#: standalone/drakbackup:330
#, c-format
msgid "No interval selected for cron operation."
msgstr ""
-#: standalone/drakbackup:447
+#: standalone/drakbackup:377
#, c-format
msgid "Interval cron not available as non-root"
msgstr ""
-#: standalone/drakbackup:532 standalone/logdrake:467
+#: standalone/drakbackup:462 standalone/logdrake:467
#, c-format
msgid "\"%s\" neither is a valid email nor is an existing local user!"
msgstr ""
-#: standalone/drakbackup:536 standalone/logdrake:472
+#: standalone/drakbackup:466 standalone/logdrake:472
#, c-format
msgid ""
"\"%s\" is a local user, but you did not select a local smtp, so you must use "
@@ -15569,29 +15582,29 @@ msgstr ""
"\"%s\" הוא משתמש במחשב המקומי, אבל לא הגדרת\n"
"שרת SMTP מקומי כך שעליך להזין כתובת דוא\"ל מלאה!"
-#: standalone/drakbackup:545
+#: standalone/drakbackup:475
#, c-format
msgid "Valid user list changed, rewriting config file."
msgstr ""
-#: standalone/drakbackup:547
+#: standalone/drakbackup:477
#, c-format
msgid "Old user list:\n"
msgstr ""
-#: standalone/drakbackup:549
+#: standalone/drakbackup:479
#, c-format
msgid "New user list:\n"
msgstr ""
-#: standalone/drakbackup:594
+#: standalone/drakbackup:524
#, c-format
msgid ""
"\n"
" DrakBackup Report \n"
msgstr ""
-#: standalone/drakbackup:595
+#: standalone/drakbackup:525
#, c-format
msgid ""
"\n"
@@ -15600,7 +15613,7 @@ msgstr ""
"\n"
" DrakBackup Daemon Report\n"
-#: standalone/drakbackup:601
+#: standalone/drakbackup:531
#, c-format
msgid ""
"\n"
@@ -15609,13 +15622,13 @@ msgid ""
"\n"
msgstr ""
-#: standalone/drakbackup:625 standalone/drakbackup:696
-#: standalone/drakbackup:752
+#: standalone/drakbackup:556 standalone/drakbackup:627
+#: standalone/drakbackup:683
#, c-format
msgid "Total progress"
msgstr "סך הכל התקדמות"
-#: standalone/drakbackup:678
+#: standalone/drakbackup:609
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -15628,42 +15641,42 @@ msgstr ""
"אזהרה: אם תהליך זה כבר נעשה, כנראה יהיה עליך\n"
"למחוק את הרשומה authorized_keys על השרת."
-#: standalone/drakbackup:687
+#: standalone/drakbackup:618
#, c-format
msgid "This may take a moment to generate the keys."
msgstr ""
-#: standalone/drakbackup:694
+#: standalone/drakbackup:625
#, c-format
msgid "Cannot spawn %s."
msgstr "לא יכול לפצל את %s!"
-#: standalone/drakbackup:711
+#: standalone/drakbackup:642
#, c-format
msgid "No password prompt on %s at port %s"
msgstr "אין בקשה לסיסמה ב-%s ביציאה %s"
-#: standalone/drakbackup:712
+#: standalone/drakbackup:643
#, c-format
msgid "Bad password on %s"
msgstr ""
-#: standalone/drakbackup:713
+#: standalone/drakbackup:644
#, c-format
msgid "Permission denied transferring %s to %s"
msgstr ""
-#: standalone/drakbackup:714
+#: standalone/drakbackup:645
#, c-format
msgid "Can't find %s on %s"
msgstr ""
-#: standalone/drakbackup:718
+#: standalone/drakbackup:649
#, c-format
msgid "%s not responding"
msgstr ""
-#: standalone/drakbackup:722
+#: standalone/drakbackup:653
#, c-format
msgid ""
"Transfer successful\n"
@@ -15674,84 +15687,84 @@ msgid ""
"without being prompted for a password."
msgstr ""
-#: standalone/drakbackup:766
+#: standalone/drakbackup:697
#, c-format
msgid "WebDAV remote site already in sync!"
msgstr "אתר WebDAV מרוחק כבר מסונכרן!"
-#: standalone/drakbackup:770
+#: standalone/drakbackup:701
#, c-format
msgid "WebDAV transfer failed!"
msgstr "העברת WebDAV נכשלה!"
-#: standalone/drakbackup:791
+#: standalone/drakbackup:722
#, c-format
msgid "No CD-R/DVD-R in drive!"
msgstr ""
-#: standalone/drakbackup:795
+#: standalone/drakbackup:726
#, c-format
msgid "Does not appear to be recordable media!"
msgstr ""
-#: standalone/drakbackup:799
+#: standalone/drakbackup:730
#, c-format
msgid "Not erasable media!"
msgstr "זהי לא מדיה הניתנת למחיקה!"
-#: standalone/drakbackup:840
+#: standalone/drakbackup:771
#, c-format
msgid "This may take a moment to erase the media."
msgstr ""
-#: standalone/drakbackup:898
+#: standalone/drakbackup:829
#, c-format
msgid "Permission problem accessing CD."
msgstr "בעיית הרשאה בעת גישה אל התקליטור"
-#: standalone/drakbackup:925
+#: standalone/drakbackup:856
#, c-format
msgid "No tape in %s!"
msgstr ""
-#: standalone/drakbackup:1025
+#: standalone/drakbackup:956
#, c-format
msgid ""
"Backup quota exceeded!\n"
"%d MB used vs %d MB allocated."
msgstr ""
-#: standalone/drakbackup:1044 standalone/drakbackup:1077
+#: standalone/drakbackup:975 standalone/drakbackup:1008
#, c-format
msgid "Backup system files..."
msgstr "גבוי של קבצי מערכת..."
-#: standalone/drakbackup:1078 standalone/drakbackup:1119
+#: standalone/drakbackup:1009 standalone/drakbackup:1050
#, c-format
msgid "Hard Disk Backup files..."
msgstr "קובצי גיבוי של הדיסק קשיח..."
-#: standalone/drakbackup:1118
+#: standalone/drakbackup:1049
#, c-format
msgid "Backup User files..."
msgstr ""
-#: standalone/drakbackup:1153
+#: standalone/drakbackup:1084
#, c-format
msgid "Backup Other files..."
msgstr "גיבוי של קבצים שונים ...."
-#: standalone/drakbackup:1154
+#: standalone/drakbackup:1085
#, c-format
msgid "Hard Disk Backup Progress..."
msgstr "התקדמות גיבוי של הכונן קשיח..."
-#: standalone/drakbackup:1159
+#: standalone/drakbackup:1090
#, c-format
msgid "No changes to backup!"
msgstr ""
-#: standalone/drakbackup:1177 standalone/drakbackup:1201
+#: standalone/drakbackup:1108 standalone/drakbackup:1132
#, c-format
msgid ""
"\n"
@@ -15762,7 +15775,7 @@ msgstr ""
"התכנית Drakbackup מופעלת דרך %s: \n"
"\n"
-#: standalone/drakbackup:1186
+#: standalone/drakbackup:1117
#, c-format
msgid ""
"\n"
@@ -15770,17 +15783,17 @@ msgid ""
"FTP.\n"
msgstr ""
-#: standalone/drakbackup:1187
+#: standalone/drakbackup:1118
#, c-format
msgid "Error during sending file via FTP. Please correct your FTP configuration."
msgstr "חלה שגיאה בעת שליחת הקובץ דרך FTP. עליך לתקן את הגדרות ה FTP."
-#: standalone/drakbackup:1189
+#: standalone/drakbackup:1120
#, c-format
msgid "file list sent by FTP: %s\n"
msgstr "רשימת קבצים שנשלחה דרך FTP: %s\n"
-#: standalone/drakbackup:1206
+#: standalone/drakbackup:1137
#, c-format
msgid ""
"\n"
@@ -15788,7 +15801,7 @@ msgid ""
"\n"
msgstr ""
-#: standalone/drakbackup:1211
+#: standalone/drakbackup:1142
#, c-format
msgid ""
"\n"
@@ -15796,27 +15809,22 @@ msgid ""
"\n"
msgstr ""
-#: standalone/drakbackup:1220
+#: standalone/drakbackup:1151
#, c-format
msgid "Error sending mail. Your report mail was not sent."
msgstr ""
-#: standalone/drakbackup:1221
+#: standalone/drakbackup:1152
#, c-format
msgid " Error while sending mail. \n"
msgstr ""
-#: standalone/drakbackup:1249
+#: standalone/drakbackup:1180
#, c-format
msgid "Can't create catalog!"
msgstr ""
-#: standalone/drakbackup:1455
-#, c-format
-msgid "Select the files or directories and click on 'OK'"
-msgstr "עליך לבחור את הקבצים או הספריות וללחוץ על 'המשך'"
-
-#: standalone/drakbackup:1484
+#: standalone/drakbackup:1393
#, c-format
msgid ""
"\n"
@@ -15825,212 +15833,217 @@ msgstr ""
"\n"
"עליך לסמן את כל האפשרויות הדרושות לך.\n"
-#: standalone/drakbackup:1485
+#: standalone/drakbackup:1394
#, c-format
msgid "These options can backup and restore all files in your /etc directory.\n"
msgstr "האפשרויות הללו יכולות לגבות ולשחזר את כל המידע בספרית /etc\n"
-#: standalone/drakbackup:1486
+#: standalone/drakbackup:1395
#, c-format
msgid "Backup your System files. (/etc directory)"
msgstr "גיבוי של קבצי מערכת (ספריית etc/)"
-#: standalone/drakbackup:1487 standalone/drakbackup:1551
-#: standalone/drakbackup:1617
+#: standalone/drakbackup:1396 standalone/drakbackup:1460
+#: standalone/drakbackup:1526
#, c-format
msgid "Use Incremental/Differential Backups (do not replace old backups)"
msgstr "השתמש בשיטת גיבוי Incremental/Differential (אל תדרוס גיבויים קודמים)"
-#: standalone/drakbackup:1489 standalone/drakbackup:1553
-#: standalone/drakbackup:1619
+#: standalone/drakbackup:1398 standalone/drakbackup:1462
+#: standalone/drakbackup:1528
#, c-format
msgid "Use Incremental Backups"
msgstr "שיטת גיבוי Incremental"
-#: standalone/drakbackup:1489 standalone/drakbackup:1553
-#: standalone/drakbackup:1619
+#: standalone/drakbackup:1398 standalone/drakbackup:1462
+#: standalone/drakbackup:1528
#, c-format
msgid "Use Differential Backups"
msgstr "שיטת גיבוי DIfferential"
-#: standalone/drakbackup:1491
+#: standalone/drakbackup:1400
#, c-format
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "אל תגבה מידע קריטי (passwd, group, fstab)"
-#: standalone/drakbackup:1492
+#: standalone/drakbackup:1401
#, c-format
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr "עם אפשרות זו יהיה ביכולתך לשחזר כל גרסה של ספריית etc/ שלך."
-#: standalone/drakbackup:1523
+#: standalone/drakbackup:1432
#, c-format
msgid "Please check all users that you want to include in your backup."
msgstr ""
-#: standalone/drakbackup:1550
+#: standalone/drakbackup:1459
#, c-format
msgid "Do not include the browser cache"
msgstr "אל תכלול את זיכרון המטמון של הדפדפן"
-#: standalone/drakbackup:1605 standalone/drakfont:656
+#: standalone/drakbackup:1513
+#, c-format
+msgid "Select the files or directories and click on 'OK'"
+msgstr "עליך לבחור את הקבצים או הספריות וללחוץ על 'המשך'"
+
+#: standalone/drakbackup:1514 standalone/drakfont:656
#, c-format
msgid "Remove Selected"
msgstr "הסרת מסומנים"
-#: standalone/drakbackup:1668
+#: standalone/drakbackup:1577
#, c-format
msgid "Users"
msgstr "משתמשים"
-#: standalone/drakbackup:1688
+#: standalone/drakbackup:1597
#, c-format
msgid "Use network connection to backup"
msgstr "השתמש בחיבור רשת לגיבוי"
-#: standalone/drakbackup:1690
+#: standalone/drakbackup:1599
#, c-format
msgid "Net Method:"
msgstr "שיטת רשת:"
-#: standalone/drakbackup:1694
+#: standalone/drakbackup:1603
#, c-format
msgid "Use Expect for SSH"
msgstr ""
-#: standalone/drakbackup:1695
+#: standalone/drakbackup:1604
#, c-format
msgid "Create/Transfer backup keys for SSH"
msgstr ""
-#: standalone/drakbackup:1697
+#: standalone/drakbackup:1606
#, c-format
msgid "Transfer Now"
msgstr "העבר כעת"
-#: standalone/drakbackup:1699
+#: standalone/drakbackup:1608
#, c-format
msgid "Other (not drakbackup) keys in place already"
msgstr ""
-#: standalone/drakbackup:1702
+#: standalone/drakbackup:1611
#, c-format
msgid "Host name or IP."
msgstr "שם מארח או כתובת IP"
-#: standalone/drakbackup:1707
+#: standalone/drakbackup:1616
#, c-format
msgid "Directory (or module) to put the backup on this host."
msgstr "ספריה (או מודול) בה יש לאחסן את הגיבוי במארח זה."
-#: standalone/drakbackup:1712
+#: standalone/drakbackup:1621
#, c-format
msgid "Login name"
msgstr "שם משתמש"
-#: standalone/drakbackup:1719
+#: standalone/drakbackup:1628
#, c-format
msgid "Remember this password"
msgstr "זכור סיסמה זאת"
-#: standalone/drakbackup:1735
+#: standalone/drakbackup:1644
#, c-format
msgid "Need hostname, username and password!"
msgstr "יש צורך בשם מארח, שם משתמש וסיסמה!"
-#: standalone/drakbackup:1833
+#: standalone/drakbackup:1742
#, c-format
msgid "Use CD-R/DVD-R to backup"
msgstr "השתמש בתקליטור או DVDROM לגבוי"
-#: standalone/drakbackup:1836
+#: standalone/drakbackup:1745
#, c-format
msgid "Choose your CD/DVD device"
msgstr "עליך לבחור את התקן התקליטור/DVD שלך"
-#: standalone/drakbackup:1841
+#: standalone/drakbackup:1750
#, c-format
msgid "Choose your CD/DVD media size"
msgstr "עליך לבחור את גודל התקליטור/DVD"
-#: standalone/drakbackup:1848
+#: standalone/drakbackup:1757
#, c-format
msgid "Multisession CD"
msgstr "תקליטור Multisession"
-#: standalone/drakbackup:1850
+#: standalone/drakbackup:1759
#, c-format
msgid "CDRW media"
msgstr "מדיית CDRW"
-#: standalone/drakbackup:1856
+#: standalone/drakbackup:1765
#, c-format
msgid "Erase your RW media (1st Session)"
msgstr "מחיקת מדיית ה RW (סיבוב ראשון)"
-#: standalone/drakbackup:1857
+#: standalone/drakbackup:1766
#, c-format
msgid " Erase Now "
msgstr " מחק כעת "
-#: standalone/drakbackup:1863
+#: standalone/drakbackup:1772
#, c-format
msgid "DVD+RW media"
msgstr "מדיית DVD+RW"
-#: standalone/drakbackup:1865
+#: standalone/drakbackup:1774
#, c-format
msgid "DVD-R media"
msgstr "מדיית DVD-R"
-#: standalone/drakbackup:1867
+#: standalone/drakbackup:1776
#, c-format
msgid "DVDRAM device"
msgstr "התקן DVDRAM"
-#: standalone/drakbackup:1898
+#: standalone/drakbackup:1807
#, c-format
msgid "No CD device defined!"
msgstr "לא נבחר התקן תקליטור!"
-#: standalone/drakbackup:1945
+#: standalone/drakbackup:1854
#, c-format
msgid "Use tape to backup"
msgstr "השתמש בטייפ לגיבוי"
-#: standalone/drakbackup:1948
+#: standalone/drakbackup:1857
#, c-format
msgid "Device name to use for backup"
msgstr "שם התקן לשימוש עבור גיבוי"
-#: standalone/drakbackup:1954
+#: standalone/drakbackup:1863
#, c-format
msgid "Don't rewind tape after backup"
msgstr "אל תעביר את קלטת הגיבוי להתחלה בסיום הפעולה"
-#: standalone/drakbackup:1960
+#: standalone/drakbackup:1869
#, c-format
msgid "Erase tape before backup"
msgstr "מחק את קלטת הגיבוי לפני הפעולה"
-#: standalone/drakbackup:1966
+#: standalone/drakbackup:1875
#, c-format
msgid "Eject tape after the backup"
msgstr "הוצא את קלטת הגיבוי בסיום הפעולה"
-#: standalone/drakbackup:2033
+#: standalone/drakbackup:1942
#, c-format
msgid "Enter the directory to save to:"
msgstr "יש להקליד את הספריה אליה יש לשמור:"
-#: standalone/drakbackup:2037
+#: standalone/drakbackup:1946
#, c-format
msgid "Directory to save to"
msgstr "הספריה אליה יש לשמור"
-#: standalone/drakbackup:2042
+#: standalone/drakbackup:1951
#, c-format
msgid ""
"Maximum size\n"
@@ -16039,307 +16052,307 @@ msgstr ""
"גודל מירבי\n"
" מוקצב ל Draknackup ב-MB"
-#: standalone/drakbackup:2106
+#: standalone/drakbackup:2015
#, c-format
msgid "CD-R / DVD-R"
msgstr "CD-R / DVD-R"
-#: standalone/drakbackup:2111
+#: standalone/drakbackup:2020
#, c-format
msgid "HardDrive / NFS"
msgstr "כונן קשיח / NFS"
-#: standalone/drakbackup:2127 standalone/drakbackup:2132
-#: standalone/drakbackup:2137
+#: standalone/drakbackup:2036 standalone/drakbackup:2041
+#: standalone/drakbackup:2046
#, c-format
msgid "hourly"
msgstr "כל שעה"
-#: standalone/drakbackup:2128 standalone/drakbackup:2133
-#: standalone/drakbackup:2137
+#: standalone/drakbackup:2037 standalone/drakbackup:2042
+#: standalone/drakbackup:2046
#, c-format
msgid "daily"
msgstr "יומי"
-#: standalone/drakbackup:2129 standalone/drakbackup:2134
-#: standalone/drakbackup:2137
+#: standalone/drakbackup:2038 standalone/drakbackup:2043
+#: standalone/drakbackup:2046
#, c-format
msgid "weekly"
msgstr "שבועי"
-#: standalone/drakbackup:2130 standalone/drakbackup:2135
-#: standalone/drakbackup:2137
+#: standalone/drakbackup:2039 standalone/drakbackup:2044
+#: standalone/drakbackup:2046
#, c-format
msgid "monthly"
msgstr "חודשי"
-#: standalone/drakbackup:2131 standalone/drakbackup:2136
-#: standalone/drakbackup:2137
+#: standalone/drakbackup:2040 standalone/drakbackup:2045
+#: standalone/drakbackup:2046
#, c-format
msgid "custom"
msgstr "מותאם אישית"
-#: standalone/drakbackup:2142
+#: standalone/drakbackup:2051
#, c-format
msgid "January"
msgstr "ינואר"
-#: standalone/drakbackup:2142
+#: standalone/drakbackup:2051
#, c-format
msgid "February"
msgstr "פברואר"
-#: standalone/drakbackup:2142
+#: standalone/drakbackup:2051
#, c-format
msgid "March"
msgstr "מרץ"
-#: standalone/drakbackup:2143
+#: standalone/drakbackup:2052
#, c-format
msgid "April"
msgstr "אפריל"
-#: standalone/drakbackup:2143
+#: standalone/drakbackup:2052
#, c-format
msgid "May"
msgstr "מאי"
-#: standalone/drakbackup:2143
+#: standalone/drakbackup:2052
#, c-format
msgid "June"
msgstr "יוני"
-#: standalone/drakbackup:2143
+#: standalone/drakbackup:2052
#, c-format
msgid "July"
msgstr "יולי"
-#: standalone/drakbackup:2143
+#: standalone/drakbackup:2052
#, c-format
msgid "August"
msgstr "אוגוסט"
-#: standalone/drakbackup:2143
+#: standalone/drakbackup:2052
#, c-format
msgid "September"
msgstr "ספטמבר"
-#: standalone/drakbackup:2144
+#: standalone/drakbackup:2053
#, c-format
msgid "October"
msgstr "אוקטובר"
-#: standalone/drakbackup:2144
+#: standalone/drakbackup:2053
#, c-format
msgid "November"
msgstr "נובמבר"
-#: standalone/drakbackup:2144
+#: standalone/drakbackup:2053
#, c-format
msgid "December"
msgstr "דצמבר"
-#: standalone/drakbackup:2149
+#: standalone/drakbackup:2058
#, c-format
msgid "Sunday"
msgstr "ראשון"
-#: standalone/drakbackup:2149
+#: standalone/drakbackup:2058
#, c-format
msgid "Monday"
msgstr "שני"
-#: standalone/drakbackup:2149
+#: standalone/drakbackup:2058
#, c-format
msgid "Tuesday"
msgstr "שלישי"
-#: standalone/drakbackup:2150
+#: standalone/drakbackup:2059
#, c-format
msgid "Wednesday"
msgstr "רביעי"
-#: standalone/drakbackup:2150
+#: standalone/drakbackup:2059
#, c-format
msgid "Thursday"
msgstr "חמישי"
-#: standalone/drakbackup:2150
+#: standalone/drakbackup:2059
#, c-format
msgid "Friday"
msgstr "שישי"
-#: standalone/drakbackup:2150
+#: standalone/drakbackup:2059
#, c-format
msgid "Saturday"
msgstr "שבת"
-#: standalone/drakbackup:2185
+#: standalone/drakbackup:2094
#, c-format
msgid "Use daemon"
msgstr "שימוש בתוכנת רקע"
-#: standalone/drakbackup:2190
+#: standalone/drakbackup:2099
#, c-format
msgid "Please choose the time interval between each backup"
msgstr "נא לבחור מרווח זמן בין גיבויים"
-#: standalone/drakbackup:2196
+#: standalone/drakbackup:2105
#, c-format
msgid "Custom setup/crontab entry:"
msgstr ""
-#: standalone/drakbackup:2201
+#: standalone/drakbackup:2110
#, c-format
msgid "Minute"
msgstr "דקה"
-#: standalone/drakbackup:2205
+#: standalone/drakbackup:2114
#, c-format
msgid "Hour"
msgstr "שעה"
-#: standalone/drakbackup:2209
+#: standalone/drakbackup:2118
#, c-format
msgid "Day"
msgstr "יום"
-#: standalone/drakbackup:2213
+#: standalone/drakbackup:2122
#, c-format
msgid "Month"
msgstr "חודש"
-#: standalone/drakbackup:2217
+#: standalone/drakbackup:2126
#, c-format
msgid "Weekday"
msgstr "יום בשבוע"
-#: standalone/drakbackup:2223
+#: standalone/drakbackup:2132
#, c-format
msgid "Please choose the media for backup."
msgstr "נא לבחור את סוג המדיה לגיבוי"
-#: standalone/drakbackup:2230
+#: standalone/drakbackup:2139
#, c-format
msgid "Please be sure that the cron daemon is included in your services."
msgstr ""
-#: standalone/drakbackup:2231
+#: standalone/drakbackup:2140
#, c-format
msgid "Note that currently all 'net' media also use the hard drive."
msgstr ""
-#: standalone/drakbackup:2281
+#: standalone/drakbackup:2190
#, c-format
msgid "Please choose the compression type"
msgstr "עליך לבחור את סוג הכיווץ"
-#: standalone/drakbackup:2285
+#: standalone/drakbackup:2194
#, c-format
msgid "Use .backupignore files"
msgstr "השתמש בקבצי .backupignore "
-#: standalone/drakbackup:2287
+#: standalone/drakbackup:2196
#, c-format
msgid "Send mail report after each backup to:"
msgstr "שלח דיווח דרך דוא\"ל לאחר כל גבוי אל:"
-#: standalone/drakbackup:2293
+#: standalone/drakbackup:2202
#, c-format
msgid "SMTP server for mail:"
msgstr "שרת SMTP עבור דואר:"
-#: standalone/drakbackup:2298
+#: standalone/drakbackup:2207
#, c-format
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: standalone/drakbackup:2338
+#: standalone/drakbackup:2247
#, c-format
msgid "What"
msgstr "מה"
-#: standalone/drakbackup:2343
+#: standalone/drakbackup:2252
#, c-format
msgid "Where"
msgstr "היכן"
-#: standalone/drakbackup:2348
+#: standalone/drakbackup:2257
#, c-format
msgid "When"
msgstr "מתי"
-#: standalone/drakbackup:2353
+#: standalone/drakbackup:2262
#, c-format
msgid "More Options"
msgstr "עוד אפשרויות"
-#: standalone/drakbackup:2366
+#: standalone/drakbackup:2275
#, c-format
msgid "Backup destination not configured..."
msgstr "יעד הגיבוי לא הוגדר..."
-#: standalone/drakbackup:2385 standalone/drakbackup:4413
+#: standalone/drakbackup:2293 standalone/drakbackup:4208
#, c-format
msgid "Drakbackup Configuration"
msgstr "הגדרות DrakBackup"
-#: standalone/drakbackup:2402
+#: standalone/drakbackup:2309
#, c-format
msgid "Please choose where you want to backup"
msgstr "נא לבחר לאן לגבות"
-#: standalone/drakbackup:2404
+#: standalone/drakbackup:2311
#, c-format
msgid "Hard Drive used to prepare backups for all media"
msgstr ""
-#: standalone/drakbackup:2412
+#: standalone/drakbackup:2319
#, c-format
msgid "Across Network"
msgstr "דרך רשת"
-#: standalone/drakbackup:2420
+#: standalone/drakbackup:2327
#, c-format
msgid "On CD-R"
msgstr "על גבי התקליטור"
-#: standalone/drakbackup:2428
+#: standalone/drakbackup:2335
#, c-format
msgid "On Tape Device"
msgstr "התקן טייפ"
-#: standalone/drakbackup:2468
+#: standalone/drakbackup:2374
#, c-format
msgid "Backup Users"
msgstr "גיבוי משתמשים"
-#: standalone/drakbackup:2469
+#: standalone/drakbackup:2375
#, c-format
msgid " (Default is all users)"
msgstr "(ברירת מחדל היא כל המשתמשים)"
-#: standalone/drakbackup:2481
+#: standalone/drakbackup:2387
#, c-format
msgid "Please choose what you want to backup"
msgstr "עליך לבחור מה ברצונך לגבות"
-#: standalone/drakbackup:2482
+#: standalone/drakbackup:2388
#, c-format
msgid "Backup System"
msgstr "גיבוי מערכת"
-#: standalone/drakbackup:2484
+#: standalone/drakbackup:2390
#, c-format
msgid "Select user manually"
msgstr "עליך לבחור משתמש באופן ידני"
-#: standalone/drakbackup:2513
+#: standalone/drakbackup:2419
#, c-format
msgid "Please select data to backup..."
msgstr "עליך לבחור את המידע שיש לגבות..."
-#: standalone/drakbackup:2585
+#: standalone/drakbackup:2491
#, c-format
msgid ""
"\n"
@@ -16348,7 +16361,7 @@ msgstr ""
"\n"
"מקורות לגיבוי: \n"
-#: standalone/drakbackup:2586
+#: standalone/drakbackup:2492
#, c-format
msgid ""
"\n"
@@ -16357,7 +16370,7 @@ msgstr ""
"\n"
"- קבצי מערכת:\n"
-#: standalone/drakbackup:2588
+#: standalone/drakbackup:2494
#, c-format
msgid ""
"\n"
@@ -16366,7 +16379,7 @@ msgstr ""
"\n"
"- קבצי משתמשים:\n"
-#: standalone/drakbackup:2590
+#: standalone/drakbackup:2496
#, c-format
msgid ""
"\n"
@@ -16375,7 +16388,7 @@ msgstr ""
"\n"
"- קבצים אחרים:\n"
-#: standalone/drakbackup:2592
+#: standalone/drakbackup:2498
#, c-format
msgid ""
"\n"
@@ -16384,12 +16397,12 @@ msgstr ""
"\n"
"- שמירה על הכונן הקשיח בנתיב: %s\n"
-#: standalone/drakbackup:2593
+#: standalone/drakbackup:2499
#, c-format
msgid "\tLimit disk usage to %s MB\n"
msgstr "\tהגבל את ניצול הכונן ל-%s MB\n"
-#: standalone/drakbackup:2596
+#: standalone/drakbackup:2502
#, c-format
msgid ""
"\n"
@@ -16398,17 +16411,17 @@ msgstr ""
"\n"
"- מחק קבצי tar מהכונן הקשיח לאחר הגיבוי.\n"
-#: standalone/drakbackup:2600
+#: standalone/drakbackup:2506
#, c-format
msgid "NO"
msgstr "לא"
-#: standalone/drakbackup:2601
+#: standalone/drakbackup:2507
#, c-format
msgid "YES"
msgstr "כן"
-#: standalone/drakbackup:2602
+#: standalone/drakbackup:2508
#, c-format
msgid ""
"\n"
@@ -16417,22 +16430,22 @@ msgstr ""
"\n"
"- צריבה לתקליטור"
-#: standalone/drakbackup:2603
+#: standalone/drakbackup:2509
#, c-format
msgid "RW"
msgstr "RW"
-#: standalone/drakbackup:2604
+#: standalone/drakbackup:2510
#, c-format
msgid " on device: %s"
msgstr "על התקן %s"
-#: standalone/drakbackup:2605
+#: standalone/drakbackup:2511
#, c-format
msgid " (multi-session)"
msgstr " (multi-session)"
-#: standalone/drakbackup:2606
+#: standalone/drakbackup:2512
#, c-format
msgid ""
"\n"
@@ -16441,12 +16454,12 @@ msgstr ""
"\n"
"- שמור לטייפ על ההתקן: %s"
-#: standalone/drakbackup:2607
+#: standalone/drakbackup:2513
#, c-format
msgid "\t\tErase=%s"
msgstr "\t\tמחיקה=%s"
-#: standalone/drakbackup:2610
+#: standalone/drakbackup:2516
#, c-format
msgid ""
"\n"
@@ -16455,7 +16468,7 @@ msgstr ""
"\n"
"- שמור ע\"י %s על מחשב מארח: %s\n"
-#: standalone/drakbackup:2611
+#: standalone/drakbackup:2517
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -16464,7 +16477,7 @@ msgstr ""
"\t\t שם משתמש: %s\n"
"\t\t בנתיב: %s \n"
-#: standalone/drakbackup:2612
+#: standalone/drakbackup:2518
#, c-format
msgid ""
"\n"
@@ -16473,42 +16486,42 @@ msgstr ""
"\n"
"- אפשרויות:\n"
-#: standalone/drakbackup:2613
+#: standalone/drakbackup:2519
#, c-format
msgid "\tDo not include System Files\n"
msgstr "\tאל תכלול קבצי מערכת\n"
-#: standalone/drakbackup:2615
+#: standalone/drakbackup:2521
#, c-format
msgid "\tBackups use tar and bzip2\n"
msgstr "\tגבה בעזרת tar ו bzip2\n"
-#: standalone/drakbackup:2616
+#: standalone/drakbackup:2522
#, c-format
msgid "\tBackups use tar and gzip\n"
msgstr "\tגבה בעזרת tar ו gzip\n"
-#: standalone/drakbackup:2617
+#: standalone/drakbackup:2523
#, c-format
msgid "\tBackups use tar only\n"
msgstr "\tגבה בעזרת tar בלבד\n"
-#: standalone/drakbackup:2619
+#: standalone/drakbackup:2525
#, c-format
msgid "\tUse .backupignore files\n"
msgstr "\tהשתמש בקבצי .backupignore\n"
-#: standalone/drakbackup:2620
+#: standalone/drakbackup:2526
#, c-format
msgid "\tSend mail to %s\n"
msgstr "\tשלח דואר ל: %s\n"
-#: standalone/drakbackup:2621
+#: standalone/drakbackup:2527
#, c-format
msgid "\tUsing SMTP server %s\n"
msgstr "\tשימוש בשרת SMTP: %s\n"
-#: standalone/drakbackup:2623
+#: standalone/drakbackup:2529
#, c-format
msgid ""
"\n"
@@ -16517,47 +16530,47 @@ msgstr ""
"\n"
"- תהליך רקע, %s דרך:\n"
-#: standalone/drakbackup:2624
+#: standalone/drakbackup:2530
#, c-format
msgid "\t-Hard drive.\n"
msgstr "\t-כונן קשיח.\n"
-#: standalone/drakbackup:2625
+#: standalone/drakbackup:2531
#, c-format
msgid "\t-CD-R.\n"
msgstr "\t-CD-R.\n"
-#: standalone/drakbackup:2626
+#: standalone/drakbackup:2532
#, c-format
msgid "\t-Tape \n"
msgstr "\t-טייפ \n"
-#: standalone/drakbackup:2627
+#: standalone/drakbackup:2533
#, c-format
msgid "\t-Network by FTP.\n"
msgstr "\t רשת דרך FTP.\n"
-#: standalone/drakbackup:2628
+#: standalone/drakbackup:2534
#, c-format
msgid "\t-Network by SSH.\n"
msgstr "\t-רשת דרך SSH.\n"
-#: standalone/drakbackup:2629
+#: standalone/drakbackup:2535
#, c-format
msgid "\t-Network by rsync.\n"
msgstr "\t-רשת דרך rsync.\n"
-#: standalone/drakbackup:2630
+#: standalone/drakbackup:2536
#, c-format
msgid "\t-Network by webdav.\n"
msgstr "\t-רשת דרך webdav.\n"
-#: standalone/drakbackup:2632
+#: standalone/drakbackup:2538
#, c-format
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr "לא מוגדר. עליך ללחוץ על \"אשף\" או \"מתקדם\"/\n"
-#: standalone/drakbackup:2637
+#: standalone/drakbackup:2543
#, c-format
msgid ""
"List of data to restore:\n"
@@ -16566,27 +16579,27 @@ msgstr ""
"רשימת מידע לשחזור:\n"
"\n"
-#: standalone/drakbackup:2639
+#: standalone/drakbackup:2545
#, c-format
msgid "- Restore System Files.\n"
msgstr "- שחזור קבצי מערכת.\n"
-#: standalone/drakbackup:2641 standalone/drakbackup:2651
+#: standalone/drakbackup:2547 standalone/drakbackup:2557
#, c-format
msgid " - from date: %s %s\n"
msgstr " - מתאריך: %s %s\n"
-#: standalone/drakbackup:2644
+#: standalone/drakbackup:2550
#, c-format
msgid "- Restore User Files: \n"
msgstr "- שחזור קבצי משתמש:\n"
-#: standalone/drakbackup:2649
+#: standalone/drakbackup:2555
#, c-format
msgid "- Restore Other Files: \n"
msgstr "- שחזור קבצים אחרים:\n"
-#: standalone/drakbackup:2830
+#: standalone/drakbackup:2736
#, c-format
msgid ""
"List of data corrupted:\n"
@@ -16595,127 +16608,127 @@ msgstr ""
"רשימה של מידע הפגום:\n"
"\n"
-#: standalone/drakbackup:2832
+#: standalone/drakbackup:2738
#, c-format
msgid "Please uncheck or remove it on next time."
msgstr "עליך לבטל את הסימון או להסיר אותו בפעם הבאה."
-#: standalone/drakbackup:2842
+#: standalone/drakbackup:2748
#, c-format
msgid "Backup files are corrupted"
msgstr "קבצי הגיבוי פגומים"
-#: standalone/drakbackup:2863
+#: standalone/drakbackup:2769
#, c-format
msgid " All of your selected data have been "
msgstr " כל המידע שלך כבר "
-#: standalone/drakbackup:2864
+#: standalone/drakbackup:2770
#, c-format
msgid " Successfuly Restored on %s "
msgstr " שוחזר בהצלחה ל %s "
-#: standalone/drakbackup:2987
+#: standalone/drakbackup:2889
#, c-format
msgid " Restore Configuration "
msgstr " הגדרת שחזור "
-#: standalone/drakbackup:3015
+#: standalone/drakbackup:2917
#, c-format
msgid "OK to restore the other files."
msgstr "אישור לשחזור הקבצים האחרים"
-#: standalone/drakbackup:3031
+#: standalone/drakbackup:2933
#, c-format
msgid "User list to restore (only the most recent date per user is important)"
msgstr "רשימת המשתמשים לשחזור (רק התאריך הכי עדכני למשתמש הוא הרלוונטי)"
-#: standalone/drakbackup:3098
+#: standalone/drakbackup:3000
#, c-format
msgid "Please choose the date to restore:"
msgstr "עליך לבחור את התאריך שיש לשחזר:"
-#: standalone/drakbackup:3135
+#: standalone/drakbackup:3037
#, c-format
msgid "Restore from Hard Disk."
msgstr "שחזור מהכונן הקשיח."
-#: standalone/drakbackup:3137
+#: standalone/drakbackup:3039
#, c-format
msgid "Enter the directory where backups are stored"
msgstr "עליך לבחור את הספרייה בה הגיבויים מאוחסנים"
-#: standalone/drakbackup:3141
+#: standalone/drakbackup:3043
#, c-format
msgid "Directory with backups"
msgstr "ספרייה עם גיבויים"
-#: standalone/drakbackup:3194
+#: standalone/drakbackup:3097
#, c-format
msgid "Select another media to restore from"
msgstr "יש לבחור מדיה אחרת ממנה יש לשחזר"
-#: standalone/drakbackup:3196
+#: standalone/drakbackup:3099
#, c-format
msgid "Other Media"
msgstr "מדיה אחרת"
-#: standalone/drakbackup:3201
+#: standalone/drakbackup:3104
#, c-format
msgid "Restore system"
msgstr "שחזור מערכת"
-#: standalone/drakbackup:3202
+#: standalone/drakbackup:3105
#, c-format
msgid "Restore Users"
msgstr "שחזור משתמשים"
-#: standalone/drakbackup:3203
+#: standalone/drakbackup:3106
#, c-format
msgid "Restore Other"
msgstr "שחזור אחר"
-#: standalone/drakbackup:3205
+#: standalone/drakbackup:3108
#, c-format
msgid "Select path to restore (instead of /)"
msgstr "עליך לבחור את הנתיב אליו יש לשחזר (במקום /)"
-#: standalone/drakbackup:3209 standalone/drakbackup:3490
+#: standalone/drakbackup:3112 standalone/drakbackup:3394
#, c-format
msgid "Path To Restore To"
msgstr "הנתיב אליו יש לשחזר"
-#: standalone/drakbackup:3212
+#: standalone/drakbackup:3115
#, c-format
msgid "Do new backup before restore (only for incremental backups.)"
msgstr "צור גיבוי חדש לפני השחזור (רק לגיבויי incremental)"
-#: standalone/drakbackup:3214
+#: standalone/drakbackup:3117
#, c-format
msgid "Remove user directories before restore."
msgstr "מחק את ספריות המשתמש לפני השחזור."
-#: standalone/drakbackup:3298
+#: standalone/drakbackup:3201
#, c-format
msgid "Filename text substring to search for (empty string matches all):"
msgstr "מחרוזת שיש לחפש בשם קובץ (מחרוזת ריקה תתאים לכל קובץ שהוא):"
-#: standalone/drakbackup:3301
+#: standalone/drakbackup:3204
#, c-format
msgid "Search Backups"
msgstr "חיפוש גיבויים"
-#: standalone/drakbackup:3320
+#: standalone/drakbackup:3223
#, c-format
msgid "No matches found..."
msgstr "לא נמצאו התאמות..."
-#: standalone/drakbackup:3324
+#: standalone/drakbackup:3227
#, c-format
msgid "Restore Selected"
msgstr "שחזר מסומנים"
-#: standalone/drakbackup:3458
+#: standalone/drakbackup:3362
#, c-format
msgid ""
"Click date/time to see backup files.\n"
@@ -16724,7 +16737,7 @@ msgstr ""
"עליך לבחור תאריך/זמן לצפיה בקבצי גיבוי.\n"
"לחיצה+Ctrl משמשת לבחירת מספר קבצים."
-#: standalone/drakbackup:3464
+#: standalone/drakbackup:3368
#, c-format
msgid ""
"Restore Selected\n"
@@ -16733,7 +16746,7 @@ msgstr ""
"שחזר מסומן \n"
"רשומה בקטלוג"
-#: standalone/drakbackup:3473
+#: standalone/drakbackup:3377
#, c-format
msgid ""
"Restore Selected\n"
@@ -16742,17 +16755,17 @@ msgstr ""
"שחזור קבצים\n"
"קבצים"
-#: standalone/drakbackup:3550
+#: standalone/drakbackup:3454
#, c-format
msgid "Backup files not found at %s."
msgstr "קבצי גיבוי לא נמצאו ב-%s."
-#: standalone/drakbackup:3563
+#: standalone/drakbackup:3467
#, c-format
msgid "Restore From CD"
msgstr "שחזור מתקליטור"
-#: standalone/drakbackup:3563
+#: standalone/drakbackup:3467
#, c-format
msgid ""
"Insert the CD with volume label %s\n"
@@ -16761,17 +16774,17 @@ msgstr ""
"עליך להכניס את התקליטור המזוהה על ידי\n"
"%s לכונן תחת נקודת העיגון /mnt/cdrom"
-#: standalone/drakbackup:3565
+#: standalone/drakbackup:3469
#, c-format
msgid "Not the correct CD label. Disk is labelled %s."
msgstr "זה לא התקליטור הנכון, התקליטור נקרא %s"
-#: standalone/drakbackup:3575
+#: standalone/drakbackup:3479
#, c-format
msgid "Restore From Tape"
msgstr "שחזור מטייפ גיבוי"
-#: standalone/drakbackup:3575
+#: standalone/drakbackup:3479
#, c-format
msgid ""
"Insert the tape with volume label %s\n"
@@ -16780,218 +16793,218 @@ msgstr ""
"עליך להכניס את הקלטת המזוהה על ידי\n"
"%s להתקן טייפ הגיבוי %s"
-#: standalone/drakbackup:3577
+#: standalone/drakbackup:3481
#, c-format
msgid "Not the correct tape label. Tape is labelled %s."
msgstr "זו לא הקלטת הנכונה, הקלטת נקראת %s"
-#: standalone/drakbackup:3588
+#: standalone/drakbackup:3492
#, c-format
msgid "Restore Via Network"
msgstr "שחזור דרך הרשת"
-#: standalone/drakbackup:3588
+#: standalone/drakbackup:3492
#, c-format
msgid "Restore Via Network Protocol: %s"
msgstr "שחזר באמצעות פרוטוקול רשת: %s"
-#: standalone/drakbackup:3589
+#: standalone/drakbackup:3493
#, c-format
msgid "Host Name"
msgstr "שם המחשב המארח"
-#: standalone/drakbackup:3590
+#: standalone/drakbackup:3494
#, c-format
msgid "Host Path or Module"
msgstr ""
-#: standalone/drakbackup:3597
+#: standalone/drakbackup:3501
#, c-format
msgid "Password required"
msgstr "נדרשת סיסמה"
-#: standalone/drakbackup:3603
+#: standalone/drakbackup:3507
#, c-format
msgid "Username required"
msgstr "נדרש שם משתמש"
-#: standalone/drakbackup:3606
+#: standalone/drakbackup:3510
#, c-format
msgid "Hostname required"
msgstr "נדרש שם השרת"
-#: standalone/drakbackup:3611
+#: standalone/drakbackup:3515
#, c-format
msgid "Path or Module required"
msgstr ""
-#: standalone/drakbackup:3624
+#: standalone/drakbackup:3528
#, c-format
msgid "Files Restored..."
msgstr "הקבצים שוחזרו..."
-#: standalone/drakbackup:3627
+#: standalone/drakbackup:3531
#, c-format
msgid "Restore Failed..."
msgstr "השחזור נכשל..."
-#: standalone/drakbackup:3737 standalone/drakbackup:3754
+#: standalone/drakbackup:3549
#, c-format
msgid "%s not retrieved..."
msgstr "%s לא שוחזר..."
-#: standalone/drakbackup:3880 standalone/drakbackup:3953
+#: standalone/drakbackup:3748 standalone/drakbackup:3817
#, c-format
msgid "Search for files to restore"
msgstr "חפש קבצים לשחזור"
-#: standalone/drakbackup:3885
+#: standalone/drakbackup:3752
#, c-format
msgid "Restore all backups"
msgstr "שחזר את כל הגיבויים"
-#: standalone/drakbackup:3894
+#: standalone/drakbackup:3760
#, c-format
msgid "Custom Restore"
msgstr "התאמה אישית של השחזור"
-#: standalone/drakbackup:3899 standalone/drakbackup:3949
+#: standalone/drakbackup:3764 standalone/drakbackup:3813
#, c-format
msgid "Restore From Catalog"
msgstr "שחזור מהקטלוג"
-#: standalone/drakbackup:3921
+#: standalone/drakbackup:3785
#, c-format
msgid "Unable to find backups to restore...\n"
msgstr "לא יכול למצוא גיבויים לשחזור...\n"
-#: standalone/drakbackup:3922
+#: standalone/drakbackup:3786
#, c-format
msgid "Verify that %s is the correct path"
msgstr "עליך לוודא שהנתיב %s נכון"
-#: standalone/drakbackup:3923
+#: standalone/drakbackup:3787
#, c-format
msgid " and the CD is in the drive"
msgstr " והתקליטור נמצא בכונן"
-#: standalone/drakbackup:3925
+#: standalone/drakbackup:3789
#, c-format
msgid "Backups on unmountable media - Use Catalog to restore"
msgstr "יש להשתמש בקטלוג בכדי לשחזר גיבויים על מדיה שלא ניתנת לעיגון"
-#: standalone/drakbackup:3941
+#: standalone/drakbackup:3805
#, c-format
msgid "CD in place - continue."
msgstr "התקליטור במקומו - המשך"
-#: standalone/drakbackup:3946
+#: standalone/drakbackup:3810
#, c-format
msgid "Browse to new restore repository."
msgstr ""
-#: standalone/drakbackup:3947
+#: standalone/drakbackup:3811
#, c-format
msgid "Directory To Restore From"
msgstr "הספריה ממנה יש לשחזר"
-#: standalone/drakbackup:3986
+#: standalone/drakbackup:3847
#, c-format
msgid "Restore Progress"
msgstr "התקדמות השחזור"
-#: standalone/drakbackup:4016 standalone/drakbackup:4123
+#: standalone/drakbackup:3898 standalone/drakbackup:3971
#: standalone/logdrake:174
#, c-format
msgid "Save"
msgstr "שמור"
-#: standalone/drakbackup:4099
+#: standalone/drakbackup:3954
#, c-format
msgid "Build Backup"
msgstr "בנה גיבוי"
-#: standalone/drakbackup:4147 standalone/drakbackup:4512
+#: standalone/drakbackup:3987 standalone/drakbackup:4307
#, c-format
msgid "Restore"
msgstr "שחזר"
-#: standalone/drakbackup:4277
+#: standalone/drakbackup:4075
#, c-format
msgid "The following packages need to be installed:\n"
msgstr "החבילות הבאות יותקנו:\n"
-#: standalone/drakbackup:4304
+#: standalone/drakbackup:4102
#, c-format
msgid "Please select data to restore..."
msgstr "נא לבחור מידע לשחזור..."
-#: standalone/drakbackup:4344
+#: standalone/drakbackup:4142
#, c-format
msgid "Backup system files"
msgstr "גיבוי קבצי מערכת"
-#: standalone/drakbackup:4347
+#: standalone/drakbackup:4145
#, c-format
msgid "Backup user files"
msgstr "גיבוי קבצי משתמש"
-#: standalone/drakbackup:4350
+#: standalone/drakbackup:4148
#, c-format
msgid "Backup other files"
msgstr "גיבוי קבצים אחרים"
-#: standalone/drakbackup:4353 standalone/drakbackup:4389
+#: standalone/drakbackup:4151 standalone/drakbackup:4185
#, c-format
msgid "Total Progress"
msgstr "התקדמות כללית"
-#: standalone/drakbackup:4381
+#: standalone/drakbackup:4177
#, c-format
msgid "Sending files by FTP"
msgstr "שולח קבצים דרך FTP"
-#: standalone/drakbackup:4384
+#: standalone/drakbackup:4180
#, c-format
msgid "Sending files..."
msgstr "שולח קבצים..."
-#: standalone/drakbackup:4455
+#: standalone/drakbackup:4250
#, c-format
msgid "Backup Now from configuration file"
msgstr "גבה כעת מקובץ תצורה"
-#: standalone/drakbackup:4460
+#: standalone/drakbackup:4255
#, c-format
msgid "View Backup Configuration."
msgstr "הצגת תצורת גיבוי"
-#: standalone/drakbackup:4486
+#: standalone/drakbackup:4281
#, c-format
msgid "Wizard Configuration"
msgstr "הגדרת האשף"
-#: standalone/drakbackup:4491
+#: standalone/drakbackup:4286
#, c-format
msgid "Advanced Configuration"
msgstr "תצורה מתקדמת"
-#: standalone/drakbackup:4496
+#: standalone/drakbackup:4291
#, c-format
msgid "View Configuration"
msgstr "הצגת הגדרות"
-#: standalone/drakbackup:4500
+#: standalone/drakbackup:4295
#, c-format
msgid "View Last Log"
msgstr "תצוגה של רישום אחרון"
-#: standalone/drakbackup:4505
+#: standalone/drakbackup:4300
#, c-format
msgid "Backup Now"
msgstr "גבה כעת"
-#: standalone/drakbackup:4509
+#: standalone/drakbackup:4304
#, c-format
msgid ""
"No configuration file found \n"
@@ -17000,7 +17013,7 @@ msgstr ""
"לא נמצא קובץ הגדרות. יש\n"
"לבחור באשף או ב\"מתקדם\"."
-#: standalone/drakbackup:4530 standalone/drakbackup:4533
+#: standalone/drakbackup:4324 standalone/drakbackup:4327
#, c-format
msgid "Drakbackup"
msgstr "Drakbackup"
@@ -17015,9 +17028,10 @@ msgstr "בחירת ערכת איתחול גרפי"
msgid "System mode"
msgstr "מצב מערכת"
-#: standalone/drakboot:68 standalone/drakfloppy:46 standalone/harddrake2:97
-#: standalone/harddrake2:98 standalone/logdrake:71 standalone/printerdrake:150
-#: standalone/printerdrake:151 standalone/printerdrake:152
+#: standalone/drakboot:68 standalone/drakfloppy:46 standalone/harddrake2:103
+#: standalone/harddrake2:104 standalone/logdrake:71
+#: standalone/printerdrake:150 standalone/printerdrake:151
+#: standalone/printerdrake:152
#, c-format
msgid "/_File"
msgstr "/_קובץ"
@@ -17027,7 +17041,7 @@ msgstr "/_קובץ"
msgid "/File/_Quit"
msgstr "/קובץ/_יציאה"
-#: standalone/drakboot:69 standalone/drakfloppy:47 standalone/harddrake2:98
+#: standalone/drakboot:69 standalone/drakfloppy:47 standalone/harddrake2:104
#: standalone/logdrake:77 standalone/printerdrake:152
#, c-format
msgid "<control>Q"
@@ -17356,7 +17370,7 @@ msgstr "שרת:"
msgid "Reset"
msgstr "איפוס"
-#: standalone/drakclock:212
+#: standalone/drakclock:214
#, c-format
msgid ""
"We need to install ntp package\n"
@@ -17370,17 +17384,17 @@ msgstr ""
msgid "Network configuration (%d adapters)"
msgstr ""
-#: standalone/drakconnect:92 standalone/drakconnect:738
+#: standalone/drakconnect:92 standalone/drakconnect:751
#, c-format
msgid "Gateway:"
msgstr "שער:"
-#: standalone/drakconnect:92 standalone/drakconnect:738
+#: standalone/drakconnect:92 standalone/drakconnect:751
#, c-format
msgid "Interface:"
msgstr "ממשק:"
-#: standalone/drakconnect:96 standalone/net_monitor:105
+#: standalone/drakconnect:96 standalone/net_monitor:106
#, c-format
msgid "Wait please"
msgstr "נא להמתין"
@@ -17410,7 +17424,7 @@ msgstr ""
msgid "Configure hostname..."
msgstr "הגדרת שם המארח"
-#: standalone/drakconnect:149 standalone/drakconnect:779
+#: standalone/drakconnect:149 standalone/drakconnect:792
#, c-format
msgid "LAN configuration"
msgstr "הגדרת רשת מקומית"
@@ -17420,8 +17434,8 @@ msgstr "הגדרת רשת מקומית"
msgid "Configure Local Area Network..."
msgstr "הגדרת רשת מקומית"
-#: standalone/drakconnect:162 standalone/drakconnect:237
-#: standalone/drakconnect:241
+#: standalone/drakconnect:162 standalone/drakconnect:240
+#: standalone/drakconnect:244
#, c-format
msgid "Apply"
msgstr "החל"
@@ -17431,118 +17445,107 @@ msgstr "החל"
msgid "Manage connections"
msgstr "ניהול חיבורים"
-#: standalone/drakconnect:263 standalone/drakconnect:272
-#: standalone/drakconnect:292 standalone/drakconnect:298
-#: standalone/drakconnect:308 standalone/drakconnect:309
-#: standalone/drakconnect:576
+#: standalone/drakconnect:218
#, c-format
-msgid "TCP/IP"
-msgstr ""
+msgid "Device selected"
+msgstr "התקן נבחר"
-#: standalone/drakconnect:263 standalone/drakconnect:272
-#: standalone/drakconnect:292 standalone/drakconnect:444
-#: standalone/drakconnect:448 standalone/drakconnect:576
+#: standalone/drakconnect:314
#, c-format
-msgid "Account"
-msgstr "חשבון"
+msgid "IP configuration"
+msgstr "הגדרת IP"
-#: standalone/drakconnect:298 standalone/drakconnect:370
-#: standalone/drakconnect:371 standalone/drakconnect:576
-#, c-format
-msgid "Wireless"
-msgstr ""
-
-#: standalone/drakconnect:344
+#: standalone/drakconnect:351
#, c-format
msgid "DNS servers"
msgstr "שרתי DNS"
-#: standalone/drakconnect:351
+#: standalone/drakconnect:359
#, c-format
msgid "Search Domain"
msgstr "מתחם חיפוש"
-#: standalone/drakconnect:359
+#: standalone/drakconnect:367
#, c-format
msgid "static"
msgstr "סטטי"
-#: standalone/drakconnect:359
+#: standalone/drakconnect:367
#, c-format
msgid "DHCP"
msgstr ""
-#: standalone/drakconnect:482
+#: standalone/drakconnect:493
#, c-format
msgid "Flow control"
msgstr "בקרת זרימה"
-#: standalone/drakconnect:483
+#: standalone/drakconnect:494
#, c-format
msgid "Line termination"
msgstr "סיום שורה"
-#: standalone/drakconnect:493
-#, c-format
-msgid "Use lock file"
-msgstr "השתמש בקובץ נעילה"
-
-#: standalone/drakconnect:496
+#: standalone/drakconnect:505
#, c-format
msgid "Modem timeout"
msgstr "משך המתנה מקסימלי למודם"
-#: standalone/drakconnect:500
+#: standalone/drakconnect:509
+#, c-format
+msgid "Use lock file"
+msgstr "השתמש בקובץ נעילה"
+
+#: standalone/drakconnect:511
#, c-format
msgid "Wait for dialup tone before dialing"
msgstr ""
-#: standalone/drakconnect:503
+#: standalone/drakconnect:514
#, c-format
msgid "Busy wait"
msgstr "עסוק, נא להמתין"
-#: standalone/drakconnect:507
+#: standalone/drakconnect:519
#, c-format
msgid "Modem sound"
msgstr "צליל מודם"
-#: standalone/drakconnect:508
+#: standalone/drakconnect:520
#, c-format
msgid "Enable"
msgstr "אפשר"
-#: standalone/drakconnect:508
+#: standalone/drakconnect:520
#, c-format
msgid "Disable"
msgstr "נטרל"
-#: standalone/drakconnect:558 standalone/harddrake2:58
+#: standalone/drakconnect:571 standalone/harddrake2:62
#, c-format
msgid "Media class"
msgstr "סוג מדיה"
-#: standalone/drakconnect:559 standalone/drakfloppy:140
+#: standalone/drakconnect:572 standalone/drakfloppy:141
#, c-format
msgid "Module name"
msgstr "שם המודול"
-#: standalone/drakconnect:560
+#: standalone/drakconnect:573
#, c-format
msgid "Mac Address"
msgstr "כתובת Mac"
-#: standalone/drakconnect:561 standalone/harddrake2:21
+#: standalone/drakconnect:574 standalone/harddrake2:21
#, c-format
msgid "Bus"
msgstr "פס"
-#: standalone/drakconnect:562 standalone/harddrake2:29
+#: standalone/drakconnect:575 standalone/harddrake2:29
#, c-format
msgid "Location on the bus"
msgstr "מיקום על ה-BUS"
-#: standalone/drakconnect:632 standalone/drakgw:248 standalone/drakpxe:138
+#: standalone/drakconnect:645 standalone/drakgw:248 standalone/drakpxe:138
#, c-format
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
@@ -17552,17 +17555,17 @@ msgstr ""
"עליך להריץ את אשף החומרה באם\n"
"קיים כרטיס רשת מותקן אך לא מזוהה."
-#: standalone/drakconnect:638
+#: standalone/drakconnect:651
#, c-format
msgid "Remove a network interface"
msgstr "הסרת ממשק רשת"
-#: standalone/drakconnect:642
+#: standalone/drakconnect:655
#, c-format
msgid "Select the network interface to remove:"
msgstr "עליך לבחור את ממשק הרשת שיש להסיר:"
-#: standalone/drakconnect:666
+#: standalone/drakconnect:679
#, c-format
msgid ""
"An error occured while deleting the \"%s\" network interface:\n"
@@ -17573,96 +17576,96 @@ msgstr ""
"\n"
"%s"
-#: standalone/drakconnect:668
+#: standalone/drakconnect:681
#, c-format
msgid "Congratulations, the \"%s\" network interface has been succesfully deleted"
msgstr ""
-#: standalone/drakconnect:685
+#: standalone/drakconnect:698
#, c-format
msgid "No Ip"
msgstr "אין IP"
-#: standalone/drakconnect:686
+#: standalone/drakconnect:699
#, c-format
msgid "No Mask"
msgstr "אין מסכה"
-#: standalone/drakconnect:687 standalone/drakconnect:850
+#: standalone/drakconnect:700 standalone/drakconnect:863
#, c-format
msgid "up"
msgstr "למעלה"
-#: standalone/drakconnect:687 standalone/drakconnect:850
+#: standalone/drakconnect:700 standalone/drakconnect:863
#, c-format
msgid "down"
msgstr "למטה"
-#: standalone/drakconnect:728 standalone/net_monitor:415
+#: standalone/drakconnect:741 standalone/net_monitor:419
#, c-format
msgid "Connected"
msgstr "מחובר"
-#: standalone/drakconnect:728 standalone/net_monitor:415
+#: standalone/drakconnect:741 standalone/net_monitor:419
#, c-format
msgid "Not connected"
msgstr "לא מחובר"
-#: standalone/drakconnect:730
+#: standalone/drakconnect:743
#, c-format
msgid "Disconnect..."
msgstr "מתנתק..."
-#: standalone/drakconnect:730
+#: standalone/drakconnect:743
#, c-format
msgid "Connect..."
msgstr "מתחבר..."
-#: standalone/drakconnect:759
+#: standalone/drakconnect:772
#, c-format
msgid ""
"Warning, another Internet connection has been detected, maybe using your "
"network"
msgstr "אזהרה: זוהה חיבור אינטרנט נוסף, שיתכן ועושה שימוש ברשת שלך"
-#: standalone/drakconnect:775
+#: standalone/drakconnect:788
#, c-format
msgid "Deactivate now"
msgstr "לכבות עכשיו"
-#: standalone/drakconnect:775
+#: standalone/drakconnect:788
#, c-format
msgid "Activate now"
msgstr "הפעל עכשיו"
-#: standalone/drakconnect:783
+#: standalone/drakconnect:796
#, c-format
msgid ""
"You don't have any configured interface.\n"
"Configure them first by clicking on 'Configure'"
msgstr ""
-#: standalone/drakconnect:797
+#: standalone/drakconnect:810
#, c-format
msgid "LAN Configuration"
msgstr "הגדרות רשת מקומית"
-#: standalone/drakconnect:809
+#: standalone/drakconnect:822
#, c-format
msgid "Adapter %s: %s"
msgstr "מתאם %s: %s"
-#: standalone/drakconnect:818
+#: standalone/drakconnect:831
#, c-format
msgid "Boot Protocol"
msgstr "פרוטוקול אתחול"
-#: standalone/drakconnect:819
+#: standalone/drakconnect:832
#, c-format
msgid "Started on boot"
msgstr "מופעל באתחול"
-#: standalone/drakconnect:855
+#: standalone/drakconnect:868
#, c-format
msgid ""
"This interface has not been configured yet.\n"
@@ -17671,7 +17674,8 @@ msgstr ""
"הממשק לא הוגדר עדיין.\n"
"עליך להפעיל את האשף \"הוספת ממשק\" ממרכז הבקרה של Mandrake"
-#: standalone/drakconnect:910
+#. -PO: here "Internet access" should be translated the same was as in control-center
+#: standalone/drakconnect:923
#, c-format
msgid ""
"You don't have any configured Internet connection.\n"
@@ -17680,32 +17684,32 @@ msgstr ""
"לא הוגדר שום חיבור לאינטרנט.\n"
"עליך להפעיל את האשף \"גישה לאינטרנט\" במרכז הבקרה."
-#: standalone/drakconnect:918
+#: standalone/drakconnect:931
#, c-format
msgid "Internet connection configuration"
msgstr "הגדרת חיבור לאינטרנט"
-#: standalone/drakconnect:936
+#: standalone/drakconnect:949
#, c-format
msgid "Third DNS server (optional)"
msgstr "שרת DNS שלישי (לא חובה)"
-#: standalone/drakconnect:958
+#: standalone/drakconnect:971
#, c-format
msgid "Internet Connection Configuration"
msgstr "תצורת החיבור לאינטרנט"
-#: standalone/drakconnect:959
+#: standalone/drakconnect:972
#, c-format
msgid "Internet access"
msgstr "גישה לאינטרנט"
-#: standalone/drakconnect:961 standalone/net_monitor:87
+#: standalone/drakconnect:974 standalone/net_monitor:88
#, c-format
msgid "Connection type: "
msgstr ""
-#: standalone/drakconnect:964
+#: standalone/drakconnect:977
#, c-format
msgid "Status:"
msgstr ""
@@ -17733,104 +17737,104 @@ msgstr "השינוי נעשה. האם אתה רוצה לאתחל את שירות
msgid "drakfloppy"
msgstr "drakfloppy"
-#: standalone/drakfloppy:82
+#: standalone/drakfloppy:83
#, c-format
msgid "Boot disk creation"
msgstr "יצירת תקליטון הפעלה"
-#: standalone/drakfloppy:83
+#: standalone/drakfloppy:84
#, c-format
msgid "General"
msgstr "כללי"
-#: standalone/drakfloppy:86
+#: standalone/drakfloppy:87
#, c-format
msgid "Device"
msgstr "התקן"
-#: standalone/drakfloppy:92
+#: standalone/drakfloppy:93
#, c-format
msgid "Kernel version"
msgstr "גרסת גרעין:"
-#: standalone/drakfloppy:107
+#: standalone/drakfloppy:108
#, c-format
msgid "Preferences"
msgstr "העדפות"
-#: standalone/drakfloppy:121
+#: standalone/drakfloppy:122
#, c-format
msgid "Advanced preferences"
msgstr "מאפיינים מתקדמים"
-#: standalone/drakfloppy:140
+#: standalone/drakfloppy:141
#, c-format
msgid "Size"
msgstr "גודל"
-#: standalone/drakfloppy:143
+#: standalone/drakfloppy:144
#, c-format
msgid "Mkinitrd optional arguments"
msgstr "משתני בחירה עבור mkinitrd"
-#: standalone/drakfloppy:145
+#: standalone/drakfloppy:146
#, c-format
msgid "force"
msgstr "הכרח/י"
-#: standalone/drakfloppy:146
+#: standalone/drakfloppy:147
#, c-format
msgid "omit raid modules"
msgstr "וותר על מודולים של RAID"
-#: standalone/drakfloppy:147
+#: standalone/drakfloppy:148
#, c-format
msgid "if needed"
msgstr "אם נדרש"
-#: standalone/drakfloppy:148
+#: standalone/drakfloppy:149
#, c-format
msgid "omit scsi modules"
msgstr "וותר על מודולים של SCSI"
-#: standalone/drakfloppy:151
+#: standalone/drakfloppy:152
#, c-format
msgid "Add a module"
msgstr "הוספת מודול"
-#: standalone/drakfloppy:160
+#: standalone/drakfloppy:161
#, c-format
msgid "Remove a module"
msgstr "הסרת מודול"
-#: standalone/drakfloppy:295
+#: standalone/drakfloppy:296
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr "נא לבדוק שיש מדיה בהתקן %s"
-#: standalone/drakfloppy:301
+#: standalone/drakfloppy:302
#, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
"Please insert one."
msgstr "אין מדיה, או ההתקן מוגן לכתיבה עבור %s."
-#: standalone/drakfloppy:305
+#: standalone/drakfloppy:306
#, c-format
msgid "Unable to fork: %s"
msgstr "לא יכול להריץ %s"
-#: standalone/drakfloppy:308
+#: standalone/drakfloppy:309
#, c-format
msgid "Floppy creation completed"
msgstr "יצירת תקליטון הסתיימה"
-#: standalone/drakfloppy:308
+#: standalone/drakfloppy:309
#, c-format
msgid "The creation of the boot floppy has been successfully completed \n"
msgstr ""
-#: standalone/drakfloppy:311
+#: standalone/drakfloppy:312
#, c-format
msgid ""
"Unable to properly close mkbootdisk:\n"
@@ -18538,22 +18542,22 @@ msgstr "התאמה אישית והגדרות מערכת"
msgid "Editable"
msgstr "ניתן לעריכה"
-#: standalone/drakperm:48 standalone/drakperm:314
+#: standalone/drakperm:48 standalone/drakperm:318
#, c-format
msgid "Path"
msgstr "נתיב"
-#: standalone/drakperm:48 standalone/drakperm:250
+#: standalone/drakperm:48 standalone/drakperm:254
#, c-format
msgid "User"
msgstr "משתמש"
-#: standalone/drakperm:48 standalone/drakperm:250
+#: standalone/drakperm:48 standalone/drakperm:254
#, c-format
msgid "Group"
msgstr "קבוצה"
-#: standalone/drakperm:48 standalone/drakperm:326
+#: standalone/drakperm:48 standalone/drakperm:330
#, c-format
msgid "Permissions"
msgstr "הרשאות"
@@ -18614,9 +18618,10 @@ msgstr "הוספה של חוק חדש בסוף"
msgid "Delete selected rule"
msgstr "למחוק את הכלל הנבחר"
+#. -PO: "Edit" is a button text and the translation has to be AS SHORT AS POSSIBLE
#: standalone/drakperm:125 standalone/drakups:281 standalone/drakups:330
#: standalone/drakups:350 standalone/drakvpn:333 standalone/drakvpn:694
-#: standalone/printerdrake:229
+#: standalone/printerdrake:233
#, c-format
msgid "Edit"
msgstr "עריכה"
@@ -18626,47 +18631,47 @@ msgstr "עריכה"
msgid "Edit current rule"
msgstr ""
-#: standalone/drakperm:242
+#: standalone/drakperm:246
#, c-format
msgid "browse"
msgstr "סייר"
-#: standalone/drakperm:252
+#: standalone/drakperm:256
#, c-format
msgid "Read"
msgstr "קריאה"
-#: standalone/drakperm:253
+#: standalone/drakperm:257
#, c-format
msgid "Enable \"%s\" to read the file"
msgstr ""
-#: standalone/drakperm:256
+#: standalone/drakperm:260
#, c-format
msgid "Write"
msgstr "כתוב"
-#: standalone/drakperm:257
+#: standalone/drakperm:261
#, c-format
msgid "Enable \"%s\" to write the file"
msgstr "אפשר \"%s\" לכתיבה על הקובץ"
-#: standalone/drakperm:260
+#: standalone/drakperm:264
#, c-format
msgid "Execute"
msgstr "הפעלה"
-#: standalone/drakperm:261
+#: standalone/drakperm:265
#, c-format
msgid "Enable \"%s\" to execute the file"
msgstr "אפשר ל-\"%s\" להריץ את הקובץ"
-#: standalone/drakperm:263
+#: standalone/drakperm:267
#, c-format
msgid "Sticky-bit"
msgstr ""
-#: standalone/drakperm:263
+#: standalone/drakperm:267
#, c-format
msgid ""
"Used for directory:\n"
@@ -18675,52 +18680,52 @@ msgstr ""
"בשימוש עבור ספרייה:\n"
"רק הבעלים של הספרייה או הקובץ יכולים למחוק אותו."
-#: standalone/drakperm:264
+#: standalone/drakperm:268
#, c-format
msgid "Set-UID"
msgstr ""
-#: standalone/drakperm:264
+#: standalone/drakperm:268
#, c-format
msgid "Use owner id for execution"
msgstr ""
-#: standalone/drakperm:265
+#: standalone/drakperm:269
#, c-format
msgid "Set-GID"
msgstr ""
-#: standalone/drakperm:265
+#: standalone/drakperm:269
#, c-format
msgid "Use group id for execution"
msgstr ""
-#: standalone/drakperm:283 standalone/drakxtv:87
+#: standalone/drakperm:287 standalone/drakxtv:87
#, c-format
msgid "User :"
msgstr "משתמש :"
-#: standalone/drakperm:285
+#: standalone/drakperm:289
#, c-format
msgid "Group :"
msgstr "קבוצה :"
-#: standalone/drakperm:289
+#: standalone/drakperm:293
#, c-format
msgid "Current user"
msgstr "משתמש נוכחי"
-#: standalone/drakperm:290
+#: standalone/drakperm:294
#, c-format
msgid "When checked, owner and group won't be changed"
msgstr "כאשר מסומן, בעלים וקבוצה לא ישונו"
-#: standalone/drakperm:300
+#: standalone/drakperm:304
#, c-format
msgid "Path selection"
msgstr "בחירת נתיב"
-#: standalone/drakperm:320
+#: standalone/drakperm:324
#, c-format
msgid "Property"
msgstr "מאפיין"
@@ -18850,6 +18855,8 @@ msgstr "לא"
msgid "yes"
msgstr "כן"
+#. -PO: Do not alter the <span ..> and </span> tags
+#. -PO: Translate the security levels (Poor, Standard, High, Higher and Paranoid) in the same way, you translated these individuals words
#: standalone/draksec:81
#, c-format
msgid ""
@@ -19112,7 +19119,7 @@ msgid "Make kernel message quiet by default"
msgstr "הפוך הודעות גרעין לשקטות כברירת מחדל"
#: standalone/draksplash:161 standalone/draksplash:319
-#: standalone/draksplash:462
+#: standalone/draksplash:464
#, c-format
msgid "Notice"
msgstr "לשים לב"
@@ -19132,22 +19139,23 @@ msgstr "יש לבחור קובץ תמונה "
msgid "saving Bootsplash theme..."
msgstr ""
-#: standalone/draksplash:443
+#: standalone/draksplash:445
#, c-format
msgid "ProgressBar color selection"
msgstr "בחירת צבע פס ההתקדמות"
-#: standalone/draksplash:462
+#: standalone/draksplash:464
#, c-format
msgid "You must choose an image file first!"
msgstr "יש לבחור קובץ תמונה קודם!"
-#: standalone/draksplash:467
+#: standalone/draksplash:469
#, c-format
msgid "Generating preview ..."
msgstr "תצוגה מקדימה..."
-#: standalone/draksplash:512
+#. -PO: First %s is theme name, second %s (in parenthesis) is resolution
+#: standalone/draksplash:515
#, c-format
msgid "%s BootSplash (%s) preview"
msgstr ""
@@ -19186,7 +19194,7 @@ msgstr ""
msgid "Autodetection"
msgstr "זיהוי-אוטומטי"
-#: standalone/drakups:90 standalone/harddrake2:134
+#: standalone/drakups:90 standalone/harddrake2:140
#, c-format
msgid "Detection in progress"
msgstr "זיהוי בתהליך"
@@ -19265,7 +19273,7 @@ msgid "UPS devices"
msgstr "התקני UPS"
#: standalone/drakups:233 standalone/drakups:251 standalone/drakups:266
-#: standalone/harddrake2:63
+#: standalone/harddrake2:67
#, c-format
msgid "Name"
msgstr "שם"
@@ -19295,7 +19303,7 @@ msgstr "חוקים"
msgid "Action"
msgstr "פעולה"
-#: standalone/drakups:278 standalone/drakvpn:1146 standalone/harddrake2:57
+#: standalone/drakups:278 standalone/drakvpn:1146 standalone/harddrake2:61
#, c-format
msgid "Level"
msgstr "שלב"
@@ -20687,42 +20695,43 @@ msgstr "קיבולת כונן"
msgid "special capacities of the driver (burning ability and or DVD support)"
msgstr ""
-#: standalone/harddrake2:36
+#. -PO: here "comas" is the medical coma, not the lexical coma!!
+#: standalone/harddrake2:37
#, c-format
msgid "Coma bug"
msgstr "באג תרדמת"
-#: standalone/harddrake2:36
+#: standalone/harddrake2:37
#, c-format
msgid "whether this cpu has the Cyrix 6x86 Coma bug"
msgstr "האם למעבד הזה יש את באג התרדמת של Cyrix 6x86?"
-#: standalone/harddrake2:37
+#: standalone/harddrake2:38
#, c-format
msgid "Cpuid family"
msgstr "משפחת Cpuid"
-#: standalone/harddrake2:37
+#: standalone/harddrake2:38
#, c-format
msgid "family of the cpu (eg: 6 for i686 class)"
msgstr "המשפחה של המעבד (למשל 6 למעבדי i686)"
-#: standalone/harddrake2:38
+#: standalone/harddrake2:39
#, c-format
msgid "Cpuid level"
msgstr "רמת CPUID"
-#: standalone/harddrake2:38
+#: standalone/harddrake2:39
#, c-format
msgid "information level that can be obtained through the cpuid instruction"
msgstr ""
-#: standalone/harddrake2:39
+#: standalone/harddrake2:40
#, c-format
msgid "Frequency (MHz)"
msgstr "תדירות (MHz)"
-#: standalone/harddrake2:39
+#: standalone/harddrake2:40
#, c-format
msgid ""
"the CPU frequency in MHz (Megahertz which in first approximation may be "
@@ -20730,57 +20739,68 @@ msgid ""
"per second)"
msgstr ""
-#: standalone/harddrake2:40
+#: standalone/harddrake2:41
#, c-format
msgid "this field describes the device"
msgstr "השדה הזה מכיל תיאור של ההתקן "
-#: standalone/harddrake2:41
+#: standalone/harddrake2:42
#, c-format
msgid "Old device file"
msgstr "קובץ התקן ישן"
-#: standalone/harddrake2:42
+#: standalone/harddrake2:43
#, c-format
msgid "old static device name used in dev package"
msgstr "שם ההתקן הסטטי הישן בשימוש ב-dev package"
-#: standalone/harddrake2:43
+#: standalone/harddrake2:44
#, c-format
msgid "New devfs device"
msgstr "התקן devfs חדש"
-#: standalone/harddrake2:44
+#: standalone/harddrake2:45
#, c-format
msgid "new dynamic device name generated by core kernel devfs"
msgstr "שם דינמי חדש מיותר על ידי הגרעין בעזרת devfs"
-#: standalone/harddrake2:46
+#. -PO: here "module" is the "jargon term" for a kernel driver
+#: standalone/harddrake2:48
#, c-format
msgid "Module"
msgstr "מודול"
-#: standalone/harddrake2:46
+#: standalone/harddrake2:48
#, c-format
msgid "the module of the GNU/Linux kernel that handles the device"
msgstr "המודול של גרעין GNU/Linux שמטפל בהתקן"
-#: standalone/harddrake2:47
+#: standalone/harddrake2:49
+#, c-format
+msgid "Extended partitions"
+msgstr "מחיצה מורחבת"
+
+#: standalone/harddrake2:49
+#, c-format
+msgid "the number of extended partitions"
+msgstr "מספר המחיצות המורחבות"
+
+#: standalone/harddrake2:50
#, c-format
msgid "Flags"
msgstr "דגלים"
-#: standalone/harddrake2:47
+#: standalone/harddrake2:50
#, c-format
msgid "CPU flags reported by the kernel"
msgstr "דגלי מעבד מדווחים על ידי הגרעין"
-#: standalone/harddrake2:48
+#: standalone/harddrake2:51
#, c-format
msgid "Fdiv bug"
msgstr "באג Fdiv"
-#: standalone/harddrake2:49
+#: standalone/harddrake2:52
#, c-format
msgid ""
"Early Intel Pentium chips manufactured have a bug in their floating point "
@@ -20790,155 +20810,175 @@ msgstr ""
"לחלק ממעבדי הפנטיום הראשונים היא באג בחשובים של נקודה צפה המעבדים לא חישבו "
"בצורה נכונה חלק מהחישובים שתלוים בנקודה צפה Floating point DIVision (FDIV)"
-#: standalone/harddrake2:50
+#: standalone/harddrake2:53
#, c-format
msgid "Is FPU present"
msgstr "האם FPU נוכח"
-#: standalone/harddrake2:50
+#: standalone/harddrake2:53
#, c-format
msgid "yes means the processor has an arithmetic coprocessor"
msgstr "כן אומר שלמעבד יש יחידת עיבוד מתמטית"
-#: standalone/harddrake2:51
+#: standalone/harddrake2:54
#, c-format
msgid "Whether the FPU has an irq vector"
msgstr "האם מעבד העזר המתמתטי תומך ב-IRQ וקטורי"
-#: standalone/harddrake2:51
+#: standalone/harddrake2:54
#, c-format
msgid "yes means the arithmetic coprocessor has an exception vector attached"
msgstr ""
-#: standalone/harddrake2:52
+#: standalone/harddrake2:55
#, c-format
msgid "F00f bug"
msgstr "באג F00f"
-#: standalone/harddrake2:52
+#: standalone/harddrake2:55
#, c-format
msgid "early pentiums were buggy and freezed when decoding the F00F bytecode"
msgstr "למעבדי פנטיום הראשונים היא באג שגרם להם לקפוא כאשר חישבו את הקוד F00F"
-#: standalone/harddrake2:53
+#: standalone/harddrake2:56
+#, c-format
+msgid "Geometry"
+msgstr "גיאומטריה"
+
+#: standalone/harddrake2:56
+#, c-format
+msgid "Cylinder/head/sectors geometry of the disk"
+msgstr ""
+
+#: standalone/harddrake2:57
#, c-format
msgid "Halt bug"
msgstr "באג HALT"
-#: standalone/harddrake2:54
+#: standalone/harddrake2:58
#, c-format
msgid ""
"Some of the early i486DX-100 chips cannot reliably return to operating mode "
"after the \"halt\" instruction is used"
msgstr ""
-#: standalone/harddrake2:56
+#: standalone/harddrake2:60
#, c-format
msgid "Floppy format"
msgstr "פרמוט תקליטון"
-#: standalone/harddrake2:56
+#: standalone/harddrake2:60
#, c-format
msgid "format of floppies supported by the drive"
msgstr ""
-#: standalone/harddrake2:57
+#: standalone/harddrake2:61
#, c-format
msgid "sub generation of the cpu"
msgstr ""
-#: standalone/harddrake2:58
+#: standalone/harddrake2:62
#, c-format
msgid "class of hardware device"
msgstr "סוג התקן החומרה"
-#: standalone/harddrake2:59 standalone/harddrake2:60
+#: standalone/harddrake2:63 standalone/harddrake2:64
#: standalone/printerdrake:212
#, c-format
msgid "Model"
msgstr "מודל"
-#: standalone/harddrake2:59
+#: standalone/harddrake2:63
#, c-format
msgid "hard disk model"
msgstr "דגם כונן קשיח"
-#: standalone/harddrake2:60
+#: standalone/harddrake2:64
#, c-format
msgid "generation of the cpu (eg: 8 for PentiumIII, ...)"
msgstr "דור המעבד: (לדוגמה: 8 לפנטיום 3,...) "
-#: standalone/harddrake2:61
+#: standalone/harddrake2:65
#, c-format
msgid "Model name"
msgstr "שם מודל"
-#: standalone/harddrake2:61
+#: standalone/harddrake2:65
#, c-format
msgid "official vendor name of the cpu"
msgstr "שם המעבד הרשמי לפי היצרן"
-#: standalone/harddrake2:62
+#: standalone/harddrake2:66
#, c-format
msgid "Number of buttons"
msgstr "מספר כפתורים"
-#: standalone/harddrake2:62
+#: standalone/harddrake2:66
#, c-format
msgid "the number of buttons the mouse has"
msgstr "מספר המקשים שיש לעכבר"
-#: standalone/harddrake2:63
+#: standalone/harddrake2:67
#, c-format
msgid "the name of the CPU"
msgstr "שם המעבד הראשי"
-#: standalone/harddrake2:64
+#: standalone/harddrake2:68
#, c-format
msgid "network printer port"
msgstr "יציאה לרשת של המדפסת"
-#: standalone/harddrake2:65
+#: standalone/harddrake2:69
#, c-format
msgid "Processor ID"
msgstr "מזהה מעבד"
-#: standalone/harddrake2:65
+#: standalone/harddrake2:69
#, c-format
msgid "the number of the processor"
msgstr "מספר המעבד"
-#: standalone/harddrake2:66
+#: standalone/harddrake2:70
+#, c-format
+msgid "Primary partitions"
+msgstr "מחיצות ראשיות"
+
+#: standalone/harddrake2:70
+#, c-format
+msgid "the number of the primary partitions"
+msgstr "מספר המחיצות הראשיות"
+
+#: standalone/harddrake2:71
#, c-format
msgid "Model stepping"
msgstr ""
-#: standalone/harddrake2:66
+#: standalone/harddrake2:71
#, c-format
msgid "stepping of the cpu (sub model (generation) number)"
msgstr ""
-#: standalone/harddrake2:67
+#: standalone/harddrake2:72
#, c-format
msgid "the type of bus on which the mouse is connected"
msgstr "סוג החיבור של העכבר"
-#: standalone/harddrake2:68
+#: standalone/harddrake2:73
#, c-format
msgid "the vendor name of the device"
msgstr "שם היצרן של ההתקן"
-#: standalone/harddrake2:69
+#: standalone/harddrake2:74
#, c-format
msgid "the vendor name of the processor"
msgstr "שם היצרן של המעבד"
-#: standalone/harddrake2:70
+#: standalone/harddrake2:75
#, c-format
msgid "Write protection"
msgstr "הגנת כתיבה"
-#: standalone/harddrake2:70
+#: standalone/harddrake2:75
#, c-format
msgid ""
"the WP flag in the CR0 register of the cpu enforce write proctection at the "
@@ -20946,57 +20986,58 @@ msgid ""
"accesses to user memory (aka this is a bug guard)"
msgstr ""
-#: standalone/harddrake2:84 standalone/logdrake:78 standalone/printerdrake:146
+#. -PO: please keep all "/" charaters !!!
+#: standalone/harddrake2:90 standalone/logdrake:78 standalone/printerdrake:146
#: standalone/printerdrake:159
#, c-format
msgid "/_Options"
msgstr "/_אפשרויות"
-#: standalone/harddrake2:85 standalone/harddrake2:106 standalone/logdrake:80
+#: standalone/harddrake2:91 standalone/harddrake2:112 standalone/logdrake:80
#: standalone/printerdrake:171 standalone/printerdrake:172
#: standalone/printerdrake:173 standalone/printerdrake:174
#, c-format
msgid "/_Help"
msgstr "/_עזרה"
-#: standalone/harddrake2:89
+#: standalone/harddrake2:95
#, c-format
msgid "/Autodetect _printers"
msgstr "/זיהוי _מדפסות אוטומטי"
-#: standalone/harddrake2:90
+#: standalone/harddrake2:96
#, c-format
msgid "/Autodetect _modems"
msgstr "/זיהוי אוטומטי של _מודמים"
-#: standalone/harddrake2:91
+#: standalone/harddrake2:97
#, c-format
msgid "/Autodetect _jaz drives"
msgstr "/זיהוי אוטומטי של כונני _jaz"
-#: standalone/harddrake2:98 standalone/printerdrake:152
+#: standalone/harddrake2:104 standalone/printerdrake:152
#, c-format
msgid "/_Quit"
msgstr "/_יציאה"
-#: standalone/harddrake2:107
+#: standalone/harddrake2:113
#, c-format
msgid "/_Fields description"
msgstr ""
-#: standalone/harddrake2:109
+#: standalone/harddrake2:115
#, c-format
msgid "Harddrake help"
msgstr "עזרת Harddrake "
-#: standalone/harddrake2:110
+#: standalone/harddrake2:116
#, c-format
msgid ""
"Description of the fields:\n"
"\n"
msgstr ""
-#: standalone/harddrake2:115
+#: standalone/harddrake2:121
#, c-format
msgid ""
"Once you've selected a device, you'll be able to see the device information "
@@ -21005,22 +21046,23 @@ msgstr ""
"ברגע שהתקן נבחר,ניתן לראות את המידע של ההתקן בשדות התצוגה במסגרת הימנית "
"(\"מידע\")"
-#: standalone/harddrake2:120 standalone/printerdrake:173
+#: standalone/harddrake2:126 standalone/printerdrake:173
#, c-format
msgid "/_Report Bug"
msgstr "/_דיווח באג"
-#: standalone/harddrake2:121 standalone/printerdrake:174
+#: standalone/harddrake2:127 standalone/printerdrake:174
#, c-format
msgid "/_About..."
msgstr "/_אודות..."
-#: standalone/harddrake2:122
+#: standalone/harddrake2:128
#, c-format
msgid "About Harddrake"
msgstr "אודות Harddrake"
-#: standalone/harddrake2:124
+#. -PO: Do not alter the <span ..> and </span> tags
+#: standalone/harddrake2:130
#, c-format
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
@@ -21030,57 +21072,57 @@ msgid ""
"\n"
msgstr ""
-#: standalone/harddrake2:141
+#: standalone/harddrake2:147
#, c-format
msgid "Harddrake2 version %s"
msgstr "Hardrake2 גרסה %s"
-#: standalone/harddrake2:157
+#: standalone/harddrake2:163
#, c-format
msgid "Detected hardware"
msgstr "חומרה שזוהתה"
-#: standalone/harddrake2:162
+#: standalone/harddrake2:168
#, c-format
msgid "Configure module"
msgstr "הגדרת מודול"
-#: standalone/harddrake2:169
+#: standalone/harddrake2:175
#, c-format
msgid "Run config tool"
msgstr "הרצת כלי הגדרה"
-#: standalone/harddrake2:216
+#: standalone/harddrake2:222
#, c-format
msgid "unknown"
msgstr "לא ידוע"
-#: standalone/harddrake2:217
+#: standalone/harddrake2:223
#, c-format
msgid "Unknown"
msgstr "לא ידוע"
-#: standalone/harddrake2:235
+#: standalone/harddrake2:241
#, c-format
msgid "Click on a device in the left tree in order to display its information here."
msgstr ""
-#: standalone/harddrake2:286
+#: standalone/harddrake2:295
#, c-format
msgid "secondary"
msgstr "משני"
-#: standalone/harddrake2:286
+#: standalone/harddrake2:295
#, c-format
msgid "primary"
msgstr "ראשי"
-#: standalone/harddrake2:294
+#: standalone/harddrake2:303
#, c-format
msgid "burner"
msgstr "צורב"
-#: standalone/harddrake2:294
+#: standalone/harddrake2:303
#, c-format
msgid "DVD"
msgstr "DVD"
@@ -21203,7 +21245,7 @@ msgstr "חיפוש"
msgid "A tool to monitor your logs"
msgstr "כלי להצגת הרישום של המערכת"
-#: standalone/logdrake:130 standalone/net_monitor:85
+#: standalone/logdrake:130 standalone/net_monitor:86
#, c-format
msgid "Settings"
msgstr "הגדרות"
@@ -21398,27 +21440,27 @@ msgstr "בדיקת העכבר"
msgid "Please test your mouse:"
msgstr "נא לבדוק את העכבר:"
-#: standalone/net_monitor:51 standalone/net_monitor:56
+#: standalone/net_monitor:52 standalone/net_monitor:57
#, c-format
msgid "Network Monitoring"
msgstr "תצוגת מצב רשת"
-#: standalone/net_monitor:91
+#: standalone/net_monitor:92
#, c-format
msgid "Global statistics"
msgstr "סטטיסטיקה כלליות"
-#: standalone/net_monitor:94
+#: standalone/net_monitor:95
#, c-format
msgid "Instantaneous"
msgstr "מיידי"
-#: standalone/net_monitor:94
+#: standalone/net_monitor:95
#, c-format
msgid "Average"
msgstr "ממוצע"
-#: standalone/net_monitor:95
+#: standalone/net_monitor:96
#, c-format
msgid ""
"Sending\n"
@@ -21427,7 +21469,7 @@ msgstr ""
"מהירות\n"
"שליחה:"
-#: standalone/net_monitor:96
+#: standalone/net_monitor:97
#, c-format
msgid ""
"Receiving\n"
@@ -21436,7 +21478,7 @@ msgstr ""
"מהירות\n"
"קבלה:"
-#: standalone/net_monitor:99
+#: standalone/net_monitor:100
#, c-format
msgid ""
"Connection\n"
@@ -21445,37 +21487,37 @@ msgstr ""
"זמן\n"
"חיבור: "
-#: standalone/net_monitor:121
+#: standalone/net_monitor:122
#, c-format
msgid "Wait please, testing your connection..."
msgstr "נא להמתין, בזמן בדיקת החיבור שלך..."
-#: standalone/net_monitor:149 standalone/net_monitor:162
+#: standalone/net_monitor:150 standalone/net_monitor:163
#, c-format
msgid "Disconnecting from Internet "
msgstr "מתנתק מהאינטרנט"
-#: standalone/net_monitor:149 standalone/net_monitor:162
+#: standalone/net_monitor:150 standalone/net_monitor:163
#, c-format
msgid "Connecting to Internet "
msgstr "מתחבר לאינטרנט"
-#: standalone/net_monitor:193
+#: standalone/net_monitor:194
#, c-format
msgid "Disconnection from Internet failed."
msgstr "ההתנתקות מהאינטרנט נכשלה."
-#: standalone/net_monitor:194
+#: standalone/net_monitor:195
#, c-format
msgid "Disconnection from Internet complete."
msgstr "ההתנתקות מהאינטרנט הושלמה בהצלחה."
-#: standalone/net_monitor:196
+#: standalone/net_monitor:197
#, c-format
msgid "Connection complete."
msgstr "התחברות הושלמה."
-#: standalone/net_monitor:197
+#: standalone/net_monitor:198
#, c-format
msgid ""
"Connection failed.\n"
@@ -21484,59 +21526,59 @@ msgstr ""
"התחברות נכשלה.\n"
"נא לבדוק את ההגדרות במרכז ההגדרות של Mandrake."
-#: standalone/net_monitor:295
+#: standalone/net_monitor:299
#, c-format
msgid "Color configuration"
msgstr "הגדרות צבע"
-#: standalone/net_monitor:343 standalone/net_monitor:363
+#: standalone/net_monitor:347 standalone/net_monitor:367
#, c-format
msgid "sent: "
msgstr "נשלחו:"
-#: standalone/net_monitor:350 standalone/net_monitor:367
+#: standalone/net_monitor:354 standalone/net_monitor:371
#, c-format
msgid "received: "
msgstr "התקבלו:"
-#: standalone/net_monitor:357
+#: standalone/net_monitor:361
#, c-format
msgid "average"
msgstr "ממוצע"
-#: standalone/net_monitor:360
+#: standalone/net_monitor:364
#, c-format
msgid "Local measure"
msgstr "מעקב"
-#: standalone/net_monitor:392
+#: standalone/net_monitor:396
#, c-format
msgid "transmitted"
msgstr "הועבר"
-#: standalone/net_monitor:393
+#: standalone/net_monitor:397
#, c-format
msgid "received"
msgstr "התקבל"
-#: standalone/net_monitor:411
+#: standalone/net_monitor:415
#, c-format
msgid ""
"Warning, another internet connection has been detected, maybe using your "
"network"
msgstr "אזהרה, חיבור אינטרנט אחר זוהה, אולי משתמש ברשת שלך"
-#: standalone/net_monitor:417
+#: standalone/net_monitor:421
#, c-format
msgid "Disconnect %s"
msgstr "מנתק %s"
-#: standalone/net_monitor:417
+#: standalone/net_monitor:421
#, c-format
msgid "Connect %s"
msgstr "מחבר %s"
-#: standalone/net_monitor:422
+#: standalone/net_monitor:426
#, c-format
msgid "No internet connection configured"
msgstr "לא הוגדר חיבור לאינטרנט"
@@ -21628,62 +21670,66 @@ msgstr "סוג חיבור"
msgid "Server Name"
msgstr "שם שרת"
-#: standalone/printerdrake:225
+#. -PO: "Add Printer" is a button text and the translation has to be AS SHORT AS POSSIBLE
+#: standalone/printerdrake:227
#, c-format
msgid "Add Printer"
msgstr "הוספת מדפסת"
-#: standalone/printerdrake:225
+#: standalone/printerdrake:227
#, c-format
msgid "Add a new printer to the system"
msgstr "הוספת מדפסת חדשה למערכת"
-#: standalone/printerdrake:227
+#. -PO: "Set as default" is a button text and the translation has to be AS SHORT AS POSSIBLE
+#: standalone/printerdrake:230
#, c-format
msgid "Set as default"
msgstr "קבע בתור ברירת מחדל"
-#: standalone/printerdrake:227
+#: standalone/printerdrake:230
#, c-format
msgid "Set selected printer as the default printer"
msgstr "סימון מדפסת זאת בתור ברירת מחדל"
-#: standalone/printerdrake:229
+#: standalone/printerdrake:233
#, c-format
msgid "Edit selected printer"
msgstr "עריכת המדפסת הנבחרת"
-#: standalone/printerdrake:231
+#: standalone/printerdrake:236
#, c-format
msgid "Delete selected printer"
msgstr "למחוק את המדפסת הנבחרת"
-#: standalone/printerdrake:233
+#. -PO: "Refresh" is a button text and the translation has to be AS SHORT AS POSSIBLE
+#: standalone/printerdrake:239
#, c-format
msgid "Refresh"
msgstr "רענן"
-#: standalone/printerdrake:233
+#: standalone/printerdrake:239
#, c-format
msgid "Refresh the list"
msgstr "רענון הרשימה"
-#: standalone/printerdrake:235
+#. -PO: "Configure CUPS" is a button text and the translation has to be AS SHORT AS POSSIBLE
+#: standalone/printerdrake:242
#, c-format
msgid "Configure CUPS"
msgstr "תצורת CUPS"
-#: standalone/printerdrake:235
+#: standalone/printerdrake:242
#, c-format
msgid "Configure CUPS printing system"
msgstr "הגדרת מערכת הדפסה CUPS"
-#: standalone/printerdrake:521
+#: standalone/printerdrake:528
#, c-format
msgid "Authors: "
msgstr "כותבים:"
-#: standalone/printerdrake:527
+#: standalone/printerdrake:534
#, c-format
msgid "Printer Management \n"
msgstr "ניהול מדפסות\n"
@@ -21714,17 +21760,17 @@ msgstr "לא יכול להתקין את החבליות הבסיסיות עבור
msgid "Scannerdrake will not be started now."
msgstr "Scannerdrake לא יופעל כעת"
-#: standalone/scannerdrake:66 standalone/scannerdrake:459
+#: standalone/scannerdrake:66 standalone/scannerdrake:464
#, c-format
msgid "Searching for configured scanners ..."
msgstr "מחפש סורקים מוגדרים..."
-#: standalone/scannerdrake:70 standalone/scannerdrake:463
+#: standalone/scannerdrake:70 standalone/scannerdrake:468
#, c-format
msgid "Searching for new scanners ..."
msgstr "מחפש סורקים חדשים..."
-#: standalone/scannerdrake:78 standalone/scannerdrake:485
+#: standalone/scannerdrake:78 standalone/scannerdrake:490
#, c-format
msgid "Re-generating list of configured scanners ..."
msgstr "יצירה מחדש של רשימת הסורקים המוגדרים ..."
@@ -21852,17 +21898,22 @@ msgstr "התקנת קושחה עבור"
msgid "Select firmware file for the %s"
msgstr "בחירת קובץ קושחה עבור %s"
-#: standalone/scannerdrake:282
+#: standalone/scannerdrake:274
+#, c-format
+msgid "Could not install the firmware file for the %s!"
+msgstr "לא הצליחה התקנת קובץ קושחה עבור %s!"
+
+#: standalone/scannerdrake:287
#, c-format
msgid "The firmware file for your %s was successfully installed."
msgstr "קובץ הקושחה עבור ה %s שלך הותקן בהצלחה."
-#: standalone/scannerdrake:292
+#: standalone/scannerdrake:297
#, c-format
msgid "The %s is unsupported"
msgstr "ה%s הזה לא נתמך"
-#: standalone/scannerdrake:297
+#: standalone/scannerdrake:302
#, c-format
msgid ""
"The %s must be configured by printerdrake.\n"
@@ -21871,33 +21922,33 @@ msgstr ""
"ה %s חייב להיות מוגדר על ידי printerdrake.\n"
"באפשרותך להפעיל את printerdrake ממרכז הבקרה %s במדור חומרה."
-#: standalone/scannerdrake:301 standalone/scannerdrake:308
-#: standalone/scannerdrake:338
+#: standalone/scannerdrake:306 standalone/scannerdrake:313
+#: standalone/scannerdrake:343
#, c-format
msgid "Auto-detect available ports"
msgstr "זיהוי אוטומטית של יציאות זמינות"
-#: standalone/scannerdrake:303 standalone/scannerdrake:349
+#: standalone/scannerdrake:308 standalone/scannerdrake:354
#, c-format
msgid "Please select the device where your %s is attached"
msgstr "נא לבחור את ההתקן שאליו ה-%s שלך מחובר"
-#: standalone/scannerdrake:304
+#: standalone/scannerdrake:309
#, c-format
msgid "(Note: Parallel ports cannot be auto-detected)"
msgstr "(הודעה: יציאות טוריות לא יכולות להיות מזוהות אוטומטית)"
-#: standalone/scannerdrake:306 standalone/scannerdrake:351
+#: standalone/scannerdrake:311 standalone/scannerdrake:356
#, c-format
msgid "choose device"
msgstr "יש לבחור התקן"
-#: standalone/scannerdrake:340
+#: standalone/scannerdrake:345
#, c-format
msgid "Searching for scanners ..."
msgstr "מחפש סורקים חדשים ..."
-#: standalone/scannerdrake:375
+#: standalone/scannerdrake:380
#, c-format
msgid ""
"Your %s has been configured.\n"
@@ -21908,7 +21959,7 @@ msgstr ""
"עכשיו באפשרותך לסרוק מסמכים בעזרת \"XSane\" או \"Kooka\" מכניסת מולטימדיה/"
"גרפיקה בתפריט היישומים."
-#: standalone/scannerdrake:399
+#: standalone/scannerdrake:404
#, c-format
msgid ""
"The following scanners\n"
@@ -21921,7 +21972,7 @@ msgstr ""
"%s\n"
"זמינים במערכת שלך.\n"
-#: standalone/scannerdrake:400
+#: standalone/scannerdrake:405
#, c-format
msgid ""
"The following scanner\n"
@@ -21934,42 +21985,42 @@ msgstr ""
"%s\n"
"זמין במערכת שלך.\n"
-#: standalone/scannerdrake:403 standalone/scannerdrake:406
+#: standalone/scannerdrake:408 standalone/scannerdrake:411
#, c-format
msgid "There are no scanners found which are available on your system.\n"
msgstr "לא נמצאו סורקים זמינים במערכת שלך.\n"
-#: standalone/scannerdrake:420
+#: standalone/scannerdrake:425
#, c-format
msgid "Search for new scanners"
msgstr "חיפוש סורקים חדשים"
-#: standalone/scannerdrake:426
+#: standalone/scannerdrake:431
#, c-format
msgid "Add a scanner manually"
msgstr "הוספה ידנית של סורק"
-#: standalone/scannerdrake:433
+#: standalone/scannerdrake:438
#, c-format
msgid "Install/Update firmware files"
msgstr "התקנת/עדכון קבצי קושחה"
-#: standalone/scannerdrake:439
+#: standalone/scannerdrake:444
#, c-format
msgid "Scanner sharing"
msgstr "שיתוף סורק"
-#: standalone/scannerdrake:498 standalone/scannerdrake:663
+#: standalone/scannerdrake:503 standalone/scannerdrake:668
#, c-format
msgid "All remote machines"
msgstr "כל המכונות המרוחקות"
-#: standalone/scannerdrake:510 standalone/scannerdrake:813