package detect_devices; # $Id$ use diagnostics; use strict; use vars qw($pcitable_addons $usbtable_addons); #-###################################################################################### #- misc imports #-###################################################################################### use log; use common; use devices; use run_program; use c; #-##################################################################################### #- Globals #-##################################################################################### my @netdevices = map { my $l = $_; map { "$l$_" } (0..3) } qw(eth tr fddi plip); my %serialprobe; #-###################################################################################### #- Functions #-###################################################################################### sub dev_is_devfs { -e "/dev/.devfsd" } #- no $::prefix, returns false during install and that's nice :) sub get { #- Detect the default BIOS boot harddrive is kind of tricky. We may have IDE, #- SCSI and RAID devices on the same machine. From what I see so far, the default #- BIOS boot harddrive will be #- 1. The first IDE device if IDE exists. Or #- 2. The first SCSI device if SCSI exists. Or #- 3. The first RAID device if RAID exists. getIDE(), getSCSI(), getDAC960(), getCompaqSmartArray(), getATARAID(); } sub hds { grep { $_->{media_type} eq 'hd' && ($::isStandalone || !isRemovableDrive($_)) } get() } sub tapes { grep { $_->{media_type} eq 'tape' && ($::isStandalone || !isRemovableDrive($_)) } get() } sub cdroms { grep { $_->{media_type} eq 'cdrom' } get() } sub burners { grep { isBurner($_) } cdroms() } sub dvdroms { grep { isDvdDrive($_) } cdroms() } sub raw_zips { grep { member($_->{media_type}, 'fd', 'hd') && isZipDrive($_) } get() } #-sub jazzs { grep { member($_->{media_type}, 'fd', 'hd') && isJazzDrive($_) } get() } sub ls120s { grep { member($_->{media_type}, 'fd', 'hd') && isLS120Drive($_) } get() } sub zips { map { $_->{device} .= 4; $_->{devfs_device} = $_->{devfs_prefix} . '/part4'; $_; } raw_zips(); } sub cdroms__faking_ide_scsi { my @l = cdroms(); return @l if $::isStandalone; if (my @l_ide = grep { $_->{bus} eq 'ide' && isBurner($_) } @l) { require modules; modules::add_probeall('scsi_hostadapter', 'ide-scsi'); my $nb = 1 + max(-1, map { $_->{device} =~ /scd(\d+)/ } @l); foreach my $e (@l_ide) { log::l("IDEBurner: $e->{device}"); $e->{device} = "scd" . $nb++; } } @l; } sub zips__faking_ide_scsi { my @l = raw_zips(); if (my @l_ide = grep { $_->{bus} eq 'ide' && $::isInstall } @l) { require modules; modules::add_probeall('scsi_hostadapter', 'ide-scsi'); my $nb = 1 + max(-1, map { if_($_->{device} =~ /sd(\w+)/, ord($1) - ord('a')) } getSCSI()); foreach my $e (@l_ide) { my $faked = "sd" . chr(ord('a') + $nb++); log::l("IDE Zip: $e->{device} => $faked"); $e->{device} = $faked; } } map { $_->{device} .= 4; $_ } @l; } sub floppies() { require modules; eval { modules::load("floppy") }; my @fds = $@ ? () : map { my $info = (!dev_is_devfs() || -e "/dev/fd$_") && c::floppy_info(devices::make("fd$_")); if_($info && $info ne '(null)', { device => "fd$_", devfs_device => "floppy/$_", media_type => 'fd', info => $info }) } qw(0 1); my @ide = ls120s() and eval { modules::load("ide-floppy") }; eval { modules::load("usb-storage") } if usbStorage(); my @scsi = grep { $_->{media_type} eq 'fd' && !isZipDrive($_) && !isJazzDrive($_) } getSCSI(); @ide, @scsi, @fds; } sub floppies_dev() { map { $_->{device} } floppies() } sub floppy { first(floppies_dev()) } #- example ls120, model = "LS-120 SLIM 02 UHD Floppy" sub get_sys_cdrom_info { my (@drives) = @_; my @drives_order; foreach (cat_("/proc/sys/dev/cdrom/info")) { my ($t, $l) = split ':'; my @l = split ' ', $l; if ($t eq 'drive name') { @drives_order = map { s/^sr/scd/; my $dev = $_; first(grep { $_->{device} eq $dev } @drives); } @l; } else { my $capacity; if ($t eq 'Can write CD-R') { $capacity = 'burner'; } elsif ($t eq 'Can read DVD') { $capacity = 'DVD'; } if ($capacity) { each_index { ($drives_order[$::i] || {})->{capacity} .= "$capacity " if $_; } @l; } } } } sub get_devfs_devices { my (@l) = @_; my %h = (cdrom => 'cd', hd => 'disc'); foreach (@l) { my $t = $h{$_->{media_type}} or next; $_->{devfs_device} = $_->{devfs_prefix} . '/' . $t; } } sub isBurner { my ($e) = @_; $e->{capacity} =~ /burner/ and return 1; #- do not work for SCSI my $f = tryOpen($e->{device}); #- SCSI burner are not detected this way. $f && c::isBurner(fileno($f)); } sub isDvdDrive { my ($e) = @_; $e->{capacity} =~ /DVD/ || $e->{info} =~ /DVD/ and return 1; #- do not work for SCSI my $f = tryOpen($e->{device}); $f && c::isDvdDrive(fileno($f)); } sub isZipDrive { $_[0]{info} =~ /ZIP\s+\d+/ } #- accept ZIP 100, untested for bigger ZIP drive. sub isJazzDrive { $_[0]{info} =~ /\bJAZZ?\b/i } #- accept "iomega jaz 1GB" sub isLS120Drive { $_[0]{info} =~ /LS-?120|144MB/ } sub isRemovableDrive { &isZipDrive || &isLS120Drive || $_[0]{media_type} eq 'fd' } #-or &isJazzDrive } sub isFloppyOrHD { my ($dev) = @_; require partition_table::raw; my $geom = partition_table::raw::get_geometry(devices::make($dev)); $geom->{totalsectors} < 10 << 11 ? 'fd' : 'hd'; } sub getSCSI() { my $err = sub { log::l("ERROR: unexpected line in /proc/scsi/scsi: $_[0]") }; my ($first, @l) = common::join_lines(cat_("/proc/scsi/scsi")) or return; $first =~ /^Attached devices:/ or $err->($first); @l = map_index { my ($host, $channel, $id, $lun) = m/^Host: scsi(\d+) Channel: (\d+) Id: (\d+) Lun: (\d+)/ or $err->($_); my ($vendor, $model) = /^\s*Vendor:\s*(.*?)\s+Model:\s*(.*?)\s+Rev:/m or $err->($_); my ($type) = /^\s*Type:\s*(.*)/m or $err->($_); { info => "$vendor $model", channel => $channel, id => $id, lun => $lun, device => "sg$::i", devfs_prefix => sprintf('scsi/host%d/bus%d/target%d/lun%d', $host, $channel, $id, $lun), raw_type => $type, bus => 'SCSI' }; } @l; each_index { my $dev = "sd" . chr($::i + ord('a')); put_in_hash $_, { device => $dev, media_type => isZipDrive($_) ? 'hd' : isFloppyOrHD($dev) }; } grep { $_->{raw_type} =~ /Direct-Access|Optical Device/ } @l; each_index { put_in_hash $_, { device => "st$::i", media_type => 'tape' }; } grep { $_->{raw_type} =~ /Sequential-Access/ } @l; each_index { put_in_hash $_, { device => "scd$::i", media_type => 'cdrom' }; } grep { $_->{raw_type} =~ /CD-ROM|WORM/ } @l; # Old hp scanners report themselves as "Processor"s # (see linux/include/scsi/scsi.h and sans-find-scanner.1) each_index { put_in_hash $_, { media_type => 'scanner' }; } grep { $_->{raw_type} =~ /Scanner/ || $_->{raw_type} =~ /Processor /} @l; get_devfs_devices(@l); get_sys_cdrom_info(@l); @l; } my %eide_hds = ( "ASUS" => "Asus", "CD-ROM CDU" => "Sony", "CD-ROM Drive/F5D" => "ASUSTeK", "Compaq" => "Compaq", "CONNER" => "Conner Peripherals", "IBM" => "IBM", "FUJITSU" => "Fujitsu", "HITACHI" => "Hitachi", "Lite-On" => "Lite-On Technology Corp.", "LTN" => "Lite-On Technology Corp.", "IOMEGA" => "Iomega", "MAXTOR" => "Maxtor", "Maxtor" => "Maxtor", "Micropolis" => "Micropolis", "PLEXTOR" => "Plextor", "QUANTUM" => "Quantum", "SAMSUNG" => "Samsung", "Seagate " => "Seagate Technology", "ST3" => "Seagate Technology", "TEAC" => "Teac", "TOSHIBA" => "Toshiba", "TEAC" => "Teac", "TOSHIBA" => "Toshiba", "WDC" => "Western Digital Corp.", ); sub getIDE() { my @idi; #- what about a system with absolutely no IDE on it, like some sparc machine. -e "/proc/ide" or return (); #- Great. 2.2 kernel, things are much easier and less error prone. foreach my $d (sort @{[glob_('/proc/ide/hd*')]}) { cat_("$d/driver") =~ /ide-scsi/ and next; #- already appears in /proc/scsi/scsi my $t = chomp_(cat_("$d/media")); my $type = $ {{disk => 'hd', cdrom => 'cdrom', tape => 'tape', floppy => 'fd'}}{$t} or next; my $info = chomp_(cat_("$d/model")) || "(none)"; my $num = ord (($d =~ /(.)$/)[0]) - ord 'a'; my ($vendor, $model) = map { if_($info =~ /^$_\b(-|\s*)(.*)/, $eide_hds{$_}, $2); } keys %eide_hds; my ($channel, $id) = ($num / 2, $num % 2); my $devfs_prefix = sprintf('ide/host0/bus%d/target%d/lun0', $channel, $id); push @idi, { media_type => $type, device => basename($d), devfs_prefix => $devfs_prefix, info => $info, channel => $channel, id => $id, bus => 'ide', Vendor => $vendor, Model => $model }; } get_devfs_devices(@idi); get_sys_cdrom_info(@idi); @idi; } sub getCompaqSmartArray() { my (@idi, $f); foreach ('array/ida', 'cpqarray/ida', 'cciss/cciss') { my $prefix = "/proc/driver/$_"; #- kernel 2.4 places it here $prefix = "/proc/$_" if !-e "${prefix}0"; #- kernel 2.2 my ($name) = m|/(.*)|; for (my $i = 0; -r ($f = "${prefix}$i"); $i++) { foreach (cat_($f)) { if (my ($device) = m|^\s*($name/.*?):|) { push @idi, { device => $device, prefix => $device . 'p', info => "Compaq RAID logical disk", media_type => 'hd', bus => 'ida' }; } } } } @idi; } sub getDAC960() { my %idi; #- We are looking for lines of this format:DAC960#0: #- /dev/rd/c0d0: RAID-7, Online, 17928192 blocks, Write Thru0123456790123456789012 foreach (syslog()) { my ($device, $info) = m|/dev/(rd/.*?): (.*?),| or next; $idi{$device} = { info => $info, media_type => 'hd', device => $device, prefix => $device . 'p', bus => 'dac960' }; } values %idi; } sub getATARAID { my %l; foreach (syslog()) { my ($device) = m|^\s*(ataraid/d\d+):| or next; $l{$device} = { info => 'ATARAID block device', media_type => 'hd', device => $device, prefix => $device . 'p', bus => 'ataraid' }; log::l("ATARAID: $device"); } values %l; } sub getNet() { grep { !(($::isStandalone || $::live) && /plip/) && c::hasNetDevice($_) } @netdevices; } #sub getISDN() { # mapgrep(sub {member (($_[0] =~ /\s*(\w*):/), @netdevices), $1 }, split(/\n/, cat_("/proc/net/dev"))); #} $pcitable_addons = <<'EOF'; # add here lines conforming the pcitable format (0xXXXX\t0xXXXX\t"\w+"\t".*") EOF $usbtable_addons = <<'EOF'; # add here lines conforming the usbtable format (0xXXXX\t0xXXXX\t"\w+"\t".*") EOF sub add_addons { my ($addons, @l) = @_; foreach (split "\n", $addons) { /^\s/ and die "bad detect_devices::probeall_addons line \"$_\""; s/^#.*//; s/"(.*?)"/$1/g; next if /^$/; my ($vendor, $id, $driver, $description) = split("\t", $_, 4) or die "bad detect_devices::probeall_addons line \"$_\""; foreach (@l) { $_->{vendor} == hex $vendor && $_->{id} == hex $id or next; put_in_hash($_, { driver => $driver, description => $description }); } } @l; } sub pci_probe { my ($probe_type) = @_; log::l("full pci_probe") if $probe_type; add_addons($pcitable_addons, map { my %l; @l{qw(vendor id subvendor subid pci_bus pci_device pci_function media_type driver description)} = split "\t"; $l{$_} = hex $l{$_} foreach qw(vendor id subvendor subid); $l{bus} = 'PCI'; \%l } c::pci_probe($probe_type || 0)); } sub usb_probe { -e "/proc/bus/usb/devices" or return; add_addons($usbtable_addons, map { my %l; @l{qw(vendor id media_type driver description pci_bus pci_device)} = split "\t"; $l{$_} = hex $l{$_} foreach qw(vendor id); $l{bus} = 'USB'; \%l } c::usb_probe()); } sub pcmcia_probe { -e '/var/run/stab' || -e '/var/lib/pcmcia/stab' or return (); my (@devs, $desc); foreach (cat_('/var/run/stab'), cat_('/var/lib/pcmcia/stab')) { if (/^Socket\s+\d+:\s+(.*)/) { $desc = $1; } else { my (undef, $type, $module, undef, $device) = split; push @devs, { description => $desc, driver => $module, type => $type, device => $device }; } } @devs; } # pci_probe with $probe_type is unsafe for pci! (bug in kernel&hardware) # pcmcia_probe provides field "device", used in network.pm # => probeall with $probe_type is unsafe sub probeall { my ($probe_type) = @_; return if $::noauto; require sbus_probing::main; pci_probe($probe_type), usb_probe(), pcmcia_probe(), sbus_probing::main::probe(); } sub matching_desc { my ($regexp) = @_; grep { $_->{description} =~ /$regexp/i } probeall(); } sub stringlist { map { sprintf("%-16s: %s%s%s", $_->{driver} ? $_->{driver} : 'unknown', $_->{description} eq '(null)' ? sprintf("Vendor=0x%04x Device=0x%04x", $_->{vendor}, $_->{id}) : $_->{description}, $_->{media_type} ? sprintf(" [%s]", $_->{media_type}) : '', $_->{subid} && $_->{subid} != 0xffff ? sprintf(" SubVendor=0x%04x SubDevice=0x%04x", $_->{subvendor}, $_->{subid}) : '', ); } probeall(@_); } sub tryOpen($) { local *F; sysopen F, devices::make($_[0]), c::O_NONBLOCK() and *F; } sub tryWrite($) { local *F; sysopen F, devices::make($_[0]), 1 | c::O_NONBLOCK() and *F; } sub syslog { -r "/tmp/syslog" and return map { /<\d+>(.*)/ } cat_("/tmp/syslog"); `$ENV{LD_LOADER} /bin/dmesg`; } sub get_mac_model() { my $mac_model = cat_("/proc/device-tree/model") || die "Can't open /proc/device-tree/model"; log::l("Mac model: $mac_model"); $mac_model; } sub get_mac_generation() { my $generation = cat_("/proc/cpuinfo") || die "Can't open /proc/cpuinfo"; my @genarray = split(/\n/, $generation); my $count = 0; while ($count <= @genarray) { if ($genarray[$count] =~ /pmac-generation/) { @genarray = split(/:/, $genarray[$count]); return $genarray[1]; } $count++; } return "Unknown Generation"; } sub hasSMP { c::detectSMP() } sub hasPCMCIA { $::o->{pcmcia} } #- because /proc/pcmcia seems not to be present on 2.4 at least (or use /var/run/stab) #- try to detect a laptop, we assume pcmcia service is an indication of a laptop or #- the following regexp to match graphics card apparently only used for such systems. sub isLaptop { hasPCMCIA() || (matching_desc('C&T.*655[45]\d') || matching_desc('C&T.*68554') || matching_desc('Neomagic.*Magic(Media|Graph)') || matching_desc('ViRGE.MX') || matching_desc('S3.*Savage.*[IM]X') || matching_desc('ATI.*(Mobility|LT)')); } sub hasUltra66 { die "hasUltra66 deprecated"; #- keep it BUT DO NOT USE IT as now included in kernel. cat_("/proc/cmdline") =~ /(ide2=(\S+)(\s+ide3=(\S+))?)/ and return $1; my @l = map { $_->{verbatim} } matching_desc('HPT|Ultra66') or return; my $ide = sprintf "ide2=0x%x,0x%x ide3=0x%x,0x%x", @l == 2 ? (map_index { hex($_) + (odd($::i) ? 1 : -1) } map { (split ' ')[3..4] } @l) : (map_index { hex($_) + (odd($::i) ? 1 : -1) } map { (split ' ')[3..6] } @l); log::l("HPT|Ultra66: found $ide"); $ide; } sub whatParport() { my @res; foreach (0..3) { my $elem = {}; local *F; open F, "/proc/parport/$_/autoprobe" or open F, "/proc/sys/dev/parport/parport$_/autoprobe" or next; { local $_; while () { if (/(.*):(.*);/) { #-# $elem->{$1} = $2; $elem->{$1} =~ s/Hewlett[-\s_]Packard/HP/; $elem->{$1} =~ s/HEWLETT[-\s_]PACKARD/HP/; } } } push @res, { port => "/dev/lp$_", val => $elem }; } @res; } sub usbMice { grep { $_->{media_type} =~ /\|Mouse/ && $_->{driver} !~ /Tablet:wacom/ || $_->{driver} =~ /Mouse:USB/ } usb_probe() } sub usbWacom { grep { $_->{driver} =~ /Tablet:wacom/ } usb_probe() } sub usbKeyboards { grep { $_->{media_type} =~ /\|Keyboard/ } usb_probe() } sub usbStorage { grep { $_->{media_type} =~ /Mass Storage\|/ } usb_probe() } sub usbKeyboard2country_code { my ($usb_kbd) = @_; local *F; my $tmp; sysopen(F, sprintf("/proc/bus/usb/%03d/%03d", $usb_kbd->{pci_bus}, $usb_kbd->{pci_device}), 0) and sysseek F, 0x28, 0 and sysread F, $tmp, 1 and unpack("C", $tmp); } sub whatUsbport() { # The printer manufacturer and model names obtained with the usb_probe() # function were very messy, once there was a lot of noise around the # manufacturers name ("Inc.", "SA", "International", ...) and second, # all Epson inkjets answered with the name "Epson Stylus Color 760" which # lead many newbies to install their Epson Stylus Photo XXX as an Epson # Stylus Color 760 ... # # This routine based on an ioctl request gives very clean and correct # manufacturer and model names, so that they are easily matched to the # printer entries in the Foomatic database my $i; my @res; foreach $i (0..15) { my $port = "/dev/usb/lp$i"; my $realport = devices::make($port); next if (!$realport); next if (! -r $realport); open PORT, $realport or do next; my $idstr = ""; # Calculation of IOCTL function 0x84005001 (to get device ID # string): # len = 1024 # IOCNR_GET_DEVICE_ID = 1 # LPIOC_GET_DEVICE_ID(len) = # _IOC(_IOC_READ, 'P', IOCNR_GET_DEVICE_ID, len) # _IOC(), _IOC_READ as defined in /usr/include/asm/ioctl.h # Use "eval" so that program does not stop when IOCTL fails eval { my $output = "\0" x 1024; ioctl(PORT, 0x84005001, $output); $idstr = $output; } or do { close PORT; next; }; close PORT; # Remove non-printable characters $idstr =~ tr/[\x00-\x1f]/\./; # Extract the printer data from the ID string my ($manufacturer, $model, $serialnumber, $description) = ("", "", "", ""); if (($idstr =~ /MFG:([^;]+);/) || ($idstr =~ /MANUFACTURER:([^;]+);/)) { $manufacturer = $1; $manufacturer =~ s/Hewlett[-\s_]Packard/HP/; $manufacturer =~ s/HEWLETT[-\s_]PACKARD/HP/; } if (($idstr =~ /MDL:([^;]+);/) || ($idstr =~ /MODEL:([^;]+);/)) { $model = $1; } if (($idstr =~ /DES:([^;]+);/) || ($idstr =~ /DESCRIPTION:([^;]+);/)) { $description = $1; $description =~ s/Hewlett[-\s_]Packard/HP/; $description =~ s/HEWLETT[-\s_]PACKARD/HP/; } if ($idstr =~ /SE*R*N:([^;]+);/) { $serialnumber = $1; } # Was there a manufacturer and a model in the string? if (($manufacturer eq "") || ($model eq "")) { next; } # No description field? Make one out of manufacturer and model. if ($description eq "") { $description = "$manufacturer $model"; } # Store this auto-detection result in the data structure push @res, { port => $port, val => { CLASS => 'PRINTER', MODEL => $model, MANUFACTURER => $manufacturer, DESCRIPTION => $description, SERIALNUMBER => $serialnumber }}; } @res; } #-CLASS:PRINTER; #-MODEL:HP LaserJet 1100; #-MANUFACTURER:Hewlett-Packard; #-DESCRIPTION:HP LaserJet 1100 Printer; #-COMMAND SET:MLC,PCL,PJL; sub whatPrinter { my @res = (whatParport(), whatUsbport()); grep { $_->{val}{CLASS} eq "PRINTER"} @res; } sub whatPrinterPort() { grep { tryWrite($_) } qw(/dev/lp0 /dev/lp1 /dev/lp2 /dev/usb/lp0 /dev/usb/lp1 /dev/usb/lp2 /dev/usb/lp3 /dev/usb/lp4 /dev/usb/lp5 /dev/usb/lp6 /dev/usb/lp7 /dev/usb/lp8 /dev/usb/lp9); } sub probeSerialDevices { foreach (0..3) { #- make sure the device are created before probing, devices::make("/dev/ttyS$_"); #- and make sure the device is a real terminal (major is 4). int((stat "/dev/ttyS$_")[6]/256) == 4 or $serialprobe{"/dev/ttyS$_"} = undef; } #- for device already probed, we can safely (assuming device are #- not moved during install :-) #- include /dev/mouse device if using an X server. -d "/var/lock" or mkdir "/var/lock", 0755; -l "/dev/mouse" and $serialprobe{"/dev/" . readlink "/dev/mouse"} = undef; foreach (keys %serialprobe) { m|^/dev/(.*)| and touch "/var/lock/LCK..$1" } print STDERR "Please wait while probing serial ports...\n"; #- start probing all serial ports... really faster than before ... #- ... but still take some time :-) local *F; open F, "$ENV{LD_LOADER} serial_probe |"; local $_; my %current; while () { $serialprobe{$current{DEVICE}} = { %current } and %current = () if /^\s*$/ && $current{DEVICE}; $current{$1} = $2 if /^([^=]+)=(.*?)\s*$/; } close F; foreach (values %serialprobe) { $_->{DESCRIPTION} =~ /modem/i and $_->{CLASS} = 'MODEM'; #- hack to make sure a modem is detected. $_->{DESCRIPTION} =~ /olitec/i and $_->{CLASS} = 'MODEM'; #- hack to make sure such modem gets detected. log::l("probed $_->{DESCRIPTION} of class $_->{CLASS} on device $_->{DEVICE}"); } } sub probeSerial($) { $serialprobe{$_[0]} } sub hasModem($) { $serialprobe{$_[0]} and $serialprobe{$_[0]}{CLASS} eq 'MODEM' and $serialprobe{$_[0]}{DESCRIPTION}; } sub hasMousePS2 { my $t; sysread(tryOpen($_[0]) || return, $t, 256) != 1 || $t ne "\xFE"; } sub raidAutoStartIoctl { local *F; sysopen F, devices::make("md0"), 2 or return; ioctl F, 2324, 0; } sub raidAutoStartRaidtab { my (@parts) = @_; require raid; #- faking a raidtab, it seems to be working :-))) #- (choosing any inactive md) raid::inactivate_all(); foreach (@parts) { my ($nb) = grep { !raid::is_active("md$_") } 0..7; output("/etc/raidtab", "raiddev /dev/md$nb\n device " . devices::make($_->{device}) . "\n"); run_program::run('raidstart', devices::make("md$nb")); } } sub raidAutoStart { my (@parts) = @_; log::l("raidAutoStart"); eval { modules::load('md') }; my %personalities = ('1' => 'linear', '2' => 'raid0', '3' => 'raid1', '4' => 'raid5'); raidAutoStartIoctl() or raidAutoStartRaidtab(@parts); if (my @needed_perso = map { if_(/^kmod: failed.*md-personality-(.)/ || /^md: personality (.) is not loaded/, $personalities{$1}) } syslog()) { eval { modules::load(@needed_perso) }; raidAutoStartIoctl() or raidAutoStartRaidtab(@parts); } } sub is_a_recent_computer { my ($frequence) = map { /cpu MHz\s*:\s*(.*)/ } cat_("/proc/cpuinfo"); $frequence > 600; } 1; e:826
-#: standalone/scannerdrake:837 standalone/scannerdrake:902 wizards.pm:95
+#: standalone/drakfloppy:311 standalone/drakfont:210 standalone/drakfont:223
+#: standalone/drakfont:259 standalone/drakfont:600 standalone/draksplash:21
+#: standalone/logdrake:170 standalone/logdrake:467 standalone/logdrake:472
+#: standalone/scannerdrake:58 standalone/scannerdrake:200
+#: standalone/scannerdrake:259 standalone/scannerdrake:683
+#: standalone/scannerdrake:694 standalone/scannerdrake:833
+#: standalone/scannerdrake:844 standalone/scannerdrake:914 wizards.pm:95
#: wizards.pm:99 wizards.pm:121
-#, fuzzy, c-format
+#, c-format
msgid "Error"
msgstr "Ralat"
@@ -178,7 +185,7 @@ msgstr "ralat."
#: ../move/move.pm:559 install_steps_interactive.pm:40
#, fuzzy, c-format
msgid "An error occurred"
-msgstr "ralat"
+msgstr "ralat menulis"
#: ../move/move.pm:565
#, c-format
@@ -208,7 +215,7 @@ msgstr "Buang fail?"
#: ../move/move.pm:581
#, c-format
msgid "Simply reboot"
-msgstr ""
+msgstr "Hanya boot semula"
#: ../move/tree/mdk_totem:60
#, c-format
@@ -221,9 +228,9 @@ msgid "Kill those programs"
msgstr ""
#: ../move/tree/mdk_totem:82
-#, c-format
+#, fuzzy, c-format
msgid "No CDROM support"
-msgstr ""
+msgstr "Tiada peranti input"
#: ../move/tree/mdk_totem:87
#, c-format
@@ -240,42 +247,42 @@ msgstr ""
#: Xconfig/card.pm:16
#, c-format
msgid "256 kB"
-msgstr ""
+msgstr "256 kB"
#: Xconfig/card.pm:17
#, c-format
msgid "512 kB"
-msgstr ""
+msgstr "512 kB"
#: Xconfig/card.pm:18
#, c-format
msgid "1 MB"
-msgstr ""
+msgstr "1 MB"
#: Xconfig/card.pm:19
#, c-format
msgid "2 MB"
-msgstr ""
+msgstr "2 MB"
#: Xconfig/card.pm:20
#, c-format
msgid "4 MB"
-msgstr ""
+msgstr "4 MB"
#: Xconfig/card.pm:21
#, c-format
msgid "8 MB"
-msgstr ""
+msgstr "8 MB"
#: Xconfig/card.pm:22
#, c-format
msgid "16 MB"
-msgstr ""
+msgstr "16 MB"
#: Xconfig/card.pm:23
#, c-format
msgid "32 MB"
-msgstr ""
+msgstr "32 MB"
#: Xconfig/card.pm:24
#, c-format
@@ -283,19 +290,19 @@ msgid "64 MB or more"
msgstr ""
#: Xconfig/card.pm:211
-#, c-format
+#, fuzzy, c-format
msgid "X server"
-msgstr ""
+msgstr "(%d)PELAYAN <<< %s"
#: Xconfig/card.pm:212
-#, c-format
+#, fuzzy, c-format
msgid "Choose an X server"
-msgstr ""
+msgstr "(%ld)PELAYAN >>> %s"
#: Xconfig/card.pm:244
-#, c-format
+#, fuzzy, c-format
msgid "Multi-head configuration"
-msgstr ""
+msgstr "Membaca fail konfigurasi sistem %s..."
#: Xconfig/card.pm:245
#, c-format
@@ -315,9 +322,9 @@ msgid "Select the memory size of your graphics card"
msgstr ""
#: Xconfig/card.pm:398
-#, c-format
+#, fuzzy, c-format
msgid "XFree configuration"
-msgstr ""
+msgstr "Status konfigurasi bagi %s %s\n"
#: Xconfig/card.pm:400
#, c-format
@@ -330,19 +337,19 @@ msgid "Configure all heads independently"
msgstr ""
#: Xconfig/card.pm:435
-#, c-format
+#, fuzzy, c-format
msgid "Use Xinerama extension"
-msgstr ""
+msgstr "Guna ungkapan biasa"
#: Xconfig/card.pm:440
-#, c-format
+#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
-msgstr ""
+msgstr "%s hanya berkesan kepada parser GLR"
#: Xconfig/card.pm:454 Xconfig/card.pm:456 Xconfig/various.pm:23
#, c-format
msgid "XFree %s"
-msgstr ""
+msgstr "XFree %s"
#: Xconfig/card.pm:467 Xconfig/card.pm:493 Xconfig/various.pm:23
#, c-format
@@ -386,16 +393,17 @@ msgstr ""
msgid "Xpmac (installation display driver)"
msgstr ""
-#: Xconfig/main.pm:88 Xconfig/main.pm:89 Xconfig/monitor.pm:106 any.pm:818
+#: Xconfig/main.pm:88 Xconfig/main.pm:89 Xconfig/monitor.pm:106 any.pm:823
#, fuzzy, c-format
msgid "Custom"
-msgstr "Tersendiri"
+msgstr "Pelet sendiri"
#: Xconfig/main.pm:113 diskdrake/dav.pm:28 help.pm:14
-#: install_steps_interactive.pm:83 printer/printerdrake.pm:3871
-#: standalone/draksplash:114 standalone/harddrake2:187 standalone/logdrake:176
-#: standalone/scannerdrake:438
-#, fuzzy, c-format
+#: install_steps_interactive.pm:83 printer/printerdrake.pm:608
+#: printer/printerdrake.pm:4076 standalone/draksplash:120
+#: standalone/harddrake2:188 standalone/logdrake:175
+#: standalone/scannerdrake:445
+#, c-format
msgid "Quit"
msgstr "Keluar"
@@ -405,30 +413,30 @@ msgid "Graphic Card"
msgstr ""
#: Xconfig/main.pm:118 Xconfig/monitor.pm:100
-#, fuzzy, c-format
+#, c-format
msgid "Monitor"
msgstr "Monitor"
#: Xconfig/main.pm:121 Xconfig/resolution_and_depth.pm:228
#, fuzzy, c-format
msgid "Resolution"
-msgstr "Resolusi"
+msgstr "Resolusi DNS ialah"
#: Xconfig/main.pm:126
#, fuzzy, c-format
msgid "Test"
-msgstr "Ujian"
+msgstr "Uji Semua"
#: Xconfig/main.pm:131 diskdrake/dav.pm:67 diskdrake/interactive.pm:410
#: diskdrake/removable.pm:25 diskdrake/smbnfs_gtk.pm:80
-#: standalone/drakconnect:254 standalone/drakconnect:263
-#: standalone/drakconnect:277 standalone/drakconnect:283
-#: standalone/drakconnect:381 standalone/drakconnect:382
-#: standalone/drakconnect:540 standalone/drakfont:491 standalone/drakfont:551
-#: standalone/harddrake2:184
+#: standalone/drakconnect:263 standalone/drakconnect:272
+#: standalone/drakconnect:292 standalone/drakconnect:298
+#: standalone/drakconnect:404 standalone/drakconnect:405
+#: standalone/drakconnect:576 standalone/drakfont:494 standalone/drakfont:554
+#: standalone/harddrake2:185
#, fuzzy, c-format
msgid "Options"
-msgstr "Pilihan"
+msgstr "Opsyen mengufuk"
#: Xconfig/main.pm:180
#, c-format
@@ -452,9 +460,9 @@ msgstr ""
#: Xconfig/monitor.pm:108 mouse.pm:49
#, fuzzy, c-format
msgid "Generic"
-msgstr "Generik"
+msgstr "Ralat umum"
-#: Xconfig/monitor.pm:109 standalone/drakconnect:520 standalone/harddrake2:68
+#: Xconfig/monitor.pm:109 standalone/drakconnect:556 standalone/harddrake2:68
#: standalone/harddrake2:69
#, c-format
msgid "Vendor"
@@ -483,19 +491,19 @@ msgstr ""
" dalam."
#: Xconfig/monitor.pm:131
-#, c-format
+#, fuzzy, c-format
msgid "Horizontal refresh rate"
-msgstr ""
+msgstr "Polisi Scrollbar mengufuk"
#: Xconfig/monitor.pm:132
-#, c-format
+#, fuzzy, c-format
msgid "Vertical refresh rate"
-msgstr ""
+msgstr "Jajaran menegak bagi label"
#: Xconfig/resolution_and_depth.pm:12
-#, c-format
+#, fuzzy, c-format
msgid "256 colors (8 bits)"
-msgstr ""
+msgstr "sambugan %s menggunakan %s (%u bit)"
#: Xconfig/resolution_and_depth.pm:13
#, c-format
@@ -530,68 +538,67 @@ msgstr "dan"
#: Xconfig/resolution_and_depth.pm:276
#, fuzzy, c-format
msgid "Graphics card: %s"
-msgstr "Grafik"
+msgstr "Nissen: Grafik bulan kartun"
#: Xconfig/resolution_and_depth.pm:289 interactive.pm:403
-#: interactive/gtk.pm:734 interactive/http.pm:103 interactive/http.pm:157
+#: interactive/gtk.pm:759 interactive/http.pm:103 interactive/http.pm:157
#: interactive/newt.pm:308 interactive/newt.pm:410 interactive/stdio.pm:39
#: interactive/stdio.pm:142 interactive/stdio.pm:143 interactive/stdio.pm:172
-#: standalone/drakbackup:4320 standalone/drakbackup:4352
-#: standalone/drakbackup:4445 standalone/drakbackup:4462
-#: standalone/drakbackup:4563 standalone/drakconnect:162
-#: standalone/drakconnect:734 standalone/drakconnect:821
-#: standalone/drakconnect:964 standalone/net_monitor:303 ugtk2.pm:412
-#: ugtk2.pm:509 ugtk2.pm:1047 ugtk2.pm:1070
-#, fuzzy, c-format
+#: standalone/drakbackup:4045 standalone/drakbackup:4075
+#: standalone/drakbackup:4162 standalone/drakbackup:4175
+#: standalone/drakbackup:4247 standalone/drakconnect:165
+#: standalone/drakconnect:776 standalone/drakconnect:863
+#: standalone/drakconnect:962 standalone/drakups:194
+#: standalone/net_monitor:303 ugtk2.pm:413 ugtk2.pm:510 ugtk2.pm:1075
+#: ugtk2.pm:1098
+#, c-format
msgid "Ok"
msgstr "Ok"
-#: Xconfig/resolution_and_depth.pm:289 any.pm:858 diskdrake/smbnfs_gtk.pm:81
+#: Xconfig/resolution_and_depth.pm:289 any.pm:863 diskdrake/smbnfs_gtk.pm:81
#: help.pm:197 help.pm:457 install_steps_gtk.pm:488
-#: install_steps_interactive.pm:787 interactive.pm:404 interactive/gtk.pm:738
+#: install_steps_interactive.pm:788 interactive.pm:404 interactive/gtk.pm:763
#: interactive/http.pm:104 interactive/http.pm:161 interactive/newt.pm:307
#: interactive/newt.pm:414 interactive/stdio.pm:39 interactive/stdio.pm:142
-#: interactive/stdio.pm:176 printer/printerdrake.pm:2920
-#: standalone/drakautoinst:200 standalone/drakbackup:4284
-#: standalone/drakbackup:4311 standalone/drakbackup:4336
-#: standalone/drakbackup:4369 standalone/drakbackup:4395
-#: standalone/drakbackup:4421 standalone/drakbackup:4478
-#: standalone/drakbackup:4504 standalone/drakbackup:4534
-#: standalone/drakbackup:4558 standalone/drakconnect:161
-#: standalone/drakconnect:819 standalone/drakconnect:973
-#: standalone/drakfont:657 standalone/drakfont:734 standalone/logdrake:176
-#: standalone/net_monitor:299 ugtk2.pm:406 ugtk2.pm:507 ugtk2.pm:516
-#: ugtk2.pm:1047
-#, fuzzy, c-format
+#: interactive/stdio.pm:176 printer/printerdrake.pm:3088
+#: standalone/drakautoinst:217 standalone/drakbackup:4009
+#: standalone/drakbackup:4035 standalone/drakbackup:4058
+#: standalone/drakbackup:4089 standalone/drakbackup:4113
+#: standalone/drakbackup:4137 standalone/drakbackup:4189
+#: standalone/drakbackup:4216 standalone/drakbackup:4241
+#: standalone/drakconnect:164 standalone/drakconnect:861
+#: standalone/drakconnect:961 standalone/drakfont:663 standalone/drakfont:740
+#: standalone/drakups:201 standalone/logdrake:175 standalone/net_monitor:299
+#: ugtk2.pm:407 ugtk2.pm:508 ugtk2.pm:517 ugtk2.pm:1075
+#, c-format
msgid "Cancel"
msgstr "Batal"
#: Xconfig/resolution_and_depth.pm:289 diskdrake/hd_gtk.pm:154
-#: install_steps_gtk.pm:267 install_steps_gtk.pm:667 interactive.pm:498
-#: interactive/gtk.pm:620 interactive/gtk.pm:622 standalone/drakTermServ:313
-#: standalone/drakbackup:4281 standalone/drakbackup:4308
-#: standalone/drakbackup:4333 standalone/drakbackup:4366
-#: standalone/drakbackup:4392 standalone/drakbackup:4418
-#: standalone/drakbackup:4459 standalone/drakbackup:4475
-#: standalone/drakbackup:4501 standalone/drakbackup:4530
-#: standalone/drakbackup:4555 standalone/drakbackup:4580
-#: standalone/drakbug:157 standalone/drakconnect:157
-#: standalone/drakconnect:227 standalone/drakfont:509 standalone/drakperm:134
-#: standalone/draksec:285 standalone/harddrake2:183 ugtk2.pm:1160
-#: ugtk2.pm:1161
-#, fuzzy, c-format
+#: install_steps_gtk.pm:267 install_steps_gtk.pm:668 interactive.pm:498
+#: interactive/gtk.pm:623 interactive/gtk.pm:625 standalone/drakTermServ:316
+#: standalone/drakbackup:4010 standalone/drakbackup:4039
+#: standalone/drakbackup:4062 standalone/drakbackup:4093
+#: standalone/drakbackup:4117 standalone/drakbackup:4141
+#: standalone/drakbackup:4174 standalone/drakbackup:4193
+#: standalone/drakbackup:4220 standalone/drakbackup:4245
+#: standalone/drakbackup:4264 standalone/drakbug:157
+#: standalone/drakconnect:160 standalone/drakconnect:236
+#: standalone/drakfont:512 standalone/drakperm:134 standalone/draksec:296
+#: standalone/harddrake2:184 ugtk2.pm:1188 ugtk2.pm:1189
+#, c-format
msgid "Help"
msgstr "Bantuan"
#: Xconfig/test.pm:30
#, fuzzy, c-format
msgid "Test of the configuration"
-msgstr "Ujian"
+msgstr "Status konfigurasi bagi %s %s\n"
#: Xconfig/test.pm:31
-#, c-format
+#, fuzzy, c-format
msgid "Do you want to test the configuration?"
-msgstr ""
+msgstr "Anda pasti mahu keluar?"
#: Xconfig/test.pm:31
#, fuzzy, c-format
@@ -609,32 +616,34 @@ msgstr "ralat"
#: Xconfig/test.pm:149
#, fuzzy, c-format
msgid "Leaving in %d seconds"
-msgstr "dalam"
+msgstr ""
+"\n"
+"Masa pelaksanaan (saat)\n"
#: Xconfig/test.pm:149
-#, c-format
+#, fuzzy, c-format
msgid "Is this the correct setting?"
-msgstr ""
+msgstr "Hanya inilah sahaja yang dijumpai"
#: Xconfig/various.pm:29
#, fuzzy, c-format
msgid "Keyboard layout: %s\n"
-msgstr "Papan Kekunci"
+msgstr "Gaya layout"
#: Xconfig/various.pm:30
#, fuzzy, c-format
msgid "Mouse type: %s\n"
-msgstr "Tetikus"
+msgstr "Jenis lekuk"
#: Xconfig/various.pm:31
#, fuzzy, c-format
msgid "Mouse device: %s\n"
-msgstr "Tetikus"
+msgstr "peranti tidak sah %s %s"
#: Xconfig/various.pm:32
-#, fuzzy, c-format
+#, c-format
msgid "Monitor: %s\n"
-msgstr "Monitor"
+msgstr "Monitor: %s\n"
#: Xconfig/various.pm:33
#, fuzzy, c-format
@@ -649,27 +658,27 @@ msgstr "Monitor"
#: Xconfig/various.pm:35
#, fuzzy, c-format
msgid "Graphics card: %s\n"
-msgstr "Grafik"
+msgstr "Nissen: Grafik bulan kartun"
#: Xconfig/various.pm:36
#, fuzzy, c-format
msgid "Graphics memory: %s kB\n"
-msgstr "Grafik"
+msgstr "objek memori terkongsi"
#: Xconfig/various.pm:38
-#, c-format
+#, fuzzy, c-format
msgid "Color depth: %s\n"
-msgstr ""
+msgstr "pemilih-warna"
#: Xconfig/various.pm:39
#, fuzzy, c-format
msgid "Resolution: %s\n"
-msgstr "Resolusi"
+msgstr "Resolusi DNS ialah"
#: Xconfig/various.pm:41
-#, c-format
+#, fuzzy, c-format
msgid "XFree86 server: %s\n"
-msgstr ""
+msgstr "(%ld)PELAYAN >>> %s"
#: Xconfig/various.pm:42
#, c-format
@@ -707,19 +716,20 @@ msgstr "dalam?"
msgid "What norm is your TV using?"
msgstr ""
-#: any.pm:98 harddrake/sound.pm:150 interactive.pm:441 standalone/drakbug:259
-#: standalone/drakconnect:164 standalone/drakxtv:90 standalone/harddrake2:133
-#: standalone/service_harddrake:94
-#, c-format
+#: 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:98
+#, fuzzy, c-format
msgid "Please wait"
-msgstr ""
+msgstr "Mencari, sila tunggu..."
-#: any.pm:98
+#: any.pm:103
#, fuzzy, c-format
msgid "Bootloader installation in progress"
msgstr "PemuatBoot dalam"
-#: any.pm:137
+#: any.pm:142
#, fuzzy, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -729,464 +739,466 @@ msgid ""
"On which drive are you booting?"
msgstr "on on Sistem?"
-#: any.pm:160 any.pm:192 help.pm:800
-#, c-format
+#: any.pm:165 any.pm:197 help.pm:800
+#, fuzzy, c-format
msgid "First sector of drive (MBR)"
-msgstr ""
+msgstr "Sektor pertama pada partisyen but"
-#: any.pm:161
-#, c-format
+#: any.pm:166
+#, fuzzy, c-format
msgid "First sector of the root partition"
-msgstr ""
+msgstr "Sektor pertama pada partisyen but"
-#: any.pm:163
-#, c-format
+#: any.pm:168
+#, fuzzy, c-format
msgid "On Floppy"
-msgstr ""
+msgstr " pada kiri:"
-#: any.pm:165 help.pm:768 help.pm:800 printer/printerdrake.pm:3238
+#: any.pm:170 help.pm:768 help.pm:800 printer/printerdrake.pm:3418
#, fuzzy, c-format
msgid "Skip"
-msgstr "Langkah"
+msgstr "Langkah taskbar"
-#: any.pm:170
+#: any.pm:175
#, c-format
msgid "SILO Installation"
msgstr ""
-#: any.pm:170
+#: any.pm:175
#, c-format
msgid "LILO/grub Installation"
msgstr ""
-#: any.pm:171
-#, fuzzy, c-format
+#: any.pm:176
+#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Dimana anda ingin pemuatbut ini dipasang?"
-#: any.pm:192
-#, fuzzy, c-format
+#: any.pm:197
+#, c-format
msgid "First sector of boot partition"
-msgstr "Sektor pertama bagi partisyen but"
+msgstr "Sektor pertama pada partisyen but"
-#: any.pm:204 any.pm:239
+#: any.pm:208
#, fuzzy, c-format
-msgid "Bootloader main options"
-msgstr "PemuatBoot utama"
+msgid "Boot Style Configuration"
+msgstr "Set gaya Font:"
-#: any.pm:205
+#: any.pm:210 any.pm:244
#, fuzzy, c-format
-msgid "Boot Style Configuration"
-msgstr "Gaya:"
+msgid "Bootloader main options"
+msgstr "Pilihan Pengguna Diketahui"
-#: any.pm:209
+#: any.pm:214
#, fuzzy, c-format
msgid "Give the ram size in MB"
msgstr "dalam"
-#: any.pm:211
+#: any.pm:216
#, fuzzy, c-format
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr "tidak"
-#: any.pm:212 any.pm:519 install_steps_interactive.pm:1158
-#, c-format
+#: any.pm:217 any.pm:524 install_steps_interactive.pm:1163
+#, fuzzy, c-format
msgid "The passwords do not match"
-msgstr ""
+msgstr "Volum %s tidak sepadan %s"
-#: any.pm:212 any.pm:519 diskdrake/interactive.pm:1255
-#: install_steps_interactive.pm:1158
-#, c-format
+#: any.pm:217 any.pm:524 diskdrake/interactive.pm:1255
+#: install_steps_interactive.pm:1163
+#, fuzzy, c-format
msgid "Please try again"
-msgstr ""
+msgstr "Mencari, sila tunggu..."
-#: any.pm:217 any.pm:242 help.pm:768
+#: any.pm:222 any.pm:247 help.pm:768
#, fuzzy, c-format
msgid "Bootloader to use"
-msgstr "PemuatBoot"
+msgstr "Takrifan sintaks untuk digunakan"
-#: any.pm:219
+#: any.pm:224
#, fuzzy, c-format
msgid "Bootloader installation"
msgstr "PemuatBoot"
-#: any.pm:221 any.pm:244 help.pm:768
-#, c-format
+#: any.pm:226 any.pm:249 help.pm:768
+#, fuzzy, c-format
msgid "Boot device"
-msgstr ""
+msgstr "peranti tidak sah %s %s"
-#: any.pm:223
+#: any.pm:228
#, fuzzy, c-format
msgid "Delay before booting default image"
msgstr "default"
-#: any.pm:224 help.pm:768
-#, c-format
+#: any.pm:229 help.pm:768
+#, fuzzy, c-format
msgid "Enable ACPI"
-msgstr ""
+msgstr "Hidupkan Popup"
-#: any.pm:225
+#: any.pm:230
#, fuzzy, c-format
msgid "Force No APIC"
-msgstr "Tidak"
+msgstr "Tiada peranti input"
-#: any.pm:227 any.pm:546 diskdrake/smbnfs_gtk.pm:180
-#: install_steps_interactive.pm:1163 network/netconnect.pm:491
-#: printer/printerdrake.pm:1340 printer/printerdrake.pm:1454
-#: standalone/drakbackup:1990 standalone/drakbackup:3875
-#: standalone/drakconnect:916 standalone/drakconnect:944
+#: any.pm:232 any.pm:551 diskdrake/smbnfs_gtk.pm:180
+#: install_steps_interactive.pm:1168 network/netconnect.pm:562
+#: printer/printerdrake.pm:1374 printer/printerdrake.pm:1494
+#: standalone/drakbackup:1717 standalone/drakbackup:3592
+#: standalone/drakups:278
#, fuzzy, c-format
msgid "Password"
-msgstr "Katalaluan"
+msgstr "Katalaluan:"
-#: any.pm:228 any.pm:547 install_steps_interactive.pm:1164
+#: any.pm:233 any.pm:552 install_steps_interactive.pm:1169
#, fuzzy, c-format
msgid "Password (again)"
-msgstr "Katalaluan"
+msgstr "teks-katalaluan"
-#: any.pm:229
+#: any.pm:234
#, c-format
msgid "Restrict command line options"
msgstr ""
-#: any.pm:229
+#: any.pm:234
#, c-format
msgid "restrict"
msgstr ""
-#: any.pm:231
+#: any.pm:236
#, c-format
msgid "Clean /tmp at each boot"
msgstr ""
-#: any.pm:232
+#: any.pm:237
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr ""
-#: any.pm:234
-#, c-format
+#: any.pm:239
+#, fuzzy, c-format
msgid "Enable multiple profiles"
-msgstr ""
+msgstr "Benarkan beberapa buffer fail"
-#: any.pm:243
-#, c-format
+#: any.pm:248
+#, fuzzy, c-format
msgid "Init Message"
-msgstr ""
+msgstr "Butang Mesej"
-#: any.pm:245
+#: any.pm:250
#, fuzzy, c-format
msgid "Open Firmware Delay"
-msgstr "Buka"
+msgstr "Selang masa Auto ulang sambung:"
-#: any.pm:246
-#, c-format
+#: any.pm:251
+#, fuzzy, c-format
msgid "Kernel Boot Timeout"
-msgstr ""
+msgstr "tak dapat masa but"
-#: any.pm:247
-#, c-format
+#: any.pm:252
+#, fuzzy, c-format
msgid "Enable CD Boot?"
-msgstr ""
+msgstr "Sentiasa hidupkan panah"
-#: any.pm:248
-#, c-format
+#: any.pm:253
+#, fuzzy, c-format
msgid "Enable OF Boot?"
-msgstr ""
+msgstr "Hidupkan Popup"
-#: any.pm:249
+#: any.pm:254
#, fuzzy, c-format
msgid "Default OS?"
-msgstr "Default?"
+msgstr "Aktifkan default"
-#: any.pm:290
-#, fuzzy, c-format
+#: any.pm:295
+#, c-format
msgid "Image"
msgstr "Imej"
-#: any.pm:291 any.pm:300
-#, c-format
+#: any.pm:296 any.pm:305
+#, fuzzy, c-format
msgid "Root"
-msgstr ""
+msgstr "jendela-root"
-#: any.pm:292 any.pm:313
-#, fuzzy, c-format
+#: any.pm:297 any.pm:318
+#, c-format
msgid "Append"
msgstr "Tambah"
-#: any.pm:294
+#: any.pm:299
#, fuzzy, c-format
msgid "Video mode"
-msgstr "Video"
+msgstr "Mod aktiviti"
-#: any.pm:296
+#: any.pm:301
#, c-format
msgid "Initrd"
msgstr ""
-#: any.pm:305 any.pm:310 any.pm:312
-#, fuzzy, c-format
+#: any.pm:310 any.pm:315 any.pm:317
+#, c-format
msgid "Label"
msgstr "Label"
-#: any.pm:307 any.pm:317 harddrake/v4l.pm:236 standalone/drakfloppy:88
+#: any.pm:312 any.pm:322 harddrake/v4l.pm:236 standalone/drakfloppy:88
#: standalone/drakfloppy:94
-#, fuzzy, c-format
+#, c-format
msgid "Default"
msgstr "Default"
-#: any.pm:314
-#, c-format
+#: any.pm:319
+#, fuzzy, c-format
msgid "Initrd-size"
-msgstr ""
+msgstr "Saiz Pengembang"
-#: any.pm:316
+#: any.pm:321
#, c-format
msgid "NoVideo"
msgstr ""
-#: any.pm:327
-#, c-format
+#: any.pm:332
+#, fuzzy, c-format
msgid "Empty label not allowed"
-msgstr ""
+msgstr "Gelung tidak dibenarkan. Sambungan ditolak."
-#: any.pm:328
-#, c-format
+#: any.pm:333
+#, fuzzy, c-format
msgid "You must specify a kernel image"
-msgstr ""
+msgstr "Anda mesti nyatakan satu drpd opsyen `-Acdtrux'"
-#: any.pm:328
-#, c-format
+#: any.pm:333
+#, fuzzy, c-format
msgid "You must specify a root partition"
-msgstr ""
+msgstr "Anda mesti nyatakan satu drpd opsyen `-Acdtrux'"
-#: any.pm:329
+#: any.pm:334
#, c-format
msgid "This label is already used"
msgstr ""
-#: any.pm:342
+#: any.pm:347
#, c-format
msgid "Which type of entry do you want to add?"
msgstr ""
-#: any.pm:343 standalone/drakbackup:1904
+#: any.pm:348
#, c-format
msgid "Linux"
-msgstr ""
+msgstr "Linux"
-#: any.pm:343
+#: any.pm:348
#, fuzzy, c-format
msgid "Other OS (SunOS...)"
-msgstr "Lain-lain"
+msgstr "Cari lain-lain tanda kurungan"
-#: any.pm:344
+#: any.pm:349
#, fuzzy, c-format
msgid "Other OS (MacOS...)"
-msgstr "Lain-lain"
+msgstr "Cari lain-lain tanda kurungan"
-#: any.pm:344
+#: any.pm:349
#, fuzzy, c-format
msgid "Other OS (windows...)"
-msgstr "Lain-lain"
+msgstr "Cari lain-lain tanda kurungan"
-#: any.pm:372
+#: any.pm:377
#, fuzzy, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can create additional entries or change the existing ones."
msgstr "on."
-#: any.pm:504
-#, c-format
+#: any.pm:509
+#, fuzzy, c-format
msgid "access to X programs"
-msgstr ""
+msgstr "Gagal untuk sepit (%s)"
-#: any.pm:505
+#: any.pm:510
#, c-format
msgid "access to rpm tools"
msgstr ""
-#: any.pm:506
-#, c-format
+#: any.pm:511
+#, fuzzy, c-format
msgid "allow \"su\""
-msgstr ""
+msgstr "Izinkan Pembesaran"
-#: any.pm:507
-#, c-format
+#: any.pm:512
+#, fuzzy, c-format
msgid "access to administrative files"
-msgstr ""
+msgstr "--diff-program=PROGRAM Guna PROGRAM untuk membanding fail."
-#: any.pm:508
+#: any.pm:513
#, c-format
msgid "access to network tools"
msgstr ""
-#: any.pm:509
+#: any.pm:514
#, c-format
msgid "access to compilation tools"
msgstr ""
-#: any.pm:515
+#: any.pm:520
#, c-format
msgid "(already added %s)"
msgstr ""
-#: any.pm:520
+#: any.pm:525
#, c-format
msgid "This password is too simple"
msgstr ""
-#: any.pm:521
+#: any.pm:526
#, fuzzy, c-format
msgid "Please give a user name"
-msgstr "pengguna"
+msgstr ""
+"Cetak nama bagi pengguna semasa.\n"
+"\n"
-#: any.pm:522
+#: any.pm:527
#, fuzzy, c-format
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "pengguna dan"
-#: any.pm:523
+#: any.pm:528
#, fuzzy, c-format
msgid "The user name is too long"
-msgstr "pengguna"
+msgstr "Komen pada imej TGA terlalu panjang"
-#: any.pm:524
+#: any.pm:529
#, fuzzy, c-format
msgid "This user name has already been added"
msgstr "pengguna"
-#: any.pm:528
+#: any.pm:533
#, fuzzy, c-format
msgid "Add user"
-msgstr "Tambah"
+msgstr "Pengguna Tidak Diketahui"
-#: any.pm:529
+#: any.pm:534
#, fuzzy, c-format
msgid ""
"Enter a user\n"
"%s"
-msgstr "Enter pengguna"
+msgstr "Pengguna Tidak Diketahui"
-#: any.pm:532 diskdrake/dav.pm:68 diskdrake/hd_gtk.pm:158
+#: any.pm:537 diskdrake/dav.pm:68 diskdrake/hd_gtk.pm:158
#: 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:3871
-#: standalone/drakbackup:3094 standalone/scannerdrake:629
-#: standalone/scannerdrake:779
-#, fuzzy, c-format
+#: printer/printerdrake.pm:352 printer/printerdrake.pm:4076
+#: standalone/drakbackup:2802 standalone/scannerdrake:636
+#: standalone/scannerdrake:786
+#, c-format
msgid "Done"
msgstr "Selesai"
-#: any.pm:533 help.pm:52
+#: any.pm:538 help.pm:52
#, fuzzy, c-format
msgid "Accept user"
-msgstr "Terima"
+msgstr "Pengguna Tidak Diketahui"
-#: any.pm:544
-#, c-format
+#: any.pm:549
+#, fuzzy, c-format
msgid "Real name"
-msgstr ""
+msgstr "Nama Sebenar:"
-#: any.pm:545 help.pm:52 printer/printerdrake.pm:1339
-#: printer/printerdrake.pm:1453
+#: any.pm:550 help.pm:52 printer/printerdrake.pm:1373
+#: printer/printerdrake.pm:1493
#, fuzzy, c-format
msgid "User name"
-msgstr "Nama pengguna"
+msgstr "Nama Pengguna:"
-#: any.pm:548
+#: any.pm:553
#, c-format
msgid "Shell"
msgstr "Shell"
-#: any.pm:550
+#: any.pm:555
#, c-format
msgid "Icon"
-msgstr ""
+msgstr "Ikon"
-#: any.pm:591 security/l10n.pm:14
+#: any.pm:596 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr ""
-#: any.pm:592
+#: any.pm:597
#, fuzzy, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr "on pengguna."
-#: any.pm:593 help.pm:52
+#: any.pm:598 help.pm:52
#, c-format
msgid "Do you want to use this feature?"
msgstr ""
-#: any.pm:594
+#: any.pm:599
#, fuzzy, c-format
msgid "Choose the default user:"
-msgstr "default pengguna:"
+msgstr "pilihan pengguna tidak diketahui `%s'"
-#: any.pm:595
+#: any.pm:600
#, c-format
msgid "Choose the window manager to run:"
msgstr ""
-#: any.pm:607
+#: any.pm:612
#, c-format
msgid "Please choose a language to use."
msgstr ""
-#: any.pm:628
+#: any.pm:633
#, fuzzy, c-format
msgid ""
-"Mandrake Linux can support multiple languages. Select\n"
+"Mandrakelinux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
"when your installation is complete and you restart your system."
msgstr "dan ulanghidup."
-#: any.pm:646 help.pm:660
-#, c-format
+#: any.pm:651 help.pm:660
+#, fuzzy, c-format
msgid "Use Unicode by default"
-msgstr ""
+msgstr "Nama bagi font default untuk digunakan"
-#: any.pm:647 help.pm:660
+#: any.pm:652 help.pm:660
#, fuzzy, c-format
msgid "All languages"
-msgstr "Semua"
+msgstr "Bahasa yang Ada "
-#: any.pm:683 help.pm:581 help.pm:991 install_steps_interactive.pm:907
+#: any.pm:688 help.pm:581 help.pm:991 install_steps_interactive.pm:908
#, c-format
msgid "Country / Region"
msgstr ""
-#: any.pm:684
+#: any.pm:689
#, c-format
msgid "Please choose your country."
msgstr ""
-#: any.pm:686
+#: any.pm:691
#, fuzzy, c-format
msgid "Here is the full list of available countries"
msgstr "penuh"
-#: any.pm:687 diskdrake/interactive.pm:292 help.pm:544 help.pm:581 help.pm:621
+#: any.pm:692 diskdrake/interactive.pm:292 help.pm:544 help.pm:581 help.pm:621
#: help.pm:991 install_steps_interactive.pm:114
-#, c-format
+#, fuzzy, c-format
msgid "More"
-msgstr ""
+msgstr "(lagi)"
-#: any.pm:818
+#: any.pm:823
#, fuzzy, c-format
msgid "No sharing"
-msgstr "Tidak"
+msgstr "--Tiada Tip --"
-#: any.pm:818
-#, c-format
+#: any.pm:823
+#, fuzzy, c-format
msgid "Allow all users"
-msgstr ""
+msgstr "%USaluran Pengguna Topik%O"
-#: any.pm:822
+#: any.pm:827
#, fuzzy, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -1196,23 +1208,23 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr "on Kongsi dalam dan Tersendiri pengguna"
-#: any.pm:838
+#: any.pm:843
#, c-format
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: any.pm:846
+#: any.pm:851
#, fuzzy, c-format
msgid "The package %s is going to be removed."
msgstr "Install?"
-#: any.pm:858
+#: any.pm:863
#, c-format
msgid "Launch userdrake"
msgstr ""
-#: any.pm:860
+#: any.pm:865
#, fuzzy, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -1222,27 +1234,27 @@ msgstr "pengguna pengguna."
#: authentication.pm:12
#, fuzzy, c-format
msgid "Local files"
-msgstr "Setempat"
+msgstr "Ke Fail"
#: authentication.pm:12
-#, fuzzy, c-format
+#, c-format
msgid "LDAP"
msgstr "LDAP"
#: authentication.pm:12
-#, fuzzy, c-format
+#, c-format
msgid "NIS"
msgstr "NIS"
#: authentication.pm:12 authentication.pm:50
#, fuzzy, c-format
msgid "Windows Domain"
-msgstr "Tetingkap"
+msgstr "Utama: menetapkan tetingkap\n"
#: authentication.pm:33
#, fuzzy, c-format
msgid "Authentication LDAP"
-msgstr "Pengesahan"
+msgstr "Menggunakan pengesahan ESMTP LOGIN..."
#: authentication.pm:34
#, fuzzy, c-format
@@ -1252,12 +1264,12 @@ msgstr "LDAP Asas"
#: authentication.pm:35
#, fuzzy, c-format
msgid "LDAP Server"
-msgstr "LDAP"
+msgstr "(%ld)PELAYAN >>> %s"
#: authentication.pm:40
#, fuzzy, c-format
msgid "Authentication NIS"
-msgstr "Pengesahan"
+msgstr "Menggunakan pengesahan ESMTP LOGIN..."
#: authentication.pm:41
#, fuzzy, c-format
@@ -1267,7 +1279,7 @@ msgstr "NIS"
#: authentication.pm:42
#, fuzzy, c-format
msgid "NIS Server"
-msgstr "NIS"
+msgstr "(%ld)PELAYAN >>> %s"
#: authentication.pm:47
#, fuzzy, c-format
@@ -1291,17 +1303,19 @@ msgstr ""
#: authentication.pm:49
#, fuzzy, c-format
msgid "Authentication Windows Domain"
-msgstr "Pengesahan Tetingkap"
+msgstr "Utama: menetapkan tetingkap\n"
#: authentication.pm:51
#, fuzzy, c-format
msgid "Domain Admin User Name"
-msgstr "Domain Pengguna"
+msgstr ""
+"Cetak nama bagi pengguna semasa.\n"
+"\n"
#: authentication.pm:52
#, fuzzy, c-format
msgid "Domain Admin Password"
-msgstr "Domain"
+msgstr "Nama pengguna atau kata laluan tidak sah."
#: authentication.pm:83
#, fuzzy, c-format
@@ -1309,7 +1323,7 @@ msgid "Can't use broadcast with no NIS domain"
msgstr "tidak NIS"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:542
+#: bootloader.pm:533
#, fuzzy, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1319,56 +1333,56 @@ msgid ""
"\n"
msgstr "Selamat Datang saat default"
-#: bootloader.pm:674
+#: bootloader.pm:665
#, c-format
msgid "SILO"
-msgstr ""
+msgstr "SILO"
-#: bootloader.pm:676 help.pm:768
+#: bootloader.pm:668 help.pm:768
#, c-format
msgid "LILO with graphical menu"
msgstr ""
-#: bootloader.pm:677 help.pm:768
+#: bootloader.pm:670 help.pm:768
#, c-format
msgid "LILO with text menu"
msgstr ""
-#: bootloader.pm:679
+#: bootloader.pm:672
#, c-format
msgid "Grub"
-msgstr ""
+msgstr "Grub"
-#: bootloader.pm:681
+#: bootloader.pm:674
#, c-format
msgid "Yaboot"
-msgstr ""
+msgstr "Yaboot"
-#: bootloader.pm:1150
+#: bootloader.pm:1147
#, fuzzy, c-format
msgid "not enough room in /boot"
msgstr "dalam"
-#: bootloader.pm:1178
+#: bootloader.pm:1175
#, fuzzy, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "on"
-#: bootloader.pm:1218
+#: bootloader.pm:1219
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
"renumbered"
msgstr ""
-#: bootloader.pm:1225
+#: bootloader.pm:1226
#, c-format
msgid ""
"The bootloader can't be installed correctly. You have to boot rescue and "
"choose \"%s\""
msgstr ""
-#: bootloader.pm:1226
+#: bootloader.pm:1227
#, fuzzy, c-format
msgid "Re-install Boot Loader"
msgstr "Install"
@@ -1376,27 +1390,27 @@ msgstr "Install"
#: common.pm:125
#, c-format
msgid "KB"
-msgstr ""
+msgstr "KB"
#: common.pm:125
#, c-format
msgid "MB"
-msgstr ""
+msgstr "MB"
#: common.pm:125
#, c-format
msgid "GB"
-msgstr ""
+msgstr "GB"
#: common.pm:133
#, c-format
msgid "TB"
-msgstr ""
+msgstr "TB"
#: common.pm:141
-#, c-format
+#, fuzzy, c-format
msgid "%d minutes"
-msgstr ""
+msgstr "minit"
#: common.pm:143
#, c-format
@@ -1404,97 +1418,98 @@ msgid "1 minute"
msgstr ""
#: common.pm:145
-#, c-format
+#, fuzzy, c-format
msgid "%d seconds"
-msgstr ""
+msgstr "saat"
-#: common.pm:196
+#: common.pm:197
#, c-format
msgid "Can't make screenshots before partitioning"
msgstr ""
-#: common.pm:203
+#: common.pm:204
#, fuzzy, c-format
msgid "Screenshots will be available after install in %s"
msgstr "dalam"
-#: common.pm:268
-#, c-format
+#: common.pm:269
+#, fuzzy, c-format
msgid "kdesu missing"
-msgstr ""
+msgstr "`(' hilang dalam `%s'"
-#: common.pm:271
-#, c-format
+#: common.pm:272
+#, fuzzy, c-format
msgid "consolehelper missing"
-msgstr ""
+msgstr "`(' hilang dalam `%s'"
-#: crypto.pm:14 crypto.pm:28 lang.pm:231 network/adsl_consts.pm:37
-#: network/adsl_consts.pm:48 network/adsl_consts.pm:58
-#: network/adsl_consts.pm:68 network/adsl_consts.pm:79
-#: network/adsl_consts.pm:90 network/adsl_consts.pm:100
-#: network/adsl_consts.pm:110 network/netconnect.pm:46
-#, fuzzy, c-format
+#: crypto.pm:14 crypto.pm:28 lang.pm:236 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
+#: network/adsl_consts.pm:117 network/adsl_consts.pm:264
+#: network/netconnect.pm:46
+#, c-format
msgid "France"
msgstr "Perancis"
-#: crypto.pm:15 lang.pm:207
-#, fuzzy, c-format
+#: crypto.pm:15 lang.pm:212
+#, c-format
msgid "Costa Rica"
msgstr "Costa Rica"
-#: crypto.pm:16 crypto.pm:29 lang.pm:179 network/adsl_consts.pm:20
-#: network/adsl_consts.pm:30 network/netconnect.pm:49
-#, fuzzy, c-format
+#: crypto.pm:16 crypto.pm:29 lang.pm:184 network/adsl_consts.pm:26
+#: network/adsl_consts.pm:36 network/netconnect.pm:49
+#, c-format
msgid "Belgium"
msgstr "Belgium"
-#: crypto.pm:17 crypto.pm:30 lang.pm:212
-#, fuzzy, c-format
+#: crypto.pm:17 crypto.pm:30 lang.pm:217
+#, c-format
msgid "Czech Republic"
msgstr "Republik Czech"
-#: crypto.pm:18 crypto.pm:31 lang.pm:213 network/adsl_consts.pm:126
-#: network/adsl_consts.pm:134
-#, fuzzy, c-format
+#: crypto.pm:18 crypto.pm:31 lang.pm:218 network/adsl_consts.pm:134
+#: network/adsl_consts.pm:142
+#, c-format
msgid "Germany"
msgstr "Jerman"
-#: crypto.pm:19 crypto.pm:32 lang.pm:244
-#, fuzzy, c-format
+#: crypto.pm:19 crypto.pm:32 lang.pm:249
+#, c-format
msgid "Greece"
msgstr "Greek"
-#: crypto.pm:20 crypto.pm:33 lang.pm:317
-#, fuzzy, c-format
+#: crypto.pm:20 crypto.pm:33 lang.pm:322
+#, c-format
msgid "Norway"
msgstr "Norway"
-#: crypto.pm:21 crypto.pm:34 lang.pm:346 network/adsl_consts.pm:230
-#, fuzzy, c-format
+#: crypto.pm:21 crypto.pm:34 lang.pm:351 network/adsl_consts.pm:240
+#, c-format
msgid "Sweden"
msgstr "Sweden"
-#: crypto.pm:22 crypto.pm:36 lang.pm:316 network/adsl_consts.pm:170
+#: crypto.pm:22 crypto.pm:36 lang.pm:321 network/adsl_consts.pm:178
#: network/netconnect.pm:47
-#, fuzzy, c-format
+#, c-format
msgid "Netherlands"
msgstr "Belanda"
-#: crypto.pm:23 crypto.pm:37 lang.pm:264 network/adsl_consts.pm:150
-#: network/adsl_consts.pm:160 network/netconnect.pm:48 standalone/drakxtv:48
-#, fuzzy, c-format
+#: crypto.pm:23 crypto.pm:37 lang.pm:269 network/adsl_consts.pm:158
+#: network/adsl_consts.pm:168 network/netconnect.pm:48 standalone/drakxtv:48
+#, c-format
msgid "Italy"
msgstr "Itali"
-#: crypto.pm:24 crypto.pm:38 lang.pm:172
-#, fuzzy, c-format
+#: crypto.pm:24 crypto.pm:38 lang.pm:177
+#, c-format
msgid "Austria"
msgstr "Austria"
-#: crypto.pm:35 crypto.pm:61 lang.pm:380 network/netconnect.pm:50
+#: crypto.pm:35 crypto.pm:65 lang.pm:385 network/netconnect.pm:50
#, fuzzy, c-format
msgid "United States"
-msgstr "Amerika Syarikat"
+msgstr "Perubatan Amerika Syarikat"
#: diskdrake/dav.pm:19
#, fuzzy, c-format
@@ -1506,7 +1521,7 @@ msgid ""
msgstr "direktori dan lokal Baru."
#: diskdrake/dav.pm:27
-#, fuzzy, c-format
+#, c-format
msgid "New"
msgstr "Baru"
@@ -1521,16 +1536,16 @@ msgid "Mount"
msgstr ""
#: diskdrake/dav.pm:65 help.pm:137
-#, fuzzy, c-format
+#, c-format
msgid "Server"
msgstr "Pelayan"
#: diskdrake/dav.pm:66 diskdrake/interactive.pm:408
#: diskdrake/interactive.pm:616 diskdrake/interactive.pm:635
#: diskdrake/removable.pm:24 diskdrake/smbnfs_gtk.pm:79
-#, c-format
+#, fuzzy, c-format
msgid "Mount point"
-msgstr ""
+msgstr "Hala panah patut ditudingi"
#: diskdrake/dav.pm:85
#, c-format
@@ -1545,24 +1560,24 @@ msgstr "URL"
#: diskdrake/dav.pm:111
#, fuzzy, c-format
msgid "Server: "
-msgstr "Pelayan "
+msgstr "(%d)PELAYAN <<< %s"
#: diskdrake/dav.pm:112 diskdrake/interactive.pm:469
#: diskdrake/interactive.pm:1149 diskdrake/interactive.pm:1225
-#, c-format
+#, fuzzy, c-format
msgid "Mount point: "
-msgstr ""
+msgstr "Hala panah patut ditudingi"
#: diskdrake/dav.pm:113 diskdrake/interactive.pm:1233
#, fuzzy, c-format
msgid "Options: %s"
-msgstr "Pilihan"
+msgstr "Opsyen mengufuk"
#: diskdrake/hd_gtk.pm:96 diskdrake/interactive.pm:995
#: diskdrake/interactive.pm:1005 diskdrake/interactive.pm:1065
-#, c-format
+#, fuzzy, c-format
msgid "Read carefully!"
-msgstr ""
+msgstr "ralat membaca"
#: diskdrake/hd_gtk.pm:96
#, c-format
@@ -1572,7 +1587,7 @@ msgstr ""
#: diskdrake/hd_gtk.pm:99
#, c-format
msgid ""
-"If you plan to use aboot, be carefull to leave a free space (2048 sectors is "
+"If you plan to use aboot, be careful to leave a free space (2048 sectors is "
"enough)\n"
"at the beginning of the disk"
msgstr ""
@@ -1580,12 +1595,12 @@ msgstr ""
#: diskdrake/hd_gtk.pm:156 help.pm:544
#, c-format
msgid "Wizard"
-msgstr ""
+msgstr "Wizard"
#: diskdrake/hd_gtk.pm:189
-#, c-format
+#, fuzzy, c-format
msgid "Choose action"
-msgstr ""
+msgstr "Sempadan kawasan aksi"
#: diskdrake/hd_gtk.pm:193
#, fuzzy, c-format
@@ -1601,19 +1616,20 @@ msgid "Please click on a partition"
msgstr "on"
#: diskdrake/hd_gtk.pm:209 diskdrake/smbnfs_gtk.pm:63 install_steps_gtk.pm:475
+#: standalone/drakbackup:3040 standalone/drakbackup:3102
#, fuzzy, c-format
msgid "Details"
-msgstr "Perincian"
+msgstr "Maklumat lanjut Plugin:"
#: diskdrake/hd_gtk.pm:255
#, fuzzy, c-format
msgid "No hard drives found"
-msgstr "Tidak"
+msgstr "Tiada pengepala XPM dijumpai"
#: diskdrake/hd_gtk.pm:326
#, c-format
msgid "Ext2"
-msgstr ""
+msgstr "Ext2"
#: diskdrake/hd_gtk.pm:326
#, c-format
@@ -1623,17 +1639,17 @@ msgstr ""
#: diskdrake/hd_gtk.pm:326
#, c-format
msgid "Swap"
-msgstr ""
+msgstr "Swap"
#: diskdrake/hd_gtk.pm:326
#, c-format
msgid "SunOS"
-msgstr ""
+msgstr "SunOS"
#: diskdrake/hd_gtk.pm:326
#, c-format
msgid "HFS"
-msgstr ""
+msgstr "HFS"
#: diskdrake/hd_gtk.pm:326
#, fuzzy, c-format
@@ -1641,25 +1657,25 @@ msgid "Windows"
msgstr "Tetingkap"
#: diskdrake/hd_gtk.pm:327 install_steps_gtk.pm:327 mouse.pm:167
-#: services.pm:164 standalone/drakbackup:1947 standalone/drakperm:250
-#, fuzzy, c-format
+#: services.pm:164 standalone/drakbackup:1673 standalone/drakperm:250
+#, c-format
msgid "Other"
msgstr "Lain-lain"
#: diskdrake/hd_gtk.pm:327 diskdrake/interactive.pm:1165
-#, c-format
+#, fuzzy, c-format
msgid "Empty"
-msgstr ""
+msgstr "kosong"
#: diskdrake/hd_gtk.pm:331
-#, c-format
+#, fuzzy, c-format
msgid "Filesystem types:"
-msgstr ""
+msgstr "Sistem fail Jenis"
#: diskdrake/hd_gtk.pm:348 diskdrake/hd_gtk.pm:350 diskdrake/hd_gtk.pm:353
-#, c-format
+#, fuzzy, c-format
msgid "Use ``%s'' instead"
-msgstr ""
+msgstr "Guna markup"
#: diskdrake/hd_gtk.pm:348 diskdrake/hd_gtk.pm:353
#: diskdrake/interactive.pm:409 diskdrake/interactive.pm:569
@@ -1670,60 +1686,60 @@ msgid "Type"
msgstr "Jenis"
#: diskdrake/hd_gtk.pm:348 diskdrake/interactive.pm:431
-#, c-format
+#, fuzzy, c-format
msgid "Create"
-msgstr ""
+msgstr "tidak dapat mencipta fail `%s'"
#: diskdrake/hd_gtk.pm:350 diskdrake/interactive.pm:418
#: standalone/drakperm:124 standalone/printerdrake:231
-#, fuzzy, c-format
+#, c-format
msgid "Delete"
msgstr "Padam"
#: diskdrake/hd_gtk.pm:353
-#, c-format
+#, fuzzy, c-format
msgid "Use ``Unmount'' first"
-msgstr ""
+msgstr "Guna ungkapan biasa"
#: diskdrake/interactive.pm:179
-#, c-format
+#, fuzzy, c-format
msgid "Choose another partition"
-msgstr ""
+msgstr "Sektor pertama pada partisyen but"
#: diskdrake/interactive.pm:179
-#, c-format
+#, fuzzy, c-format
msgid "Choose a partition"
-msgstr ""
+msgstr "Sektor pertama pada partisyen but"
#: diskdrake/interactive.pm:208
-#, fuzzy, c-format
+#, c-format
msgid "Exit"
msgstr "Keluar"
#: diskdrake/interactive.pm:241 help.pm:544
-#, c-format
+#, fuzzy, c-format
msgid "Undo"
-msgstr ""
+msgstr "Nyahcara"
#: diskdrake/interactive.pm:241
#, fuzzy, c-format
msgid "Toggle to normal mode"
-msgstr "normal"
+msgstr "mod %s berubah kepada %04lo (%s)\n"
#: diskdrake/interactive.pm:241
-#, c-format
+#, fuzzy, c-format
msgid "Toggle to expert mode"
-msgstr ""
+msgstr "mod %s berubah kepada %04lo (%s)\n"
#: diskdrake/interactive.pm:260
#, fuzzy, c-format
msgid "Continue anyway?"
-msgstr "Teruskan?"
+msgstr "Tekan Enter untuk meneruskan\n"
#: diskdrake/interactive.pm:265
#, fuzzy, c-format
msgid "Quit without saving"
-msgstr "Keluar tanpa menyimpan"
+msgstr "Tutup Tanpa Simpan"
#: diskdrake/interactive.pm:265
#, fuzzy, c-format
@@ -1743,17 +1759,17 @@ msgstr ""
#: diskdrake/interactive.pm:290 help.pm:544
#, fuzzy, c-format
msgid "Clear all"
-msgstr "Kosongkan"
+msgstr "Pilih Semua"
#: diskdrake/interactive.pm:291 help.pm:544
-#, c-format
+#, fuzzy, c-format
msgid "Auto allocate"
-msgstr ""
+msgstr "Auto indent"
#: diskdrake/interactive.pm:297
-#, c-format
+#, fuzzy, c-format
msgid "Hard drive information"
-msgstr ""
+msgstr "Mendapatkan maklumat hos jauh..."
#: diskdrake/interactive.pm:329
#, fuzzy, c-format
@@ -1762,7 +1778,7 @@ msgstr "Semua"
#: diskdrake/interactive.pm:330
#, c-format
-msgid "I can't add any more partition"
+msgid "I can't add any more partitions"
msgstr ""
#: diskdrake/interactive.pm:331
@@ -1775,22 +1791,22 @@ msgstr "Kepada"
#: diskdrake/interactive.pm:342 help.pm:544
#, fuzzy, c-format
msgid "Save partition table"
-msgstr "Simpan"
+msgstr "pengepala-kolum-jadual"
#: diskdrake/interactive.pm:343 help.pm:544
-#, c-format
+#, fuzzy, c-format
msgid "Restore partition table"
-msgstr ""
+msgstr "pengepala-kolum-jadual"
#: diskdrake/interactive.pm:344 help.pm:544
#, fuzzy, c-format
msgid "Rescue partition table"
-msgstr "Penyelamatan"
+msgstr "pengepala-kolum-jadual"
#: diskdrake/interactive.pm:346 help.pm:544
#, fuzzy, c-format
msgid "Reload partition table"
-msgstr "Ulangmuat"
+msgstr "pengepala-kolum-jadual"
#: diskdrake/interactive.pm:348
#, c-format
@@ -1798,9 +1814,9 @@ msgid "Removable media automounting"
msgstr ""
#: diskdrake/interactive.pm:357 diskdrake/interactive.pm:377
-#, c-format
+#, fuzzy, c-format
msgid "Select file"
-msgstr ""
+msgstr "Pilih fail untuk disimpan"
#: diskdrake/interactive.pm:364
#, c-format
@@ -1811,14 +1827,20 @@ msgstr ""
"Jadual partisyen backup tidak mempunyai saiz yang sama\n"
"Masih teruskan?"
-#: diskdrake/interactive.pm:378 harddrake/sound.pm:222 keyboard.pm:311
-#: network/netconnect.pm:353 printer/printerdrake.pm:2159
-#: printer/printerdrake.pm:3246 printer/printerdrake.pm:3365
-#: printer/printerdrake.pm:4338 standalone/drakTermServ:1040
-#: standalone/drakTermServ:1715 standalone/drakbackup:765
-#: standalone/drakbackup:865 standalone/drakboot:137 standalone/drakclock:200
-#: standalone/drakconnect:856 standalone/drakfloppy:295
-#, fuzzy, c-format
+#: diskdrake/interactive.pm:378 harddrake/sound.pm:226 keyboard.pm:314
+#: network/netconnect.pm:438 network/netconnect.pm:457
+#: network/netconnect.pm:641 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:351 standalone/drakTermServ:1082
+#: standalone/drakTermServ:1138 standalone/drakTermServ:1801
+#: standalone/drakbackup:580 standalone/drakbackup:678 standalone/drakboot:138
+#: standalone/drakclock:204 standalone/drakconnect:898
+#: standalone/drakfloppy:295 standalone/drakups:27 standalone/scannerdrake:50
+#: standalone/scannerdrake:908
+#, c-format
msgid "Warning"
msgstr "Amaran"
@@ -1835,44 +1857,44 @@ msgid "Trying to rescue partition table"
msgstr ""
#: diskdrake/interactive.pm:396
-#, c-format
+#, fuzzy, c-format
msgid "Detailed information"
-msgstr ""
+msgstr "Maklumat Pelayan"
#: diskdrake/interactive.pm:411 diskdrake/interactive.pm:706
-#, c-format
+#, fuzzy, c-format
msgid "Resize"
-msgstr ""
+msgstr "Mod ubahsaiz"
#: diskdrake/interactive.pm:412 diskdrake/interactive.pm:774
-#, c-format
+#, fuzzy, c-format
msgid "Move"
-msgstr ""
+msgstr "Naik Atas"
#: diskdrake/interactive.pm:413
#, fuzzy, c-format
msgid "Format"
-msgstr "Format"
+msgstr " [Format Mac]"
#: diskdrake/interactive.pm:415
#, fuzzy, c-format
msgid "Add to RAID"
-msgstr "Tambah"
+msgstr "Masukkan nama gelaran untuk ditambah:"
#: diskdrake/interactive.pm:416
#, fuzzy, c-format
msgid "Add to LVM"
-msgstr "Tambah"
+msgstr "Masukkan nama gelaran untuk ditambah:"
#: diskdrake/interactive.pm:419
#, fuzzy, c-format
msgid "Remove from RAID"
-msgstr "Buang"
+msgstr "Buang Kekotak Teks daripada Dokumen"
#: diskdrake/interactive.pm:420
#, fuzzy, c-format
msgid "Remove from LVM"
-msgstr "Buang"
+msgstr "Buang Kekotak Teks daripada Dokumen"
#: diskdrake/interactive.pm:421
#, c-format
@@ -1880,29 +1902,29 @@ msgid "Modify RAID"
msgstr ""
#: diskdrake/interactive.pm:422
-#, c-format
+#, fuzzy, c-format
msgid "Use for loopback"
-msgstr ""
+msgstr "hujah tiada bagi `%s'"
#: diskdrake/interactive.pm:462
-#, c-format
+#, fuzzy, c-format
msgid "Create a new partition"
-msgstr ""
+msgstr "mendapatkan atribut baru untuk %s"
#: diskdrake/interactive.pm:465
#, fuzzy, c-format
msgid "Start sector: "
-msgstr "Mula "
+msgstr "Sektor pertama pada partisyen but"
#: diskdrake/interactive.pm:467 diskdrake/interactive.pm:876
#, fuzzy, c-format
msgid "Size in MB: "
-msgstr "Saiz dalam "
+msgstr "Saiz font dalam titik"
#: diskdrake/interactive.pm:468 diskdrake/interactive.pm:877
-#, c-format
+#, fuzzy, c-format
msgid "Filesystem type: "
-msgstr ""
+msgstr "Sistem fail Jenis"
#: diskdrake/interactive.pm:473
#, c-format
@@ -1910,9 +1932,9 @@ msgid "Preference: "
msgstr ""
#: diskdrake/interactive.pm:476
-#, c-format
+#, fuzzy, c-format
msgid "Logical volume name "
-msgstr ""
+msgstr "Nama warna latarbelakang"
#: diskdrake/interactive.pm:505
#, fuzzy, c-format
@@ -1925,7 +1947,7 @@ msgstr "dan."
#: diskdrake/interactive.pm:535
#, fuzzy, c-format
msgid "Remove the loopback file?"
-msgstr "Buang fail?"
+msgstr "Ralat membaca fail '%s': %s"
#: diskdrake/interactive.pm:554
#, fuzzy, c-format
@@ -1936,12 +1958,12 @@ msgstr "on"
#: diskdrake/interactive.pm:565
#, fuzzy, c-format
msgid "Change partition type"
-msgstr "Ubah"
+msgstr "Jenis pek tab"
#: diskdrake/interactive.pm:566 diskdrake/removable.pm:48
-#, c-format
+#, fuzzy, c-format
msgid "Which filesystem do you want?"
-msgstr ""
+msgstr "Anda pasti mahu keluar?"
#: diskdrake/interactive.pm:574
#, c-format
@@ -1954,9 +1976,9 @@ msgid "Where do you want to mount the loopback file %s?"
msgstr "fail?"
#: diskdrake/interactive.pm:604
-#, c-format
+#, fuzzy, c-format
msgid "Where do you want to mount device %s?"
-msgstr ""
+msgstr "Dimana anda ingin pemuatbut ini dipasang?"
#: diskdrake/interactive.pm:609
#, c-format
@@ -1966,9 +1988,9 @@ msgid ""
msgstr ""
#: diskdrake/interactive.pm:634
-#, c-format
+#, fuzzy, c-format
msgid "Where do you want to mount %s?"
-msgstr ""
+msgstr "Dimana anda ingin pemuatbut ini dipasang?"
#: diskdrake/interactive.pm:658 diskdrake/interactive.pm:738
#: install_interactive.pm:156 install_interactive.pm:186
@@ -1982,9 +2004,9 @@ msgid "Computing FAT filesystem bounds"
msgstr ""
#: diskdrake/interactive.pm:694
-#, c-format
+#, fuzzy, c-format
msgid "This partition is not resizeable"
-msgstr ""
+msgstr "%s tidak bersambung pada volum ini"
#: diskdrake/interactive.pm:699
#, fuzzy, c-format
@@ -1997,14 +2019,14 @@ msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "on"
#: diskdrake/interactive.pm:706
-#, c-format
+#, fuzzy, c-format
msgid "Choose the new size"
-msgstr ""
+msgstr "Saiz penggelungsur tetap"
#: diskdrake/interactive.pm:707
#, fuzzy, c-format
msgid "New size in MB: "
-msgstr "Baru dalam "
+msgstr "Saiz font dalam titik"
#: diskdrake/interactive.pm:751 install_interactive.pm:194
#, fuzzy, c-format
@@ -2034,9 +2056,9 @@ msgid "Moving"
msgstr ""
#: diskdrake/interactive.pm:780
-#, c-format
+#, fuzzy, c-format
msgid "Moving partition..."
-msgstr ""
+msgstr "Sektor pertama pada partisyen but"
#: diskdrake/interactive.pm:802
#, fuzzy, c-format
@@ -2044,9 +2066,9 @@ msgid "Choose an existing RAID to add to"
msgstr "RAD"
#: diskdrake/interactive.pm:803 diskdrake/interactive.pm:820
-#, c-format
+#, fuzzy, c-format
msgid "new"
-msgstr ""
+msgstr "..yang Ba_ru"
#: diskdrake/interactive.pm:818
#, c-format
@@ -2054,9 +2076,9 @@ msgid "Choose an existing LVM to add to"
msgstr ""
#: diskdrake/interactive.pm:824
-#, c-format
+#, fuzzy, c-format
msgid "LVM name?"
-msgstr ""
+msgstr "_Nama Warna:"
#: diskdrake/interactive.pm:861
#, c-format
@@ -2071,12 +2093,12 @@ msgstr ""
#: diskdrake/interactive.pm:875
#, fuzzy, c-format
msgid "Loopback file name: "
-msgstr "fail "
+msgstr "Nama Fail untuk di Tambah Awalan"
#: diskdrake/interactive.pm:880
#, fuzzy, c-format
msgid "Give a file name"
-msgstr "fail"
+msgstr "Nama Fail untuk di Tambah Awalan"
#: diskdrake/interactive.pm:883
#, fuzzy, c-format
@@ -2089,9 +2111,9 @@ msgid "File already exists. Use it?"
msgstr "Fail?"
#: diskdrake/interactive.pm:907
-#, c-format
+#, fuzzy, c-format
msgid "Mount options"
-msgstr ""
+msgstr "Opsyen mengufuk"
#: diskdrake/interactive.pm:914
#, c-format
@@ -2099,9 +2121,9 @@ msgid "Various"
msgstr ""
#: diskdrake/interactive.pm:978
-#, c-format
+#, fuzzy, c-format
msgid "device"
-msgstr ""
+msgstr "_Peranti:"
#: diskdrake/interactive.pm:979
#, c-format
@@ -2109,9 +2131,9 @@ msgid "level"
msgstr ""
#: diskdrake/interactive.pm:980
-#, c-format
+#, fuzzy, c-format
msgid "chunk size"
-msgstr ""
+msgstr "Saiz Pengembang"
#: diskdrake/interactive.pm:996
#, c-format
@@ -2119,9 +2141,9 @@ msgid "Be careful: this operation is dangerous."
msgstr ""
#: diskdrake/interactive.pm:1011
-#, c-format
+#, fuzzy, c-format
msgid "What type of partitioning?"
-msgstr ""
+msgstr "Jenis pek tab"
#: diskdrake/interactive.pm:1027
#, fuzzy, c-format
@@ -2149,16 +2171,16 @@ msgid "Move files to the new partition"
msgstr "fail"
#: diskdrake/interactive.pm:1095
-#, c-format
+#, fuzzy, c-format
msgid "Hide files"
-msgstr ""
+msgstr "Ke Fail"
#: diskdrake/interactive.pm:1096
#, fuzzy, c-format
msgid ""
"Directory %s already contains data\n"
"(%s)"
-msgstr "Direktori"
+msgstr "Fail imej '%s' tida mengandungi data"
#: diskdrake/interactive.pm:1107
#, fuzzy, c-format
@@ -2171,19 +2193,19 @@ msgid "Copying %s"
msgstr ""
#: diskdrake/interactive.pm:1115
-#, c-format
+#, fuzzy, c-format
msgid "Removing %s"
-msgstr ""
+msgstr "%s: membuang"
#: diskdrake/interactive.pm:1129
-#, c-format
+#, fuzzy, c-format
msgid "partition %s is now known as %s"
-msgstr ""
+msgstr "-%C10-%C11-%O$t$1 kini dikenali sebagai $2"
#: diskdrake/interactive.pm:1150 diskdrake/interactive.pm:1210
#, fuzzy, c-format
msgid "Device: "
-msgstr "Peranti RAID "
+msgstr "_Peranti:"
#: diskdrake/interactive.pm:1151
#, c-format
@@ -2194,17 +2216,17 @@ msgstr ""
#: diskdrake/interactive.pm:1229
#, fuzzy, c-format
msgid "Type: "
-msgstr "Jenis "
+msgstr " Jenis"
#: diskdrake/interactive.pm:1159 install_steps_gtk.pm:339
#, fuzzy, c-format
msgid "Name: "
-msgstr "Nama: "
+msgstr "Nama"
#: diskdrake/interactive.pm:1167
#, fuzzy, c-format
msgid "Start: sector %s\n"
-msgstr "Mula"
+msgstr "Sektor pertama pada partisyen but"
#: diskdrake/interactive.pm:1168
#, fuzzy, c-format
@@ -2217,14 +2239,14 @@ msgid ", %s sectors"
msgstr ""
#: diskdrake/interactive.pm:1172
-#, c-format
+#, fuzzy, c-format
msgid "Cylinder %d to %d\n"
-msgstr ""
+msgstr "_Lompat ke"
#: diskdrake/interactive.pm:1173
-#, c-format
+#, fuzzy, c-format
msgid "Number of logical extents: %d"
-msgstr ""
+msgstr "nombor versi tidak sah `%s'"
#: diskdrake/interactive.pm:1174
#, c-format
@@ -2232,14 +2254,14 @@ msgid "Formatted\n"
msgstr ""
#: diskdrake/interactive.pm:1175
-#, c-format
+#, fuzzy, c-format
msgid "Not formatted\n"
-msgstr ""
+msgstr "bukan satu tty"
#: diskdrake/interactive.pm:1176
-#, c-format
+#, fuzzy, c-format
msgid "Mounted\n"
-msgstr ""
+msgstr "dilekapkan pada\n"
#: diskdrake/interactive.pm:1177
#, fuzzy, c-format
@@ -2251,7 +2273,7 @@ msgstr "RAD"
msgid ""
"Loopback file(s):\n"
" %s\n"
-msgstr "fail\n"
+msgstr "Pemilih-fail"
#: diskdrake/interactive.pm:1180
#, fuzzy, c-format
@@ -2266,9 +2288,9 @@ msgid "Level %s\n"
msgstr ""
#: diskdrake/interactive.pm:1183
-#, c-format
+#, fuzzy, c-format
msgid "Chunk size %s\n"
-msgstr ""
+msgstr "Saiz Pengembang"
#: diskdrake/interactive.pm:1184
#, fuzzy, c-format
@@ -2278,7 +2300,7 @@ msgstr "RAD"
#: diskdrake/interactive.pm:1186
#, fuzzy, c-format
msgid "Loopback file name: %s"
-msgstr "fail"
+msgstr "Nama Fail untuk di Tambah Awalan"
#: diskdrake/interactive.pm:1189
#, fuzzy, c-format
@@ -2299,9 +2321,9 @@ msgid ""
msgstr ""
#: diskdrake/interactive.pm:1211
-#, c-format
+#, fuzzy, c-format
msgid "Read-only"
-msgstr ""
+msgstr "Mod lihat (baca sahaja)"
#: diskdrake/interactive.pm:1212
#, fuzzy, c-format
@@ -2316,7 +2338,7 @@ msgstr ""
#: diskdrake/interactive.pm:1214
#, fuzzy, c-format
msgid "Info: "
-msgstr "Maklumat "
+msgstr "Maklumat"
#: diskdrake/interactive.pm:1215
#, c-format
@@ -2326,17 +2348,17 @@ msgstr ""
#: diskdrake/interactive.pm:1216
#, fuzzy, c-format
msgid "Partition table type: %s\n"
-msgstr "Partisyen"
+msgstr "Jenis pek tab"
#: diskdrake/interactive.pm:1217
#, fuzzy, c-format
msgid "on channel %d id %d\n"
-msgstr "on"
+msgstr "ID pengguna tidak sah: %s"
#: diskdrake/interactive.pm:1250
-#, c-format
+#, fuzzy, c-format
msgid "Filesystem encryption key"
-msgstr ""
+msgstr "Nama Tema Kekunci"
#: diskdrake/interactive.pm:1251
#, c-format
@@ -2353,21 +2375,21 @@ msgstr ""
msgid "The encryption keys do not match"
msgstr ""
-#: diskdrake/interactive.pm:1258 network/netconnect.pm:889
-#: standalone/drakconnect:370
-#, c-format
+#: diskdrake/interactive.pm:1258 network/netconnect.pm:972
+#: standalone/drakconnect:393
+#, fuzzy, c-format
msgid "Encryption key"
-msgstr ""
+msgstr "Kekunci Mnemonik"
#: diskdrake/interactive.pm:1259
-#, c-format
+#, fuzzy, c-format
msgid "Encryption key (again)"
-msgstr ""
+msgstr "Kesan kekunci USB sekali lagi"
#: diskdrake/removable.pm:47
#, fuzzy, c-format
msgid "Change type"
-msgstr "Ubah"
+msgstr "Jenis lekuk"
#: diskdrake/smbnfs_gtk.pm:163
#, c-format
@@ -2377,17 +2399,17 @@ msgstr ""
#: diskdrake/smbnfs_gtk.pm:167 diskdrake/smbnfs_gtk.pm:176
#, fuzzy, c-format
msgid "Domain Authentication Required"
-msgstr "Domain Pengesahan"
+msgstr "%s}: integer diperlukan diantara `{' dan `}'"
#: diskdrake/smbnfs_gtk.pm:168
-#, c-format
+#, fuzzy, c-format
msgid "Which username"
-msgstr ""
+msgstr "Penggunaan: %s [OPSYEN]...[NAMAPENGGUNA]\n"
#: diskdrake/smbnfs_gtk.pm:168
-#, c-format
+#, fuzzy, c-format
msgid "Another one"
-msgstr ""
+msgstr "Naik atas satu baris"
#: diskdrake/smbnfs_gtk.pm:177
#, fuzzy, c-format
@@ -2395,25 +2417,25 @@ msgid ""
"Please enter your username, password and domain name to access this host."
msgstr "dan."
-#: diskdrake/smbnfs_gtk.pm:179 standalone/drakbackup:3874
-#, fuzzy, c-format
+#: diskdrake/smbnfs_gtk.pm:179 standalone/drakbackup:3591
+#, c-format
msgid "Username"
msgstr "Namapengguna"
#: diskdrake/smbnfs_gtk.pm:181
-#, fuzzy, c-format
+#, c-format
msgid "Domain"
msgstr "Domain"
#: diskdrake/smbnfs_gtk.pm:205
#, fuzzy, c-format
msgid "Search servers"
-msgstr "Cari"
+msgstr "Hidupkan Carian"
#: diskdrake/smbnfs_gtk.pm:210
#, fuzzy, c-format
msgid "Search new servers"
-msgstr "Cari"
+msgstr "mendapatkan atribut baru untuk %s"
#: do_pkgs.pm:21
#, c-format
@@ -2425,36 +2447,36 @@ msgstr ""
msgid "Mandatory package %s is missing"
msgstr ""
-#: do_pkgs.pm:136
+#: do_pkgs.pm:143
#, c-format
msgid "Installing packages..."
msgstr ""
-#: do_pkgs.pm:210
+#: do_pkgs.pm:217
#, fuzzy, c-format
msgid "Removing packages..."
-msgstr "Cari pakej untuk ditingkatupaya..."
+msgstr "membuang direktori, %s"
-#: fs.pm:399
+#: fs.pm:409
#, fuzzy, c-format
msgid ""
"Do not update inode access times on this file system\n"
"(e.g, for faster access on the news spool to speed up news servers)."
msgstr "on fail on."
-#: fs.pm:402
+#: fs.pm:412
#, fuzzy, c-format
msgid ""
"Can only be mounted explicitly (i.e.,\n"
"the -a option will not cause the file system to be mounted)."
msgstr "terpasang fail terpasang."
-#: fs.pm:405
+#: fs.pm:415
#, fuzzy, c-format
msgid "Do not interpret character or block special devices on the file system."
msgstr "on fail."
-#: fs.pm:407
+#: fs.pm:417
#, fuzzy, c-format
msgid ""
"Do not allow execution of any binaries on the mounted\n"
@@ -2462,7 +2484,7 @@ msgid ""
"containing binaries for architectures other than its own."
msgstr "on terpasang fail."
-#: fs.pm:411
+#: fs.pm:421
#, fuzzy, c-format
msgid ""
"Do not allow set-user-identifier or set-group-identifier\n"
@@ -2470,17 +2492,17 @@ msgid ""
"have suidperl(1) installed.)"
msgstr "pengguna dalam"
-#: fs.pm:415
+#: fs.pm:425
#, fuzzy, c-format
msgid "Mount the file system read-only."
-msgstr "fail."
+msgstr "tak dapat membaca maklumat sistem fail bagi %s"
-#: fs.pm:417
+#: fs.pm:427
#, fuzzy, c-format
msgid "All I/O to the file system should be done synchronously."
msgstr "Semua fail siap."
-#: fs.pm:421
+#: fs.pm:431
#, fuzzy, c-format
msgid ""
"Allow an ordinary user to mount the file system. The\n"
@@ -2491,55 +2513,60 @@ msgid ""
"user,exec,dev,suid )."
msgstr "pengguna fail pengguna fail dan dalam."
-#: fs.pm:429
+#: fs.pm:439
#, c-format
msgid "Give write access to ordinary users"
msgstr ""
-#: fs.pm:565 fs.pm:575 fs.pm:579 fs.pm:583 fs.pm:587 fs.pm:591 swap.pm:12
+#: fs.pm:441
#, c-format
-msgid "%s formatting of %s failed"
+msgid "Give read-only access to ordinary users"
msgstr ""
-#: fs.pm:628
+#: fs.pm:580 fs.pm:590 fs.pm:594 fs.pm:598 fs.pm:602 fs.pm:606 swap.pm:12
+#, fuzzy, c-format
+msgid "%s formatting of %s failed"
+msgstr "[%s (%s): gagal. Diabaikan]\n"
+
+#: fs.pm:647
#, fuzzy, c-format
msgid "I don't know how to format %s in type %s"
msgstr "dalam"
-#: fs.pm:635 fs.pm:642
+#: fs.pm:654 fs.pm:661
#, fuzzy, c-format
msgid "Formatting partition %s"
-msgstr "Memformat"
+msgstr "Sektor pertama pada partisyen but"
-#: fs.pm:639
+#: fs.pm:658
#, fuzzy, c-format
msgid "Creating and formatting file %s"
-msgstr "Mencipta dan fail"
+msgstr "%s dan %s adalah fail yang sama"
-#: fs.pm:705 fs.pm:758
-#, c-format
+#: fs.pm:718 fs.pm:771
+#, fuzzy, c-format
msgid "Mounting partition %s"
-msgstr ""
+msgstr "Sektor pertama pada partisyen but"
-#: fs.pm:706 fs.pm:759
+#: fs.pm:719 fs.pm:772
#, fuzzy, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "dalam direktori"
-#: fs.pm:726 fs.pm:734
-#, c-format
+#: fs.pm:739 fs.pm:747
+#, fuzzy, c-format
msgid "Checking %s"
-msgstr ""
+msgstr "Selesai memeriksa ejaan"
-#: fs.pm:775 partition_table.pm:636
+#: fs.pm:788 partition_table.pm:638
#, fuzzy, c-format
msgid "error unmounting %s: %s"
-msgstr "ralat"
+msgstr "ralat menulis"
-#: fs.pm:807
-#, c-format
+#: fs.pm:820
+#, fuzzy, c-format
msgid "Enabling swap partition %s"
-msgstr ""
+msgstr "Sektor pertama pada partisyen but"
#: fsedit.pm:21
#, c-format
@@ -2547,14 +2574,14 @@ msgid "simple"
msgstr ""
#: fsedit.pm:25
-#, c-format
+#, fuzzy, c-format
msgid "with /usr"
-msgstr ""
+msgstr "Ganti dengan [%s]"
#: fsedit.pm:30
-#, c-format
+#, fuzzy, c-format
msgid "server"
-msgstr ""
+msgstr "(%d)PELAYAN <<< %s"
#: fsedit.pm:254
#, fuzzy, c-format
@@ -2567,32 +2594,32 @@ msgid ""
"Do you agree to lose all the partitions?\n"
msgstr "on ralat"
-#: fsedit.pm:514
+#: fsedit.pm:513
#, c-format
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr ""
-#: fsedit.pm:515
+#: fsedit.pm:514
#, c-format
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr ""
-#: fsedit.pm:534
+#: fsedit.pm:533
#, c-format
msgid "Mount points must begin with a leading /"
msgstr ""
-#: fsedit.pm:535
+#: fsedit.pm:534
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr ""
-#: fsedit.pm:536
+#: fsedit.pm:535
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr ""
-#: fsedit.pm:538
+#: fsedit.pm:537
#, fuzzy, c-format
msgid ""
"You've selected a software RAID partition as root (/).\n"
@@ -2600,59 +2627,67 @@ msgid ""
"Please be sure to add a /boot partition"
msgstr "RAD"
-#: fsedit.pm:541
+#: fsedit.pm:540
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr ""
-#: fsedit.pm:543
+#: fsedit.pm:542
+#, fuzzy, c-format
+msgid ""
+"You've selected a LVM Logical Volume as root (/).\n"
+"The bootloader is not able to handle this without a /boot partition.\n"
+"Please be sure to add a /boot partition"
+msgstr "RAD"
+
+#: fsedit.pm:545
#, c-format
msgid ""
"You may not be able to install lilo (since lilo doesn't handle a LV on "
"multiple PVs)"
msgstr ""
-#: fsedit.pm:546 fsedit.pm:548
+#: fsedit.pm:548 fsedit.pm:550
#, fuzzy, c-format
msgid "This directory should remain within the root filesystem"
msgstr "direktori"
-#: fsedit.pm:550
+#: fsedit.pm:552
#, c-format
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
"point\n"
msgstr ""
-#: fsedit.pm:552
+#: fsedit.pm:554
#, fuzzy, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "fail"
-#: fsedit.pm:613
+#: fsedit.pm:615
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr ""
-#: fsedit.pm:615
-#, c-format
+#: fsedit.pm:617
+#, fuzzy, c-format
msgid "Nothing to do"
-msgstr ""
+msgstr "Gagal untuk sepit (%s)"
-#: fsedit.pm:711
+#: fsedit.pm:713
#, fuzzy, c-format
msgid "Error opening %s for writing: %s"
-msgstr "Ralat"
+msgstr "Gagal membuka fail '%s' untuk ditulis: %s"
#: harddrake/data.pm:53
-#, c-format
+#, fuzzy, c-format
msgid "Floppy"
-msgstr ""
+msgstr "_Liut"
#: harddrake/data.pm:54
#, c-format
msgid "Zip"
-msgstr ""
+msgstr "Zip"
#: harddrake/data.pm:55
#, c-format
@@ -2662,7 +2697,7 @@ msgstr ""
#: harddrake/data.pm:56
#, c-format
msgid "CDROM"
-msgstr ""
+msgstr "CDROM"
#: harddrake/data.pm:57
#, c-format
@@ -2672,12 +2707,12 @@ msgstr ""
#: harddrake/data.pm:58
#, c-format
msgid "DVD-ROM"
-msgstr ""
+msgstr "DVD-ROM"
-#: harddrake/data.pm:59 standalone/drakbackup:2409
-#, c-format
+#: harddrake/data.pm:59 standalone/drakbackup:2116
+#, fuzzy, c-format
msgid "Tape"
-msgstr ""
+msgstr "panjang pita tidak sah"
#: harddrake/data.pm:60
#, c-format
@@ -2692,7 +2727,7 @@ msgstr ""
#: harddrake/data.pm:62
#, fuzzy, c-format
msgid "Other MultiMedia devices"
-msgstr "Lain-lain"
+msgstr "Tiada peranti input"
#: harddrake/data.pm:63
#, c-format
@@ -2714,39 +2749,44 @@ msgstr ""
msgid "ISDN adapters"
msgstr ""
-#: harddrake/data.pm:71
+#: harddrake/data.pm:70
#, c-format
msgid "Ethernetcard"
msgstr ""
-#: harddrake/data.pm:79 network/netconnect.pm:366 standalone/drakconnect:277
-#: standalone/drakconnect:447 standalone/drakconnect:448
-#: standalone/drakconnect:540
+#: harddrake/data.pm:78 network/netconnect.pm:452 standalone/drakconnect:272
+#: standalone/drakconnect:292 standalone/drakconnect:472
+#: standalone/drakconnect:473 standalone/drakconnect:576
#, c-format
msgid "Modem"
-msgstr ""
+msgstr "Modem"
-#: harddrake/data.pm:80
+#: harddrake/data.pm:79
#, c-format
msgid "ADSL adapters"
msgstr ""
+#: harddrake/data.pm:81
+#, fuzzy, c-format
+msgid "AGP controllers"
+msgstr "Kesan kekunci USB sekali lagi"
+
#: harddrake/data.pm:82
#, fuzzy, c-format
msgid "Bridges and system controllers"
msgstr "dan"
#: harddrake/data.pm:83 help.pm:203 help.pm:991
-#: install_steps_interactive.pm:935 printer/printerdrake.pm:680
-#: printer/printerdrake.pm:3970
-#, c-format
+#: install_steps_interactive.pm:940 printer/printerdrake.pm:687
+#: printer/printerdrake.pm:4175
+#, fuzzy, c-format
msgid "Printer"
-msgstr ""
+msgstr "Pencetak Tidak Diketahui"
-#: harddrake/data.pm:85 help.pm:991 install_steps_interactive.pm:928
+#: harddrake/data.pm:85 help.pm:991 install_steps_interactive.pm:933
#, fuzzy, c-format
msgid "Mouse"
-msgstr "Tetikus"
+msgstr "Sokongan tetikus"
#: harddrake/data.pm:90
#, c-format
@@ -2758,71 +2798,71 @@ msgstr ""
msgid "(E)IDE/ATA controllers"
msgstr ""
-#: harddrake/data.pm:93
+#: harddrake/data.pm:94
#, c-format
msgid "Firewire controllers"
msgstr ""
-#: harddrake/data.pm:94
+#: harddrake/data.pm:95
#, c-format
msgid "SCSI controllers"
msgstr ""
-#: harddrake/data.pm:95
+#: harddrake/data.pm:96
#, fuzzy, c-format
msgid "USB controllers"
-msgstr "USB"
+msgstr "Kesan kekunci USB sekali lagi"
-#: harddrake/data.pm:96
+#: harddrake/data.pm:97
#, c-format
msgid "SMBus controllers"
msgstr ""
-#: harddrake/data.pm:97
+#: harddrake/data.pm:98
#, c-format
msgid "Scanner"
msgstr ""
-#: harddrake/data.pm:99 standalone/harddrake2:315
+#: harddrake/data.pm:100 standalone/harddrake2:319
#, fuzzy, c-format
msgid "Unknown/Others"
-msgstr "Entah"
+msgstr "Pencetak Tidak Diketahui"
-#: harddrake/data.pm:113
+#: harddrake/data.pm:114
#, c-format
msgid "cpu # "
msgstr ""
-#: harddrake/sound.pm:150 standalone/drakconnect:166
-#, c-format
+#: harddrake/sound.pm:150 standalone/drakconnect:169
+#, fuzzy, c-format
msgid "Please Wait... Applying the configuration"
-msgstr ""
+msgstr "Menghasilkan senarai perkataan salah eja, sila tunggu..."
-#: harddrake/sound.pm:182
+#: harddrake/sound.pm:186
#, fuzzy, c-format
msgid "No alternative driver"
-msgstr "Tidak"
+msgstr "Tiada peranti input"
-#: harddrake/sound.pm:183
+#: harddrake/sound.pm:187
#, fuzzy, c-format
msgid ""
"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
"currently uses \"%s\""
msgstr "tidak"
-#: harddrake/sound.pm:189
+#: harddrake/sound.pm:193
#, fuzzy, c-format
msgid "Sound configuration"
-msgstr "Bunyi"
+msgstr "Status konfigurasi bagi %s %s\n"
-#: harddrake/sound.pm:191
+#: harddrake/sound.pm:195
#, c-format
msgid ""
"Here you can select an alternative driver (either OSS or ALSA) for your "
"sound card (%s)."
msgstr ""
-#: harddrake/sound.pm:193
+#: harddrake/sound.pm:197
#, fuzzy, c-format
msgid ""
"\n"
@@ -2831,7 +2871,7 @@ msgid ""
"\"%s\")"
msgstr "default"
-#: harddrake/sound.pm:195
+#: harddrake/sound.pm:199
#, fuzzy, c-format
msgid ""
"OSS (Open Sound System) was the first sound API. It's an OS independent "
@@ -2851,17 +2891,17 @@ msgid ""
"the ALSA library.\n"
msgstr "Buka Bunyi Sistem on asas dan Lanjutan Bunyi USB dan"
-#: harddrake/sound.pm:209 harddrake/sound.pm:289
+#: harddrake/sound.pm:213 harddrake/sound.pm:293 standalone/drakups:134
#, fuzzy, c-format
msgid "Driver:"
msgstr "Jurupacu:"
-#: harddrake/sound.pm:214
+#: harddrake/sound.pm:218
#, c-format
msgid "Trouble shooting"
msgstr ""
-#: harddrake/sound.pm:222
+#: harddrake/sound.pm:226
#, fuzzy, c-format
msgid ""
"The old \"%s\" driver is blacklisted.\n"
@@ -2871,44 +2911,44 @@ msgid ""
"The new \"%s\" driver'll only be used on next bootstrap."
msgstr "on on."
-#: harddrake/sound.pm:230
+#: harddrake/sound.pm:234
#, fuzzy, c-format
msgid "No open source driver"
-msgstr "Tidak"
+msgstr "Tiada lagi fail terbuka"
-#: harddrake/sound.pm:231
+#: harddrake/sound.pm:235
#, fuzzy, c-format
msgid ""
"There's no free driver for your sound card (%s), but there's a proprietary "
"driver at \"%s\"."
msgstr "tidak."
-#: harddrake/sound.pm:234
+#: harddrake/sound.pm:238
#, fuzzy, c-format
msgid "No known driver"
-msgstr "Tidak"
+msgstr "Helaian Gaya Diketahui"
-#: harddrake/sound.pm:235
+#: harddrake/sound.pm:239
#, fuzzy, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr "tidak"
-#: harddrake/sound.pm:239
+#: harddrake/sound.pm:243
#, fuzzy, c-format
msgid "Unknown driver"
-msgstr "Entah"
+msgstr "Pencetak Tidak Diketahui"
-#: harddrake/sound.pm:240
+#: harddrake/sound.pm:244
#, fuzzy, c-format
msgid "Error: The \"%s\" driver for your sound card is unlisted"
msgstr "Ralat"
-#: harddrake/sound.pm:253
+#: harddrake/sound.pm:257
#, fuzzy, c-format
msgid "Sound trouble shooting"
msgstr "Bunyi"
-#: harddrake/sound.pm:254
+#: harddrake/sound.pm:258
#, fuzzy, c-format
msgid ""
"The classic bug sound tester is to run the following commands:\n"
@@ -2932,17 +2972,17 @@ msgid ""
"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
msgstr "default dan dan on"
-#: harddrake/sound.pm:280
+#: harddrake/sound.pm:284
#, c-format
msgid "Let me pick any driver"
msgstr ""
-#: harddrake/sound.pm:283
+#: harddrake/sound.pm:287
#, c-format
msgid "Choosing an arbitrary driver"
msgstr ""
-#: harddrake/sound.pm:284
+#: harddrake/sound.pm:288
#, fuzzy, c-format
msgid ""
"If you really think that you know which driver is the right one for your "
@@ -2953,14 +2993,14 @@ msgid ""
msgstr "dalam "
#: harddrake/v4l.pm:14 harddrake/v4l.pm:66
-#, c-format
+#, fuzzy, c-format
msgid "Auto-detect"
-msgstr ""
+msgstr "Auto indent"
#: harddrake/v4l.pm:67 harddrake/v4l.pm:219
#, fuzzy, c-format
msgid "Unknown|Generic"
-msgstr "Entah"
+msgstr "Ralat umum"
#: harddrake/v4l.pm:100
#, fuzzy, c-format
@@ -2982,19 +3022,19 @@ msgid ""
msgstr "dan."
#: harddrake/v4l.pm:248
-#, c-format
+#, fuzzy, c-format
msgid "Card model:"
-msgstr ""
+msgstr "Model TreeModelSort"
#: harddrake/v4l.pm:249
-#, c-format
+#, fuzzy, c-format
msgid "Tuner type:"
-msgstr ""
+msgstr "Jenis lekuk"
#: harddrake/v4l.pm:250
-#, c-format
+#, fuzzy, c-format
msgid "Number of capture buffers:"
-msgstr ""
+msgstr "Buffer fail berganda"
#: harddrake/v4l.pm:250
#, c-format
@@ -3002,32 +3042,32 @@ msgid "number of capture buffers for mmap'ed capture"
msgstr ""
#: harddrake/v4l.pm:252
-#, c-format
+#, fuzzy, c-format
msgid "PLL setting:"
-msgstr ""
+msgstr "menetapkan masa untuk %s"
#: harddrake/v4l.pm:253
-#, c-format
+#, fuzzy, c-format
msgid "Radio support:"
-msgstr ""
+msgstr "Sokongan tetikus"
#: harddrake/v4l.pm:253
-#, c-format
+#, fuzzy, c-format
msgid "enable radio support"
-msgstr ""
+msgstr "item-menu-radio"
#: help.pm:11
#, fuzzy, c-format
msgid ""
"Before continuing, you should carefully read the terms of the license. It\n"
-"covers the entire Mandrake Linux distribution. If you do agree with all the\n"
+"covers the entire Mandrakelinux distribution. If you do agree with all the\n"
"terms in it, check the \"%s\" box. If not, clicking on the \"%s\" button\n"
"will reboot your computer."
msgstr "dalam off."
#: help.pm:14 install_steps_gtk.pm:596 install_steps_interactive.pm:88
-#: install_steps_interactive.pm:697 standalone/drakautoinst:199
-#, fuzzy, c-format
+#: install_steps_interactive.pm:697 standalone/drakautoinst:216
+#, c-format
msgid "Accept"
msgstr "Terima"
@@ -3078,17 +3118,16 @@ msgstr ""
#: help.pm:52 help.pm:197 help.pm:444 help.pm:691 help.pm:784 help.pm:1005
#: install_steps_gtk.pm:275 interactive.pm:403 interactive/newt.pm:308
-#: network/netconnect.pm:242 network/tools.pm:208 printer/printerdrake.pm:2922
-#: standalone/drakTermServ:392 standalone/drakbackup:4487
-#: standalone/drakbackup:4513 standalone/drakbackup:4543
-#: standalone/drakbackup:4567 ugtk2.pm:509
-#, fuzzy, c-format
+#: network/netconnect.pm:262 network/tools.pm:206 printer/printerdrake.pm:3090
+#: standalone/drakTermServ:408 standalone/drakbackup:4199
+#: standalone/drakbackup:4229 standalone/drakbackup:4251 ugtk2.pm:510
+#, c-format
msgid "Next"
-msgstr "Berikutnya"
+msgstr "Berikut"
#: help.pm:52 help.pm:418 help.pm:444 help.pm:660 help.pm:733 help.pm:768
#: interactive.pm:371
-#, fuzzy, c-format
+#, c-format
msgid "Advanced"
msgstr "Lanjutan"
@@ -3134,7 +3173,7 @@ msgstr ""
#: help.pm:86
#, fuzzy, c-format
msgid ""
-"The Mandrake Linux installation is distributed on several CD-ROMs. If a\n"
+"The Mandrakelinux installation is distributed on several CD-ROMs. If a\n"
"selected package is located on another CD-ROM, DrakX will eject the current\n"
"CD and ask you to insert the correct CD as required."
msgstr "on on dan."
@@ -3143,12 +3182,12 @@ msgstr "on on dan."
#, fuzzy, c-format
msgid ""
"It is now time to specify which programs you wish to install on your\n"
-"system. There are thousands of packages available for Mandrake Linux, and\n"
+"system. There are thousands of packages available for Mandrakelinux, and\n"
"to make it simpler to manage the packages have been placed into groups of\n"
"similar applications.\n"
"\n"
"Packages are sorted into groups corresponding to a particular use of your\n"
-"machine. Mandrake Linux sorts packages groups in four categories. You can\n"
+"machine. Mandrakelinux sorts packages groups in four categories. You can\n"
"mix and match applications from the various categories, so a\n"
"``Workstation'' installation can still have applications from the\n"
"``Development'' category installed.\n"
@@ -3205,7 +3244,7 @@ msgid "Workstation"
msgstr ""
#: help.pm:137
-#, fuzzy, c-format
+#, c-format
msgid "Development"
msgstr "Pembangunan"
@@ -3215,24 +3254,24 @@ msgid "Graphical Environment"
msgstr "Grafikal"
#: help.pm:137 install_steps_interactive.pm:559
-#, c-format
+#, fuzzy, c-format
msgid "With X"
-msgstr ""
+msgstr "Ganti dengan [%s]"
#: help.pm:137
#, fuzzy, c-format
msgid "With basic documentation"
-msgstr "asas"
+msgstr "Musnah bersama Bapa"
#: help.pm:137
-#, c-format
+#, fuzzy, c-format
msgid "Truly minimal install"
-msgstr ""
+msgstr "Pasang GPGME versi %s atau terkini."
#: help.pm:137 install_steps_gtk.pm:270 install_steps_interactive.pm:605
-#, c-format
+#, fuzzy, c-format
msgid "Individual package selection"
-msgstr ""
+msgstr "pemilihan gaya automatik dibatalkan"
#: help.pm:137 help.pm:602
#, fuzzy, c-format
@@ -3253,10 +3292,10 @@ msgid ""
"!! If a server package has been selected, either because you specifically\n"
"chose the individual package or because it was part of a group of packages,\n"
"you will be asked to confirm that you really want those servers to be\n"
-"installed. By default Mandrake Linux will automatically start any installed\n"
+"installed. By default Mandrakelinux will automatically start any installed\n"
"services at boot time. Even if they are safe and have no known issues at\n"
"the time the distribution was shipped, it is entirely possible that that\n"
-"security holes were discovered after this version of Mandrake Linux was\n"
+"security holes were discovered after this version of Mandrakelinux was\n"
"finalized. If you do not know what a particular service is supposed to do\n"
"or why it is being installed, then click \"%s\". Clicking \"%s\" will\n"
"install the listed services and they will be started automatically by\n"
@@ -3277,32 +3316,32 @@ msgid ""
"create such a floppy."
msgstr "dan on on default mula dan tidak dan amaran on."
-#: help.pm:172 help.pm:301 help.pm:329 help.pm:457 install_any.pm:422
-#: interactive.pm:149 modules/interactive.pm:71 standalone/harddrake2:218
-#: ugtk2.pm:1046 wizards.pm:156
-#, fuzzy, c-format
+#: help.pm:172 help.pm:301 help.pm:329 help.pm:457 install_any.pm:420
+#: interactive.pm:149 modules/interactive.pm:71 standalone/harddrake2:219
+#: ugtk2.pm:1074 wizards.pm:156
+#, c-format
msgid "No"
msgstr "Tidak"
-#: help.pm:172 help.pm:301 help.pm:457 install_any.pm:422 interactive.pm:149
-#: modules/interactive.pm:71 standalone/drakgw:280 standalone/drakgw:281
-#: standalone/drakgw:289 standalone/drakgw:299 standalone/harddrake2:217
-#: ugtk2.pm:1046 wizards.pm:156
-#, fuzzy, c-format
+#: help.pm:172 help.pm:301 help.pm:457 install_any.pm:420 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
+#, c-format
msgid "Yes"
msgstr "Ya"
#: help.pm:172
-#, c-format
+#, fuzzy, c-format
msgid "Automatic dependencies"
-msgstr ""
+msgstr "Auto sempurna gelaran"
#: help.pm:175
#, fuzzy, c-format
msgid ""
"You will now set up your Internet/network connection. If you wish to\n"
"connect your computer to the Internet or to a local network, click \"%s\".\n"
-"Mandrake Linux will attempt to auto-detect network devices and modems. If\n"
+"Mandrakelinux will attempt to auto-detect network devices and modems. If\n"
"this detection fails, uncheck the \"%s\" box. You may also choose not to\n"
"configure the network, or to do it later, in which case clicking the \"%s\"\n"
"button will take you to the next step.\n"
@@ -3317,7 +3356,7 @@ msgid ""
"\n"
"About Winmodem Connection. Winmodems are special integrated low-end modems\n"
"that require additional software to work compared to Normal modems. Some of\n"
-"those modems actually work under Mandrake Linux, some others do not. You\n"
+"those modems actually work under Mandrakelinux, some others do not. You\n"
"can consult the list of supported modems at LinModems.\n"
"\n"
"You can consult the ``Starter Guide'' chapter about Internet connections\n"
@@ -3327,9 +3366,9 @@ msgstr ""
"Internet Internet lokal dan dalam dan IP default Internet Internet dan."
#: help.pm:197
-#, c-format
+#, fuzzy, c-format
msgid "Use auto detection"
-msgstr ""
+msgstr "Auto Terima Fail"
#: help.pm:200
#, fuzzy, c-format
@@ -3341,11 +3380,11 @@ msgid ""
msgstr "on on."
#: help.pm:203 help.pm:581 help.pm:991 install_steps_gtk.pm:646
-#: standalone/drakbackup:2688 standalone/drakbackup:2696
-#: standalone/drakbackup:2704 standalone/drakbackup:2712
-#, c-format
+#: standalone/drakbackup:2406 standalone/drakbackup:2414
+#: standalone/drakbackup:2422 standalone/drakbackup:2430
+#, fuzzy, c-format
msgid "Configure"
-msgstr ""
+msgstr "Konfigurasikan Gema"
#: help.pm:206
#, fuzzy, c-format
@@ -3387,15 +3426,15 @@ msgstr ""
"dalam Masa dan on lokal dan dalam hos Tetingkap on Internet Internet on "
"lokal."
-#: help.pm:235 install_steps_interactive.pm:834
+#: help.pm:235 install_steps_interactive.pm:835
#, fuzzy, c-format
msgid "Hardware clock set to GMT"
msgstr "Perkakasan"
#: help.pm:235
-#, c-format
+#, fuzzy, c-format
msgid "Automatic time synchronization"
-msgstr ""
+msgstr "Masa Kelipan Kursor"
#: help.pm:238
#, fuzzy, c-format
@@ -3419,7 +3458,7 @@ msgstr ""
msgid ""
"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
-"WindowMaker, etc.) bundled with Mandrake Linux rely upon.\n"
+"WindowMaker, etc.) bundled with Mandrakelinux rely upon.\n"
"\n"
"You will be presented with a list of different parameters to change to get\n"
"an optimal graphical display: Graphic Card\n"
@@ -3533,7 +3572,7 @@ msgid ""
"if an existing operating system is using all the available space you will\n"
"have to partition the drive. Basically, partitioning a hard drive consists\n"
"of logically dividing it to create the space needed to install your new\n"
-"Mandrake Linux system.\n"
+"Mandrakelinux system.\n"
"\n"
"Because the process of partitioning a hard drive is usually irreversible\n"
"and can lead to lost data if there is an existing operating system already\n"
@@ -3560,7 +3599,7 @@ msgid ""
"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
"data, provided you have previously defragmented the Windows partition.\n"
"Backing up your data is strongly recommended.. Using this option is\n"
-"recommended if you want to use both Mandrake Linux and Microsoft Windows on\n"
+"recommended if you want to use both Mandrakelinux and Microsoft Windows on\n"
"the same computer.\n"
"\n"
" Before choosing this option, please understand that after this\n"
@@ -3569,7 +3608,7 @@ msgid ""
"Windows to store your data or to install new software.\n"
"\n"
" * \"%s\": if you want to delete all data and all partitions present on\n"
-"your hard drive and replace them with your new Mandrake Linux system,\n"
+"your hard drive and replace them with your new Mandrakelinux system,\n"
"choose this option. Be careful, because you will not be able to undo your\n"
"choice after you confirm.\n"
"\n"
@@ -3599,14 +3638,14 @@ msgstr ""
" secara manual dan siap dan on dalam."
#: help.pm:389 install_interactive.pm:95
-#, c-format
+#, fuzzy, c-format
msgid "Use free space"
-msgstr ""
+msgstr "The Free Software Foundation"
#: help.pm:389
-#, c-format
+#, fuzzy, c-format
msgid "Use existing partition"
-msgstr ""
+msgstr "Guna ungkapan biasa"
#: help.pm:389 install_interactive.pm:137
#, fuzzy, c-format
@@ -3614,19 +3653,19 @@ msgid "Use the free space on the Windows partition"
msgstr "on Tetingkap"
#: help.pm:389 install_interactive.pm:211
-#, c-format
+#, fuzzy, c-format
msgid "Erase entire disk"
-msgstr ""
+msgstr "Padam hasil kerja?"
#: help.pm:389
#, fuzzy, c-format
msgid "Remove Windows"
-msgstr "Buang"
+msgstr "tak dapat membuang %s"
#: help.pm:389 install_interactive.pm:226
#, fuzzy, c-format
msgid "Custom disk partitioning"
-msgstr "Tersendiri"
+msgstr "Tulis fail semasa ke cakera"
#: help.pm:392
#, fuzzy, c-format
@@ -3672,20 +3711,20 @@ msgstr ""
msgid "Generate auto-install floppy"
msgstr "Mencipta"
-#: help.pm:418 install_steps_interactive.pm:1320
+#: help.pm:418 install_steps_interactive.pm:1329
#, c-format
msgid "Replay"
msgstr ""
-#: help.pm:418 install_steps_interactive.pm:1320
+#: help.pm:418 install_steps_interactive.pm:1329
#, c-format
msgid "Automated"
msgstr ""
-#: help.pm:418 install_steps_interactive.pm:1323
+#: help.pm:418 install_steps_interactive.pm:1332
#, fuzzy, c-format
msgid "Save packages selection"
-msgstr "Simpan"
+msgstr "Tak dapat menyimpang yang selebihnya"
#: help.pm:421
#, fuzzy, c-format
@@ -3710,27 +3749,27 @@ msgid ""
"Click on \"%s\" when you are ready to format the partitions.\n"
"\n"
"Click on \"%s\" if you want to choose another partition for your new\n"
-"Mandrake Linux operating system installation.\n"
+"Mandrakelinux operating system installation.\n"
"\n"
"Click on \"%s\" if you wish to select partitions that will be checked for\n"
"bad blocks on the disk."
msgstr "fail on dan on on on on."
#: help.pm:444 help.pm:1005 install_steps_gtk.pm:431 interactive.pm:404
-#: interactive/newt.pm:307 printer/printerdrake.pm:2920
-#: standalone/drakTermServ:371 standalone/drakbackup:4288
-#: standalone/drakbackup:4316 standalone/drakbackup:4374
-#: standalone/drakbackup:4400 standalone/drakbackup:4426
-#: standalone/drakbackup:4483 standalone/drakbackup:4509
-#: standalone/drakbackup:4539 standalone/drakbackup:4563 ugtk2.pm:507
-#, c-format
+#: interactive/newt.pm:307 printer/printerdrake.pm:3088
+#: standalone/drakTermServ:387 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
+#, fuzzy, c-format
msgid "Previous"
-msgstr ""
+msgstr "Fail Sebelum"
#: help.pm:447
#, fuzzy, c-format
msgid ""
-"At the time you are installing Mandrake Linux, it is likely that some\n"
+"At the time you are installing Mandrakelinux, it is likely that some\n"
"packages will have been updated since the initial release. Bugs may have\n"
"been fixed, security issues resolved. To allow you to benefit from these\n"
"updates, you are now able to download them from the Internet. Check \"%s\"\n"
@@ -3744,7 +3783,7 @@ msgid ""
msgstr "Kepada Internet Internet A dan dan."
#: help.pm:457 help.pm:602 install_steps_gtk.pm:430
-#: install_steps_interactive.pm:148 standalone/drakbackup:4602
+#: install_steps_interactive.pm:148 standalone/drakbackup:4279
#, fuzzy, c-format
msgid "Install"
msgstr "Install"
@@ -3776,7 +3815,7 @@ msgstr "Keselamatan:"
#, fuzzy, c-format
msgid ""
"At this point, you need to choose which partition(s) will be used for the\n"
-"installation of your Mandrake Linux system. If partitions have already been\n"
+"installation of your Mandrakelinux system. If partitions have already been\n"
"defined, either from a previous installation of GNU/Linux or by another\n"
"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
"partitions must be defined.\n"
@@ -3877,7 +3916,7 @@ msgstr "normal"
msgid ""
"More than one Microsoft partition has been detected on your hard drive.\n"
"Please choose the one which you want to resize in order to install your new\n"
-"Mandrake Linux operating system.\n"
+"Mandrakelinux operating system.\n"
"\n"
"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
"\"Capacity\".\n"
@@ -3927,7 +3966,7 @@ msgid ""
"found on your machine.\n"
"\n"
"DrakX now needs to know if you want to perform a new install or an upgrade\n"
-"of an existing Mandrake Linux system:\n"
+"of an existing Mandrakelinux system:\n"
"\n"
" * \"%s\": For the most part, this completely wipes out the old system. If\n"
"you wish to change how your hard drives are partitioned, or change the file\n"
@@ -3935,13 +3974,13 @@ msgid ""
"scheme, you can prevent some of your existing data from being over-written.\n"
"\n"
" * \"%s\": this installation class allows you to update the packages\n"
-"currently installed on your Mandrake Linux system. Your current\n"
+"currently installed on your Mandrakelinux system. Your current\n"
"partitioning scheme and user data is not altered. Most of other\n"
"configuration steps remain available, similar to a standard installation.\n"
"\n"
-"Using the ``Upgrade'' option should work fine on Mandrake Linux systems\n"
+"Using the ``Upgrade'' option should work fine on Mandrakelinux systems\n"
"running version \"8.1\" or later. Performing an Upgrade on versions prior\n"
-"to Mandrake Linux version \"8.1\" is not recommended."
+"to Mandrakelinux version \"8.1\" is not recommended."
msgstr ""
"on\n"
" keluar fail on\n"
@@ -3984,7 +4023,7 @@ msgid ""
"\n"
"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
"cover all existing languages. Though full support for it in GNU/Linux is\n"
-"still under development. For that reason, Mandrake Linux will be using it\n"
+"still under development. For that reason, Mandrakelinux will be using it\n"
"or not depending on the user choices:\n"
"\n"
" * If you choose a languages with a strong legacy encoding (latin1\n"
@@ -4055,7 +4094,7 @@ msgstr "tidak on dan dan bersiri USB default dan dan dan dan on dan on."
#: help.pm:691
#, fuzzy, c-format
msgid "with Wheel emulation"
-msgstr "Generik"
+msgstr "Musnah bersama Bapa"
#: help.pm:694
#, c-format
@@ -4108,15 +4147,15 @@ msgstr ""
"ralat ralat LDAP NIS Tetingkap Domain tiada."
#: help.pm:733
-#, c-format
+#, fuzzy, c-format
msgid "authentication"
-msgstr ""
+msgstr "Pengesahan"
#. -PO: keep this short or else the buttons will not fit in the window
-#: help.pm:733 install_steps_interactive.pm:1154
+#: help.pm:733 install_steps_interactive.pm:1159
#, fuzzy, c-format
msgid "No password"
-msgstr "Tidak"
+msgstr "teks-katalaluan"
#: help.pm:736
#, fuzzy, c-format
@@ -4148,7 +4187,7 @@ msgid ""
"checking this box.\n"
"\n"
"!! Be aware that if you choose not to install a bootloader (by selecting\n"
-"\"%s\"), you must ensure that you have a way to boot your Mandrake Linux\n"
+"\"%s\"), you must ensure that you have a way to boot your Mandrakelinux\n"
"system! Be sure you know what you are doing before changing any of the\n"
"options. !!\n"
"\n"
@@ -4166,22 +4205,22 @@ msgstr ""
#: help.pm:768
#, c-format
msgid "GRUB"
-msgstr ""
+msgstr "GRUB"
#: help.pm:768
#, c-format
msgid "/dev/hda"
-msgstr ""
+msgstr "/dev/hda"
#: help.pm:768
#, c-format
msgid "/dev/hdb"
-msgstr ""
+msgstr "/dev/hdb"
#: help.pm:768
#, c-format
msgid "/dev/fd0"
-msgstr ""
+msgstr "/dev/fd0"
#: help.pm:768
#, fuzzy, c-format
@@ -4191,7 +4230,7 @@ msgstr "default"
#: help.pm:768
#, fuzzy, c-format
msgid "Force no APIC"
-msgstr "Tidak"
+msgstr "Tiada peranti input"
#: help.pm:771
#, fuzzy, c-format
@@ -4213,20 +4252,22 @@ msgid ""
msgstr "on dan dan dalam!"
#: help.pm:784 interactive.pm:295 interactive/gtk.pm:480
-#: standalone/drakbackup:1843 standalone/drakfont:586 standalone/drakfont:649
-#: standalone/drakvpn:329 standalone/drakvpn:690
-#, fuzzy, c-format
+#: standalone/drakbackup:1604 standalone/drakfont:589 standalone/drakfont:655
+#: standalone/drakups:280 standalone/drakups:329 standalone/drakups:349
+#: standalone/drakvpn:331 standalone/drakvpn:692
+#, c-format
msgid "Add"
msgstr "Tambah"
#: help.pm:784 interactive.pm:295 interactive/gtk.pm:480
#, c-format
msgid "Modify"
-msgstr ""
+msgstr "Ubah"
#: help.pm:784 interactive.pm:295 interactive/gtk.pm:480
-#: standalone/drakvpn:329 standalone/drakvpn:690
-#, fuzzy, c-format
+#: standalone/drakups:282 standalone/drakups:331 standalone/drakups:351
+#: standalone/drakvpn:331 standalone/drakvpn:692
+#, c-format
msgid "Remove"
msgstr "Buang"
@@ -4256,7 +4297,7 @@ msgstr ""
#, fuzzy, c-format
msgid ""
"Now, it's time to select a printing system for your computer. Other OSs may\n"
-"offer you one, but Mandrake Linux offers two. Each of the printing systems\n"
+"offer you one, but Mandrakelinux offers two. Each of the printing systems\n"
"is best suited to particular types of configuration.\n"
"\n"
" * \"%s\" -- which is an acronym for ``print, don't queue'', is the choice\n"
@@ -4289,10 +4330,10 @@ msgstr ""
msgid "pdq"
msgstr ""
-#: help.pm:826 printer/cups.pm:99 printer/data.pm:82
+#: help.pm:826 printer/cups.pm:115 printer/data.pm:83
#, c-format
msgid "CUPS"
-msgstr ""
+msgstr "CUPS"
#: help.pm:829
#, fuzzy, c-format
@@ -4429,11 +4470,11 @@ msgid ""
"driver."
msgstr "on on on dan."
-#: help.pm:929 help.pm:991 install_steps_interactive.pm:962
-#: install_steps_interactive.pm:979
+#: help.pm:929 help.pm:991 install_steps_interactive.pm:967
+#: install_steps_interactive.pm:984
#, fuzzy, c-format
msgid "Sound card"
-msgstr "Bunyi"
+msgstr "Fail bunyi: "
#: help.pm:932
#, fuzzy, c-format
@@ -4516,12 +4557,12 @@ msgstr ""
"."
#: help.pm:991 install_steps_interactive.pm:110
-#: install_steps_interactive.pm:899 standalone/keyboarddrake:23
-#, fuzzy, c-format
+#: install_steps_interactive.pm:900 standalone/keyboarddrake:23
+#, c-format
msgid "Keyboard"
msgstr "Papan Kekunci"
-#: help.pm:991 install_steps_interactive.pm:921
+#: help.pm:991 install_steps_interactive.pm:926
#, c-format
msgid "Timezone"
msgstr ""
@@ -4531,7 +4572,7 @@ msgstr ""
msgid "Graphical Interface"
msgstr "Grafikal"
-#: help.pm:991 install_steps_interactive.pm:995
+#: help.pm:991 install_steps_interactive.pm:1000
#, c-format
msgid "TV card"
msgstr ""
@@ -4541,28 +4582,28 @@ msgstr ""
msgid "ISDN card"
msgstr ""
-#: help.pm:991 install_steps_interactive.pm:1013 standalone/drakbackup:2394
-#, fuzzy, c-format
+#: help.pm:991 install_steps_interactive.pm:1018 standalone/drakbackup:2101
+#, c-format
msgid "Network"
msgstr "Rangkaian"
-#: help.pm:991 install_steps_interactive.pm:1039
+#: help.pm:991 install_steps_interactive.pm:1044
#, fuzzy, c-format
msgid "Security Level"
msgstr "Keselamatan"
-#: help.pm:991 install_steps_interactive.pm:1053
+#: help.pm:991 install_steps_interactive.pm:1058
#, c-format
msgid "Firewall"
msgstr ""
-#: help.pm:991 install_steps_interactive.pm:1067
+#: help.pm:991 install_steps_interactive.pm:1072
#, fuzzy, c-format
msgid "Bootloader"
msgstr "PemuatBoot"
-#: help.pm:991 install_steps_interactive.pm:1077 services.pm:195
-#, fuzzy, c-format
+#: help.pm:991 install_steps_interactive.pm:1082 services.pm:195
+#, c-format
msgid "Services"
msgstr "Perkhidmatan"
@@ -4570,7 +4611,7 @@ msgstr "Perkhidmatan"
#, fuzzy, c-format
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
-"Mandrake Linux partition. Be careful, all data on this drive will be lost\n"
+"Mandrakelinux partition. Be careful, all data on this drive will be lost\n"
"and will not be recoverable!"
msgstr "dalam on dan!"
@@ -4595,11 +4636,11 @@ msgid ""
msgstr "fail dalam dalam"
#: install2.pm:169
-#, c-format
+#, fuzzy, c-format
msgid "You must also format %s"
-msgstr ""
+msgstr "Anda mesti nyatakan satu drpd opsyen `-Acdtrux'"
-#: install_any.pm:413
+#: install_any.pm:411
#, fuzzy, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4613,7 +4654,7 @@ msgid ""
"Do you really want to install these servers?\n"
msgstr "default Masuk"
-#: install_any.pm:434
+#: install_any.pm:432
#, c-format
msgid ""
"The following packages will be removed to allow upgrading your system: %s\n"
@@ -4622,29 +4663,29 @@ msgid ""
"Do you really want to remove these packages?\n"
msgstr ""
-#: install_any.pm:812
+#: install_any.pm:827
#, fuzzy, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "dalam"
-#: install_any.pm:816
+#: install_any.pm:831
#, c-format
msgid "This floppy is not FAT formatted"
msgstr ""
-#: install_any.pm:828
+#: install_any.pm:843
#, fuzzy, c-format
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
msgstr "Kepada"
-#: install_any.pm:856 partition_table.pm:845
+#: install_any.pm:871 partition_table.pm:847
#, fuzzy, c-format
msgid "Error reading file %s"
-msgstr "Ralat fail"
+msgstr "Ralat membaca fail '%s': %s"
-#: install_any.pm:973
+#: install_any.pm:995
#, fuzzy, c-format
msgid ""
"An error occurred - no valid devices were found on which to create new "
@@ -4654,12 +4695,12 @@ msgstr "ralat tidak on"
#: install_gtk.pm:161
#, fuzzy, c-format
msgid "System installation"
-msgstr "Sistem"
+msgstr "Ralat sistem yang tidak diketahui"
#: install_gtk.pm:164
#, fuzzy, c-format
msgid "System configuration"
-msgstr "Sistem"
+msgstr "Membaca fail konfigurasi sistem %s..."
#: install_interactive.pm:22
#, fuzzy, c-format
@@ -4695,9 +4736,9 @@ msgid "Not enough free space to allocate new partitions"
msgstr ""
#: install_interactive.pm:105
-#, c-format
+#, fuzzy, c-format
msgid "Use existing partitions"
-msgstr ""
+msgstr "Guna ungkapan biasa"
#: install_interactive.pm:107
#, fuzzy, c-format
@@ -4715,9 +4756,9 @@ msgid "Which partition do you want to use for Linux4Win?"
msgstr ""
#: install_interactive.pm:119
-#, c-format
+#, fuzzy, c-format
msgid "Choose the sizes"
-msgstr ""
+msgstr "Saiz Ikon"
#: install_interactive.pm:120
#, fuzzy, c-format
@@ -4755,7 +4796,7 @@ msgstr "Tetingkap"
#, fuzzy, c-format
msgid ""
"Your Windows partition is too fragmented. Please reboot your computer under "
-"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"Windows, run the ``defrag'' utility, then restart the Mandrakelinux "
"installation."
msgstr "Tetingkap Tetingkap ulanghidup."
@@ -4787,12 +4828,12 @@ msgstr ""
#: install_interactive.pm:186
#, fuzzy, c-format
msgid "Resizing Windows partition"
-msgstr "Tetingkap"
+msgstr "Sektor pertama pada partisyen but"
#: install_interactive.pm:191
-#, c-format
+#, fuzzy, c-format
msgid "FAT resizing failed: %s"
-msgstr ""
+msgstr "Gagal untuk sepit (%s)"
#: install_interactive.pm:206
#, fuzzy, c-format
@@ -4802,7 +4843,7 @@ msgstr "tidak"
#: install_interactive.pm:211
#, fuzzy, c-format
msgid "Remove Windows(TM)"
-msgstr "Buang Tetingkap"
+msgstr "%s: buang write-protected %s %s? "
#: install_interactive.pm:213
#, fuzzy, c-format
@@ -4815,9 +4856,9 @@ msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "dan on"
#: install_interactive.pm:230
-#, c-format
+#, fuzzy, c-format
msgid "Use fdisk"
-msgstr ""
+msgstr "Guna markup"
#: install_interactive.pm:233
#, fuzzy, c-format
@@ -4839,30 +4880,30 @@ msgstr "Pempartisyenan:"
#: install_interactive.pm:279
#, fuzzy, c-format
msgid "Partitioning failed: %s"
-msgstr "Pempartisyenan"
+msgstr "[%s (%s): gagal. Diabaikan]\n"
#: install_interactive.pm:286
-#, c-format
+#, fuzzy, c-format
msgid "Bringing up the network"
-msgstr ""
+msgstr "_Tambah rangkaian baru"
#: install_interactive.pm:291
-#, c-format
+#, fuzzy, c-format
msgid "Bringing down the network"
-msgstr ""
+msgstr "_Tambah rangkaian baru"
#: install_messages.pm:9
#, fuzzy, c-format
msgid ""
"Introduction\n"
"\n"
-"The operating system and the different components available in the Mandrake "
-"Linux distribution \n"
+"The operating system and the different components available in the "
+"Mandrakelinux distribution \n"
"shall be called the \"Software Products\" hereafter. The Software Products "
"include, but are not \n"
"restricted to, the set of programs, methods, rules and documentation related "
"to the operating \n"
-"system and the different components of the Mandrake Linux distribution.\n"
+"system and the different components of the Mandrakelinux distribution.\n"
"\n"
"\n"
"1. License Agreement\n"
@@ -4916,7 +4957,7 @@ msgid ""
"loss) arising out \n"
"of the possession and use of software components or arising out of "
"downloading software components \n"
-"from one of Mandrake Linux sites which are prohibited or restricted in some "
+"from one of Mandrakelinux sites which are prohibited or restricted in some "
"countries by local laws.\n"
"This limited liability applies to, but is not restricted to, the strong "
"cryptography components \n"
@@ -4953,7 +4994,7 @@ msgid ""
"MandrakeSoft S.A. reserves its rights to modify or adapt the Software "
"Products, as a whole or in \n"
"parts, by all means and for all purposes.\n"
-"\"Mandrake\", \"Mandrake Linux\" and associated logos are trademarks of "
+"\"Mandrake\", \"Mandrakelinux\" and associated logos are trademarks of "
"MandrakeSoft S.A. \n"
"\n"
"\n"
@@ -5029,8 +5070,8 @@ msgid ""
"Remove the boot media and press return to reboot.\n"
"\n"
"\n"
-"For information on fixes which are available for this release of Mandrake "
-"Linux,\n"
+"For information on fixes which are available for this release of "
+"Mandrakelinux,\n"
"consult the Errata available from:\n"
"\n"
"\n"
@@ -5038,7 +5079,7 @@ msgid ""
"\n"
"\n"
"Information on configuring your system is available in the post\n"
-"install chapter of the Official Mandrake Linux User's Guide."
+"install chapter of the Official Mandrakelinux User's Guide."
msgstr "Tahniah dan on on dalam Pengguna."
#: install_messages.pm:141
@@ -5047,11 +5088,11 @@ msgid "http://www.mandrakelinux.com/en/100errata.php3"
msgstr "http://www.mandrakelinux.com/en/100errata.php3"
#: install_steps.pm:241
-#, c-format
+#, fuzzy, c-format
msgid "Duplicate mount point %s"
-msgstr ""
+msgstr "Hala panah patut ditudingi"
-#: install_steps.pm:410
+#: install_steps.pm:406
#, fuzzy, c-format
msgid ""
"Some important packages didn't get installed properly.\n"
@@ -5060,21 +5101,21 @@ msgid ""
"\"\n"
msgstr "on"
-#: install_steps.pm:541
+#: install_steps.pm:535
#, fuzzy, c-format
msgid "No floppy drive available"
msgstr "Tidak"
#: install_steps_auto_install.pm:76 install_steps_stdio.pm:27
-#, c-format
+#, fuzzy, c-format
msgid "Entering step `%s'\n"
-msgstr ""
+msgstr "Langkah aktiviti"
#: install_steps_gtk.pm:178
#, fuzzy, c-format
msgid ""
"Your system is low on resources. You may have some problem installing\n"
-"Mandrake Linux. If that occurs, you can try a text install instead. For "
+"Mandrakelinux. If that occurs, you can try a text install instead. For "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
msgstr "on on."
@@ -5082,32 +5123,32 @@ msgstr "on on."
#: install_steps_gtk.pm:232 install_steps_interactive.pm:587
#, fuzzy, c-format
msgid "Package Group Selection"
-msgstr "Pemilihan Kumpulan Pakej"
+msgstr "nama kumpulan tak dah %s"
#: install_steps_gtk.pm:292 install_steps_interactive.pm:519
#, fuzzy, c-format
msgid "Total size: %d / %d MB"
-msgstr "Jumlah"
+msgstr "Saiz penggelungsur tetap"
#: install_steps_gtk.pm:338
-#, c-format
+#, fuzzy, c-format
msgid "Bad package"
-msgstr ""
+msgstr "Regex tidak sah \"%s\": %s"
#: install_steps_gtk.pm:340
#, fuzzy, c-format
msgid "Version: "
-msgstr "Versi: "
+msgstr "versi "
#: install_steps_gtk.pm:341
#, fuzzy, c-format
msgid "Size: "
-msgstr "Saiz: "
+msgstr "Saiz"
#: install_steps_gtk.pm:341
#, c-format
msgid "%d KB\n"
-msgstr ""
+msgstr "%d KB\n"
#: install_steps_gtk.pm:342
#, c-format
@@ -5120,24 +5161,24 @@ msgid "You can't select/unselect this package"
msgstr ""
#: install_steps_gtk.pm:379
-#, c-format
+#, fuzzy, c-format
msgid "due to missing %s"
-msgstr ""
+msgstr "kehilangan hujah kepada `%s'"
#: install_steps_gtk.pm:380
-#, c-format
+#, fuzzy, c-format
msgid "due to unsatisfied %s"
-msgstr ""
+msgstr "Gagal untuk sepit (%s)"
#: install_steps_gtk.pm:381
-#, c-format
+#, fuzzy, c-format
msgid "trying to promote %s"
-msgstr ""
+msgstr "Gagal untuk sepit (%s)"
#: install_steps_gtk.pm:382
-#, c-format
+#, fuzzy, c-format
msgid "in order to keep %s"
-msgstr ""
+msgstr "Pindah ke (%d, %d) dalam buffer suntingan\n"
#: install_steps_gtk.pm:387
#, c-format
@@ -5185,12 +5226,12 @@ msgstr ""
#: install_steps_gtk.pm:433
#, fuzzy, c-format
msgid "Load/Save on floppy"
-msgstr "Simpan on"
+msgstr "Simpan Tetapan bila keluar"
#: install_steps_gtk.pm:434
-#, c-format
+#, fuzzy, c-format
msgid "Updating package selection"
-msgstr ""
+msgstr "pemilihan gaya automatik dibatalkan"
#: install_steps_gtk.pm:439
#, fuzzy, c-format
@@ -5198,9 +5239,9 @@ msgid "Minimal install"
msgstr "Minima"
#: install_steps_gtk.pm:453 install_steps_interactive.pm:427
-#, c-format
+#, fuzzy, c-format
msgid "Choose the packages you want to install"
-msgstr ""
+msgstr "Dimana anda ingin pemuatbut ini dipasang?"
#: install_steps_gtk.pm:469 install_steps_interactive.pm:673
#, c-format
@@ -5210,7 +5251,7 @@ msgstr ""
#: install_steps_gtk.pm:475
#, fuzzy, c-format
msgid "No details"
-msgstr "Tidak"
+msgstr "Maklumat lanjut Plugin:"
#: install_steps_gtk.pm:476
#, c-format
@@ -5220,12 +5261,12 @@ msgstr ""
#: install_steps_gtk.pm:482
#, fuzzy, c-format
msgid "Time remaining "
-msgstr "Masa "
+msgstr "Masa Universal"
#: install_steps_gtk.pm:494
-#, c-format
+#, fuzzy, c-format
msgid "Please wait, preparing installation..."
-msgstr ""
+msgstr "Menghasilkan senarai perkataan salah eja, sila tunggu..."
#: install_steps_gtk.pm:555
#, c-format
@@ -5256,24 +5297,24 @@ msgstr "Ubah dalam dan Ok siap Batal."
#: install_steps_gtk.pm:612 install_steps_interactive.pm:710
#, fuzzy, c-format
msgid "There was an error ordering packages:"
-msgstr "ralat:"
+msgstr "Terdapat ralat memapar bantuan: %s"
#: install_steps_gtk.pm:612 install_steps_gtk.pm:616
#: install_steps_interactive.pm:710 install_steps_interactive.pm:714
#, fuzzy, c-format
msgid "Go on anyway?"
-msgstr "Pergi ke on?"
+msgstr "Ralat pada baris %d: %s"
#: install_steps_gtk.pm:616 install_steps_interactive.pm:714
#, fuzzy, c-format
msgid "There was an error installing packages:"
-msgstr "ralat:"
+msgstr "Terdapat ralat memapar bantuan: %s"
-#: install_steps_gtk.pm:656 install_steps_interactive.pm:881
-#: install_steps_interactive.pm:1029
-#, c-format
+#: install_steps_gtk.pm:656 install_steps_interactive.pm:882
+#: install_steps_interactive.pm:1034
+#, fuzzy, c-format
msgid "not configured"
-msgstr ""
+msgstr "bukan satu tty"
#: install_steps_interactive.pm:81
#, fuzzy, c-format
@@ -5311,9 +5352,9 @@ msgid "Upgrade %s"
msgstr "Tingkatupaya"
#: install_steps_interactive.pm:160
-#, c-format
+#, fuzzy, c-format
msgid "Encryption key for %s"
-msgstr ""
+msgstr "tiada kekunci ditakrifkan untuk `%s'"
#: install_steps_interactive.pm:177
#, c-format
@@ -5323,7 +5364,7 @@ msgstr ""
#: install_steps_interactive.pm:186 standalone/mousedrake:46
#, fuzzy, c-format
msgid "Mouse Port"
-msgstr "Liang Tetikus"
+msgstr "nombor port"
#: install_steps_interactive.pm:187 standalone/mousedrake:47
#, fuzzy, c-format
@@ -5331,19 +5372,19 @@ msgid "Please choose which serial port your mouse is connected to."
msgstr "bersiri."
#: install_steps_interactive.pm:197
-#, c-format
+#, fuzzy, c-format
msgid "Buttons emulation"
-msgstr ""
+msgstr "Butang Mesej"
#: install_steps_interactive.pm:199
-#, c-format
+#, fuzzy, c-format
msgid "Button 2 Emulation"
-msgstr ""
+msgstr "butang-tekan"
#: install_steps_interactive.pm:200
-#, c-format
+#, fuzzy, c-format
msgid "Button 3 Emulation"
-msgstr ""
+msgstr "butang-tekan"
#: install_steps_interactive.pm:221
#, c-format
@@ -5358,17 +5399,17 @@ msgstr ""
#: install_steps_interactive.pm:228
#, c-format
msgid "IDE"
-msgstr ""
+msgstr "IDE"
#: install_steps_interactive.pm:228
#, c-format
msgid "Configuring IDE"
msgstr ""
-#: install_steps_interactive.pm:248 network/tools.pm:197
+#: install_steps_interactive.pm:248 network/tools.pm:195
#, fuzzy, c-format
msgid "No partition available"
-msgstr "Tidak"
+msgstr "Tiada peranti input"
#: install_steps_interactive.pm:251
#, c-format
@@ -5376,9 +5417,9 @@ msgid "Scanning partitions to find mount points"
msgstr "Mengimbas partisyen untuk mencari titik lekapan"
#: install_steps_interactive.pm:258
-#, c-format
+#, fuzzy, c-format
msgid "Choose the mount points"
-msgstr ""
+msgstr "Saiz font dalam titik"
#: install_steps_interactive.pm:288
#, fuzzy, c-format
@@ -5393,9 +5434,9 @@ msgid "Choose the partitions you want to format"
msgstr ""
#: install_steps_interactive.pm:327
-#, c-format
+#, fuzzy, c-format
msgid "Check bad blocks?"
-msgstr ""
+msgstr "Kod teruk berlaku"
#: install_steps_interactive.pm:359
#, fuzzy, c-format
@@ -5444,24 +5485,24 @@ msgid ""
msgstr "on."
#: install_steps_interactive.pm:441
-#, c-format
+#, fuzzy, c-format
msgid "Load from floppy"
-msgstr ""
+msgstr "Pemindahan `%s', daripada %s kepada %s\n"
#: install_steps_interactive.pm:441
#, fuzzy, c-format
msgid "Save on floppy"
-msgstr "Simpan on"
+msgstr "Simpan Tetapan bila keluar"
#: install_steps_interactive.pm:445
#, fuzzy, c-format
msgid "Package selection"
-msgstr "Pakej"
+msgstr "Pilihan Font"
#: install_steps_interactive.pm:445
#, fuzzy, c-format
msgid "Loading from floppy"
-msgstr "Memuatkan"
+msgstr "Pemindahan `%s', daripada %s kepada %s\n"
#: install_steps_interactive.pm:450
#, c-format
@@ -5484,7 +5525,7 @@ msgstr ""
#: install_steps_interactive.pm:555
#, fuzzy, c-format
msgid "Type of install"
-msgstr "Jenis"
+msgstr "Jenis lekuk"
#: install_steps_interactive.pm:556
#, c-format
@@ -5504,7 +5545,7 @@ msgid "Truly minimal install (especially no urpmi)"
msgstr "tidak"
#: install_steps_interactive.pm:604 standalone/drakxtv:53
-#, fuzzy, c-format
+#, c-format
msgid "All"
msgstr "Semua"
@@ -5517,9 +5558,9 @@ msgid ""
msgstr "dalam Ok tiada Batal Ok."
#: install_steps_interactive.pm:653
-#, c-format
+#, fuzzy, c-format
msgid "Cd-Rom labeled \"%s\""
-msgstr ""
+msgstr "Arkib tidak dilabelkan supaya memadan %s"
#: install_steps_interactive.pm:673
#, c-format
@@ -5534,9 +5575,9 @@ msgid ""
msgstr ""
#: install_steps_interactive.pm:728
-#, c-format
+#, fuzzy, c-format
msgid "Post-install configuration"
-msgstr ""
+msgstr "Membaca fail konfigurasi sistem %s..."
#: install_steps_interactive.pm:734
#, fuzzy, c-format
@@ -5564,174 +5605,173 @@ msgstr "Internet?"
#: install_steps_interactive.pm:782
#, c-format
msgid ""
-"Contacting Mandrake Linux web site to get the list of available mirrors..."
+"Contacting Mandrakelinux web site to get the list of available mirrors..."
msgstr ""
-#: install_steps_interactive.pm:786
+#: install_steps_interactive.pm:787
#, c-format
msgid "Choose a mirror from which to get the packages"
msgstr ""
-#: install_steps_interactive.pm:800
+#: install_steps_interactive.pm:801
#, c-format
msgid "Contacting the mirror to get the list of available packages..."
msgstr ""
-#: install_steps_interactive.pm:804
-#, c-format
+#: install_steps_interactive.pm:805
+#, fuzzy, c-format
msgid "Unable to contact mirror %s"
-msgstr ""
+msgstr "tak dapat memulihkan keizinan %s"
-#: install_steps_interactive.pm:804
+#: install_steps_interactive.pm:805
#, c-format
msgid "Would you like to try again?"
msgstr ""
-#: install_steps_interactive.pm:830 standalone/drakclock:42
-#, c-format
+#: install_steps_interactive.pm:831 standalone/drakclock:42
+#, fuzzy, c-format
msgid "Which is your timezone?"
-msgstr ""
+msgstr "hukum diberi untuk %s, dimana ia adalah token"
-#: install_steps_interactive.pm:835
+#: install_steps_interactive.pm:836
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: install_steps_interactive.pm:843
-#, c-format
+#: install_steps_interactive.pm:844
+#, fuzzy, c-format
msgid "NTP Server"
-msgstr ""
+msgstr "(%ld)PELAYAN >>> %s"
-#: install_steps_interactive.pm:885 steps.pm:30
+#: install_steps_interactive.pm:886 steps.pm:30
#, fuzzy, c-format
msgid "Summary"
msgstr "Ringkasan"
-#: install_steps_interactive.pm:898 install_steps_interactive.pm:906
-#: install_steps_interactive.pm:920 install_steps_interactive.pm:927
-#: install_steps_interactive.pm:1076 services.pm:135
-#: standalone/drakbackup:1937
+#: install_steps_interactive.pm:899 install_steps_interactive.pm:907
+#: install_steps_interactive.pm:925 install_steps_interactive.pm:932
+#: install_steps_interactive.pm:1081 services.pm:135
+#: standalone/drakbackup:1663
#, fuzzy, c-format
msgid "System"
-msgstr "Sistem"
+msgstr "Ralat sistem yang tidak diketahui"
-#: install_steps_interactive.pm:934 install_steps_interactive.pm:961
-#: install_steps_interactive.pm:978 install_steps_interactive.pm:994
-#: install_steps_interactive.pm:1005
-#, fuzzy, c-format
+#: install_steps_interactive.pm:939 install_steps_interactive.pm:966
+#: install_steps_interactive.pm:983 install_steps_interactive.pm:999
+#: install_steps_interactive.pm:1010
+#, c-format
msgid "Hardware"
msgstr "Perkakasan"
-#: install_steps_interactive.pm:940 install_steps_interactive.pm:949
-#, c-format
+#: install_steps_interactive.pm:945 install_steps_interactive.pm:954
+#, fuzzy, c-format
msgid "Remote CUPS server"
-msgstr ""
+msgstr "Terima Notis Pelayan"
-#: install_steps_interactive.pm:940
+#: install_steps_interactive.pm:945
#, fuzzy, c-format
msgid "No printer"
-msgstr "Tidak"
+msgstr "Pencetak Tidak Diketahui"
-#: install_steps_interactive.pm:982
+#: install_steps_interactive.pm:987
#, c-format
msgid "Do you have an ISA sound card?"
msgstr ""
-#: install_steps_interactive.pm:984
+#: install_steps_interactive.pm:989
#, c-format
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: install_steps_interactive.pm:986
+#: install_steps_interactive.pm:991
#, fuzzy, c-format
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr "Tidak"
-#: install_steps_interactive.pm:1006
+#: install_steps_interactive.pm:1011
#, fuzzy, c-format
msgid "Graphical interface"
msgstr "Grafikal"
-#: install_steps_interactive.pm:1012 install_steps_interactive.pm:1027
+#: install_steps_interactive.pm:1017 install_steps_interactive.pm:1032
#, fuzzy, c-format
msgid "Network & Internet"
-msgstr "Rangkaian"
+msgstr "Rangkaian tidak dapat dicapai."
-#: install_steps_interactive.pm:1028
+#: install_steps_interactive.pm:1033
#, c-format
msgid "Proxies"
msgstr ""
-#: install_steps_interactive.pm:1029
+#: install_steps_interactive.pm:1034
#, fuzzy, c-format
msgid "configured"
msgstr "DHCP"
-#: install_steps_interactive.pm:1038 install_steps_interactive.pm:1052
+#: install_steps_interactive.pm:1043 install_steps_interactive.pm:1057
#: steps.pm:20
-#, fuzzy, c-format
+#, c-format
msgid "Security"
msgstr "Keselamatan"
-#: install_steps_interactive.pm:1057
+#: install_steps_interactive.pm:1062
#, c-format
msgid "activated"
msgstr ""
-#: install_steps_interactive.pm:1057
+#: install_steps_interactive.pm:1062
#, fuzzy, c-format
msgid "disabled"
msgstr "dimatikan"
-#: install_steps_interactive.pm:1066
+#: install_steps_interactive.pm:1071
#, c-format
msgid "Boot"
-msgstr ""
+msgstr "Boot"
#. -PO: example: lilo-graphic on /dev/hda1
-#: install_steps_interactive.pm:1070
+#: install_steps_interactive.pm:1075
#, fuzzy, c-format
msgid "%s on %s"
-msgstr "%s pada %s"
+msgstr "on"
-#: install_steps_interactive.pm:1081 services.pm:177
+#: install_steps_interactive.pm:1086 services.pm:177
#, fuzzy, c-format
msgid "Services: %d activated for %d registered"
msgstr "Perkhidmatan"
-#: install_steps_interactive.pm:1091
+#: install_steps_interactive.pm:1096
#, c-format
msgid "You have not configured X. Are you sure you really want this?"
msgstr ""
-#: install_steps_interactive.pm:1149
+#: install_steps_interactive.pm:1154
#, fuzzy, c-format
msgid "Set root password and network authentication methods"
msgstr "dan"
-#: install_steps_interactive.pm:1150
-#, c-format
+#: install_steps_interactive.pm:1155
+#, fuzzy, c-format
msgid "Set root password"
-msgstr ""
+msgstr "Set latar belakang sel"
-#: install_steps_interactive.pm:1160
+#: install_steps_interactive.pm:1165
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
-#: install_steps_interactive.pm:1165 network/netconnect.pm:492
-#: standalone/drakauth:26 standalone/drakconnect:428
-#: standalone/drakconnect:917
-#, fuzzy, c-format
+#: install_steps_interactive.pm:1170 network/netconnect.pm:563
+#: standalone/drakauth:26 standalone/drakconnect:451
+#, c-format
msgid "Authentication"
msgstr "Pengesahan"
-#: install_steps_interactive.pm:1196
+#: install_steps_interactive.pm:1201
#, c-format
msgid "Preparing bootloader..."
msgstr ""
-#: install_steps_interactive.pm:1206
+#: install_steps_interactive.pm:1211
#, fuzzy, c-format
msgid ""
"You appear to have an OldWorld or Unknown\n"
@@ -5742,29 +5782,29 @@ msgstr ""
"Entah\n"
"\n"
-#: install_steps_interactive.pm:1212
-#, c-format
+#: install_steps_interactive.pm:1217
+#, fuzzy, c-format
msgid "Do you want to use aboot?"
-msgstr ""
+msgstr "Anda pasti mahu keluar?"
-#: install_steps_interactive.pm:1215
+#: install_steps_interactive.pm:1220
#, fuzzy, c-format
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
msgstr "Ralat?"
-#: install_steps_interactive.pm:1226
+#: install_steps_interactive.pm:1231
#, c-format
msgid "Installing bootloader"
msgstr ""
-#: install_steps_interactive.pm:1233
+#: install_steps_interactive.pm:1238
#, fuzzy, c-format
msgid "Installation of bootloader failed. The following error occured:"
msgstr "ralat:"
-#: install_steps_interactive.pm:1238
+#: install_steps_interactive.pm:1243
#, fuzzy, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5780,24 +5820,29 @@ msgstr ""
"\n"
"."
-#: install_steps_interactive.pm:1251
+#: install_steps_interactive.pm:1256
#, 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:1283 standalone/drakautoinst:75
+#: install_steps_interactive.pm:1288 standalone/drakautoinst:76
#, fuzzy, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "dalam"
-#: install_steps_interactive.pm:1287
+#: install_steps_interactive.pm:1293
+#, fuzzy, c-format
+msgid "Please insert another floppy for drivers disk"
+msgstr "dalam"
+
+#: install_steps_interactive.pm:1295
#, fuzzy, c-format
msgid "Creating auto install floppy..."
msgstr "Mencipta."
-#: install_steps_interactive.pm:1298
+#: install_steps_interactive.pm:1307
#, c-format
msgid ""
"Some steps are not completed.\n"
@@ -5805,12 +5850,12 @@ msgid ""
"Do you really want to quit now?"
msgstr ""
-#: install_steps_interactive.pm:1313
+#: install_steps_interactive.pm:1322
#, c-format
msgid "Generate auto install floppy"
msgstr ""
-#: install_steps_interactive.pm:1315
+#: install_steps_interactive.pm:1324
#, fuzzy, c-format
msgid ""
"The auto install can be fully automated if wanted,\n"
@@ -5822,7 +5867,7 @@ msgstr "on"
#: install_steps_newt.pm:20
#, c-format
-msgid "Mandrake Linux Installation %s"
+msgid "Mandrakelinux Installation %s"
msgstr ""
#: install_steps_newt.pm:33
@@ -5834,17 +5879,17 @@ msgstr ""
"seterusnya "
#: interactive.pm:170
-#, c-format
+#, fuzzy, c-format
msgid "Choose a file"
-msgstr ""
+msgstr "Pemilih-fail"
#: interactive.pm:372
-#, fuzzy, c-format
+#, c-format
msgid "Basic"
msgstr "Asas"
-#: interactive.pm:403 interactive/newt.pm:308 ugtk2.pm:509
-#, fuzzy, c-format
+#: interactive.pm:403 interactive/newt.pm:308 ugtk2.pm:510
+#, c-format
msgid "Finish"
msgstr "Tamat"
@@ -5861,7 +5906,7 @@ msgstr ""
#: interactive/stdio.pm:30 interactive/stdio.pm:149
#, fuzzy, c-format
msgid "Your choice? (default %s) "
-msgstr "default "
+msgstr "Jarak Ruang luaran default"
#: interactive/stdio.pm:54
#, c-format
@@ -5873,12 +5918,12 @@ msgstr ""
#: interactive/stdio.pm:70
#, fuzzy, c-format
msgid "Your choice? (0/1, default `%s') "
-msgstr "default "
+msgstr "Jarak Ruang luaran default"
#: interactive/stdio.pm:94
-#, c-format
+#, fuzzy, c-format
msgid "Button `%s': %s"
-msgstr ""
+msgstr "butang-tekan"
#: interactive/stdio.pm:95
#, fuzzy, c-format
@@ -5888,12 +5933,12 @@ msgstr "on?"
#: interactive/stdio.pm:104
#, fuzzy, c-format
msgid "Your choice? (default `%s'%s) "
-msgstr "default "
+msgstr "Jarak Ruang luaran default"
#: interactive/stdio.pm:104
-#, c-format
+#, fuzzy, c-format
msgid " enter `void' for void entry"
-msgstr ""
+msgstr "Menambah kemasukan baru bagi fg %d bg %d\n"
#: interactive/stdio.pm:122
#, c-format
@@ -5913,32 +5958,32 @@ msgstr "Enter "
msgid ""
"=> Notice, a label changed:\n"
"%s"
-msgstr "Notis"
+msgstr "hakmilik %s telah bertukar ke %s\n"
#: interactive/stdio.pm:145
-#, c-format
+#, fuzzy, c-format
msgid "Re-submit"
-msgstr ""
+msgstr "Carian undur"
#: keyboard.pm:137 keyboard.pm:169
#, fuzzy, c-format
msgid "Czech (QWERTZ)"
-msgstr "Czech"
+msgstr "Republik Czech"
#: keyboard.pm:138 keyboard.pm:171
-#, fuzzy, c-format
+#, c-format
msgid "German"
msgstr "Jerman"
#: keyboard.pm:139
#, c-format
msgid "Dvorak"
-msgstr ""
+msgstr "Dvorak"
#: keyboard.pm:140 keyboard.pm:179
-#, fuzzy, c-format
+#, c-format
msgid "Spanish"
-msgstr "Spanyol"
+msgstr "Sepanyol"
#: keyboard.pm:141 keyboard.pm:180
#, c-format
@@ -5948,9 +5993,9 @@ msgstr ""
#: keyboard.pm:142 keyboard.pm:181
#, fuzzy, c-format
msgid "French"
-msgstr "Perancis"
+msgstr "French Guiana"
-#: keyboard.pm:143 keyboard.pm:217
+#: keyboard.pm:143 keyboard.pm:220
#, fuzzy, c-format
msgid "Norwegian"
msgstr "Norwegian"
@@ -5960,35 +6005,35 @@ msgstr "Norwegian"
msgid "Polish"
msgstr ""
-#: keyboard.pm:145 keyboard.pm:226
+#: keyboard.pm:145 keyboard.pm:229
#, fuzzy, c-format
msgid "Russian"
-msgstr "Russia"
+msgstr "Persekutuan Rusia"
-#: keyboard.pm:147 keyboard.pm:230
+#: keyboard.pm:147 keyboard.pm:233
#, fuzzy, c-format
msgid "Swedish"
msgstr "Swedish"
-#: keyboard.pm:148 keyboard.pm:249
+#: keyboard.pm:148 keyboard.pm:252
#, c-format
msgid "UK keyboard"
msgstr ""
-#: keyboard.pm:149 keyboard.pm:250
-#, c-format
+#: keyboard.pm:149 keyboard.pm:253
+#, fuzzy, c-format
msgid "US keyboard"
-msgstr ""
+msgstr "Pulau Virgin Amerika Syarikat"
#: keyboard.pm:151
-#, fuzzy, c-format
+#, c-format
msgid "Albanian"
msgstr "Albania"
#: keyboard.pm:152
-#, c-format
+#, fuzzy, c-format
msgid "Armenian (old)"
-msgstr ""
+msgstr "Gelaran lama"
#: keyboard.pm:153
#, c-format
@@ -6001,7 +6046,7 @@ msgid "Armenian (phonetic)"
msgstr ""
#: keyboard.pm:155
-#, fuzzy, c-format
+#, c-format
msgid "Arabic"
msgstr "Arab"
@@ -6048,7 +6093,7 @@ msgstr ""
#: keyboard.pm:167
#, fuzzy, c-format
msgid "Swiss (German layout)"
-msgstr "Jerman"
+msgstr "&Tetapsemula kepada susunatur default"
#: keyboard.pm:168
#, c-format
@@ -6058,7 +6103,7 @@ msgstr "Swiss (susunatur Perancis)"
#: keyboard.pm:170
#, fuzzy, c-format
msgid "Czech (QWERTY)"
-msgstr "Czech"
+msgstr "Republik Czech"
#: keyboard.pm:172
#, fuzzy, c-format
@@ -6076,9 +6121,9 @@ msgid "Danish"
msgstr "Danish"
#: keyboard.pm:175
-#, c-format
+#, fuzzy, c-format
msgid "Dvorak (US)"
-msgstr ""
+msgstr "Pulau Virgin Amerika Syarikat"
#: keyboard.pm:176
#, fuzzy, c-format
@@ -6098,17 +6143,17 @@ msgstr "Estonia"
#: keyboard.pm:182
#, fuzzy, c-format
msgid "Georgian (\"Russian\" layout)"
-msgstr "Russia"
+msgstr "&Tetapsemula kepada susunatur default"
#: keyboard.pm:183
-#, c-format
+#, fuzzy, c-format
msgid "Georgian (\"Latin\" layout)"
-msgstr ""
+msgstr "&Tetapsemula kepada susunatur default"
#: keyboard.pm:184
#, c-format
msgid "Greek"
-msgstr ""
+msgstr "Greek"
#: keyboard.pm:185
#, c-format
@@ -6131,7 +6176,7 @@ msgid "Hungarian"
msgstr ""
#: keyboard.pm:189
-#, fuzzy, c-format
+#, c-format
msgid "Croatian"
msgstr "Croatia"
@@ -6156,12 +6201,12 @@ msgid "Iranian"
msgstr ""
#: keyboard.pm:194
-#, fuzzy, c-format
+#, c-format
msgid "Icelandic"
msgstr "Icelandic"
#: keyboard.pm:195
-#, fuzzy, c-format
+#, c-format
msgid "Italian"
msgstr "Itali"
@@ -6170,312 +6215,312 @@ msgstr "Itali"
msgid "Inuktitut"
msgstr ""
-#: keyboard.pm:197
+#: keyboard.pm:200
#, fuzzy, c-format
msgid "Japanese 106 keys"
-msgstr "Jepun"
+msgstr "Hidupkan kekunci panah"
-#: keyboard.pm:198
+#: keyboard.pm:201
#, c-format
msgid "Kannada"
msgstr ""
-#: keyboard.pm:201
+#: keyboard.pm:204
#, fuzzy, c-format
msgid "Korean keyboard"
msgstr "Korea"
-#: keyboard.pm:202
-#, c-format
+#: keyboard.pm:205
+#, fuzzy, c-format
msgid "Latin American"
-msgstr ""
+msgstr "Samoa Amerika"
-#: keyboard.pm:203
+#: keyboard.pm:206
#, c-format
msgid "Laotian"
msgstr ""
-#: keyboard.pm:204
-#, c-format
+#: keyboard.pm:207
+#, fuzzy, c-format
msgid "Lithuanian AZERTY (old)"
-msgstr ""
+msgstr "ARPAnet Sekolah Lama"
-#: keyboard.pm:206
-#, c-format
+#: keyboard.pm:209
+#, fuzzy, c-format
msgid "Lithuanian AZERTY (new)"
-msgstr ""
+msgstr "mendapatkan atribut baru untuk %s"
-#: keyboard.pm:207
-#, c-format
+#: keyboard.pm:210
+#, fuzzy, c-format
msgid "Lithuanian \"number row\" QWERTY"
-msgstr ""
+msgstr "Bilangan baris untuk dilampirkan ke sebelah bawah wiget anak"
-#: keyboard.pm:208
+#: keyboard.pm:211
#, c-format
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr ""
-#: keyboard.pm:209
+#: keyboard.pm:212
#, c-format
msgid "Latvian"
msgstr ""
-#: keyboard.pm:210
+#: keyboard.pm:213
#, c-format
msgid "Malayalam"
-msgstr ""
+msgstr "Malayalam"
-#: keyboard.pm:211
+#: keyboard.pm:214
#, c-format
msgid "Macedonian"
-msgstr ""
+msgstr "Macedonia"
-#: keyboard.pm:212
-#, fuzzy, c-format
+#: keyboard.pm:215
+#, c-format
msgid "Myanmar (Burmese)"
-msgstr "Myanmar"
+msgstr "Myanmar (Burma)"
-#: keyboard.pm:213
-#, c-format
+#: keyboard.pm:216
+#, fuzzy, c-format
msgid "Mongolian (cyrillic)"
-msgstr ""
+msgstr "Cyrillic (Transliterated)"
-#: keyboard.pm:214
+#: keyboard.pm:217
#, c-format
msgid "Maltese (UK)"
msgstr ""
-#: keyboard.pm:215
-#, c-format
+#: keyboard.pm:218
+#, fuzzy, c-format
msgid "Maltese (US)"
-msgstr ""
+msgstr "Pulau Virgin Amerika Syarikat"
-#: keyboard.pm:216
-#, fuzzy, c-format
+#: keyboard.pm:219
+#, c-format
msgid "Dutch"
msgstr "Belanda"
-#: keyboard.pm:218
+#: keyboard.pm:221
#, c-format
msgid "Oriya"
msgstr ""
-#: keyboard.pm:219
-#, c-format
+#: keyboard.pm:222
+#, fuzzy, c-format
msgid "Polish (qwerty layout)"
-msgstr ""
+msgstr "&Tetapsemula kepada susunatur default"
-#: keyboard.pm:220
-#, c-format
+#: keyboard.pm:223
+#, fuzzy, c-format
msgid "Polish (qwertz layout)"
-msgstr ""
+msgstr "&Tetapsemula kepada susunatur default"
-#: keyboard.pm:221
-#, fuzzy, c-format
+#: keyboard.pm:224
+#, c-format
msgid "Portuguese"
msgstr "Portugis"
-#: keyboard.pm:222
+#: keyboard.pm:225
#, c-format
msgid "Canadian (Quebec)"
msgstr ""
-#: keyboard.pm:224
+#: keyboard.pm:227
#, c-format
msgid "Romanian (qwertz)"
msgstr ""
-#: keyboard.pm:225
+#: keyboard.pm:228
#, c-format
msgid "Romanian (qwerty)"
msgstr ""
-#: keyboard.pm:227
+#: keyboard.pm:230
#, fuzzy, c-format
msgid "Russian (Phonetic)"
-msgstr "Russia"
+msgstr "Persekutuan Rusia"
-#: keyboard.pm:228
+#: keyboard.pm:231
#, c-format
msgid "Saami (norwegian)"
msgstr ""
-#: keyboard.pm:229
+#: keyboard.pm:232
#, c-format
msgid "Saami (swedish/finnish)"
msgstr ""
-#: keyboard.pm:231
+#: keyboard.pm:234
#, c-format
msgid "Slovenian"
msgstr ""
-#: keyboard.pm:232
+#: keyboard.pm:235
#, c-format
msgid "Slovakian (QWERTZ)"
msgstr ""
-#: keyboard.pm:233
+#: keyboard.pm:236
#, c-format
msgid "Slovakian (QWERTY)"
msgstr ""
-#: keyboard.pm:235
+#: keyboard.pm:238
#, fuzzy, c-format
msgid "Serbian (cyrillic)"
-msgstr "Serbian"
+msgstr "Cyrillic (Transliterated)"
-#: keyboard.pm:236
+#: keyboard.pm:239
#, c-format
msgid "Syriac"
msgstr ""
-#: keyboard.pm:237
+#: keyboard.pm:240
#, c-format
msgid "Syriac (phonetic)"
msgstr ""
-#: keyboard.pm:238
+#: keyboard.pm:241
#, c-format
msgid "Telugu"
-msgstr ""
+msgstr "Telugu"
-#: keyboard.pm:240
-#, c-format
+#: keyboard.pm:243
+#, fuzzy, c-format
msgid "Tamil (ISCII-layout)"
-msgstr ""
+msgstr "&Tetapsemula kepada susunatur default"
-#: keyboard.pm:241
-#, c-format
+#: keyboard.pm:244
+#, fuzzy, c-format
msgid "Tamil (Typewriter-layout)"
-msgstr ""
+msgstr "&Tetapsemula kepada susunatur default"
-#: keyboard.pm:242
-#, c-format
+#: keyboard.pm:245
+#, fuzzy, c-format
msgid "Thai keyboard"
-msgstr ""
+msgstr "Thai (Rosak)"
-#: keyboard.pm:244
+#: keyboard.pm:247
#, c-format
msgid "Tajik keyboard"
msgstr ""
-#: keyboard.pm:245
+#: keyboard.pm:248
#, fuzzy, c-format
msgid "Turkish (traditional \"F\" model)"
-msgstr "Turki"
+msgstr "Model pagi paparan pepohon"
-#: keyboard.pm:246
+#: keyboard.pm:249
#, fuzzy, c-format
msgid "Turkish (modern \"Q\" model)"
-msgstr "Turki"
+msgstr "Model pagi paparan pepohon"
-#: keyboard.pm:248
+#: keyboard.pm:251
#, c-format
msgid "Ukrainian"
msgstr ""
-#: keyboard.pm:251
-#, c-format
+#: keyboard.pm:254
+#, fuzzy, c-format
msgid "US keyboard (international)"
-msgstr ""
+msgstr "Pulau Virgin Amerika Syarikat"
-#: keyboard.pm:252
-#, c-format
+#: keyboard.pm:255
+#, fuzzy, c-format
msgid "Uzbek (cyrillic)"
-msgstr ""
+msgstr "Cyrillic (Transliterated)"
-#: keyboard.pm:253
+#: keyboard.pm:256
#, c-format
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr ""
-#: keyboard.pm:254
+#: keyboard.pm:257
#, c-format
msgid "Yugoslavian (latin)"
msgstr ""
-#: keyboard.pm:261
+#: keyboard.pm:264
#, fuzzy, c-format
msgid "Right Alt key"
-msgstr "Kanan Alt"
+msgstr "Nama Tema Kekunci"
-#: keyboard.pm:262
+#: keyboard.pm:265
#, fuzzy, c-format
msgid "Both Shift keys simultaneously"
msgstr "Shif"
-#: keyboard.pm:263
+#: keyboard.pm:266
#, fuzzy, c-format
msgid "Control and Shift keys simultaneously"
msgstr "dan Shif"
-#: keyboard.pm:264
-#, c-format
+#: keyboard.pm:267
+#, fuzzy, c-format
msgid "CapsLock key"
-msgstr ""
+msgstr "Kekunci Mnemonik"
-#: keyboard.pm:265
+#: keyboard.pm:268
#, fuzzy, c-format
msgid "Ctrl and Alt keys simultaneously"
msgstr "Ctrl dan Alt"
-#: keyboard.pm:266
+#: keyboard.pm:269
#, fuzzy, c-format
msgid "Alt and Shift keys simultaneously"
msgstr "Alt dan Shif"
-#: keyboard.pm:267
-#, c-format
+#: keyboard.pm:270
+#, fuzzy, c-format
msgid "\"Menu\" key"
-msgstr ""
+msgstr "Kekunci Mnemonik"
-#: keyboard.pm:268
+#: keyboard.pm:271
#, fuzzy, c-format
msgid "Left \"Windows\" key"
-msgstr "Kiri Tetingkap"
+msgstr "Nama Tema Kekunci"
-#: keyboard.pm:269
+#: keyboard.pm:272
#, fuzzy, c-format
msgid "Right \"Windows\" key"
-msgstr "Kanan Tetingkap"
+msgstr "Nama Tema Kekunci"
-#: keyboard.pm:270
+#: keyboard.pm:273
#, c-format
msgid "Both Control keys simultaneously"
msgstr ""
-#: keyboard.pm:271
+#: keyboard.pm:274
#, fuzzy, c-format
msgid "Both Alt keys simultaneously"
msgstr "Alt"
-#: keyboard.pm:272
+#: keyboard.pm:275
#, fuzzy, c-format
msgid "Left Shift key"
-msgstr "Kiri Shif"
+msgstr "Nama Tema Kekunci"
-#: keyboard.pm:273
+#: keyboard.pm:276
#, fuzzy, c-format
msgid "Right Shift key"
-msgstr "Kanan Shif"
+msgstr "Nama Tema Kekunci"
-#: keyboard.pm:274
+#: keyboard.pm:277
#, fuzzy, c-format
msgid "Left Alt key"
-msgstr "Kiri Alt"
+msgstr "Nama Tema Kekunci"
-#: keyboard.pm:275
+#: keyboard.pm:278
#, fuzzy, c-format
msgid "Left Control key"
-msgstr "Kiri"
+msgstr "Nama Tema Kekunci"
-#: keyboard.pm:276
+#: keyboard.pm:279
#, fuzzy, c-format
msgid "Right Control key"
-msgstr "Kanan"
+msgstr "Nama Tema Kekunci"
-#: keyboard.pm:307
+#: keyboard.pm:310
#, fuzzy, c-format
msgid ""
"Here you can choose the key or key combination that will \n"
@@ -6483,7 +6528,7 @@ msgid ""
"(eg: latin and non latin)"
msgstr "dan"
-#: keyboard.pm:312
+#: keyboard.pm:315
#, c-format
msgid ""
"This setting will be activated after the installation.\n"
@@ -6491,1147 +6536,1147 @@ msgid ""
"key to switch between the different keyboard layouts."
msgstr ""
-#: lang.pm:144
+#: lang.pm:149
#, fuzzy, c-format
msgid "default:LTR"
-msgstr "default"
+msgstr "default:LTR"
-#: lang.pm:160
-#, fuzzy, c-format
+#: lang.pm:165
+#, c-format
msgid "Afghanistan"
msgstr "Afghanistan"
-#: lang.pm:161
+#: lang.pm:166
#, fuzzy, c-format
msgid "Andorra"
msgstr "Andorra"
-#: lang.pm:162
+#: lang.pm:167
#, fuzzy, c-format
msgid "United Arab Emirates"
msgstr "Emiriah Arab Bersatu"
-#: lang.pm:163
+#: lang.pm:168
#, fuzzy, c-format
msgid "Antigua and Barbuda"
-msgstr "dan"
+msgstr "Cari dan _Ganti"
-#: lang.pm:164
-#, fuzzy, c-format
+#: lang.pm:169
+#, c-format
msgid "Anguilla"
msgstr "Anguilla"
-#: lang.pm:165
-#, fuzzy, c-format
+#: lang.pm:170
+#, c-format
msgid "Albania"
msgstr "Albania"
-#: lang.pm:166
-#, fuzzy, c-format
+#: lang.pm:171
+#, c-format
msgid "Armenia"
msgstr "Armenia"
-#: lang.pm:167
-#, fuzzy, c-format
+#: lang.pm:172
+#, c-format
msgid "Netherlands Antilles"
msgstr "Netherlands Antilles"
-#: lang.pm:168
-#, fuzzy, c-format
+#: lang.pm:173
+#, c-format
msgid "Angola"
msgstr "Angola"
-#: lang.pm:169
+#: lang.pm:174
#, fuzzy, c-format
msgid "Antarctica"
msgstr "Antarctika"
-#: lang.pm:170 standalone/drakxtv:51
-#, fuzzy, c-format
+#: lang.pm:175 standalone/drakxtv:51
+#, c-format
msgid "Argentina"
msgstr "Argentina"
-#: lang.pm:171
+#: lang.pm:176
#, fuzzy, c-format
msgid "American Samoa"
msgstr "Samoa Amerika"
-#: lang.pm:173 standalone/drakxtv:49
-#, fuzzy, c-format
+#: lang.pm:178 network/adsl_consts.pm:20 standalone/drakxtv:49
+#, c-format
msgid "Australia"
msgstr "Australia"
-#: lang.pm:174
-#, fuzzy, c-format
+#: lang.pm:179
+#, c-format
msgid "Aruba"
msgstr "Aruba"
-#: lang.pm:175
-#, fuzzy, c-format
+#: lang.pm:180
+#, c-format
msgid "Azerbaijan"
msgstr "Azerbaijan"
-#: lang.pm:176
+#: lang.pm:181
#, fuzzy, c-format
msgid "Bosnia and Herzegovina"
msgstr "Bosnia Herzegovina"
-#: lang.pm:177
-#, fuzzy, c-format
+#: lang.pm:182
+#, c-format
msgid "Barbados"
msgstr "Barbados"
-#: lang.pm:178
-#, fuzzy, c-format
+#: lang.pm:183
+#, c-format
msgid "Bangladesh"
msgstr "Bangladesh"
-#: lang.pm:180
-#, fuzzy, c-format
+#: lang.pm:185
+#, c-format
msgid "Burkina Faso"
msgstr "Burkina Faso"
-#: lang.pm:181
-#, fuzzy, c-format
+#: lang.pm:186
+#, c-format
msgid "Bulgaria"
msgstr "Bulgaria"
-#: lang.pm:182
-#, fuzzy, c-format
+#: lang.pm:187
+#, c-format
msgid "Bahrain"
msgstr "Bahrain"
-#: lang.pm:183
-#, fuzzy, c-format
+#: lang.pm:188
+#, c-format
msgid "Burundi"
msgstr "Burundi"
-#: lang.pm:184
-#, fuzzy, c-format
+#: lang.pm:189
+#, c-format
msgid "Benin"
msgstr "Benin"
-#: lang.pm:185
-#, fuzzy, c-format
+#: lang.pm:190
+#, c-format
msgid "Bermuda"
msgstr "Bermuda"
-#: lang.pm:186
-#, fuzzy, c-format
+#: lang.pm:191
+#, c-format
msgid "Brunei Darussalam"
msgstr "Brunei Darussalam"
-#: lang.pm:187
-#, fuzzy, c-format
+#: lang.pm:192
+#, c-format
msgid "Bolivia"
msgstr "Bolivia"
-#: lang.pm:188
-#, fuzzy, c-format
+#: lang.pm:193
+#, c-format
msgid "Brazil"
msgstr "Brazil"
-#: lang.pm:189
-#, fuzzy, c-format
+#: lang.pm:194
+#, c-format
msgid "Bahamas"
msgstr "Bahamas"
-#: lang.pm:190
-#, fuzzy, c-format
+#: lang.pm:195
+#, c-format
msgid "Bhutan"
msgstr "Bhutan"
-#: lang.pm:191
+#: lang.pm:196
#, fuzzy, c-format
msgid "Bouvet Island"
msgstr "Bouvet Island"
-#: lang.pm:192
-#, fuzzy, c-format
+#: lang.pm:197
+#, c-format
msgid "Botswana"
msgstr "Botswana"
-#: lang.pm:193
+#: lang.pm:198
#, c-format
msgid "Belarus"
msgstr "Belarus"
-#: lang.pm:194
-#, fuzzy, c-format
+#: lang.pm:199
+#, c-format
msgid "Belize"
msgstr "Belize"
-#: lang.pm:195
-#, fuzzy, c-format
+#: lang.pm:200
+#, c-format
msgid "Canada"
msgstr "Kanada"
-#: lang.pm:196
+#: lang.pm:201
#, c-format
msgid "Cocos (Keeling) Islands"
msgstr "Kepulauan Cocos (Keeling)"
-#: lang.pm:197
+#: lang.pm:202
#, fuzzy, c-format
msgid "Congo (Kinshasa)"
msgstr "Kongo"
-#: lang.pm:198
+#: lang.pm:203
#, c-format
msgid "Central African Republic"
msgstr "Republik Afrika Tengah"
-#: lang.pm:199
+#: lang.pm:204
#, fuzzy, c-format
msgid "Congo (Brazzaville)"
msgstr "Kongo"
-#: lang.pm:200
-#, fuzzy, c-format
+#: lang.pm:205
+#, c-format
msgid "Switzerland"
msgstr "Switzerland"
-#: lang.pm:201
+#: lang.pm:206
#, c-format
msgid "Cote d'Ivoire"
msgstr "Pantai Gading"
-#: lang.pm:202
-#, fuzzy, c-format
+#: lang.pm:207
+#, c-format
msgid "Cook Islands"
msgstr "Kepulauan Cook"
-#: lang.pm:203
-#, fuzzy, c-format
+#: lang.pm:208
+#, c-format
msgid "Chile"
msgstr "Chile"
-#: lang.pm:204
-#, fuzzy, c-format
+#: lang.pm:209
+#, c-format
msgid "Cameroon"
msgstr "Cameroon"
-#: lang.pm:205
-#, fuzzy, c-format
+#: lang.pm:210
+#, c-format
msgid "China"
msgstr "China"
-#: lang.pm:206
+#: lang.pm:211
#, fuzzy, c-format
msgid "Colombia"
msgstr "Kolombia"
-#: lang.pm:208
-#, fuzzy, c-format
+#: lang.pm:213
+#, c-format
msgid "Cuba"
msgstr "Cuba"
-#: lang.pm:209
-#, fuzzy, c-format
+#: lang.pm:214
+#, c-format
msgid "Cape Verde"
msgstr "Cape Verde"
-#: lang.pm:210
-#, fuzzy, c-format
+#: lang.pm:215
+#, c-format
msgid "Christmas Island"
msgstr "Kepulauan Krismas"
-#: lang.pm:211
-#, fuzzy, c-format
+#: lang.pm:216
+#, c-format
msgid "Cyprus"
msgstr "Cyprus"
-#: lang.pm:214
-#, fuzzy, c-format
+#: lang.pm:219
+#, c-format
msgid "Djibouti"
msgstr "Djibouti"
-#: lang.pm:215
-#, fuzzy, c-format
+#: lang.pm:220
+#, c-format
msgid "Denmark"
msgstr "Denmark"
-#: lang.pm:216
-#, fuzzy, c-format
+#: lang.pm:221
+#, c-format
msgid "Dominica"
msgstr "Dominica"
-#: lang.pm:217
-#, fuzzy, c-format
+#: lang.pm:222
+#, c-format
msgid "Dominican Republic"
msgstr "Republik Dominica"
-#: lang.pm:218
-#, fuzzy, c-format
+#: lang.pm:223
+#, c-format
msgid "Algeria"
msgstr "Algeria"
-#: lang.pm:219
-#, fuzzy, c-format
+#: lang.pm:224
+#, c-format
msgid "Ecuador"
msgstr "Ecuador"
-#: lang.pm:220
-#, fuzzy, c-format
+#: lang.pm:225
+#, c-format
msgid "Estonia"
msgstr "Estonia"
-#: lang.pm:221
-#, fuzzy, c-format
+#: lang.pm:226
+#, c-format
msgid "Egypt"
msgstr "Mesir"
-#: lang.pm:222
-#, fuzzy, c-format
+#: lang.pm:227
+#, c-format
msgid "Western Sahara"
msgstr "Sahara Barat"
-#: lang.pm:223
-#, fuzzy, c-format
+#: lang.pm:228
+#, c-format
msgid "Eritrea"
msgstr "Eritrea"
-#: lang.pm:224 network/adsl_consts.pm:193 network/adsl_consts.pm:200
-#: network/adsl_consts.pm:209 network/adsl_consts.pm:220
-#, fuzzy, c-format
+#: lang.pm:229 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 "Sepanyol"
-#: lang.pm:225
-#, fuzzy, c-format
+#: lang.pm:230
+#, c-format
msgid "Ethiopia"
msgstr "Ethiopia"
-#: lang.pm:226 network/adsl_consts.pm:119
-#, fuzzy, c-format
+#: lang.pm:231 network/adsl_consts.pm:127
+#, c-format
msgid "Finland"
msgstr "Finland"
-#: lang.pm:227
-#, fuzzy, c-format
+#: lang.pm:232
+#, c-format
msgid "Fiji"
msgstr "Fiji"
-#: lang.pm:228
+#: lang.pm:233
#, c-format
msgid "Falkland Islands (Malvinas)"
msgstr "Kepulauan Falkland"
-#: lang.pm:229
-#, fuzzy, c-format
+#: lang.pm:234
+#, c-format
msgid "Micronesia"
msgstr "Micronesia"
-#: lang.pm:230
-#, fuzzy, c-format
+#: lang.pm:235
+#, c-format
msgid "Faroe Islands"
msgstr "Kepulauan Faroe"
-#: lang.pm:232
-#, fuzzy, c-format
+#: lang.pm:237
+#, c-format
msgid "Gabon"
msgstr "Gabon"
-#: lang.pm:233 network/adsl_consts.pm:237 network/adsl_consts.pm:244
+#: lang.pm:238 network/adsl_consts.pm:247 network/adsl_consts.pm:255
#: network/netconnect.pm:51
-#, fuzzy, c-format
+#, c-format
msgid "United Kingdom"
msgstr "United Kingdom"
-#: lang.pm:234
-#, fuzzy, c-format
+#: lang.pm:239
+#, c-format
msgid "Grenada"
msgstr "Grenada"
-#: lang.pm:235
-#, fuzzy, c-format
+#: lang.pm:240
+#, c-format
msgid "Georgia"
msgstr "Georgia"
-#: lang.pm:236
-#, fuzzy, c-format
+#: lang.pm:241
+#, c-format
msgid "French Guiana"
msgstr "French Guiana"
-#: lang.pm:237
-#, fuzzy, c-format
+#: lang.pm:242
+#, c-format
msgid "Ghana"
msgstr "Ghana"
-#: lang.pm:238
-#, fuzzy, c-format
+#: lang.pm:243
+#, c-format
msgid "Gibraltar"
msgstr "Gibraltar"
-#: lang.pm:239
-#, fuzzy, c-format
+#: lang.pm:244
+#, c-format
msgid "Greenland"
msgstr "Greenland"
-#: lang.pm:240
-#, fuzzy, c-format
+#: lang.pm:245
+#, c-format
msgid "Gambia"
msgstr "Gambia"
-#: lang.pm:241
-#, fuzzy, c-format
+#: lang.pm:246
+#, c-format
msgid "Guinea"
msgstr "Guinea"
-#: lang.pm:242
-#, fuzzy, c-format
+#: lang.pm:247
+#, c-format
msgid "Guadeloupe"
msgstr "Guadeloupe"
-#: lang.pm:243
-#, fuzzy, c-format
+#: lang.pm:248
+#, c-format
msgid "Equatorial Guinea"
msgstr "Equitorial Guinea"
-#: lang.pm:245
+#: lang.pm:250
#, fuzzy, c-format
msgid "South Georgia and the South Sandwich Islands"
msgstr "Selatan Georgia dan Selatan"
-#: lang.pm:246
-#, fuzzy, c-format
+#: lang.pm:251
+#, c-format
msgid "Guatemala"
msgstr "Guatemala"
-#: lang.pm:247
-#, fuzzy, c-format
+#: lang.pm:252
+#, c-format
msgid "Guam"
msgstr "Guam"
-#: lang.pm:248
-#, fuzzy, c-format
+#: lang.pm:253
+#, c-format
msgid "Guinea-Bissau"
msgstr "Guinea-Bissau"
-#: lang.pm:249
-#, fuzzy, c-format
+#: lang.pm:254
+#, c-format
msgid "Guyana"
msgstr "Guyana"
-#: lang.pm:250
+#: lang.pm:255
#, fuzzy, c-format
msgid "China (Hong Kong)"
msgstr "Hong Kong"
-#: lang.pm:251
+#: lang.pm:256
#, fuzzy, c-format
msgid "Heard and McDonald Islands"
-msgstr "dan"
+msgstr "Kepulauan Caicos dan Turks"
-#: lang.pm:252
-#, fuzzy, c-format
+#: lang.pm:257
+#, c-format
msgid "Honduras"
msgstr "Honduras"
-#: lang.pm:253
-#, fuzzy, c-format
+#: lang.pm:258
+#, c-format
msgid "Croatia"
msgstr "Croatia"
-#: lang.pm:254
-#, fuzzy, c-format
+#: lang.pm:259
+#, c-format
msgid "Haiti"
msgstr "Haiti"
-#: lang.pm:255 network/adsl_consts.pm:144
-#, fuzzy, c-format
+#: lang.pm:260 network/adsl_consts.pm:152
+#, c-format
msgid "Hungary"
msgstr "Hungary"
-#: lang.pm:256
-#, fuzzy, c-format
+#: lang.pm:261
+#, c-format
msgid "Indonesia"
msgstr "Indonesia"
-#: lang.pm:257 standalone/drakxtv:48
-#, fuzzy, c-format
+#: lang.pm:262 standalone/drakxtv:48
+#, c-format
msgid "Ireland"
msgstr "Ireland"
-#: lang.pm:258
-#, fuzzy, c-format
+#: lang.pm:263
+#, c-format
msgid "Israel"
msgstr "Israel"
-#: lang.pm:259
-#, fuzzy, c-format
+#: lang.pm:264
+#, c-format
msgid "India"
msgstr "India"
-#: lang.pm:260
+#: lang.pm:265
#, c-format
msgid "British Indian Ocean Territory"
msgstr "Kawasan Ocean India British"
-#: lang.pm:261
+#: lang.pm:266
#, c-format
msgid "Iraq"
msgstr "Iraq"
-#: lang.pm:262
+#: lang.pm:267
#, c-format
msgid "Iran"
msgstr "Iran"
-#: lang.pm:263
-#, fuzzy, c-format
+#: lang.pm:268
+#, c-format
msgid "Iceland"
msgstr "Iceland"
-#: lang.pm:265
-#, fuzzy, c-format
+#: lang.pm:270
+#, c-format
msgid "Jamaica"
msgstr "Jamaica"
-#: lang.pm:266
-#, fuzzy, c-format
+#: lang.pm:271
+#, c-format
msgid "Jordan"
msgstr "Jordan"
-#: lang.pm:267
-#, fuzzy, c-format
+#: lang.pm:272
+#, c-format
msgid "Japan"
msgstr "Jepun"
-#: lang.pm:268
-#, fuzzy, c-format
+#: lang.pm:273
+#, c-format
msgid "Kenya"
msgstr "Kenya"
-#: lang.pm:269
-#, fuzzy, c-format
+#: lang.pm:274
+#, c-format
msgid "Kyrgyzstan"
msgstr "Kyrgyzstan"
-#: lang.pm:270
+#: lang.pm:275
#, fuzzy, c-format
msgid "Cambodia"
msgstr "Cambodia"
-#: lang.pm:271
-#, fuzzy, c-format
+#: lang.pm:276
+#, c-format
msgid "Kiribati"
msgstr "Kiribati"
-#: lang.pm:272
-#, fuzzy, c-format
+#: lang.pm:277
+#, c-format
msgid "Comoros"
msgstr "Comoros"
-#: lang.pm:273
+#: lang.pm:278
#, fuzzy, c-format
msgid "Saint Kitts and Nevis"
-msgstr "dan"
+msgstr "St. Kitts dan Nevis"
-#: lang.pm:274
+#: lang.pm:279
#, fuzzy, c-format
msgid "Korea (North)"
-msgstr "Utara"
+msgstr "Korea Utara"
-#: lang.pm:275
-#, c-format
+#: lang.pm:280
+#, fuzzy, c-format
msgid "Korea"
-msgstr ""
+msgstr "Korea Utara"
-#: lang.pm:276
-#, fuzzy, c-format
+#: lang.pm:281
+#, c-format
msgid "Kuwait"
msgstr "Kuwait"
-#: lang.pm:277
-#, fuzzy, c-format
+#: lang.pm:282
+#, c-format
msgid "Cayman Islands"
msgstr "Kepulauan Cayman"
-#: lang.pm:278
-#, fuzzy, c-format
+#: lang.pm:283
+#, c-format
msgid "Kazakhstan"
msgstr "Kazakhstan"
-#: lang.pm:279
-#, fuzzy, c-format
+#: lang.pm:284
+#, c-format
msgid "Laos"
msgstr "Laos"
-#: lang.pm:280
+#: lang.pm:285
#, c-format
msgid "Lebanon"
msgstr "Lebanon"
-#: lang.pm:281
-#, fuzzy, c-format
+#: lang.pm:286
+#, c-format
msgid "Saint Lucia"
msgstr "Saint Lucia"
-#: lang.pm:282
-#, fuzzy, c-format
+#: lang.pm:287
+#, c-format
msgid "Liechtenstein"
msgstr "Liechtenstein"
-#: lang.pm:283
+#: lang.pm:288
#, c-format
msgid "Sri Lanka"
msgstr "Sri Lanka"
-#: lang.pm:284
-#, fuzzy, c-format
+#: lang.pm:289
+#, c-format
msgid "Liberia"
msgstr "Liberia"
-#: lang.pm:285
-#, fuzzy, c-format
+#: lang.pm:290
+#, c-format
msgid "Lesotho"
msgstr "Lesotho"
-#: lang.pm:286
-#, fuzzy, c-format
+#: lang.pm:291
+#, c-format
msgid "Lithuania"
msgstr "Lithuania"
-#: lang.pm:287
+#: lang.pm:292
#, c-format
msgid "Luxembourg"
msgstr "Luxembourg"
-#: lang.pm:288
-#, fuzzy, c-format
+#: lang.pm:293
+#, c-format
msgid "Latvia"
msgstr "Latvia"
-#: lang.pm:289
-#, fuzzy, c-format
+#: lang.pm:294
+#, c-format
msgid "Libya"
msgstr "Libya"
-#: lang.pm:290
-#, fuzzy, c-format
+#: lang.pm:295
+#, c-format
msgid "Morocco"
msgstr "Morocco"
-#: lang.pm:291
-#, fuzzy, c-format
+#: lang.pm:296
+#, c-format
msgid "Monaco"
msgstr "Monaco"
-#: lang.pm:292
-#, fuzzy, c-format
+#: lang.pm:297
+#, c-format
msgid "Moldova"
msgstr "Moldova"
-#: lang.pm:293
-#, fuzzy, c-format
+#: lang.pm:298
+#, c-format
msgid "Madagascar"
msgstr "Madagascar"
-#: lang.pm:294
-#, fuzzy, c-format
+#: lang.pm:299
+#, c-format
msgid "Marshall Islands"
msgstr "Kepulauan Marshall"
-#: lang.pm:295
-#, fuzzy, c-format
+#: lang.pm:300
+#, c-format
msgid "Macedonia"
msgstr "Macedonia"
-#: lang.pm:296
-#, fuzzy, c-format
+#: lang.pm:301
+#, c-format
msgid "Mali"
msgstr "Mali"
-#: lang.pm:297
-#, fuzzy, c-format
+#: lang.pm:302
+#, c-format
msgid "Myanmar"
msgstr "Myanmar"
-#: lang.pm:298
-#, fuzzy, c-format
+#: lang.pm:303
+#, c-format
msgid "Mongolia"
msgstr "Mongolia"
-#: lang.pm:299
+#: lang.pm:304
#, c-format
msgid "Northern Mariana Islands"
msgstr "Kepulauan Mariana Utara"
-#: lang.pm:300
-#, fuzzy, c-format
+#: lang.pm:305
+#, c-format
msgid "Martinique"
msgstr "Martinique"
-#: lang.pm:301
-#, fuzzy, c-format
+#: lang.pm:306
+#, c-format
msgid "Mauritania"
msgstr "Mauritania"
-#: lang.pm:302
-#, fuzzy, c-format
+#: lang.pm:307
+#, c-format
msgid "Montserrat"
msgstr "Montserrat"
-#: lang.pm:303
-#, fuzzy, c-format
+#: lang.pm:308
+#, c-format
msgid "Malta"
msgstr "Malta"
-#: lang.pm:304
-#, fuzzy, c-format
+#: lang.pm:309
+#, c-format
msgid "Mauritius"
msgstr "Mauritius"
-#: lang.pm:305
-#, fuzzy, c-format
+#: lang.pm:310
+#, c-format
msgid "Maldives"
msgstr "Maldives"
-#: lang.pm:306
-#, fuzzy, c-format
+#: lang.pm:311
+#, c-format
msgid "Malawi"
msgstr "Malawi"
-#: lang.pm:307
-#, fuzzy, c-format
+#: lang.pm:312
+#, c-format
msgid "Mexico"
msgstr "Mexico"
-#: lang.pm:308
+#: lang.pm:313
#, c-format
msgid "Malaysia"
msgstr "Malaysia"
-#: lang.pm:309
-#, fuzzy, c-format
+#: lang.pm:314
+#, c-format
msgid "Mozambique"
msgstr "Mozambique"
-#: lang.pm:310
-#, fuzzy, c-format
+#: lang.pm:315
+#, c-format
msgid "Namibia"
msgstr "Namibia"
-#: lang.pm:311
-#, fuzzy, c-format
+#: lang.pm:316
+#, c-format
msgid "New Caledonia"
msgstr "New Caledonia"
-#: lang.pm:312
-#, fuzzy, c-format
+#: lang.pm:317
+#, c-format
msgid "Niger"
msgstr "Niger"
-#: lang.pm:313
-#, fuzzy, c-format
+#: lang.pm:318
+#, c-format
msgid "Norfolk Island"
msgstr "Kepulauan Norfolk"
-#: lang.pm:314
-#, fuzzy, c-format
+#: lang.pm:319
+#, c-format
msgid "Nigeria"
msgstr "Nigeria"
-#: lang.pm:315
-#, fuzzy, c-format
+#: lang.pm:320
+#, c-format
msgid "Nicaragua"
msgstr "Nicaragua"
-#: lang.pm:318
-#, fuzzy, c-format
+#: lang.pm:323
+#, c-format
msgid "Nepal"
msgstr "Nepal"
-#: lang.pm:319
-#, fuzzy, c-format
+#: lang.pm:324
+#, c-format
msgid "Nauru"
msgstr "Nauru"
-#: lang.pm:320
-#, fuzzy, c-format
+#: lang.pm:325
+#, c-format
msgid "Niue"
msgstr "Niue"
-#: lang.pm:321
-#, fuzzy, c-format
+#: lang.pm:326
+#, c-format
msgid "New Zealand"
msgstr "New Zealand"
-#: lang.pm:322
-#, fuzzy, c-format
+#: lang.pm:327
+#, c-format
msgid "Oman"
msgstr "Oman"
-#: lang.pm:323
-#, fuzzy, c-format
+#: lang.pm:328
+#, c-format
msgid "Panama"
msgstr "Panama"
-#: lang.pm:324
-#, fuzzy, c-format
+#: lang.pm:329
+#, c-format
msgid "Peru"
msgstr "Peru"
-#: lang.pm:325
-#, fuzzy, c-format
+#: lang.pm:330
+#, c-format
msgid "French Polynesia"
msgstr "French Polynesia"
-#: lang.pm:326
-#, fuzzy, c-format
+#: lang.pm:331
+#, c-format
msgid "Papua New Guinea"
msgstr "Papua New Guinea"
-#: lang.pm:327
-#, fuzzy, c-format
+#: lang.pm:332
+#, c-format
msgid "Philippines"
msgstr "Filipina"
-#: lang.pm:328
-#, fuzzy, c-format
+#: lang.pm:333
+#, c-format
msgid "Pakistan"
msgstr "Pakistan"
-#: lang.pm:329 network/adsl_consts.pm:177
-#, fuzzy, c-format
+#: lang.pm:334 network/adsl_consts.pm:186
+#, c-format
msgid "Poland"
msgstr "Poland"
-#: lang.pm:330
+#: lang.pm:335
#, fuzzy, c-format
msgid "Saint Pierre and Miquelon"
-msgstr "dan"
+msgstr "St. Perre and Miquelon"
-#: lang.pm:331
-#, fuzzy, c-format
+#: lang.pm:336
+#, c-format
msgid "Pitcairn"
msgstr "Pitcairn"
-#: lang.pm:332
-#, fuzzy, c-format
+#: lang.pm:337
+#, c-format
msgid "Puerto Rico"
msgstr "Puerto Rico"
-#: lang.pm:333
+#: lang.pm:338
#, c-format
msgid "Palestine"
msgstr ""
-#: lang.pm:334 network/adsl_consts.pm:187
-#, fuzzy, c-format
+#: lang.pm:339 network/adsl_consts.pm:196
+#, c-format
msgid "Portugal"
msgstr "Portugal"
-#: lang.pm:335
-#, fuzzy, c-format
+#: lang.pm:340
+#, c-format
msgid "Paraguay"
msgstr "Paraguay"
-#: lang.pm:336
-#, fuzzy, c-format
+#: lang.pm:341
+#, c-format
msgid "Palau"
msgstr "Palau"
-#: lang.pm:337
-#, fuzzy, c-format
+#: lang.pm:342
+#, c-format
msgid "Qatar"
msgstr "Qatar"
-#: lang.pm:338
+#: lang.pm:343
#, c-format
msgid "Reunion"
msgstr "Reunion"
-#: lang.pm:339
-#, fuzzy, c-format
+#: lang.pm:344
+#, c-format
msgid "Romania"
msgstr "Romania"
-#: lang.pm:340
+#: lang.pm:345
#, c-format
msgid "Russia"
-msgstr ""
+msgstr "Russia"
-#: lang.pm:341
-#, fuzzy, c-format
+#: lang.pm:346
+#, c-format
msgid "Rwanda"
msgstr "Rwanda"
-#: lang.pm:342
-#, fuzzy, c-format
+#: lang.pm:347
+#, c-format
msgid "Saudi Arabia"
msgstr "Arab Saudi"
-#: lang.pm:343
-#, fuzzy, c-format
+#: lang.pm:348
+#, c-format
msgid "Solomon Islands"
msgstr "Kepulauan Solomon"
-#: lang.pm:344
-#, fuzzy, c-format
+#: lang.pm:349
+#, c-format
msgid "Seychelles"
msgstr "Seychelles"
-#: lang.pm:345
-#, fuzzy, c-format
+#: lang.pm:350
+#, c-format
msgid "Sudan"
msgstr "Sudan"
-#: lang.pm:347
-#, fuzzy, c-format
+#: lang.pm:352
+#, c-format
msgid "Singapore"
msgstr "Singapura"
-#: lang.pm:348
+#: lang.pm:353
#, c-format
msgid "Saint Helena"
msgstr "Santa Helena"
-#: lang.pm:349
-#, fuzzy, c-format
+#: lang.pm:354
+#, c-format
msgid "Slovenia"
msgstr "Slovenia"
-#: lang.pm:350
+#: lang.pm:355
#, fuzzy, c-format
msgid "Svalbard and Jan Mayen Islands"
msgstr "Svalbard and Jan Mayen Islands"
-#: lang.pm:351
+#: lang.pm:356
#, c-format
msgid "Slovakia"
msgstr "Slovakia"
-#: lang.pm:352
-#, fuzzy, c-format
+#: lang.pm:357
+#, c-format
msgid "Sierra Leone"
msgstr "Sierra Leone"
-#: lang.pm:353
-#, fuzzy, c-format
+#: lang.pm:358
+#, c-format
msgid "San Marino"
msgstr "San Marino"
-#: lang.pm:354
-#, fuzzy, c-format
+#: lang.pm:359
+#, c-format
msgid "Senegal"
msgstr "Senegal"
-#: lang.pm:355
-#, fuzzy, c-format
+#: lang.pm:360
+#, c-format
msgid "Somalia"
msgstr "Somalia"
-#: lang.pm:356
-#, fuzzy, c-format
+#: lang.pm:361
+#, c-format
msgid "Suriname"
msgstr "Surinam"
-#: lang.pm:357
-#, fuzzy, c-format
+#: lang.pm:362
+#, c-format
msgid "Sao Tome and Principe"
msgstr "Sao Tome and Principe"
-#: lang.pm:358
-#, fuzzy, c-format
+#: lang.pm:363
+#, c-format
msgid "El Salvador"
msgstr "El Salvador"
-#: lang.pm:359
-#, fuzzy, c-format
+#: lang.pm:364
+#, c-format
msgid "Syria"
msgstr "Syria"
-#: lang.pm:360
-#, fuzzy, c-format
+#: lang.pm:365
+#, c-format
msgid "Swaziland"
msgstr "Swaziland"
-#: lang.pm:361
-#, fuzzy, c-format
+#: lang.pm:366
+#, c-format
msgid "Turks and Caicos Islands"
msgstr "Kepulauan Caicos dan Turks"
-#: lang.pm:362
-#, fuzzy, c-format
+#: lang.pm:367
+#, c-format
msgid "Chad"
msgstr "Chad"
-#: lang.pm:363
+#: lang.pm:368
#, fuzzy, c-format
msgid "French Southern Territories"
-msgstr "Perancis"
+msgstr "_Flip imej pada hemisfera selatan"
-#: lang.pm:364
-#, fuzzy, c-format
+#: lang.pm:369
+#, c-format
msgid "Togo"
msgstr "Togo"
-#: lang.pm:365
-#, fuzzy, c-format
+#: lang.pm:370
+#, c-format
msgid "Thailand"
msgstr "Thailand"
-#: lang.pm:366
-#, fuzzy, c-format
+#: lang.pm:371
+#, c-format
msgid "Tajikistan"
msgstr "Tajikistan"
-#: lang.pm:367
-#, fuzzy, c-format
+#: lang.pm:372
+#, c-format
msgid "Tokelau"
msgstr "Tokelau"
-#: lang.pm:368
-#, fuzzy, c-format
+#: lang.pm:373
+#, c-format
msgid "East Timor"
msgstr "Timor Larose"
-#: lang.pm:369
-#, fuzzy, c-format
+#: lang.pm:374
+#, c-format
msgid "Turkmenistan"
msgstr "Turkmenistan"
-#: lang.pm:370
-#, fuzzy, c-format
+#: lang.pm:375
+#, c-format
msgid "Tunisia"
msgstr "Tunisia"
-#: lang.pm:371
-#, fuzzy, c-format
+#: lang.pm:376
+#, c-format
msgid "Tonga"
msgstr "Tonga"
-#: lang.pm:372
-#, fuzzy, c-format
+#: lang.pm:377
+#, c-format
msgid "Turkey"
msgstr "Turki"
-#: lang.pm:373
-#, fuzzy, c-format
+#: lang.pm:378
+#, c-format
msgid "Trinidad and Tobago"
msgstr "Trinidad dan Tobago"
-#: lang.pm:374
-#, fuzzy, c-format
+#: lang.pm:379
+#, c-format
msgid "Tuvalu"
msgstr "Tuvalu"
-#: lang.pm:375
-#, fuzzy, c-format
+#: lang.pm:380
+#, c-format
msgid "Taiwan"
msgstr "Taiwan"
-#: lang.pm:376
-#, fuzzy, c-format
+#: lang.pm:381
+#, c-format
msgid "Tanzania"
msgstr "Tanzania"
-#: lang.pm:377
-#, fuzzy, c-format
+#: lang.pm:382
+#, c-format
msgid "Ukraine"
msgstr "Ukraine"
-#: lang.pm:378
-#, fuzzy, c-format
+#: lang.pm:383
+#, c-format
msgid "Uganda"
msgstr "Uganda"
-#: lang.pm:379
+#: lang.pm:384
#, c-format
msgid "United States Minor Outlying Islands"
msgstr "Amerika Syarikat, kepulauan Luar Minor"
-#: lang.pm:381
-#, fuzzy, c-format
+#: lang.pm:386
+#, c-format
msgid "Uruguay"
msgstr "Uruguay"
-#: lang.pm:382
-#, fuzzy, c-format
+#: lang.pm:387
+#, c-format
msgid "Uzbekistan"
msgstr "Uzbekistan"
-#: lang.pm:383
+#: lang.pm:388
#, c-format
msgid "Vatican"
-msgstr ""
+msgstr "Vatican"
-#: lang.pm:384
+#: lang.pm:389
#, fuzzy, c-format
msgid "Saint Vincent and the Grenadines"
msgstr "dan"
-#: lang.pm:385
-#, fuzzy, c-format
+#: lang.pm:390
+#, c-format
msgid "Venezuela"
msgstr "Venezuela"
-#: lang.pm:386
+#: lang.pm:391
#, c-format
msgid "Virgin Islands (British)"
msgstr "Kepulauan Virgin (Inggeris)"
-#: lang.pm:387
+#: lang.pm:392
#, c-format
msgid "Virgin Islands (U.S.)"
msgstr "Virgin Islands (Amerika)"
-#: lang.pm:388
-#, fuzzy, c-format
+#: lang.pm:393
+#, c-format
msgid "Vietnam"
msgstr "Vietnam"
-#: lang.pm:389
-#, fuzzy, c-format
+#: lang.pm:394
+#, c-format
msgid "Vanuatu"
msgstr "Vanuatu"
-#: lang.pm:390
+#: lang.pm:395
#, fuzzy, c-format
msgid "Wallis and Futuna"
-msgstr "dan"
+msgstr "Kepulauan Futuna dan Wallis"
-#: lang.pm:391
-#, fuzzy, c-format
+#: lang.pm:396
+#, c-format
msgid "Samoa"
msgstr "Samoa"
-#: lang.pm:392
-#, fuzzy, c-format
+#: lang.pm:397
+#, c-format
msgid "Yemen"
msgstr "Yaman"
-#: lang.pm:393
+#: lang.pm:398
#, c-format
msgid "Mayotte"
msgstr "Mayotte"
-#: lang.pm:394
+#: lang.pm:399
#, c-format
msgid "Serbia & Montenegro"
-msgstr ""
+msgstr "Serbia & Montenegro"
-#: lang.pm:395 standalone/drakxtv:50
-#, fuzzy, c-format
+#: lang.pm:400 standalone/drakxtv:50
+#, c-format
msgid "South Africa"
msgstr "Afrika Selatan"
-#: lang.pm:396
-#, fuzzy, c-format
+#: lang.pm:401
+#, c-format
msgid "Zambia"
msgstr "Zambia"
-#: lang.pm:397
-#, fuzzy, c-format
+#: lang.pm:402
+#, c-format
msgid "Zimbabwe"
msgstr "Zimbabwe"
-#: lang.pm:966
+#: lang.pm:983
#, fuzzy, c-format
msgid "Welcome to %s"
-msgstr "Selamat datang ke %s"
+msgstr "_Lompat ke"
#: loopback.pm:32
#, c-format
@@ -7643,20 +7688,20 @@ msgstr ""
msgid "Remove the logical volumes first\n"
msgstr "Buang"
-#: modules/interactive.pm:21 standalone/drakconnect:962
+#: modules/interactive.pm:21 standalone/drakconnect:959
#, c-format
msgid "Parameters"
msgstr "Parameter"
#: modules/interactive.pm:21 standalone/draksec:44
-#, c-format
+#, fuzzy, c-format
msgid "NONE"
-msgstr ""
+msgstr "tiada"
#: modules/interactive.pm:22
#, fuzzy, c-format
msgid "Module configuration"
-msgstr "Bunyi"
+msgstr "Status konfigurasi bagi %s %s\n"
#: modules/interactive.pm:22
#, c-format
@@ -7664,24 +7709,24 @@ msgid "You can configure each parameter of the module here."
msgstr ""
#: modules/interactive.pm:63
-#, c-format
+#, fuzzy, c-format
msgid "Found %s %s interfaces"
-msgstr ""
+msgstr "Tidak Dijumpai"
#: modules/interactive.pm:64
-#, c-format
+#, fuzzy, c-format
msgid "Do you have another one?"
-msgstr ""
+msgstr "Masukkan fail lain ke file semasa"
#: modules/interactive.pm:65
-#, c-format
+#, fuzzy, c-format
msgid "Do you have any %s interfaces?"
-msgstr ""
+msgstr "Anda pasti mahu keluar?"
#: modules/interactive.pm:71
-#, c-format
+#, fuzzy, c-format
msgid "See hardware info"
-msgstr ""
+msgstr " - Maklumat Pengeluar sijil:\n"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
@@ -7691,9 +7736,9 @@ msgid "Installing driver for %s card %s"
msgstr ""
#: modules/interactive.pm:87
-#, c-format
+#, fuzzy, c-format
msgid "(module %s)"
-msgstr ""
+msgstr "Modul"
#: modules/interactive.pm:98
#, c-format
@@ -7713,7 +7758,7 @@ msgstr "dalam"
#: modules/interactive.pm:106
#, fuzzy, c-format
msgid "Module options:"
-msgstr "Modul:"
+msgstr "Opsyen mengufuk"
#. -PO: the %s is the driver type (scsi, network, sound,...)
#: modules/interactive.pm:118
@@ -7739,9 +7784,9 @@ msgid "Autoprobe"
msgstr ""
#: modules/interactive.pm:131
-#, c-format
+#, fuzzy, c-format
msgid "Specify options"
-msgstr ""
+msgstr "Opsyen mengufuk"
#: modules/interactive.pm:143
#, fuzzy, c-format
@@ -7751,9 +7796,9 @@ msgid ""
msgstr "Memuatkan?"
#: modules/parameters.pm:49
-#, c-format
+#, fuzzy, c-format
msgid "a number"
-msgstr ""
+msgstr "$ Nombor"
#: modules/parameters.pm:51
#, c-format
@@ -7761,9 +7806,9 @@ msgid "%d comma separated numbers"
msgstr ""
#: modules/parameters.pm:51
-#, c-format
+#, fuzzy, c-format
msgid "%d comma separated strings"
-msgstr ""
+msgstr "Rentetan dibandingkan adalah %s dan %s."
#: modules/parameters.pm:53
#, c-format
@@ -7771,24 +7816,24 @@ msgid "comma separated numbers"
msgstr ""
#: modules/parameters.pm:53
-#, c-format
+#, fuzzy, c-format
msgid "comma separated strings"
-msgstr ""
+msgstr "Rentetan dibandingkan adalah %s dan %s."
#: mouse.pm:25
#, fuzzy, c-format
msgid "Sun - Mouse"
-msgstr "Sun"
+msgstr "Sokongan tetikus"
#: mouse.pm:31 security/level.pm:12
-#, c-format
+#, fuzzy, c-format
msgid "Standard"
-msgstr ""
+msgstr "Standard"
#: mouse.pm:32
#, c-format
msgid "Logitech MouseMan+"
-msgstr ""
+msgstr "Logitech MouseMan+"
#: mouse.pm:33
#, fuzzy, c-format
@@ -7798,17 +7843,16 @@ msgstr "Generik"
#: mouse.pm:34
#, c-format
msgid "GlidePoint"
-msgstr ""
+msgstr "GlidePoint"
-#: mouse.pm:36 network/modem.pm:23 network/modem.pm:37 network/modem.pm:42
-#: network/modem.pm:73 network/netconnect.pm:481 network/netconnect.pm:482
-#: network/netconnect.pm:483 network/netconnect.pm:503
-#: network/netconnect.pm:508 network/netconnect.pm:520
-#: network/netconnect.pm:525 network/netconnect.pm:541
-#: network/netconnect.pm:543
+#: 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:574 network/netconnect.pm:579
+#: network/netconnect.pm:591 network/netconnect.pm:596
+#: network/netconnect.pm:612 network/netconnect.pm:614
#, fuzzy, c-format
msgid "Automatic"
-msgstr "Antarctika"
+msgstr "Auto sempurna gelaran"
#: mouse.pm:39 mouse.pm:73
#, c-format
@@ -7818,27 +7862,27 @@ msgstr ""
#: mouse.pm:40 mouse.pm:68
#, c-format
msgid "Genius NetMouse"
-msgstr ""
+msgstr "Genius NetMouse"
#: mouse.pm:41
#, c-format
msgid "Genius NetScroll"
-msgstr ""
+msgstr "Genius NetScroll"
#: mouse.pm:42 mouse.pm:52
#, c-format
msgid "Microsoft Explorer"
-msgstr ""
+msgstr "Microsoft Explorer"
#: mouse.pm:47 mouse.pm:79
-#, c-format
+#, fuzzy, c-format
msgid "1 button"
-msgstr ""
+msgstr "butang-tekan"
#: mouse.pm:48 mouse.pm:57
#, fuzzy, c-format
msgid "Generic 2 Button Mouse"
-msgstr "Generik"
+msgstr "Keadaan tak konsisten bagi butang"
#: mouse.pm:50 mouse.pm:59
#, fuzzy, c-format
@@ -7846,29 +7890,29 @@ msgid "Generic 3 Button Mouse with Wheel emulation"
msgstr "Generik"
#: mouse.pm:51
-#, c-format
+#, fuzzy, c-format
msgid "Wheel"
-msgstr ""
+msgstr "Roda"
#: mouse.pm:55
#, fuzzy, c-format
msgid "serial"
-msgstr "bersiri"
+msgstr " - Nombbor siri sijil: %s\n"
#: mouse.pm:58
#, fuzzy, c-format
msgid "Generic 3 Button Mouse"
-msgstr "Generik"
+msgstr "Keadaan tak konsisten bagi butang"
#: mouse.pm:60
#, c-format
msgid "Microsoft IntelliMouse"
-msgstr ""
+msgstr "Microsoft IntelliMouse"
#: mouse.pm:61
#, c-format
msgid "Logitech MouseMan"
-msgstr ""
+msgstr "Logitech MouseMan"
#: mouse.pm:62
#, c-format
@@ -7878,7 +7922,7 @@ msgstr ""
#: mouse.pm:63
#, fuzzy, c-format
msgid "Mouse Systems"
-msgstr "Tetikus"
+msgstr "Sokongan tetikus"
#: mouse.pm:65
#, c-format
@@ -7926,14 +7970,14 @@ msgid "busmouse"
msgstr ""
#: mouse.pm:80
-#, c-format
+#, fuzzy, c-format
msgid "2 buttons"
-msgstr ""
+msgstr "Butang Mesej"
#: mouse.pm:81
-#, c-format
+#, fuzzy, c-format
msgid "3 buttons"
-msgstr ""
+msgstr "Butang Mesej"
#: mouse.pm:82
#, c-format
@@ -7943,14 +7987,14 @@ msgstr ""
#: mouse.pm:86
#, fuzzy, c-format
msgid "Universal"
-msgstr "Install"
+msgstr "Masa Universal"
#: mouse.pm:88
#, c-format
msgid "Any PS/2 & USB mice"
msgstr ""
-#: mouse.pm:92
+#: mouse.pm:92 standalone/drakvpn:1138
#, fuzzy, c-format
msgid "none"
msgstr "tiada"
@@ -7958,42 +8002,42 @@ msgstr "tiada"
#: mouse.pm:94
#, fuzzy, c-format
msgid "No mouse"
-msgstr "Tidak"
+msgstr "Sokongan tetikus"
#: mouse.pm:515
-#, c-format
+#, fuzzy, c-format
msgid "Please test the mouse"
-msgstr ""
+msgstr "Mencari, sila tunggu..."
#: mouse.pm:517
#, fuzzy, c-format
msgid "To activate the mouse,"
-msgstr "Kepada"
+msgstr "Keybinding untuk mengaktifkan bar menu"
#: mouse.pm:518
-#, c-format
+#, fuzzy, c-format
msgid "MOVE YOUR WHEEL!"
-msgstr ""
+msgstr "tak dapat pindahkan %s ke %s"
#: network/adsl.pm:19
-#, c-format
+#, fuzzy, c-format
msgid "use pppoe"
-msgstr ""
+msgstr "Guna markup"
#: network/adsl.pm:20
-#, c-format
+#, fuzzy, c-format
msgid "use pptp"
-msgstr ""
+msgstr "Guna markup"
#: network/adsl.pm:21
-#, c-format
+#, fuzzy, c-format
msgid "use dhcp"
-msgstr ""
+msgstr "Guna markup"
#: network/adsl.pm:22
-#, c-format
+#, fuzzy, c-format
msgid "Alcatel speedtouch usb"
-msgstr ""
+msgstr "Kesan kekunci USB sekali lagi"
#: network/adsl.pm:22 network/adsl.pm:23 network/adsl.pm:24
#, fuzzy, c-format
@@ -8010,12 +8054,12 @@ msgstr ""
msgid "Sagem (using dhcp) usb"
msgstr ""
-#: network/adsl.pm:35 network/netconnect.pm:679
+#: network/adsl.pm:35 network/netconnect.pm:754
#, fuzzy, c-format
msgid "Connect to the Internet"
-msgstr "Sambung"
+msgstr "Tidak dapat menyambung ke %s:%u. %s."
-#: network/adsl.pm:36 network/netconnect.pm:680
+#: network/adsl.pm:36 network/netconnect.pm:755
#, c-format
msgid ""
"The most common way to connect with adsl is pppoe.\n"
@@ -8023,35 +8067,35 @@ msgid ""
"If you don't know, choose 'use pppoe'"
msgstr ""
-#: network/adsl.pm:41 network/netconnect.pm:684
+#: network/adsl.pm:41 network/netconnect.pm:759
#, fuzzy, c-format
msgid "ADSL connection type :"
-msgstr "Jenis Perhubungan:"
+msgstr "Jenis pek tab"
#: network/drakfirewall.pm:12
#, fuzzy, c-format
msgid "Web Server"
-msgstr "Pelayan Web"
+msgstr "(%ld)PELAYAN >>> %s"
#: network/drakfirewall.pm:17
#, fuzzy, c-format
msgid "Domain Name Server"
-msgstr "Domain Nama"
+msgstr "%s: ralat pelayan nama tidak dapat dipulihkan berlaku."
#: network/drakfirewall.pm:22
#, fuzzy, c-format
msgid "SSH server"
-msgstr "SSH"
+msgstr "(%ld)PELAYAN >>> %s"
#: network/drakfirewall.pm:27
#, fuzzy, c-format
msgid "FTP server"
-msgstr "Tambah"
+msgstr "(%ld)PELAYAN >>> %s"
#: network/drakfirewall.pm:32
#, fuzzy, c-format
msgid "Mail Server"
-msgstr "Pelayan Mel"
+msgstr "(%ld)PELAYAN >>> %s"
#: network/drakfirewall.pm:37
#, fuzzy, c-format
@@ -8061,34 +8105,34 @@ msgstr "dan"
#: network/drakfirewall.pm:42
#, fuzzy, c-format
msgid "Telnet server"
-msgstr "Edit"
+msgstr "(%ld)PELAYAN >>> %s"
#: network/drakfirewall.pm:48
#, fuzzy, c-format
msgid "Samba server"
-msgstr "Pengguna Samba"
+msgstr "(%ld)PELAYAN >>> %s"
#: network/drakfirewall.pm:54
#, fuzzy, c-format
msgid "CUPS server"
-msgstr "Pelayan"
+msgstr "(%ld)PELAYAN >>> %s"
#: network/drakfirewall.pm:60
-#, c-format
+#, fuzzy, c-format
msgid "Echo request (ping)"
-msgstr ""
+msgstr "Permintaan ditolak atau gagal."
#: network/drakfirewall.pm:125
#, fuzzy, c-format
msgid "No network card"
-msgstr "Tidak"
+msgstr "_Tambah rangkaian baru"
#: network/drakfirewall.pm:146
#, fuzzy, c-format
msgid ""
"drakfirewall configurator\n"
"\n"
-"This configures a personal firewall for this Mandrake Linux machine.\n"
+"This configures a personal firewall for this Mandrakelinux machine.\n"
"For a powerful and dedicated firewall solution, please look to the\n"
"specialized MandrakeSecurity Firewall distribution."
msgstr "dan."
@@ -8111,7 +8155,7 @@ msgstr "Internet?"
#, fuzzy, c-format
msgid ""
"You can enter miscellaneous ports. \n"
-"Valid examples are: 139/tcp 139/udp.\n"
+"Valid examples are: 139/tcp 139/udp 600:610/tcp 600:610/udp.\n"
"Have a look at /etc/services for information."
msgstr "port."
@@ -8128,320 +8172,277 @@ msgstr "dan."
#: network/drakfirewall.pm:186
#, fuzzy, c-format
msgid "Everything (no firewall)"
-msgstr "Semuanya tidak"
+msgstr "Tiada peranti input"
#: network/drakfirewall.pm:188
#, fuzzy, c-format
msgid "Other ports"
-msgstr "Liang Lain"
+msgstr "Cari lain-lain tanda kurungan"
-#: network/isdn.pm:127 network/isdn.pm:145 network/isdn.pm:157
-#: network/isdn.pm:163 network/isdn.pm:173 network/isdn.pm:183
-#: network/netconnect.pm:332
+#: network/isdn.pm:113 network/netconnect.pm:424
#, c-format
-msgid "ISDN Configuration"
+msgid "Unlisted - edit manually"
msgstr ""
-#: network/isdn.pm:127
+#: network/isdn.pm:156 network/netconnect.pm:376
#, c-format
-msgid ""
-"Select your provider.\n"
-"If it isn't listed, choose Unlisted."
-msgstr ""
-
-#: network/isdn.pm:140 standalone/drakconnect:503
-#, c-format
-msgid "European protocol (EDSS1)"
-msgstr ""
-
-#: network/isdn.pm:140
-#, c-format
-msgid "European protocol"
-msgstr ""
-
-#: network/isdn.pm:142 standalone/drakconnect:504
-#, fuzzy, c-format
-msgid ""
-"Protocol for the rest of the world\n"
-"No D-Channel (leased lines)"
-msgstr "Protokol Saluran"
+msgid "ISA / PCMCIA"
+msgstr "ISA / PCMCIA"
-#: network/isdn.pm:142
+#: network/isdn.pm:156 network/netconnect.pm:376
#, fuzzy, c-format
-msgid "Protocol for the rest of the world"
-msgstr "Protokol"
-
-#: network/isdn.pm:146
-#, c-format
-msgid "Which protocol do you want to use?"
-msgstr ""
-
-#: network/isdn.pm:157
-#, c-format
-msgid "Found \"%s\" interface do you want to use it ?"
-msgstr ""
-
-#: network/isdn.pm:164
-#, c-format
-msgid "What kind of card do you have?"
-msgstr ""
-
-#: network/isdn.pm:165
-#, c-format
-msgid "ISA / PCMCIA"
-msgstr ""
+msgid "I don't know"
+msgstr "Jangan mula semula"
-#: network/isdn.pm:165
+#: network/isdn.pm:157 network/netconnect.pm:376
#, c-format
msgid "PCI"
-msgstr ""
+msgstr "PCI"
-#: network/isdn.pm:165
+#: network/isdn.pm:158 network/netconnect.pm:376
#, c-format
msgid "USB"
-msgstr ""
-
-#: network/isdn.pm:165
-#, c-format
-msgid "I don't know"
-msgstr ""
+msgstr "USB"
-#: network/isdn.pm:174
+#: network/modem.pm:42 network/modem.pm:43 network/modem.pm:44
+#: network/netconnect.pm:579 network/netconnect.pm:596
+#: network/netconnect.pm:612
#, fuzzy, c-format
-msgid ""
-"\n"
-"If you have an ISA card, the values on the next screen should be right.\n"
-"\n"
-"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
-"card.\n"
-msgstr "on dan"
+msgid "Manual"
+msgstr "Myanmar"
-#: network/isdn.pm:178
+#: network/netconnect.pm:88 network/netconnect.pm:453
+#: network/netconnect.pm:463 network/netconnect.pm:822
+#: network/netconnect.pm:827
#, fuzzy, c-format
-msgid "Continue"
-msgstr "Teruskan"
+msgid "Manual choice"
+msgstr "Myanmar"
-#: network/isdn.pm:178
+#: network/netconnect.pm:88
#, fuzzy, c-format
-msgid "Abort"
-msgstr "Abai"
-
-#: network/isdn.pm:184
-#, c-format
-msgid "Which of the following is your ISDN card?"
-msgstr ""
+msgid "Internal ISDN card"
+msgstr "Padding tinggi dalaman anak"
-#: network/netconnect.pm:95
+#: network/netconnect.pm:97
#, c-format
msgid "Ad-hoc"
msgstr ""
-#: network/netconnect.pm:96
+#: network/netconnect.pm:98
#, fuzzy, c-format
msgid "Managed"
msgstr "Bahasa"
-#: network/netconnect.pm:97
+#: network/netconnect.pm:99
#, fuzzy, c-format
msgid "Master"
msgstr "Mayotte"
-#: network/netconnect.pm:98
+#: network/netconnect.pm:100
#, c-format
msgid "Repeater"
msgstr ""
-#: network/netconnect.pm:99
+#: network/netconnect.pm:101
#, fuzzy, c-format
msgid "Secondary"
-msgstr "Bunyi"
+msgstr "Sekunder"
-#: network/netconnect.pm:100
-#, fuzzy, c-format
+#: network/netconnect.pm:102
+#, c-format
msgid "Auto"
-msgstr "Perihal"
+msgstr "Auto"
-#: network/netconnect.pm:103 printer/printerdrake.pm:1118
-#, c-format
+#: network/netconnect.pm:105 printer/printerdrake.pm:1133
+#: standalone/drakups:64
+#, fuzzy, c-format
msgid "Manual configuration"
-msgstr ""
+msgstr "Status konfigurasi bagi %s %s\n"
-#: network/netconnect.pm:104
+#: network/netconnect.pm:106
#, c-format
msgid "Automatic IP (BOOTP/DHCP)"
msgstr ""
-#: network/netconnect.pm:106
+#: network/netconnect.pm:108
#, c-format
msgid "Automatic IP (BOOTP/DHCP/Zeroconf)"
msgstr ""
-#: network/netconnect.pm:156
+#: network/netconnect.pm:111
+#, fuzzy, c-format
+msgid "Protocol for the rest of the world"
+msgstr "Protokol"
+
+#: network/netconnect.pm:113 standalone/drakconnect:528
#, c-format
-msgid "Alcatel speedtouch USB modem"
+msgid "European protocol (EDSS1)"
msgstr ""
-#: network/netconnect.pm:157
+#: network/netconnect.pm:114 standalone/drakconnect:529
#, fuzzy, c-format
-msgid "Sagem USB modem"
-msgstr "Sistem"
+msgid ""
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
+msgstr "Protokol Saluran"
-#: network/netconnect.pm:158
+#: network/netconnect.pm:146
#, c-format
-msgid "Bewan USB modem"
+msgid "Alcatel speedtouch USB modem"
msgstr ""
-#: network/netconnect.pm:159
+#: network/netconnect.pm:147
+#, fuzzy, c-format
+msgid "Sagem USB modem"
+msgstr "Kesan kekunci USB sekali lagi"
+
+#: network/netconnect.pm:148
#, c-format
-msgid "Bewan PCI modem"
+msgid "Bewan modem"
msgstr ""
-#: network/netconnect.pm:160
+#: network/netconnect.pm:149
#, c-format
msgid "ECI Hi-Focus modem"
msgstr ""
-#: network/netconnect.pm:164
+#: network/netconnect.pm:153
#, c-format
msgid "Dynamic Host Configuration Protocol (DHCP)"
msgstr ""
-#: network/netconnect.pm:165
+#: network/netconnect.pm:154
#, fuzzy, c-format
msgid "Manual TCP/IP configuration"
msgstr "Bunyi"
-#: network/netconnect.pm:166
+#: network/netconnect.pm:155
#, c-format
msgid "Point to Point Tunneling Protocol (PPTP)"
msgstr ""
-#: network/netconnect.pm:167
+#: network/netconnect.pm:156
#, c-format
msgid "PPP over Ethernet (PPPoE)"
msgstr ""
-#: network/netconnect.pm:168
+#: network/netconnect.pm:157
#, c-format
msgid "PPP over ATM (PPPoA)"
msgstr ""
-#: network/netconnect.pm:172
+#: network/netconnect.pm:161
#, c-format
msgid "Bridged Ethernet LLC"
msgstr ""
-#: network/netconnect.pm:173
+#: network/netconnect.pm:162
#, c-format
msgid "Bridged Ethernet VC"
msgstr ""
-#: network/netconnect.pm:174
-#, c-format
+#: network/netconnect.pm:163
+#, fuzzy, c-format
msgid "Routed IP LLC"
-msgstr ""
+msgstr "Alamat IP DCC:"
-#: network/netconnect.pm:175
-#, c-format
+#: network/netconnect.pm:164
+#, fuzzy, c-format
msgid "Routed IP VC"
-msgstr ""
+msgstr "Alamat IP DCC:"
-#: network/netconnect.pm:176
+#: network/netconnect.pm:165
#, c-format
msgid "PPPOA LLC"
-msgstr ""
+msgstr "PPPOA LLC"
-#: network/netconnect.pm:177
+#: network/netconnect.pm:166
#, c-format
msgid "PPPOA VC"
-msgstr ""
+msgstr "PPPOA VC"
-#: network/netconnect.pm:181 standalone/drakconnect:443
-#: standalone/drakconnect:917
-#, c-format
+#: network/netconnect.pm:170 standalone/drakconnect:466
+#, fuzzy, c-format
msgid "Script-based"
-msgstr ""
+msgstr "-e --ed Keluarkan skrip ed."
-#: network/netconnect.pm:182 standalone/drakconnect:443
-#: standalone/drakconnect:917
+#: network/netconnect.pm:171 standalone/drakconnect:466
#, c-format
msgid "PAP"
-msgstr ""
+msgstr "PAP"
-#: network/netconnect.pm:183 standalone/drakconnect:443
-#: standalone/drakconnect:917
+#: network/netconnect.pm:172 standalone/drakconnect:466
#, c-format
msgid "Terminal-based"
msgstr ""
-#: network/netconnect.pm:184 standalone/drakconnect:443
-#: standalone/drakconnect:917
+#: network/netconnect.pm:173 standalone/drakconnect:466
#, c-format
msgid "CHAP"
-msgstr ""
+msgstr "CHAP"
-#: network/netconnect.pm:185
+#: network/netconnect.pm:174 standalone/drakconnect:466
#, c-format
msgid "PAP/CHAP"
-msgstr ""
+msgstr "PAP/CHAP"
-#: network/netconnect.pm:199 standalone/drakconnect:54
+#: network/netconnect.pm:219 standalone/drakconnect:55
#, fuzzy, c-format
msgid "Network & Internet Configuration"
-msgstr "Konfigurasi Rangkaian"
+msgstr "_Tambah rangkaian baru"
-#: network/netconnect.pm:205
+#: network/netconnect.pm:225
#, fuzzy, c-format
msgid "(detected on port %s)"
-msgstr "on"
+msgstr "Ralat pada baris %d: %s"
#. -PO: here, "(detected)" string will be appended to eg "ADSL connection"
-#: network/netconnect.pm:207
+#: network/netconnect.pm:227
#, fuzzy, c-format
msgid "(detected %s)"
msgstr "on"
-#: network/netconnect.pm:207
+#: network/netconnect.pm:227
#, fuzzy, c-format
msgid "(detected)"
msgstr "Tidak!"
-#: network/netconnect.pm:209
+#: network/netconnect.pm:229
#, fuzzy, c-format
msgid "Modem connection"
-msgstr "Internet"
+msgstr "Sambungan daripada %s:%u"
-#: network/netconnect.pm:210
-#, c-format
+#: network/netconnect.pm:230
+#, fuzzy, c-format
msgid "ISDN connection"
-msgstr ""
+msgstr "Sambungan daripada %s:%u"
-#: network/netconnect.pm:211
-#, c-format
+#: network/netconnect.pm:231
+#, fuzzy, c-format
msgid "ADSL connection"
-msgstr ""
+msgstr "Sambungan daripada %s:%u"
-#: network/netconnect.pm:212
-#, c-format
+#: network/netconnect.pm:232
+#, fuzzy, c-format
msgid "Cable connection"
-msgstr ""
+msgstr "Sambungan daripada %s:%u"
-#: network/netconnect.pm:213
-#, c-format
+#: network/netconnect.pm:233
+#, fuzzy, c-format
msgid "LAN connection"
-msgstr ""
+msgstr "Sambungan daripada %s:%u"
-#: network/netconnect.pm:214 network/netconnect.pm:228
+#: network/netconnect.pm:234 network/netconnect.pm:248
#, fuzzy, c-format
msgid "Wireless connection"
-msgstr "Internet"
+msgstr "Sambungan daripada %s:%u"
-#: network/netconnect.pm:224
+#: network/netconnect.pm:244
#, c-format
msgid "Choose the connection you want to configure"
msgstr ""
-#: network/netconnect.pm:241
+#: network/netconnect.pm:261
#, c-format
msgid ""
"We are now going to configure the %s connection.\n"
@@ -8450,276 +8451,304 @@ msgid ""
"Press \"%s\" to continue."
msgstr ""
-#: network/netconnect.pm:249 network/netconnect.pm:710
-#, c-format
+#: network/netconnect.pm:269 network/netconnect.pm:781
+#, fuzzy, c-format
msgid "Connection Configuration"
-msgstr ""
+msgstr "Status konfigurasi bagi %s %s\n"
-#: network/netconnect.pm:250 network/netconnect.pm:711
+#: network/netconnect.pm:270 network/netconnect.pm:782
#, c-format
msgid "Please fill or check the field below"
msgstr ""
-#: network/netconnect.pm:256 standalone/drakconnect:494
-#: standalone/drakconnect:899
+#: network/netconnect.pm:277 standalone/drakconnect:519
#, c-format
msgid "Card IRQ"
msgstr ""
-#: network/netconnect.pm:257 standalone/drakconnect:495
-#: standalone/drakconnect:900
+#: network/netconnect.pm:278 standalone/drakconnect:520
#, fuzzy, c-format
msgid "Card mem (DMA)"
msgstr "DMA"
-#: network/netconnect.pm:258 standalone/drakconnect:496
-#: standalone/drakconnect:901
+#: network/netconnect.pm:279 standalone/drakconnect:521
#, c-format
msgid "Card IO"
msgstr ""
-#: network/netconnect.pm:259 standalone/drakconnect:497
-#: standalone/drakconnect:902
+#: network/netconnect.pm:280 standalone/drakconnect:522
#, c-format
msgid "Card IO_0"
msgstr ""
-#: network/netconnect.pm:260 standalone/drakconnect:903
+#: network/netconnect.pm:281
#, c-format
msgid "Card IO_1"
msgstr ""
-#: network/netconnect.pm:261 standalone/drakconnect:904
+#: network/netconnect.pm:282
#, c-format
msgid "Your personal phone number"
msgstr ""
-#: network/netconnect.pm:262 network/netconnect.pm:714
-#: standalone/drakconnect:905
+#: network/netconnect.pm:283 network/netconnect.pm:785
#, c-format
msgid "Provider name (ex provider.net)"
msgstr ""
-#: network/netconnect.pm:263 standalone/drakconnect:440
-#: standalone/drakconnect:906
-#, c-format
+#: network/netconnect.pm:284 standalone/drakconnect:463
+#, fuzzy, c-format
msgid "Provider phone number"
-msgstr ""
+msgstr "nombor versi tidak sah `%s'"
-#: network/netconnect.pm:264
+#: network/netconnect.pm:285
#, fuzzy, c-format
msgid "Provider DNS 1 (optional)"
-msgstr "Pelayan"
+msgstr "%s: ralat DNS tidak diketahui %d."
-#: network/netconnect.pm:265
+#: network/netconnect.pm:286
#, fuzzy, c-format
msgid "Provider DNS 2 (optional)"
-msgstr "Pelayan"
+msgstr "%s: ralat DNS tidak diketahui %d."
-#: network/netconnect.pm:266 standalone/drakconnect:396
-#: standalone/drakconnect:462 standalone/drakconnect:911
-#, c-format
+#: network/netconnect.pm:287 standalone/drakconnect:419
+#, fuzzy, c-format
msgid "Dialing mode"
-msgstr ""
+msgstr "Mod aktiviti"
-#: network/netconnect.pm:267 standalone/drakconnect:401
-#: standalone/drakconnect:459 standalone/drakconnect:923
-#, c-format
+#: network/netconnect.pm:288 standalone/drakconnect:424
+#: standalone/drakconnect:484
+#, fuzzy, c-format
msgid "Connection speed"
-msgstr ""
+msgstr "Sambungan daripada %s:%u"
-#: network/netconnect.pm:268 standalone/drakconnect:406
-#: standalone/drakconnect:924
+#: network/netconnect.pm:289 standalone/drakconnect:429
#, fuzzy, c-format
msgid "Connection timeout (in sec)"
msgstr "dalam"
-#: network/netconnect.pm:271 network/netconnect.pm:717
-#: standalone/drakconnect:438 standalone/drakconnect:909
+#: network/netconnect.pm:292 network/netconnect.pm:788
+#: standalone/drakconnect:461
#, fuzzy, c-format
msgid "Account Login (user name)"
-msgstr "pengguna"
+msgstr ""
+"Cetak nama bagi pengguna semasa.\n"
+"\n"
-#: network/netconnect.pm:272 network/netconnect.pm:718
-#: standalone/drakconnect:439 standalone/drakconnect:910
-#: standalone/drakconnect:944
-#, c-format
+#: network/netconnect.pm:293 network/netconnect.pm:789
+#: standalone/drakconnect:462
+#, fuzzy, c-format
msgid "Account Password"
-msgstr ""
+msgstr "teks-katalaluan"
+
+#: network/netconnect.pm:323 network/netconnect.pm:637
+#: network/netconnect.pm:820
+#, fuzzy, c-format
+msgid "Select the network interface to configure:"
+msgstr "Rangkaian"
-#: network/netconnect.pm:300
+#: network/netconnect.pm:323 network/netconnect.pm:457
+#: network/netconnect.pm:641 standalone/drakgw:113 standalone/drakvpn:49
#, c-format
-msgid "What kind is your ISDN connection?"
+msgid "Sorry, we support only 2.4 and above kernels."
msgstr ""
-#: network/netconnect.pm:301
+#: network/netconnect.pm:325 network/netconnect.pm:366
+#: network/netconnect.pm:638 network/netconnect.pm:822 network/shorewall.pm:84
+#: standalone/drakconnect:643 standalone/drakgw:225 standalone/drakvpn:219
+#, fuzzy, c-format
+msgid "Net Device"
+msgstr "peranti tidak sah %s %s"
+
+#: network/netconnect.pm:326 network/netconnect.pm:334
+#, fuzzy, c-format
+msgid "External ISDN modem"
+msgstr "Laksanakan arahan luaran"
+
+#: network/netconnect.pm:365 standalone/harddrake2:115
+#, fuzzy, c-format
+msgid "Select a device !"
+msgstr "peranti tidak sah %s %s"
+
+#: network/netconnect.pm:374 network/netconnect.pm:384
+#: network/netconnect.pm:394 network/netconnect.pm:410
+#: network/netconnect.pm:421
+#, fuzzy, c-format
+msgid "ISDN Configuration"
+msgstr "Status konfigurasi bagi %s %s\n"
+
+#: network/netconnect.pm:375
#, c-format
-msgid "Internal ISDN card"
+msgid "What kind of card do you have?"
msgstr ""
-#: network/netconnect.pm:301
+#: network/netconnect.pm:385
#, fuzzy, c-format
-msgid "External ISDN modem"
-msgstr "Luaran"
+msgid ""
+"\n"
+"If you have an ISA card, the values on the next screen should be right.\n"
+"\n"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
+msgstr "on dan"
-#: network/netconnect.pm:332
+#: network/netconnect.pm:389
#, fuzzy, c-format
-msgid "Do you want to start a new configuration ?"
-msgstr "mula?"
+msgid "Continue"
+msgstr "Teruskan"
+
+#: network/netconnect.pm:389
+#, fuzzy, c-format
+msgid "Abort"
+msgstr "Abai"
+
+#: network/netconnect.pm:395
+#, c-format
+msgid "Which of the following is your ISDN card?"
+msgstr ""
+
+#: network/netconnect.pm:410
+#, c-format
+msgid "Which protocol do you want to use?"
+msgstr ""
-#: network/netconnect.pm:335
+#: network/netconnect.pm:412 standalone/drakconnect:116
+#: standalone/drakconnect:527 standalone/drakvpn:1140
#, fuzzy, c-format
+msgid "Protocol"
+msgstr "Protokol"
+
+#: network/netconnect.pm:421
+#, c-format
msgid ""
-"I have detected an ISDN PCI card, but I don't know its type. Please select a "
-"PCI card on the next screen."
-msgstr "on."
+"Select your provider.\n"
+"If it isn't listed, choose Unlisted."
+msgstr ""
-#: network/netconnect.pm:344
+#: network/netconnect.pm:423 network/netconnect.pm:529
+#: network/netconnect.pm:675
#, fuzzy, c-format
-msgid "No ISDN PCI card found. Please select one on the next screen."
-msgstr "Tidak on."
+msgid "Provider:"
+msgstr "Jurupacu:"
-#: network/netconnect.pm:353
+#: network/netconnect.pm:438
#, c-format
msgid ""
"Your modem isn't supported by the system.\n"
"Take a look at http://www.linmodems.org"
msgstr ""
-#: network/netconnect.pm:364
+#: network/netconnect.pm:450
#, fuzzy, c-format
msgid "Select the modem to configure:"
-msgstr "Rangkaian"
+msgstr "Pilih fail untuk disimpan"
-#: network/netconnect.pm:403
+#: network/netconnect.pm:498
#, fuzzy, c-format
msgid "Please choose which serial port your modem is connected to."
msgstr "bersiri."
-#: network/netconnect.pm:427
-#, c-format
-msgid "Select your provider:"
-msgstr ""
-
-#: network/netconnect.pm:429 network/netconnect.pm:599
+#: network/netconnect.pm:527
#, fuzzy, c-format
-msgid "Provider:"
-msgstr "Jurupacu:"
+msgid "Select your provider:"
+msgstr "Pilih pada fokus"
-#: network/netconnect.pm:481 network/netconnect.pm:482
-#: network/netconnect.pm:483 network/netconnect.pm:508
-#: network/netconnect.pm:525 network/netconnect.pm:541
+#: network/netconnect.pm:556
#, fuzzy, c-format
-msgid "Manual"
-msgstr "Myanmar"
-
-#: network/netconnect.pm:485
-#, c-format
msgid "Dialup: account options"
-msgstr ""
+msgstr "Pilihan Pengguna Diketahui"
-#: network/netconnect.pm:488 standalone/drakconnect:913
-#, c-format
+#: network/netconnect.pm:559
+#, fuzzy, c-format
msgid "Connection name"
-msgstr ""
+msgstr "_Nama Warna:"
-#: network/netconnect.pm:489 standalone/drakconnect:914
-#, c-format
+#: network/netconnect.pm:560
+#, fuzzy, c-format
msgid "Phone number"
-msgstr ""
+msgstr "nombor kumpulan"
-#: network/netconnect.pm:490 standalone/drakconnect:915
-#, c-format
+#: network/netconnect.pm:561
+#, fuzzy, c-format
msgid "Login ID"
-msgstr ""
+msgstr "ID Stok"
-#: network/netconnect.pm:505 network/netconnect.pm:538
+#: network/netconnect.pm:576 network/netconnect.pm:609
#, fuzzy, c-format
msgid "Dialup: IP parameters"
-msgstr "Parameter"
+msgstr "Alamat IP DCC:"
-#: network/netconnect.pm:508
+#: network/netconnect.pm:579
#, fuzzy, c-format
msgid "IP parameters"
-msgstr "Parameter"
+msgstr "Alamat IP"
-#: network/netconnect.pm:509 network/netconnect.pm:829
-#: printer/printerdrake.pm:431 standalone/drakconnect:113
-#: standalone/drakconnect:306 standalone/drakconnect:764
+#: network/netconnect.pm:580 network/netconnect.pm:912
+#: printer/printerdrake.pm:431 standalone/drakconnect:116
+#: standalone/drakconnect:325 standalone/drakconnect:806
+#: standalone/drakups:266
#, fuzzy, c-format
msgid "IP address"
msgstr "Alamat IP"
-#: network/netconnect.pm:510
+#: network/netconnect.pm:581
#, fuzzy, c-format
msgid "Subnet mask"
msgstr "Topengan:"
-#: network/netconnect.pm:522
-#, c-format
+#: network/netconnect.pm:593
+#, fuzzy, c-format
msgid "Dialup: DNS parameters"
-msgstr ""
+msgstr "%s: ralat DNS tidak diketahui %d."
-#: network/netconnect.pm:525
-#, fuzzy, c-format
+#: network/netconnect.pm:596
+#, c-format
msgid "DNS"
-msgstr "NIS"
+msgstr "DNS"
-#: network/netconnect.pm:526 standalone/drakconnect:918
+#: network/netconnect.pm:597
#, fuzzy, c-format
msgid "Domain name"
-msgstr "Domain"
+msgstr "_Nama Warna:"
-#: network/netconnect.pm:527 network/netconnect.pm:715
-#: standalone/drakconnect:919
+#: network/netconnect.pm:598 network/netconnect.pm:786
+#: standalone/drakconnect:924
#, fuzzy, c-format
msgid "First DNS Server (optional)"
msgstr "Pelayan"
-#: network/netconnect.pm:528 network/netconnect.pm:716
-#: standalone/drakconnect:920
+#: network/netconnect.pm:599 network/netconnect.pm:787
+#: standalone/drakconnect:925
#, fuzzy, c-format
msgid "Second DNS Server (optional)"
msgstr "Pelayan"
-#: network/netconnect.pm:529
+#: network/netconnect.pm:600
#, fuzzy, c-format
msgid "Set hostname from IP"
-msgstr "Hos IP."
+msgstr "Tak dapat tetapkan namahos ke `%s'"
-#: network/netconnect.pm:541 standalone/drakconnect:317
-#: standalone/drakconnect:912
+#: network/netconnect.pm:612 standalone/drakconnect:336
#, fuzzy, c-format
msgid "Gateway"
msgstr "Gateway"
-#: network/netconnect.pm:542
+#: network/netconnect.pm:613
#, fuzzy, c-format
msgid "Gateway IP address"
-msgstr "Alamat IP"
+msgstr "Alamat IP DCC:"
-#: network/netconnect.pm:567
+#: network/netconnect.pm:637
#, fuzzy, c-format
msgid "ADSL configuration"
-msgstr "Tersendiri"
-
-#: network/netconnect.pm:567 network/netconnect.pm:746
-#, fuzzy, c-format
-msgid "Select the network interface to configure:"
-msgstr "Rangkaian"
+msgstr "Status konfigurasi bagi %s %s\n"
-#: network/netconnect.pm:568 network/netconnect.pm:748 network/shorewall.pm:77
-#: standalone/drakconnect:602 standalone/drakgw:218 standalone/drakvpn:217
-#, c-format
-msgid "Net Device"
-msgstr ""
-
-#: network/netconnect.pm:597
+#: network/netconnect.pm:673
#, c-format
msgid "Please choose your ADSL provider"
msgstr ""
-#: network/netconnect.pm:616
+#: network/netconnect.pm:691
#, c-format
msgid ""
"You need the Alcatel microcode.\n"
@@ -8727,32 +8756,32 @@ msgid ""
"or skip and do it later."
msgstr ""
-#: network/netconnect.pm:620 network/netconnect.pm:625
+#: network/netconnect.pm:695 network/netconnect.pm:700
#, fuzzy, c-format
msgid "Use a floppy"
-msgstr "Simpan on"
+msgstr "Guna markup"
-#: network/netconnect.pm:620 network/netconnect.pm:629
+#: network/netconnect.pm:695 network/netconnect.pm:704
#, fuzzy, c-format
msgid "Use my Windows partition"
msgstr "Tetingkap"
-#: network/netconnect.pm:620 network/netconnect.pm:633
-#, c-format
+#: network/netconnect.pm:695 network/netconnect.pm:708
+#, fuzzy, c-format
msgid "Do it later"
-msgstr ""
+msgstr " --help Sangat jelas..."
-#: network/netconnect.pm:640
+#: network/netconnect.pm:715
#, c-format
msgid "Firmware copy failed, file %s not found"
msgstr ""
-#: network/netconnect.pm:647
-#, c-format
+#: network/netconnect.pm:722
+#, fuzzy, c-format
msgid "Firmware copy succeeded"
-msgstr ""
+msgstr "memulakan daemon %s berjaya."
-#: network/netconnect.pm:662
+#: network/netconnect.pm:737
#, fuzzy, c-format
msgid ""
"You need the Alcatel microcode.\n"
@@ -8763,22 +8792,22 @@ msgstr ""
"\n"
"%s dalam"
-#: network/netconnect.pm:719
+#: network/netconnect.pm:790
#, c-format
msgid "Virtual Path ID (VPI):"
msgstr ""
-#: network/netconnect.pm:720
+#: network/netconnect.pm:791
#, c-format
msgid "Virtual Circuit ID (VCI):"
msgstr ""
-#: network/netconnect.pm:721
+#: network/netconnect.pm:793
#, fuzzy, c-format
msgid "Encapsulation :"
msgstr "Tahniah!"
-#: network/netconnect.pm:736
+#: network/netconnect.pm:810
#, c-format
msgid ""
"The ECI Hi-Focus modem cannot be supported due to binary driver distribution "
@@ -8787,17 +8816,7 @@ msgid ""
"You can find a driver on http://eciadsl.flashtux.org/"
msgstr ""
-#: network/netconnect.pm:753
-#, fuzzy, c-format
-msgid "No wireless network adapter on your system!"
-msgstr "Tidak on!"
-
-#: network/netconnect.pm:754 standalone/drakgw:240 standalone/drakpxe:137
-#, fuzzy, c-format
-msgid "No network adapter on your system!"
-msgstr "Tidak on!"
-
-#: network/netconnect.pm:766
+#: network/netconnect.pm:837
#, fuzzy, c-format
msgid ""
"WARNING: this device has been previously configured to connect to the "
@@ -8806,24 +8825,31 @@ msgid ""
"Modifying the fields below will override this configuration."
msgstr "AMARAN Internet terima."
-#: network/netconnect.pm:784
+#: network/netconnect.pm:850 network/netconnect.pm:1222
+#, fuzzy, c-format
+msgid ""
+"Congratulations, the network and Internet configuration is finished.\n"
+"\n"
+msgstr "Tahniah dan Internet"
+
+#: network/netconnect.pm:864
#, fuzzy, c-format
msgid "Zeroconf hostname resolution"
-msgstr "Hos"
+msgstr "Resolusi DNS ialah"
-#: network/netconnect.pm:785 network/netconnect.pm:816
+#: network/netconnect.pm:865 network/netconnect.pm:899
#, c-format
msgid "Configuring network device %s (driver %s)"
msgstr ""
-#: network/netconnect.pm:786
+#: network/netconnect.pm:866
#, c-format
msgid ""
"The following protocols can be used to configure an ethernet connection. "
"Please choose the one you want to use"
msgstr ""
-#: network/netconnect.pm:817
+#: network/netconnect.pm:900
#, fuzzy, c-format
msgid ""
"Please enter the IP configuration for this machine.\n"
@@ -8831,108 +8857,108 @@ msgid ""
"notation (for example, 1.2.3.4)."
msgstr "IP IP dalam."
-#: network/netconnect.pm:824
+#: network/netconnect.pm:907
#, fuzzy, c-format
msgid "Assign host name from DHCP address"
msgstr "DHCP"
-#: network/netconnect.pm:825
+#: network/netconnect.pm:908
#, fuzzy, c-format
msgid "DHCP host name"
-msgstr "DHCP"
+msgstr "Nama warna latarbelakang"
-#: network/netconnect.pm:830 standalone/drakconnect:311
-#: standalone/drakconnect:765 standalone/drakgw:313
+#: network/netconnect.pm:913 standalone/drakconnect:330
+#: standalone/drakconnect:807 standalone/drakgw:321
#, fuzzy, c-format
msgid "Netmask"
msgstr "Netmask"
-#: network/netconnect.pm:832 standalone/drakconnect:389
+#: network/netconnect.pm:915 standalone/drakconnect:412
#, c-format
msgid "Track network card id (useful for laptops)"
msgstr ""
-#: network/netconnect.pm:833 standalone/drakconnect:390
+#: network/netconnect.pm:916 standalone/drakconnect:413
#, fuzzy, c-format
msgid "Network Hotplugging"
-msgstr "Rangkaian"
+msgstr "Rangkaian tidak dapat dicapai."
-#: network/netconnect.pm:834 standalone/drakconnect:384
+#: network/netconnect.pm:917 standalone/drakconnect:407
#, fuzzy, c-format
msgid "Start at boot"
-msgstr "Mula"
+msgstr "Mula pada baris nombor LINE"
-#: network/netconnect.pm:836 standalone/drakconnect:768
+#: network/netconnect.pm:919 standalone/drakconnect:810
#, fuzzy, c-format
msgid "DHCP client"
-msgstr "DHCP"
+msgstr "(%ld)PELANGGAN >>> %s"
-#: network/netconnect.pm:846 printer/printerdrake.pm:1349
-#: standalone/drakconnect:569
+#: network/netconnect.pm:929 printer/printerdrake.pm:1383
+#: standalone/drakconnect:608
#, fuzzy, c-format
msgid "IP address should be in format 1.2.3.4"
msgstr "IP dalam"
-#: network/netconnect.pm:849
+#: network/netconnect.pm:932
#, fuzzy, c-format
msgid "Warning : IP address %s is usually reserved !"
msgstr "Amaran IP!"
-#: network/netconnect.pm:879 network/netconnect.pm:908
+#: network/netconnect.pm:962 network/netconnect.pm:991
#, c-format
msgid "Please enter the wireless parameters for this card:"
msgstr ""
-#: network/netconnect.pm:882 standalone/drakconnect:355
-#, c-format
+#: network/netconnect.pm:965 standalone/drakconnect:378
+#, fuzzy, c-format
msgid "Operating Mode"
-msgstr ""
+msgstr "Mod aktiviti"
-#: network/netconnect.pm:884 standalone/drakconnect:356
-#, c-format
+#: network/netconnect.pm:967 standalone/drakconnect:379
+#, fuzzy, c-format
msgid "Network name (ESSID)"
-msgstr ""
+msgstr "Nama warna latarbelakang"
-#: network/netconnect.pm:885 standalone/drakconnect:357
+#: network/netconnect.pm:968 standalone/drakconnect:380
#, fuzzy, c-format
msgid "Network ID"
-msgstr "Rangkaian"
+msgstr "ID Stok"
-#: network/netconnect.pm:886 standalone/drakconnect:358
-#, c-format
+#: network/netconnect.pm:969 standalone/drakconnect:381
+#, fuzzy, c-format
msgid "Operating frequency"
-msgstr ""
+msgstr "Tetapkan direktori operasi"
-#: network/netconnect.pm:887 standalone/drakconnect:359
-#, c-format
+#: network/netconnect.pm:970 standalone/drakconnect:382
+#, fuzzy, c-format
msgid "Sensitivity threshold"
-msgstr ""
+msgstr "Threshold heretan"
-#: network/netconnect.pm:888 standalone/drakconnect:360
-#, c-format
+#: network/netconnect.pm:971 standalone/drakconnect:383
+#, fuzzy, c-format
msgid "Bitrate (in b/s)"
-msgstr ""
+msgstr "Zoom masuk"
-#: network/netconnect.pm:894
+#: network/netconnect.pm:977
#, 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:898
+#: network/netconnect.pm:981
#, 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:911 standalone/drakconnect:371
+#: network/netconnect.pm:994 standalone/drakconnect:394
#, c-format
msgid "RTS/CTS"
-msgstr ""
+msgstr "RTS/CTS"
-#: network/netconnect.pm:912
+#: network/netconnect.pm:995
#, c-format
msgid ""
"RTS/CTS adds a handshake before each packet transmission to make sure that "
@@ -8946,17 +8972,17 @@ msgid ""
"or off."
msgstr ""
-#: network/netconnect.pm:919 standalone/drakconnect:372
+#: network/netconnect.pm:1002 standalone/drakconnect:395
#, fuzzy, c-format
msgid "Fragmentation"
msgstr "Dokumentasi"
-#: network/netconnect.pm:920 standalone/drakconnect:373
-#, c-format
+#: network/netconnect.pm:1003 standalone/drakconnect:396
+#, fuzzy, c-format
msgid "Iwconfig command extra arguments"
-msgstr ""
+msgstr "Hujah teruk ke arahan pengguna\n"
-#: network/netconnect.pm:921
+#: network/netconnect.pm:1004
#, c-format
msgid ""
"Here, one can configure some extra wireless parameters such as:\n"
@@ -8967,12 +8993,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:928 standalone/drakconnect:374
-#, c-format
+#: network/netconnect.pm:1011 standalone/drakconnect:397
+#, fuzzy, c-format
msgid "Iwspy command extra arguments"
-msgstr ""
+msgstr "Hujah teruk ke arahan pengguna\n"
-#: network/netconnect.pm:929
+#: network/netconnect.pm:1012
#, c-format
msgid ""
"Iwspy is used to set a list of addresses in a wireless network\n"
@@ -8984,12 +9010,12 @@ msgid ""
"See iwpspy(8) man page for further information."
msgstr ""
-#: network/netconnect.pm:937 standalone/drakconnect:375
-#, c-format
+#: network/netconnect.pm:1020 standalone/drakconnect:398
+#, fuzzy, c-format
msgid "Iwpriv command extra arguments"
-msgstr ""
+msgstr "Hujah teruk ke arahan pengguna\n"
-#: network/netconnect.pm:938
+#: network/netconnect.pm:1021
#, c-format
msgid ""
"Iwpriv enable to set up optionals (private) parameters of a wireless "
@@ -9007,25 +9033,25 @@ msgid ""
"See iwpriv(8) man page for further information."
msgstr ""
-#: network/netconnect.pm:965
+#: network/netconnect.pm:1048
#, fuzzy, c-format
msgid ""
"No ethernet network adapter has been detected on your system.\n"
"I cannot set up this connection type."
msgstr "Tidak on."
-#: network/netconnect.pm:969 standalone/drakgw:254 standalone/drakpxe:142
-#, c-format
+#: network/netconnect.pm:1052 standalone/drakgw:261 standalone/drakpxe:142
+#, fuzzy, c-format
msgid "Choose the network interface"
-msgstr ""
+msgstr "_Tambah rangkaian baru"
-#: network/netconnect.pm:970
+#: network/netconnect.pm:1053
#, fuzzy, c-format
msgid ""
"Please choose which network adapter you want to use to connect to Internet."
msgstr "Internet."
-#: network/netconnect.pm:991
+#: network/netconnect.pm:1074
#, fuzzy, c-format
msgid ""
"Please enter your host name.\n"
@@ -9034,84 +9060,84 @@ msgid ""
"You may also enter the IP address of the gateway if you have one."
msgstr "IP."
-#: network/netconnect.pm:995
+#: network/netconnect.pm:1078
#, c-format
msgid "Last but not least you can also type in your DNS server IP addresses."
msgstr ""
-#: network/netconnect.pm:997
+#: network/netconnect.pm:1080 standalone/drakconnect:923
#, fuzzy, c-format
msgid "Host name (optional)"
-msgstr "Pelayan"
+msgstr "Nama warna latarbelakang"
-#: network/netconnect.pm:997
+#: network/netconnect.pm:1080
#, fuzzy, c-format
msgid "Host name"
-msgstr "Hos"
+msgstr "_Nama Warna:"
-#: network/netconnect.pm:998
+#: network/netconnect.pm:1082
#, fuzzy, c-format
msgid "DNS server 1"
-msgstr "SSH"
+msgstr "(%ld)PELAYAN >>> %s"
-#: network/netconnect.pm:999
+#: network/netconnect.pm:1083
#, fuzzy, c-format
msgid "DNS server 2"
-msgstr "SSH"
+msgstr "(%ld)PELAYAN >>> %s"
-#: network/netconnect.pm:1000
+#: network/netconnect.pm:1084
#, fuzzy, c-format
msgid "DNS server 3"
-msgstr "SSH"
+msgstr "(%ld)PELAYAN >>> %s"
-#: network/netconnect.pm:1001
+#: network/netconnect.pm:1085
#, fuzzy, c-format
msgid "Search domain"
-msgstr "NIS"
+msgstr "Hidupkan Carian"
-#: network/netconnect.pm:1002
+#: network/netconnect.pm:1086
#, c-format
msgid "By default search domain will be set from the fully-qualified host name"
msgstr ""
-#: network/netconnect.pm:1003
+#: network/netconnect.pm:1087
#, fuzzy, c-format
msgid "Gateway (e.g. %s)"
msgstr "Gateway"
-#: network/netconnect.pm:1005
+#: network/netconnect.pm:1089
#, c-format
msgid "Gateway device"
msgstr "Peranti gateway"
-#: network/netconnect.pm:1014
+#: network/netconnect.pm:1098
#, fuzzy, c-format
msgid "DNS server address should be in format 1.2.3.4"
msgstr "dalam"
-#: network/netconnect.pm:1019 standalone/drakconnect:571
+#: network/netconnect.pm:1103 standalone/drakconnect:611
#, fuzzy, c-format
msgid "Gateway address should be in format 1.2.3.4"
msgstr "Gateway dalam"
-#: network/netconnect.pm:1030
+#: network/netconnect.pm:1114
#, c-format
msgid ""
"Enter a Zeroconf host name which will be the one that your machine will get "
"back to other machines on the network:"
msgstr ""
-#: network/netconnect.pm:1031
+#: network/netconnect.pm:1115
#, fuzzy, c-format
msgid "Zeroconf Host name"
-msgstr "Hos"
+msgstr "Nama warna latarbelakang"
-#: network/netconnect.pm:1034
+#: network/netconnect.pm:1118
#, c-format
msgid "Zeroconf host name must not contain a ."
msgstr ""
-#: network/netconnect.pm:1044
+#: network/netconnect.pm:1128
#, fuzzy, c-format
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
@@ -9119,32 +9145,32 @@ msgid ""
"\n"
msgstr "Internet"
-#: network/netconnect.pm:1046
+#: network/netconnect.pm:1130
#, fuzzy, c-format
msgid "Internet connection"
-msgstr "Internet"
+msgstr "Sambungan daripada %s:%u"
-#: network/netconnect.pm:1054
+#: network/netconnect.pm:1144
#, fuzzy, c-format
msgid "Configuration is complete, do you want to apply settings ?"
msgstr "Konfigurasikan?"
-#: network/netconnect.pm:1070
+#: network/netconnect.pm:1154
#, fuzzy, c-format
msgid "Do you want to start the connection at boot?"
msgstr "mula?"
-#: network/netconnect.pm:1094
+#: network/netconnect.pm:1166
#, fuzzy, c-format
msgid "The network needs to be restarted. Do you want to restart it ?"
msgstr "ulanghidup?"
-#: network/netconnect.pm:1100 network/netconnect.pm:1165
+#: network/netconnect.pm:1173 network/netconnect.pm:1238
#, fuzzy, c-format
msgid "Network Configuration"
-msgstr "Konfigurasi Rangkaian"
+msgstr "Status konfigurasi bagi %s %s\n"
-#: network/netconnect.pm:1101
+#: network/netconnect.pm:1174
#, fuzzy, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -9152,48 +9178,41 @@ msgid ""
"%s"
msgstr "A"
-#: network/netconnect.pm:1110
+#: network/netconnect.pm:1182
#, fuzzy, c-format
msgid "Do you want to try to connect to the Internet now?"
msgstr "Internet?"
-#: network/netconnect.pm:1118 standalone/drakconnect:958
-#, c-format
+#: network/netconnect.pm:1190 standalone/drakconnect:955
+#, fuzzy, c-format
msgid "Testing your connection..."
-msgstr ""
+msgstr "Sambungan berjaya ditutup."
-#: network/netconnect.pm:1134
+#: network/netconnect.pm:1206
#, fuzzy, c-format
msgid "The system is now connected to the Internet."
msgstr "Internet."
-#: network/netconnect.pm:1135
+#: network/netconnect.pm:1207
#, c-format
msgid "For security reasons, it will be disconnected now."
msgstr ""
-#: network/netconnect.pm:1136
+#: network/netconnect.pm:1208
#, fuzzy, c-format
msgid ""
"The system doesn't seem to be connected to the Internet.\n"
"Try to reconfigure your connection."
msgstr "Internet."
-#: network/netconnect.pm:1150
-#, fuzzy, c-format
-msgid ""
-"Congratulations, the network and Internet configuration is finished.\n"
-"\n"
-msgstr "Tahniah dan Internet"
-
-#: network/netconnect.pm:1153
+#: network/netconnect.pm:1225
#, fuzzy, c-format
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
msgstr "siap ulanghidup."
-#: network/netconnect.pm:1154
+#: network/netconnect.pm:1226
#, c-format
msgid ""
"Problems occured during configuration.\n"
@@ -9201,7 +9220,7 @@ msgid ""
"work, you might want to relaunch the configuration."
msgstr ""
-#: network/netconnect.pm:1166
+#: network/netconnect.pm:1239
#, fuzzy, c-format
msgid ""
"Because you are doing a network installation, your network is already "
@@ -9210,83 +9229,89 @@ msgid ""
"Internet & Network connection.\n"
msgstr "on Ok Internet Rangkaian"
-#: network/network.pm:314
-#, c-format
-msgid "Proxies configuration"
-msgstr ""
+#: network/netconnect.pm:1327
+#, fuzzy, c-format
+msgid ""
+"An unexpected error has happened:\n"
+"%s"
+msgstr "Ralat tanpa diduga pada waitpid() (%s)"
#: network/network.pm:315
#, fuzzy, c-format
-msgid "HTTP proxy"
-msgstr "HTTP"
+msgid "Proxies configuration"
+msgstr "Status konfigurasi bagi %s %s\n"
#: network/network.pm:316
#, fuzzy, c-format
+msgid "HTTP proxy"
+msgstr "Proksi SOCKS: %s"
+
+#: network/network.pm:317
+#, fuzzy, c-format
msgid "FTP proxy"
-msgstr "FTP"
+msgstr "Proksi SOCKS: %s"
-#: network/network.pm:319
+#: network/network.pm:320
#, fuzzy, c-format
msgid "Proxy should be http://..."
-msgstr "Proksihttp://...."
+msgstr "Samada palet patut digunakan"
-#: network/network.pm:320
+#: network/network.pm:321
#, fuzzy, c-format
msgid "URL should begin with 'ftp:' or 'http:'"
msgstr "URL"
-#: network/shorewall.pm:26
-#, c-format
+#: network/shorewall.pm:28
+#, fuzzy, c-format
msgid "Firewalling configuration detected!"
-msgstr ""
+msgstr "Membaca fail konfigurasi sistem %s..."
-#: network/shorewall.pm:27
+#: network/shorewall.pm:29
#, fuzzy, c-format
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fixes after installation."
msgstr "Amaran."
-#: network/shorewall.pm:70
+#: network/shorewall.pm:77 standalone/drakgw:218 standalone/drakvpn:212
#, c-format
msgid ""
-"Please enter the name of the interface connected to the "
-"internet. \n"
-" \n"
+"Please enter the name of the interface connected to the internet.\n"
+"\n"
"Examples:\n"
-" ppp+ for modem or DSL connections, \n"
-" eth0, or eth1 for cable connection, \n"
-" ippp+ for a isdn connection.\n"
+"\t\tppp+ for modem or DSL connections, \n"
+"\t\teth0, or eth1 for cable connection, \n"
+"\t\tippp+ for a isdn connection.\n"
msgstr ""
-#: network/tools.pm:207
+#: network/tools.pm:205
#, fuzzy, c-format
msgid "Insert floppy"
-msgstr "dalam"
+msgstr "Selit Lajur"
-#: network/tools.pm:208
+#: network/tools.pm:206
#, fuzzy, c-format
msgid ""
"Insert a FAT formatted floppy in drive %s with %s in root directory and "
"press %s"
msgstr "dalam"
-#: network/tools.pm:209
+#: network/tools.pm:207
#, c-format
msgid "Floppy access error, unable to mount device %s"
msgstr ""
-#: partition_table.pm:642
-#, c-format
+#: partition_table.pm:644
+#, fuzzy, c-format
msgid "mount failed: "
-msgstr ""
+msgstr "[%s (%s): gagal. Diabaikan]\n"
-#: partition_table.pm:747
+#: partition_table.pm:749
#, fuzzy, c-format
msgid "Extended partition not supported on this platform"
msgstr "on"
-#: partition_table.pm:765
+#: partition_table.pm:767
#, fuzzy, c-format
msgid ""
"You have a hole in your partition table but I can't use it.\n"
@@ -9294,22 +9319,22 @@ msgid ""
"to the extended partitions."
msgstr "dalam."
-#: partition_table.pm:852
+#: partition_table.pm:854
#, fuzzy, c-format
msgid "Restoring from file %s failed: %s"
-msgstr "fail"
+msgstr "Gagal membaca fail '%s': %s"
-#: partition_table.pm:854
-#, c-format
+#: partition_table.pm:856
+#, fuzzy, c-format
msgid "Bad backup file"
-msgstr ""
+msgstr "Saiz fail stats tidak betul.\n"
-#: partition_table.pm:874
+#: partition_table.pm:876
#, c-format
msgid "Error writing to file %s"
msgstr "Ralat menulis kepada fail %s"
-#: partition_table/raw.pm:181
+#: partition_table/raw.pm:187
#, fuzzy, c-format
msgid ""
"Something bad is happening on your drive. \n"
@@ -9343,90 +9368,90 @@ msgstr ""
msgid "maybe"
msgstr ""
-#: printer/cups.pm:87
+#: printer/cups.pm:103
#, fuzzy, c-format
msgid "(on %s)"
msgstr "on"
-#: printer/cups.pm:87
+#: printer/cups.pm:103
#, fuzzy, c-format
msgid "(on this machine)"
-msgstr "on"
+msgstr "--help Keluarkan bantuan ini."
-#: printer/cups.pm:99 standalone/printerdrake:197
+#: printer/cups.pm:115 standalone/printerdrake:197
#, fuzzy, c-format
msgid "Configured on other machines"
msgstr "Tidak"
-#: printer/cups.pm:101
-#, c-format
+#: printer/cups.pm:117
+#, fuzzy, c-format
msgid "On CUPS server \"%s\""
-msgstr ""
+msgstr "Tiada senarai pelayan pada permulaan"
-#: printer/cups.pm:101 printer/printerdrake.pm:3784
-#: printer/printerdrake.pm:3793 printer/printerdrake.pm:3934
-#: printer/printerdrake.pm:3945 printer/printerdrake.pm:4157
+#: printer/cups.pm:117 printer/printerdrake.pm:3989
+#: printer/printerdrake.pm:3998 printer/printerdrake.pm:4139
+#: printer/printerdrake.pm:4150 printer/printerdrake.pm:4362
#, fuzzy, c-format
msgid " (Default)"
-msgstr "Default"
+msgstr "$default"
-#: printer/data.pm:21
+#: printer/data.pm:22
#, c-format
msgid "PDQ - Print, Don't Queue"
msgstr ""
-#: printer/data.pm:22
+#: printer/data.pm:23
#, c-format
msgid "PDQ"
-msgstr ""
+msgstr "PDQ"
-#: printer/data.pm:33
+#: printer/data.pm:34
#, c-format
msgid "LPD - Line Printer Daemon"
msgstr ""
-#: printer/data.pm:34
+#: printer/data.pm:35
#, c-format
msgid "LPD"
-msgstr ""
+msgstr "LPD"
-#: printer/data.pm:55
+#: printer/data.pm:56
#, fuzzy, c-format
msgid "LPRng - LPR New Generation"
msgstr "Baru"
-#: printer/data.pm:56
+#: printer/data.pm:57
#, c-format
msgid "LPRng"
-msgstr ""
+msgstr "LPRng"
-#: printer/data.pm:81
+#: printer/data.pm:82
#, fuzzy, c-format
msgid "CUPS - Common Unix Printing System"
msgstr "Cetakan"
#: printer/detect.pm:148 printer/detect.pm:226 printer/detect.pm:428
-#: printer/detect.pm:465 printer/printerdrake.pm:679
+#: printer/detect.pm:465 printer/printerdrake.pm:686
#, fuzzy, c-format
msgid "Unknown Model"
-msgstr "Entah"
+msgstr "Model TreeModelSort"
#: printer/main.pm:28
-#, c-format
+#, fuzzy, c-format
msgid "Local printer"
-msgstr ""
+msgstr "Pencetak Tidak Diketahui"
#: printer/main.pm:29
-#, c-format
+#, fuzzy, c-format
msgid "Remote printer"
-msgstr ""
+msgstr "Pencetak Tidak Diketahui"
#: printer/main.pm:30
#, fuzzy, c-format
msgid "Printer on remote CUPS server"
msgstr "on"
-#: printer/main.pm:31 printer/printerdrake.pm:1372
+#: printer/main.pm:31 printer/printerdrake.pm:1406
#, fuzzy, c-format
msgid "Printer on remote lpd server"
msgstr "on lpd"
@@ -9444,9 +9469,9 @@ msgstr "on SMB Tetingkap"
#: printer/main.pm:34
#, fuzzy, c-format
msgid "Printer on NetWare server"
-msgstr "on"
+msgstr "Tiada senarai pelayan pada permulaan"
-#: printer/main.pm:35 printer/printerdrake.pm:1376
+#: printer/main.pm:35 printer/printerdrake.pm:1410
#, fuzzy, c-format
msgid "Enter a printer device URI"
msgstr "Enter"
@@ -9457,31 +9482,31 @@ msgid "Pipe job into a command"
msgstr ""
#: printer/main.pm:306 printer/main.pm:574 printer/main.pm:1544
-#: printer/main.pm:2217 printer/printerdrake.pm:1781
-#: printer/printerdrake.pm:4191
+#: printer/main.pm:2228 printer/main.pm:2239 printer/printerdrake.pm:1866
+#: printer/printerdrake.pm:4396
#, fuzzy, c-format
msgid "Unknown model"
-msgstr "Entah"
+msgstr "Model TreeModelSort"
#: printer/main.pm:331 standalone/printerdrake:196
#, fuzzy, c-format
msgid "Configured on this machine"
-msgstr "on"
+msgstr "pagination tidak disokong pada hos ini"
-#: printer/main.pm:337 printer/printerdrake.pm:948
+#: printer/main.pm:337 printer/printerdrake.pm:963
#, fuzzy, c-format
msgid " on parallel port #%s"
-msgstr "on"
+msgstr "Ralat pada baris %d: %s"
-#: printer/main.pm:340 printer/printerdrake.pm:950
+#: printer/main.pm:340 printer/printerdrake.pm:965
#, fuzzy, c-format
msgid ", USB printer #%s"
-msgstr "USB"
+msgstr "Pencetak Tidak Diketahui"
#: printer/main.pm:342
#, fuzzy, c-format
msgid ", USB printer"
-msgstr "USB"
+msgstr "Pencetak Tidak Diketahui"
#: printer/main.pm:347
#, fuzzy, c-format
@@ -9504,24 +9529,24 @@ msgid ", multi-function device on HP JetDirect"
msgstr "on"
#: printer/main.pm:356
-#, c-format
+#, fuzzy, c-format
msgid ", multi-function device"
-msgstr ""
+msgstr "Fail \"%s\" adalah sebuah fail peranti"
#: printer/main.pm:359
-#, c-format
+#, fuzzy, c-format
msgid ", printing to %s"
-msgstr ""
+msgstr "_Lompat ke"
#: printer/main.pm:361
#, fuzzy, c-format
msgid " on LPD server \"%s\", printer \"%s\""
-msgstr "on"
+msgstr "Tiada senarai pelayan pada permulaan"
#: printer/main.pm:363
#, fuzzy, c-format
msgid ", TCP/IP host \"%s\", port %s"
-msgstr "IP"
+msgstr "Tidak disambung. Cuba /server <hos [<liang>]>\n"
#: printer/main.pm:367
#, fuzzy, c-format
@@ -9531,28 +9556,28 @@ msgstr "on SMB Tetingkap"
#: printer/main.pm:371
#, fuzzy, c-format
msgid " on Novell server \"%s\", printer \"%s\""
-msgstr "on"
+msgstr "Tiada senarai pelayan pada permulaan"
#: printer/main.pm:373
-#, c-format
+#, fuzzy, c-format
msgid ", using command %s"
-msgstr ""
+msgstr "arahan keluaran"
#: printer/main.pm:388
#, fuzzy, c-format
msgid "Parallel port #%s"
-msgstr "on"
+msgstr "nombor port"
-#: printer/main.pm:391 printer/printerdrake.pm:964 printer/printerdrake.pm:987
-#: printer/printerdrake.pm:1005
+#: printer/main.pm:391 printer/printerdrake.pm:979
+#: printer/printerdrake.pm:1002 printer/printerdrake.pm:1020
#, fuzzy, c-format
msgid "USB printer #%s"
-msgstr "USB"
+msgstr "Pencetak Tidak Diketahui"
#: printer/main.pm:393
#, fuzzy, c-format
msgid "USB printer"
-msgstr "USB"
+msgstr "Pencetak Tidak Diketahui"
#: printer/main.pm:398
#, fuzzy, c-format
@@ -9577,22 +9602,22 @@ msgstr "on"
#: printer/main.pm:407
#, fuzzy, c-format
msgid "Multi-function device"
-msgstr "on"
+msgstr "Fail \"%s\" adalah sebuah fail peranti"
#: printer/main.pm:410
#, fuzzy, c-format
msgid "Prints into %s"
-msgstr "Cetakan"
+msgstr "disimpan kedalam fail `%s'"
#: printer/main.pm:412
#, fuzzy, c-format
msgid "LPD server \"%s\", printer \"%s\""
-msgstr "on"
+msgstr "dihantar kepada pencetak `%s'"
#: printer/main.pm:414
#, fuzzy, c-format
msgid "TCP/IP host \"%s\", port %s"
-msgstr "IP"
+msgstr "Tidak disambung. Cuba /server <hos [<liang>]>\n"
#: printer/main.pm:418
#, fuzzy, c-format
@@ -9602,29 +9627,29 @@ msgstr "on SMB Tetingkap"
#: printer/main.pm:422
#, fuzzy, c-format
msgid "Novell server \"%s\", printer \"%s\""
-msgstr "on"
+msgstr "dihantar kepada pencetak `%s'"
#: printer/main.pm:424
#, fuzzy, c-format
msgid "Uses command %s"
-msgstr "%s pada %s"
+msgstr "arahan keluaran"
#: printer/main.pm:426
-#, c-format
+#, fuzzy, c-format
msgid "URI: %s"
-msgstr ""
+msgstr "URI '%s' adalah tidak sah"
-#: printer/main.pm:571 printer/printerdrake.pm:725
-#: printer/printerdrake.pm:2331
+#: printer/main.pm:571 printer/printerdrake.pm:732
+#: printer/printerdrake.pm:2463
#, fuzzy, c-format
msgid "Raw printer (No driver)"
msgstr "Tidak"
#: printer/main.pm:1085 printer/printerdrake.pm:179
#: printer/printerdrake.pm:191
-#, c-format
+#, fuzzy, c-format
msgid "Local network(s)"
-msgstr ""
+msgstr "Rangkaian tidak dapat dicapai."
#: printer/main.pm:1087 printer/printerdrake.pm:195
#, fuzzy, c-format
@@ -9644,7 +9669,7 @@ msgstr "Hos"
#: printer/main.pm:1120
#, fuzzy, c-format
msgid "%s (Port %s)"
-msgstr "Liang"
+msgstr "Port"
#: printer/printerdrake.pm:22
#, fuzzy, c-format
@@ -9659,15 +9684,15 @@ msgid ""
msgstr "on Tetingkap on dan fail fail dan fail Salin fail direktori dan dan on"
#: printer/printerdrake.pm:62
-#, c-format
+#, fuzzy, c-format
msgid "CUPS printer configuration"
-msgstr ""
+msgstr "dihantar kepada pencetak `%s'"
#: printer/printerdrake.pm:63
#, fuzzy, c-format
msgid ""
"Here you can choose whether the printers connected to this machine should be "
-"accessable by remote machines and by which remote machines."
+"accessible by remote machines and by which remote machines."
msgstr "dan."
#: printer/printerdrake.pm:64
@@ -9695,13 +9720,13 @@ msgstr "on hos "
#: printer/printerdrake.pm:73
#, fuzzy, c-format
msgid "Custom configuration"
-msgstr "Tersendiri"
+msgstr "Status konfigurasi bagi %s %s\n"
-#: printer/printerdrake.pm:78 standalone/scannerdrake:554
-#: standalone/scannerdrake:571
+#: printer/printerdrake.pm:78 standalone/scannerdrake:561
+#: standalone/scannerdrake:578
#, fuzzy, c-format
msgid "No remote machines"
-msgstr "Tidak"
+msgstr "Tiada peranti input"
#: printer/printerdrake.pm:88
#, c-format
@@ -9711,7 +9736,7 @@ msgstr ""
#: printer/printerdrake.pm:93
#, fuzzy, c-format
msgid "None"
-msgstr "Tiada"
+msgstr "tiada"
#: printer/printerdrake.pm:95
#, fuzzy, c-format
@@ -9769,7 +9794,7 @@ msgstr "on on off."
#: printer/printerdrake.pm:129 printer/printerdrake.pm:205
#, fuzzy, c-format
msgid "Sharing of local printers"
-msgstr "lokal"
+msgstr "Program tempatan [%d] selesai."
#: printer/printerdrake.pm:130
#, fuzzy, c-format
@@ -9781,7 +9806,7 @@ msgstr "dan on:"
#: printer/printerdrake.pm:141
#, fuzzy, c-format
msgid "Add host/network"
-msgstr "Tambah"
+msgstr "_Tambah rangkaian baru"
#: printer/printerdrake.pm:147
#, fuzzy, c-format
@@ -9798,7 +9823,7 @@ msgstr "Buang"
#: printer/printerdrake.pm:248 printer/printerdrake.pm:266
#, fuzzy, c-format
msgid "IP address of host/network:"
-msgstr "IP:"
+msgstr "Panjang alamat tidak sah diterima untuk hos %s"
#: printer/printerdrake.pm:206
#, fuzzy, c-format
@@ -9843,17 +9868,17 @@ msgstr "Tambah lokal."
#: printer/printerdrake.pm:328
#, fuzzy, c-format
msgid "Add server"
-msgstr "Tambah"
+msgstr "_Tambah pelayan baru"
#: printer/printerdrake.pm:334
#, fuzzy, c-format
msgid "Edit selected server"
-msgstr "Edit"
+msgstr "Terima Notis Pelayan"
#: printer/printerdrake.pm:343
#, fuzzy, c-format
msgid "Remove selected server"
-msgstr "Buang"
+msgstr "Terima Notis Pelayan"
#: printer/printerdrake.pm:388
#, fuzzy, c-format
@@ -9868,14 +9893,14 @@ msgstr "tidak default."
#: printer/printerdrake.pm:393
#, fuzzy, c-format
msgid "Server IP missing!"
-msgstr "Pelayan IP!"
+msgstr "hujah tiada bagi `%s'"
#: printer/printerdrake.pm:399
#, fuzzy, c-format
msgid "The entered IP is not correct.\n"
msgstr "IP"
-#: printer/printerdrake.pm:411 printer/printerdrake.pm:1582
+#: printer/printerdrake.pm:411 printer/printerdrake.pm:1629
#, c-format
msgid "The port number should be an integer!"
msgstr ""
@@ -9885,36 +9910,37 @@ msgstr ""
msgid "This server is already in the list, it cannot be added again.\n"
msgstr "dalam"
-#: printer/printerdrake.pm:433 printer/printerdrake.pm:1603
-#: standalone/harddrake2:64
+#: printer/printerdrake.pm:433 printer/printerdrake.pm:1650
+#: standalone/drakups:233 standalone/harddrake2:64
#, fuzzy, c-format
msgid "Port"
-msgstr "Liang"
+msgstr "Port"
#: printer/printerdrake.pm:478 printer/printerdrake.pm:545
-#: printer/printerdrake.pm:605 printer/printerdrake.pm:621
-#: printer/printerdrake.pm:704 printer/printerdrake.pm:761
-#: printer/printerdrake.pm:787 printer/printerdrake.pm:1800
-#: printer/printerdrake.pm:1808 printer/printerdrake.pm:1830
-#: printer/printerdrake.pm:1857 printer/printerdrake.pm:1892
-#: printer/printerdrake.pm:1929 printer/printerdrake.pm:1939
-#: printer/printerdrake.pm:2182 printer/printerdrake.pm:2187
-#: printer/printerdrake.pm:2326 printer/printerdrake.pm:2436
-#: printer/printerdrake.pm:2901 printer/printerdrake.pm:2966
-#: printer/printerdrake.pm:3000 printer/printerdrake.pm:3003
-#: printer/printerdrake.pm:3122 printer/printerdrake.pm:3184
-#: printer/printerdrake.pm:3256 printer/printerdrake.pm:3277
-#: printer/printerdrake.pm:3286 printer/printerdrake.pm:3377
-#: printer/printerdrake.pm:3475 printer/printerdrake.pm:3481
-#: printer/printerdrake.pm:3488 printer/printerdrake.pm:3534
-#: printer/printerdrake.pm:3574 printer/printerdrake.pm:3586
-#: printer/printerdrake.pm:3597 printer/printerdrake.pm:3606
-#: printer/printerdrake.pm:3619 printer/printerdrake.pm:3689
-#: printer/printerdrake.pm:3740 printer/printerdrake.pm:3805
-#: printer/printerdrake.pm:4065 printer/printerdrake.pm:4108
-#: printer/printerdrake.pm:4254 printer/printerdrake.pm:4312
-#: printer/printerdrake.pm:4341 standalone/printerdrake:65
-#: standalone/printerdrake:85 standalone/printerdrake:515
+#: printer/printerdrake.pm:610 printer/printerdrake.pm:628
+#: printer/printerdrake.pm:711 printer/printerdrake.pm:768
+#: printer/printerdrake.pm:794 printer/printerdrake.pm:1703
+#: printer/printerdrake.pm:1886 printer/printerdrake.pm:1902
+#: printer/printerdrake.pm:1945 printer/printerdrake.pm:1982
+#: printer/printerdrake.pm:2024 printer/printerdrake.pm:2061
+#: printer/printerdrake.pm:2071 printer/printerdrake.pm:2314
+#: printer/printerdrake.pm:2319 printer/printerdrake.pm:2458
+#: printer/printerdrake.pm:2568 printer/printerdrake.pm:3069
+#: printer/printerdrake.pm:3134 printer/printerdrake.pm:3177
+#: printer/printerdrake.pm:3180 printer/printerdrake.pm:3299
+#: printer/printerdrake.pm:3364 printer/printerdrake.pm:3436
+#: printer/printerdrake.pm:3457 printer/printerdrake.pm:3466
+#: printer/printerdrake.pm:3557 printer/printerdrake.pm:3655
+#: printer/printerdrake.pm:3661 printer/printerdrake.pm:3674
+#: printer/printerdrake.pm:3726 printer/printerdrake.pm:3766
+#: printer/printerdrake.pm:3778 printer/printerdrake.pm:3789
+#: printer/printerdrake.pm:3798 printer/printerdrake.pm:3811
+#: printer/printerdrake.pm:3888 printer/printerdrake.pm:3945
+#: printer/printerdrake.pm:4010 printer/printerdrake.pm:4270
+#: 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
#, c-format
msgid "Printerdrake"
msgstr ""
@@ -9925,9 +9951,9 @@ msgid "Restarting CUPS..."
msgstr ""
#: printer/printerdrake.pm:502
-#, c-format
+#, fuzzy, c-format
msgid "Select Printer Connection"
-msgstr ""
+msgstr "Sambungan berjaya ditutup."
#: printer/printerdrake.pm:503
#, c-format
@@ -9942,7 +9968,7 @@ msgid ""
"printers will be automatically detected."
msgstr "on."
-#: printer/printerdrake.pm:508 printer/printerdrake.pm:3807
+#: printer/printerdrake.pm:508 printer/printerdrake.pm:4012
#, c-format
msgid ""
"\n"
@@ -9952,25 +9978,26 @@ msgstr ""
#: printer/printerdrake.pm:515
#, fuzzy, c-format
-msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
+msgid ""
+"Printer auto-detection (Local, TCP/Socket, SMB printers, and device URI)"
msgstr "dan SMB"
#: printer/printerdrake.pm:545
-#, c-format
+#, fuzzy, c-format
msgid "Checking your system..."
-msgstr ""
+msgstr "Ralat sistem yang tidak diketahui"
-#: printer/printerdrake.pm:560
+#: printer/printerdrake.pm:561
#, fuzzy, c-format
msgid "and one unknown printer"
msgstr "dan tidak diketahui"
-#: printer/printerdrake.pm:562
+#: printer/printerdrake.pm:563
#, fuzzy, c-format
msgid "and %d unknown printers"
-msgstr "dan tidak diketahui"
+msgstr "Format imej tidak diketahui"
-#: printer/printerdrake.pm:566
+#: printer/printerdrake.pm:567
#, c-format
msgid ""
"The following printers\n"
@@ -9979,7 +10006,7 @@ msgid ""
"are directly connected to your system"
msgstr ""
-#: printer/printerdrake.pm:568
+#: printer/printerdrake.pm:569
#, c-format
msgid ""
"The following printer\n"
@@ -9988,7 +10015,7 @@ msgid ""
"are directly connected to your system"
msgstr ""
-#: printer/printerdrake.pm:569
+#: printer/printerdrake.pm:570
#, c-format
msgid ""
"The following printer\n"
@@ -9997,102 +10024,102 @@ msgid ""
"is directly connected to your system"
msgstr ""
-#: printer/printerdrake.pm:573
+#: printer/printerdrake.pm:574
#, fuzzy, c-format
msgid ""
"\n"
"There is one unknown printer directly connected to your system"
msgstr "tidak diketahui"
-#: printer/printerdrake.pm:574
+#: printer/printerdrake.pm:575
#, fuzzy, c-format
msgid ""
"\n"
"There are %d unknown printers directly connected to your system"
msgstr "tidak diketahui"
-#: printer/printerdrake.pm:577
+#: printer/printerdrake.pm:578
#, fuzzy, c-format
msgid ""
"There are no printers found which are directly connected to your machine"
msgstr "tidak"
-#: printer/printerdrake.pm:580
+#: printer/printerdrake.pm:581
#, fuzzy, c-format
msgid " (Make sure that all your printers are connected and turned on).\n"
msgstr "dan on"
-#: printer/printerdrake.pm:593
+#: printer/printerdrake.pm:594
#, fuzzy, c-format
msgid ""
"Do you want to enable printing on the printers mentioned above or on "
"printers in the local network?\n"
msgstr "on on dalam lokal"
-#: printer/printerdrake.pm:594
+#: printer/printerdrake.pm:595
#, fuzzy, c-format
msgid "Do you want to enable printing on printers in the local network?\n"
msgstr "on dalam lokal"
-#: printer/printerdrake.pm:596
+#: printer/printerdrake.pm:597
#, fuzzy, c-format
msgid "Do you want to enable printing on the printers mentioned above?\n"
msgstr "on"
-#: printer/printerdrake.pm:597
+#: printer/printerdrake.pm:598
#, fuzzy, c-format
msgid "Are you sure that you want to set up printing on this machine?\n"
msgstr "on"
-#: printer/printerdrake.pm:598
+#: printer/printerdrake.pm:599
#, fuzzy, c-format
msgid ""
"NOTE: Depending on the printer model and the printing system up to %d MB of "
"additional software will be installed."
msgstr "on dan."
-#: printer/printerdrake.pm:622
+#: printer/printerdrake.pm:629
#, fuzzy, c-format
msgid "Searching for new printers..."
-msgstr "Mencari."
+msgstr "Memulakan rentetanwarna baru bagi fg %d bg %d\n"
-#: printer/printerdrake.pm:706
-#, c-format
+#: printer/printerdrake.pm:713
+#, fuzzy, c-format
msgid "Configuring printer ..."
-msgstr ""
+msgstr "Pencetak Tidak Diketahui"
-#: printer/printerdrake.pm:707 printer/printerdrake.pm:762
-#: printer/printerdrake.pm:3598
-#, c-format
+#: printer/printerdrake.pm:714 printer/printerdrake.pm:769
+#: printer/printerdrake.pm:3790
+#, fuzzy, c-format
msgid "Configuring printer \"%s\"..."
-msgstr ""
+msgstr "Pencetak Tidak Diketahui"
-#: printer/printerdrake.pm:727
+#: printer/printerdrake.pm:734
#, c-format
msgid "("
-msgstr ""
+msgstr "("
-#: printer/printerdrake.pm:728
-#, c-format
+#: printer/printerdrake.pm:735
+#, fuzzy, c-format
msgid " on "
-msgstr ""
+msgstr "on"
-#: printer/printerdrake.pm:729 standalone/scannerdrake:130
+#: printer/printerdrake.pm:736 standalone/scannerdrake:136
#, c-format
msgid ")"
-msgstr ""
+msgstr ")"
-#: printer/printerdrake.pm:734 printer/printerdrake.pm:2338
-#, c-format
+#: printer/printerdrake.pm:741 printer/printerdrake.pm:2470
+#, fuzzy, c-format
msgid "Printer model selection"
-msgstr ""
+msgstr "dihantar kepada pencetak `%s'"
-#: printer/printerdrake.pm:735 printer/printerdrake.pm:2339
+#: printer/printerdrake.pm:742 printer/printerdrake.pm:2471
#, c-format
msgid "Which printer model do you have?"
msgstr ""
-#: printer/printerdrake.pm:736
+#: printer/printerdrake.pm:743
#, c-format
msgid ""
"\n"
@@ -10101,28 +10128,28 @@ msgid ""
"choose the correct model from the list."
msgstr ""
-#: printer/printerdrake.pm:739 printer/printerdrake.pm:2344
+#: printer/printerdrake.pm:746 printer/printerdrake.pm:2476
#, c-format
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: printer/printerdrake.pm:788 printer/printerdrake.pm:3587
-#: printer/printerdrake.pm:3741 printer/printerdrake.pm:4066
-#: printer/printerdrake.pm:4109 printer/printerdrake.pm:4313
-#, c-format
+#: printer/printerdrake.pm:795 printer/printerdrake.pm:3779
+#: printer/printerdrake.pm:3946 printer/printerdrake.pm:4271
+#: printer/printerdrake.pm:4314 printer/printerdrake.pm:4518
+#, fuzzy, c-format
msgid "Configuring applications..."
-msgstr ""
+msgstr "Aplikasi telah dikonfigurasikan untuk pemindahan"
-#: printer/printerdrake.pm:824 printer/printerdrake.pm:836
-#: printer/printerdrake.pm:894 printer/printerdrake.pm:1787
-#: printer/printerdrake.pm:3823 printer/printerdrake.pm:4006
+#: printer/printerdrake.pm:831 printer/printerdrake.pm:843
+#: printer/printerdrake.pm:901 printer/printerdrake.pm:1872
+#: printer/printerdrake.pm:4028 printer/printerdrake.pm:4211
#, fuzzy, c-format
msgid "Add a new printer"
-msgstr "Tambah"
+msgstr "_Tambah pelayan baru"
-#: printer/printerdrake.pm:825
+#: printer/printerdrake.pm:832
#, fuzzy, c-format
msgid ""
"\n"
@@ -10136,7 +10163,7 @@ msgid ""
"connection types."
msgstr "lokal dan dalam dan dan."
-#: printer/printerdrake.pm:838
+#: printer/printerdrake.pm:845
#, fuzzy, c-format
msgid ""
"\n"
@@ -10160,7 +10187,7 @@ msgstr ""
"Tetingkap dalam dan on dan Tetingkap dan on on off dan Tetingkap\n"
" on Berikutnya dan on Batal."
-#: printer/printerdrake.pm:847
+#: printer/printerdrake.pm:854
#, fuzzy, c-format
msgid ""
"\n"
@@ -10178,7 +10205,7 @@ msgstr ""
"dalam dan on\n"
" on Berikutnya dan on Batal."
-#: printer/printerdrake.pm:855
+#: printer/printerdrake.pm:862
#, fuzzy, c-format
msgid ""
"\n"
@@ -10201,7 +10228,7 @@ msgstr ""
"dalam on dan on dan on on off\n"
" on Berikutnya dan on Batal."
-#: printer/printerdrake.pm:864
+#: printer/printerdrake.pm:871
#, fuzzy, c-format
msgid ""
"\n"
@@ -10219,22 +10246,22 @@ msgstr ""
"dalam on dan on\n"
" on Berikutnya dan on Batal."
-#: printer/printerdrake.pm:873
+#: printer/printerdrake.pm:880
#, c-format
msgid "Auto-detect printers connected to this machine"
msgstr ""
-#: printer/printerdrake.pm:876
+#: printer/printerdrake.pm:883
#, fuzzy, c-format
msgid "Auto-detect printers connected directly to the local network"
msgstr "lokal"
-#: printer/printerdrake.pm:879
+#: printer/printerdrake.pm:886
#, c-format
msgid "Auto-detect printers connected to machines running Microsoft Windows"
msgstr ""
-#: printer/printerdrake.pm:895
+#: printer/printerdrake.pm:902
#, fuzzy, c-format
msgid ""
"\n"
@@ -10248,54 +10275,70 @@ msgid ""
"select \"Printer\" in the \"Hardware\" section of the %s Control Center."
msgstr "dan dalam Fail default dalam Perkakasan."
-#: printer/printerdrake.pm:930 printer/printerdrake.pm:1060
-#: printer/printerdrake.pm:1276 printer/printerdrake.pm:1516
+#: printer/printerdrake.pm:937 printer/printerdrake.pm:1152
+#: printer/printerdrake.pm:1214 printer/printerdrake.pm:1304
+#: printer/printerdrake.pm:1441 printer/printerdrake.pm:1516
+#: printer/printerdrake.pm:1667 printer/printerdrake.pm:1750
+#: printer/printerdrake.pm:1759 printer/printerdrake.pm:1768
+#: printer/printerdrake.pm:1779 printer/printerdrake.pm:1892
+#: printer/printerdrake.pm:1954 printer/printerdrake.pm:1988
#, c-format
-msgid "Printer auto-detection"
+msgid "Could not install the %s packages!"
msgstr ""
-#: printer/printerdrake.pm:930
+#: printer/printerdrake.pm:939
#, c-format
-msgid "Detecting devices..."
+msgid "Skipping Windows/SMB server auto-detection"
msgstr ""
-#: printer/printerdrake.pm:952
-#, c-format
+#: printer/printerdrake.pm:945 printer/printerdrake.pm:1075
+#: printer/printerdrake.pm:1310 printer/printerdrake.pm:1563
+#, fuzzy, c-format
+msgid "Printer auto-detection"
+msgstr "Auto Terima Fail"
+
+#: printer/printerdrake.pm:945
+#, fuzzy, c-format
+msgid "Detecting devices..."
+msgstr "Tiada peranti input"
+
+#: printer/printerdrake.pm:967
+#, fuzzy, c-format
msgid ", network printer \"%s\", port %s"
-msgstr ""
+msgstr "dihantar kepada pencetak `%s'"
-#: printer/printerdrake.pm:954
+#: printer/printerdrake.pm:969
#, fuzzy, c-format
msgid ", printer \"%s\" on SMB/Windows server \"%s\""
msgstr "on SMB Tetingkap"
-#: printer/printerdrake.pm:958
+#: printer/printerdrake.pm:973
#, c-format
msgid "Detected %s"
msgstr ""
-#: printer/printerdrake.pm:962 printer/printerdrake.pm:985
-#: printer/printerdrake.pm:1002
+#: printer/printerdrake.pm:977 printer/printerdrake.pm:1000
+#: printer/printerdrake.pm:1017
#, fuzzy, c-format
msgid "Printer on parallel port #%s"
msgstr "on"
-#: printer/printerdrake.pm:966
+#: printer/printerdrake.pm:981
#, fuzzy, c-format
msgid "Network printer \"%s\", port %s"
-msgstr "Rangkaian"
+msgstr "dihantar kepada pencetak `%s'"
-#: printer/printerdrake.pm:968
+#: printer/printerdrake.pm:983
#, fuzzy, c-format
msgid "Printer \"%s\" on SMB/Windows server \"%s\""
msgstr "on SMB Tetingkap"
-#: printer/printerdrake.pm:1047
-#, c-format
+#: printer/printerdrake.pm:1062
+#, fuzzy, c-format
msgid "Local Printer"
-msgstr ""
+msgstr "Pencetak Tidak Diketahui"
-#: printer/printerdrake.pm:1048
+#: printer/printerdrake.pm:1063
#, fuzzy, c-format
msgid ""
"No local printer found! To manually install a printer enter a device name/"
@@ -10304,64 +10347,68 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr "Tidak lokal Kepada secara manual fail dalam USB USB."
-#: printer/printerdrake.pm:1052
+#: printer/printerdrake.pm:1067
#, fuzzy, c-format
msgid "You must enter a device or file name!"
msgstr "fail!"
-#: printer/printerdrake.pm:1061
+#: printer/printerdrake.pm:1076
#, fuzzy, c-format
msgid "No printer found!"
-msgstr "Tidak!"
+msgstr "Tiada pengepala XPM dijumpai"
-#: printer/printerdrake.pm:1069
-#, c-format
+#: printer/printerdrake.pm:1084
+#, fuzzy, c-format
msgid "Local Printers"
-msgstr ""
+msgstr "Program tempatan [%d] selesai."
-#: printer/printerdrake.pm:1070
-#, c-format
+#: printer/printerdrake.pm:1085
+#, fuzzy, c-format
msgid "Available printers"
msgstr ""
+"\n"
+"Arahan yang Ada:\n"
+"\n"
+" "
-#: printer/printerdrake.pm:1074 printer/printerdrake.pm:1083
+#: printer/printerdrake.pm:1089 printer/printerdrake.pm:1098
#, c-format
msgid "The following printer was auto-detected. "
msgstr ""
-#: printer/printerdrake.pm:1076
+#: printer/printerdrake.pm:1091
#, fuzzy, c-format
msgid ""
"If it is not the one you want to configure, enter a device name/file name in "
"the input line"
msgstr "fail dalam"
-#: printer/printerdrake.pm:1077
+#: printer/printerdrake.pm:1092
#, fuzzy, c-format
msgid ""
"Alternatively, you can specify a device name/file name in the input line"
msgstr "fail dalam"
-#: printer/printerdrake.pm:1078 printer/printerdrake.pm:1087
+#: printer/printerdrake.pm:1093 printer/printerdrake.pm:1102
#, c-format
msgid "Here is a list of all auto-detected printers. "
msgstr ""
-#: printer/printerdrake.pm:1080
+#: printer/printerdrake.pm:1095
#, fuzzy, c-format
msgid ""
"Please choose the printer you want to set up or enter a device name/file "
"name in the input line"
msgstr "fail dalam"
-#: printer/printerdrake.pm:1081
+#: printer/printerdrake.pm:1096
#, fuzzy, c-format
msgid ""
"Please choose the printer to which the print jobs should go or enter a "
"device name/file name in the input line"
msgstr "fail dalam"
-#: printer/printerdrake.pm:1085
+#: printer/printerdrake.pm:1100
#, fuzzy, c-format
msgid ""
"The configuration of the printer will work fully automatically. If your "
@@ -10369,12 +10416,12 @@ msgid ""
"configuration, turn on \"Manual configuration\"."
msgstr "on."
-#: printer/printerdrake.pm:1086
+#: printer/printerdrake.pm:1101
#, fuzzy, c-format
msgid "Currently, no alternative possibility is available"
msgstr "tidak"
-#: printer/printerdrake.pm:1089
+#: printer/printerdrake.pm:1104
#, fuzzy, c-format
msgid ""
"Please choose the printer you want to set up. The configuration of the "
@@ -10383,107 +10430,115 @@ msgid ""
"\"Manual configuration\"."
msgstr "on."
-#: printer/printerdrake.pm:1090
+#: printer/printerdrake.pm:1105
#, c-format
msgid "Please choose the printer to which the print jobs should go."
msgstr ""
-#: printer/printerdrake.pm:1092
+#: printer/printerdrake.pm:1107
#, fuzzy, c-format
msgid ""
"Please choose the port that your printer is connected to or enter a device "
"name/file name in the input line"
msgstr "fail dalam"
-#: printer/printerdrake.pm:1093
+#: printer/printerdrake.pm:1108
#, c-format
msgid "Please choose the port that your printer is connected to."
msgstr ""
-#: printer/printerdrake.pm:1095
+#: printer/printerdrake.pm:1110
#, fuzzy, c-format
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr "USB USB."
-#: printer/printerdrake.pm:1099
+#: printer/printerdrake.pm:1114
#, c-format
msgid "You must choose/enter a printer/device!"
msgstr ""
-#: printer/printerdrake.pm:1168
+#: printer/printerdrake.pm:1154 printer/printerdrake.pm:1216
+#: printer/printerdrake.pm:1306 printer/printerdrake.pm:1443
+#: printer/printerdrake.pm:1518 printer/printerdrake.pm:1669
+#: printer/printerdrake.pm:1752 printer/printerdrake.pm:1761
+#: printer/printerdrake.pm:1770 printer/printerdrake.pm:1781
+#, fuzzy, c-format
+msgid "Aborting"
+msgstr "Abai"
+
+#: printer/printerdrake.pm:1189
#, fuzzy, c-format
msgid "Remote lpd Printer Options"
msgstr "lpd"
-#: printer/printerdrake.pm:1169
+#: printer/printerdrake.pm:1190
#, fuzzy, c-format
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
"server and the printer name on that server."
msgstr "Kepada lpd dan on."
-#: printer/printerdrake.pm:1170
-#, c-format
+#: printer/printerdrake.pm:1191
+#, fuzzy, c-format
msgid "Remote host name"
-msgstr ""
+msgstr "Mendapatkan maklumat hos jauh..."
-#: printer/printerdrake.pm:1171
-#, c-format
+#: printer/printerdrake.pm:1192
+#, fuzzy, c-format
msgid "Remote printer name"
-msgstr ""
+msgstr "Nama warna latarbelakang"
-#: printer/printerdrake.pm:1174
-#, c-format
+#: printer/printerdrake.pm:1195
+#, fuzzy, c-format
msgid "Remote host name missing!"
-msgstr ""
+msgstr "Kehilangan nama fail selepas -C"
-#: printer/printerdrake.pm:1178
-#, c-format
+#: printer/printerdrake.pm:1199
+#, fuzzy, c-format
msgid "Remote printer name missing!"
-msgstr ""
-
-#: printer/printerdrake.pm:1200 printer/printerdrake.pm:1714
-#: standalone/drakTermServ:442 standalone/drakTermServ:725
-#: standalone/drakTermServ:741 standalone/drakTermServ:1332
-#: standalone/drakTermServ:1340 standalone/drakTermServ:1351
-#: standalone/drakbackup:767 standalone/drakbackup:874
-#: standalone/drakbackup:908 standalone/drakbackup:1027
-#: standalone/drakbackup:1891 standalone/drakbackup:1895
-#: standalone/drakconnect:254 standalone/drakconnect:283
-#: standalone/drakconnect:512 standalone/drakconnect:516
-#: standalone/drakconnect:540 standalone/harddrake2:159
+msgstr "Kehilangan nama fail selepas -C"
+
+#: printer/printerdrake.pm:1228 printer/printerdrake.pm:1799
+#: standalone/drakTermServ:465 standalone/drakTermServ:763
+#: standalone/drakTermServ:779 standalone/drakTermServ:1417
+#: standalone/drakTermServ:1425 standalone/drakTermServ:1436
+#: 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
#, fuzzy, c-format
msgid "Information"
msgstr "Maklumat"
-#: printer/printerdrake.pm:1200 printer/printerdrake.pm:1714
-#, c-format
+#: printer/printerdrake.pm:1228 printer/printerdrake.pm:1799
+#, fuzzy, c-format
msgid "Detected model: %s %s"
-msgstr ""
+msgstr "Model TreeModelSort"
-#: printer/printerdrake.pm:1276 printer/printerdrake.pm:1516
-#, c-format
+#: printer/printerdrake.pm:1310 printer/printerdrake.pm:1563
+#, fuzzy, c-format
msgid "Scanning network..."
-msgstr ""
+msgstr "Rangkaian tidak dapat dicapai."
-#: printer/printerdrake.pm:1287 printer/printerdrake.pm:1308
+#: printer/printerdrake.pm:1321 printer/printerdrake.pm:1342
#, fuzzy, c-format
msgid ", printer \"%s\" on server \"%s\""
-msgstr "on"
+msgstr "Tiada senarai pelayan pada permulaan"
-#: printer/printerdrake.pm:1290 printer/printerdrake.pm:1311
+#: printer/printerdrake.pm:1324 printer/printerdrake.pm:1345
#, fuzzy, c-format
msgid "Printer \"%s\" on server \"%s\""
-msgstr "on"
+msgstr "Tiada senarai pelayan pada permulaan"
-#: printer/printerdrake.pm:1332
+#: printer/printerdrake.pm:1366
#, fuzzy, c-format
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "SMB Tetingkap"
-#: printer/printerdrake.pm:1333
+#: printer/printerdrake.pm:1367
#, fuzzy, c-format
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
@@ -10492,54 +10547,54 @@ msgid ""
"access and any applicable user name, password, and workgroup information."
msgstr "Kepada SMB SMB IP dan IP dan pengguna dan."
-#: printer/printerdrake.pm:1334
+#: printer/printerdrake.pm:1368
#, fuzzy, c-format
msgid ""
" If the desired printer was auto-detected, simply choose it from the list "
"and then add user name, password, and/or workgroup if needed."
msgstr "dan pengguna dan."
-#: printer/printerdrake.pm:1336
+#: printer/printerdrake.pm:1370
#, fuzzy, c-format
msgid "SMB server host"
-msgstr "SMB"
+msgstr "Terima Notis Pelayan"
-#: printer/printerdrake.pm:1337
+#: printer/printerdrake.pm:1371
#, fuzzy, c-format
msgid "SMB server IP"
-msgstr "SMB"
+msgstr "Alamat IP DCC:"
-#: printer/printerdrake.pm:1338
+#: printer/printerdrake.pm:1372
#, fuzzy, c-format
msgid "Share name"
-msgstr "Kongsi"
+msgstr "_Nama Warna:"
-#: printer/printerdrake.pm:1341
-#, fuzzy, c-format
+#: printer/printerdrake.pm:1375
+#, c-format
msgid "Workgroup"
msgstr "Kumpulankerja"
-#: printer/printerdrake.pm:1343
-#, c-format
+#: printer/printerdrake.pm:1377
+#, fuzzy, c-format
msgid "Auto-detected"
-msgstr ""
+msgstr "Auto indent"
-#: printer/printerdrake.pm:1353
+#: printer/printerdrake.pm:1387
#, fuzzy, c-format
msgid "Either the server name or the server's IP must be given!"
msgstr "IP!"
-#: printer/printerdrake.pm:1357
-#, c-format
+#: printer/printerdrake.pm:1391
+#, fuzzy, c-format
msgid "Samba share name missing!"
-msgstr ""
+msgstr "Kehilangan nama fail selepas -C"
-#: printer/printerdrake.pm:1363
+#: printer/printerdrake.pm:1397
#, fuzzy, c-format
msgid "SECURITY WARNING!"
-msgstr "AMARAN!"
+msgstr "%s: Amaran: Tak dapat %s"
-#: printer/printerdrake.pm:1364
+#: printer/printerdrake.pm:1398
#, fuzzy, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -10565,7 +10620,7 @@ msgstr ""
"Tetingkap dalam dalam Tetingkap pengguna on on dalam lokal Tetingkap on "
"Tetingkap Tetingkap dalam"
-#: printer/printerdrake.pm:1374
+#: printer/printerdrake.pm:1408
#, fuzzy, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -10574,7 +10629,7 @@ msgid ""
"\n"
msgstr "Tetingkap dan dalam"
-#: printer/printerdrake.pm:1377
+#: printer/printerdrake.pm:1411
#, fuzzy, c-format
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
@@ -10583,12 +10638,12 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr "Sambung dan Tetingkap?"
-#: printer/printerdrake.pm:1449
-#, c-format
+#: printer/printerdrake.pm:1489
+#, fuzzy, c-format
msgid "NetWare Printer Options"
-msgstr ""
+msgstr "Pilihan Pengguna Diketahui"
-#: printer/printerdrake.pm:1450
+#: printer/printerdrake.pm:1490
#, fuzzy, c-format
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
@@ -10597,49 +10652,51 @@ msgid ""
"name and password."
msgstr "Kepada on IP dan pengguna dan."
-#: printer/printerdrake.pm:1451
-#, c-format
+#: printer/printerdrake.pm:1491
+#, fuzzy, c-format
msgid "Printer Server"
-msgstr ""
+msgstr "(%ld)PELAYAN >>> %s"
-#: printer/printerdrake.pm:1452
+#: printer/printerdrake.pm:1492
#, fuzzy, c-format
msgid "Print Queue Name"
-msgstr "Giliran"
+msgstr ""
+"Cetak nama bagi pengguna semasa.\n"
+"\n"
-#: printer/printerdrake.pm:1457
-#, c-format
+#: printer/printerdrake.pm:1497
+#, fuzzy, c-format
msgid "NCP server name missing!"
-msgstr ""
+msgstr "Kehilangan nama fail selepas -C"
-#: printer/printerdrake.pm:1461
-#, c-format
+#: printer/printerdrake.pm:1501
+#, fuzzy, c-format
msgid "NCP queue name missing!"
-msgstr ""
+msgstr "Kehilangan nama fail selepas -C"
-#: printer/printerdrake.pm:1527 printer/printerdrake.pm:1547
-#, c-format
+#: printer/printerdrake.pm:1574 printer/printerdrake.pm:1594
+#, fuzzy, c-format
msgid ", host \"%s\", port %s"
-msgstr ""
+msgstr "nombor port"
-#: printer/printerdrake.pm:1530 printer/printerdrake.pm:1550
+#: printer/printerdrake.pm:1577 printer/printerdrake.pm:1597
#, fuzzy, c-format
msgid "Host \"%s\", port %s"
-msgstr "Hos"
+msgstr "nombor port"
-#: printer/printerdrake.pm:1571
+#: printer/printerdrake.pm:1618
#, c-format
msgid "TCP/Socket Printer Options"
msgstr ""
-#: printer/printerdrake.pm:1573
+#: printer/printerdrake.pm:1620
#, fuzzy, c-format
msgid ""
"Choose one of the auto-detected printers from the list or enter the hostname "
"or IP and the optional port number (default is 9100) in the input fields."
msgstr "IP dan default dalam."
-#: printer/printerdrake.pm:1574
+#: printer/printerdrake.pm:1621
#, fuzzy, c-format
msgid ""
"To print to a TCP or socket printer, you need to provide the host name or IP "
@@ -10648,22 +10705,27 @@ msgid ""
"vary. See the manual of your hardware."
msgstr "Kepada soket IP dan default on."
-#: printer/printerdrake.pm:1578
+#: printer/printerdrake.pm:1625
#, fuzzy, c-format
msgid "Printer host name or IP missing!"
msgstr "IP!"
-#: printer/printerdrake.pm:1601
+#: printer/printerdrake.pm:1648
#, c-format
msgid "Printer host name or IP"
msgstr ""
-#: printer/printerdrake.pm:1649 printer/printerdrake.pm:1651
+#: printer/printerdrake.pm:1704
+#, fuzzy, c-format
+msgid "Refreshing Device URI list..."
+msgstr "IDENT: data tidak betul."
+
+#: printer/printerdrake.pm:1707 printer/printerdrake.pm:1709
#, fuzzy, c-format
msgid "Printer Device URI"
-msgstr "Peranti RAID"
+msgstr "URI '%s' adalah tidak sah"
-#: printer/printerdrake.pm:1650
+#: printer/printerdrake.pm:1708
#, c-format
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
@@ -10671,34 +10733,34 @@ msgid ""
"are supported by all the spoolers."
msgstr ""
-#: printer/printerdrake.pm:1668
+#: printer/printerdrake.pm:1731
#, fuzzy, c-format
msgid "A valid URI must be entered!"
msgstr "A!"
-#: printer/printerdrake.pm:1749
-#, c-format
+#: printer/printerdrake.pm:1834
+#, fuzzy, c-format
msgid "Pipe into command"
-msgstr ""
+msgstr "tiada arahan untuk `%s' (%s%s)"
-#: printer/printerdrake.pm:1750
+#: printer/printerdrake.pm:1835
#, c-format
msgid ""
"Here you can specify any arbitrary command line into which the job should be "
"piped instead of being sent directly to a printer."
msgstr ""
-#: printer/printerdrake.pm:1751
+#: printer/printerdrake.pm:1836
#, fuzzy, c-format
msgid "Command line"
-msgstr "Arahan"
+msgstr "Balut Baris"
-#: printer/printerdrake.pm:1755
+#: printer/printerdrake.pm:1840
#, fuzzy, c-format
msgid "A command line must be entered!"
-msgstr "A!"
+msgstr "arahan mesti diberi dengan satu penyesuaian"
-#: printer/printerdrake.pm:1788
+#: printer/printerdrake.pm:1873
#, c-format
msgid ""
"Is your printer a multi-function device from HP or Sony (OfficeJet, PSC, "
@@ -10706,100 +10768,115 @@ msgid ""
"an HP PhotoSmart or an HP LaserJet 2200?"
msgstr ""
-#: printer/printerdrake.pm:1801
+#: printer/printerdrake.pm:1887
#, c-format
msgid "Installing HPOJ package..."
msgstr ""
-#: printer/printerdrake.pm:1809 printer/printerdrake.pm:1893
+#: printer/printerdrake.pm:1894
+#, c-format
+msgid "Only printing will be possible on the %s."
+msgstr ""
+
+#: printer/printerdrake.pm:1903 printer/printerdrake.pm:2025
#, fuzzy, c-format
msgid "Checking device and configuring HPOJ..."
msgstr "dan."
-#: printer/printerdrake.pm:1831
+#: printer/printerdrake.pm:1946
#, c-format
msgid "Installing SANE packages..."
msgstr ""
-#: printer/printerdrake.pm:1858
+#: printer/printerdrake.pm:1956
+#, c-format
+msgid "Scanning on the %s will not be possible."
+msgstr ""
+
+#: printer/printerdrake.pm:1983
#, c-format
msgid "Installing mtools packages..."
msgstr ""
-#: printer/printerdrake.pm:1873
+#: printer/printerdrake.pm:1990
+#, fuzzy, c-format
+msgid "Photo memory card access on the %s will not be possible."
+msgstr "on"
+
+#: printer/printerdrake.pm:2005
#, fuzzy, c-format
msgid "Scanning on your HP multi-function device"
msgstr "on"
-#: printer/printerdrake.pm:1881
+#: printer/printerdrake.pm:2013
#, fuzzy, c-format
msgid "Photo memory card access on your HP multi-function device"
msgstr "on"
-#: printer/printerdrake.pm:1930
+#: printer/printerdrake.pm:2062
#, c-format
msgid "Making printer port available for CUPS..."
msgstr ""
-#: printer/printerdrake.pm:1939 printer/printerdrake.pm:2183
-#: printer/printerdrake.pm:2327
+#: printer/printerdrake.pm:2071 printer/printerdrake.pm:2315
+#: printer/printerdrake.pm:2459
#, fuzzy, c-format
msgid "Reading printer database..."
-msgstr "Membaca."
+msgstr "dihantar kepada pencetak `%s'"
-#: printer/printerdrake.pm:2149
+#: printer/printerdrake.pm:2281
#, fuzzy, c-format
msgid "Enter Printer Name and Comments"
msgstr "Enter Nama dan"
-#: printer/printerdrake.pm:2153 printer/printerdrake.pm:3241
+#: printer/printerdrake.pm:2285 printer/printerdrake.pm:3421
#, fuzzy, c-format
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr "Nama dan"
-#: printer/printerdrake.pm:2159 printer/printerdrake.pm:3246
+#: printer/printerdrake.pm:2291 printer/printerdrake.pm:3426
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
-#: printer/printerdrake.pm:2168
+#: printer/printerdrake.pm:2300
#, fuzzy, c-format
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
msgstr "Huraian dan Lokasi dalam."
-#: printer/printerdrake.pm:2169
+#: printer/printerdrake.pm:2301
#, fuzzy, c-format
msgid "Name of printer"
-msgstr "Nama"
+msgstr "Pencetak Tidak Diketahui"
-#: printer/printerdrake.pm:2170 standalone/drakconnect:521
+#: printer/printerdrake.pm:2302 standalone/drakconnect:557
#: standalone/harddrake2:40 standalone/printerdrake:212
#: standalone/printerdrake:219
-#, fuzzy, c-format
+#, c-format
msgid "Description"
msgstr "Huraian"
-#: printer/printerdrake.pm:2171 standalone/printerdrake:212
+#: printer/printerdrake.pm:2303 standalone/printerdrake:212
#: standalone/printerdrake:219
-#, fuzzy, c-format
+#, c-format
msgid "Location"
msgstr "Lokasi"
-#: printer/printerdrake.pm:2188
-#, c-format
+#: printer/printerdrake.pm:2320
+#, fuzzy, c-format
msgid "Preparing printer database..."
-msgstr ""
+msgstr "dihantar kepada pencetak `%s'"
-#: printer/printerdrake.pm:2306
-#, c-format
+#: printer/printerdrake.pm:2438
+#, fuzzy, c-format
msgid "Your printer model"
-msgstr ""
+msgstr "dihantar kepada pencetak `%s'"
-#: printer/printerdrake.pm:2307
+#: printer/printerdrake.pm:2439
#, fuzzy, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -10814,18 +10891,18 @@ msgid ""
"%s"
msgstr "dalam dalam dan dan secara manual secara manual on"
-#: printer/printerdrake.pm:2312 printer/printerdrake.pm:2315
-#, c-format
+#: printer/printerdrake.pm:2444 printer/printerdrake.pm:2447
+#, fuzzy, c-format
msgid "The model is correct"
-msgstr ""
+msgstr "URI '%s' adalah tidak sah"
-#: printer/printerdrake.pm:2313 printer/printerdrake.pm:2314
-#: printer/printerdrake.pm:2317
-#, c-format
+#: printer/printerdrake.pm:2445 printer/printerdrake.pm:2446
+#: printer/printerdrake.pm:2449
+#, fuzzy, c-format
msgid "Select model manually"
-msgstr ""
+msgstr "Pilih pada fokus"
-#: printer/printerdrake.pm:2340
+#: printer/printerdrake.pm:2472
#, fuzzy, c-format
msgid ""
"\n"
@@ -10835,38 +10912,38 @@ msgid ""
"\"Raw printer\" is highlighted."
msgstr "Cari dalam."
-#: printer/printerdrake.pm:2359
+#: printer/printerdrake.pm:2491
#, c-format
msgid "Install a manufacturer-supplied PPD file"
msgstr ""
-#: printer/printerdrake.pm:2390
+#: printer/printerdrake.pm:2522
#, c-format
msgid ""
"Every PostScript printer is delivered with a PPD file which describes the "
"printer's options and features."
msgstr ""
-#: printer/printerdrake.pm:2391
+#: printer/printerdrake.pm:2523
#, c-format
msgid ""
"This file is usually somewhere on the CD with the Windows and Mac drivers "
"delivered with the printer."
msgstr ""
-#: printer/printerdrake.pm:2392
+#: printer/printerdrake.pm:2524
#, c-format
msgid "You can find the PPD files also on the manufacturer's web sites."
msgstr ""
-#: printer/printerdrake.pm:2393
+#: printer/printerdrake.pm:2525
#, c-format
msgid ""
"If you have Windows installed on your machine, you can find the PPD file on "
"your Windows partition, too."
msgstr ""
-#: printer/printerdrake.pm:2394
+#: printer/printerdrake.pm:2526
#, c-format
msgid ""
"Installing the printer's PPD file and using it when setting up the printer "
@@ -10874,65 +10951,65 @@ msgid ""
"printer's hardware"
msgstr ""
-#: printer/printerdrake.pm:2395
+#: printer/printerdrake.pm:2527
#, c-format
msgid ""
"Here you can choose the PPD file to be installed on your machine, it will "
"then be used for the setup of your printer."
msgstr ""
-#: printer/printerdrake.pm:2397
+#: printer/printerdrake.pm:2529
#, fuzzy, c-format
msgid "Install PPD file from"
-msgstr "Install"
+msgstr "Fail untuk dimasukkan [daripada %s] "
-#: printer/printerdrake.pm:2399 printer/printerdrake.pm:2406
-#: standalone/scannerdrake:174 standalone/scannerdrake:182
-#: standalone/scannerdrake:233 standalone/scannerdrake:240
-#, fuzzy, c-format
+#: printer/printerdrake.pm:2531 printer/printerdrake.pm:2538
+#: standalone/scannerdrake:180 standalone/scannerdrake:188
+#: standalone/scannerdrake:239 standalone/scannerdrake:246
+#, c-format
msgid "CD-ROM"
-msgstr "pada CDROM"
+msgstr "CD-ROM"
-#: printer/printerdrake.pm:2400 printer/printerdrake.pm:2408
-#: standalone/scannerdrake:175 standalone/scannerdrake:184
-#: standalone/scannerdrake:234 standalone/scannerdrake:242
+#: printer/printerdrake.pm:2532 printer/printerdrake.pm:2540
+#: standalone/scannerdrake:181 standalone/scannerdrake:190
+#: standalone/scannerdrake:240 standalone/scannerdrake:248
#, c-format
msgid "Floppy Disk"
msgstr ""
-#: printer/printerdrake.pm:2401 printer/printerdrake.pm:2410
-#: standalone/scannerdrake:176 standalone/scannerdrake:186
-#: standalone/scannerdrake:235 standalone/scannerdrake:244
+#: printer/printerdrake.pm:2533 printer/printerdrake.pm:2542
+#: standalone/scannerdrake:182 standalone/scannerdrake:192
+#: standalone/scannerdrake:241 standalone/scannerdrake:250
#, fuzzy, c-format
msgid "Other place"
-msgstr "Liang Lain"
+msgstr "Cari lain-lain tanda kurungan"
-#: printer/printerdrake.pm:2416
+#: printer/printerdrake.pm:2548
#, fuzzy, c-format
msgid "Select PPD file"
-msgstr "Padam"
+msgstr "Pilih fail untuk disimpan"
-#: printer/printerdrake.pm:2420
+#: printer/printerdrake.pm:2552
#, c-format
msgid "The PPD file %s does not exist or is unreadable!"
msgstr ""
-#: printer/printerdrake.pm:2426
+#: printer/printerdrake.pm:2558
#, c-format
msgid "The PPD file %s does not conform with the PPD specifications!"
msgstr ""
-#: printer/printerdrake.pm:2437
+#: printer/printerdrake.pm:2569
#, fuzzy, c-format
msgid "Installing PPD file..."
-msgstr "Tema!"
+msgstr "Ralat membaca fail '%s': %s"
-#: printer/printerdrake.pm:2539
-#, c-format
+#: printer/printerdrake.pm:2682
+#, fuzzy, c-format
msgid "OKI winprinter configuration"
-msgstr ""
+msgstr "Membaca fail konfigurasi sistem %s..."
-#: printer/printerdrake.pm:2540
+#: printer/printerdrake.pm:2683
#, fuzzy, c-format
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
@@ -10943,12 +11020,12 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr "dan."
-#: printer/printerdrake.pm:2564 printer/printerdrake.pm:2593
-#, c-format
+#: printer/printerdrake.pm:2707 printer/printerdrake.pm:2736
+#, fuzzy, c-format
msgid "Lexmark inkjet configuration"
-msgstr ""
+msgstr "Membaca fail konfigurasi sistem %s..."
-#: printer/printerdrake.pm:2565
+#: printer/printerdrake.pm:2708
#, fuzzy, c-format
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
@@ -10957,7 +11034,7 @@ msgid ""
"to."
msgstr "lokal tidak on lokal on."
-#: printer/printerdrake.pm:2594
+#: printer/printerdrake.pm:2737
#, fuzzy, c-format
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
@@ -10970,12 +11047,26 @@ msgid ""
"adjust the head alignment settings with this program."
msgstr "Kepada danhttp://www.lexmark.com/ on dan Batal dan."
-#: printer/printerdrake.pm:2597
+#: printer/printerdrake.pm:2746
+#, fuzzy, c-format
+msgid "Lexmark X125 configuration"
+msgstr "Membaca fail konfigurasi sistem %s..."
+
+#: printer/printerdrake.pm:2747
+#, fuzzy, c-format
+msgid ""
+"The driver for this printer only supports printers locally connected via "
+"USB, no printers on remote machines or print server boxes. Please connect "
+"your printer to a local USB port or configure it on the machine where it is "
+"connected to."
+msgstr "lokal tidak on lokal on."
+
+#: printer/printerdrake.pm:2765
#, c-format
msgid "Firmware-Upload for HP LaserJet 1000"
msgstr ""
-#: printer/printerdrake.pm:2710
+#: printer/printerdrake.pm:2878
#, fuzzy, c-format
msgid ""
"Printer default settings\n"
@@ -10986,39 +11077,39 @@ msgid ""
"printout quality/resolution printing can get substantially slower."
msgstr "default dan dan."
-#: printer/printerdrake.pm:2835
+#: printer/printerdrake.pm:3003
#, fuzzy, c-format
msgid "Printer default settings"
-msgstr "default"
+msgstr "dihantar kepada pencetak default"
-#: printer/printerdrake.pm:2842
-#, c-format
+#: printer/printerdrake.pm:3010
+#, fuzzy, c-format
msgid "Option %s must be an integer number!"
-msgstr ""
+msgstr "%s mesti diikuti dengan nombor positif"
-#: printer/printerdrake.pm:2846
-#, c-format
+#: printer/printerdrake.pm:3014
+#, fuzzy, c-format
msgid "Option %s must be a number!"
-msgstr ""
+msgstr "%s mesti diikuti dengan nombor positif"
-#: printer/printerdrake.pm:2850
+#: printer/printerdrake.pm:3018
#, fuzzy, c-format
msgid "Option %s out of range!"
-msgstr "keluar!"
+msgstr "integer diluar julat: %s"
-#: printer/printerdrake.pm:2901
+#: printer/printerdrake.pm:3069
#, fuzzy, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
"as the default printer?"
msgstr "default?"
-#: printer/printerdrake.pm:2916
+#: printer/printerdrake.pm:3084
#, fuzzy, c-format
msgid "Test pages"
-msgstr "Ujian"
+msgstr "Laman maya:\n"
-#: printer/printerdrake.pm:2917
+#: printer/printerdrake.pm:3085
#, fuzzy, c-format
msgid ""
"Please select the test pages you want to print.\n"
@@ -11027,47 +11118,57 @@ msgid ""
"it is enough to print the standard test page."
msgstr "dan on keluar Masuk."
-#: printer/printerdrake.pm:2921
+#: printer/printerdrake.pm:3089
#, fuzzy, c-format
msgid "No test pages"
-msgstr "Tidak"
+msgstr "[%s (%s): %d halaman pada 1 helaian]\n"
-#: printer/printerdrake.pm:2922
+#: printer/printerdrake.pm:3090
#, c-format
msgid "Print"
-msgstr ""
+msgstr "Cetak"
-#: printer/printerdrake.pm:2947
-#, c-format
+#: printer/printerdrake.pm:3115
+#, fuzzy, c-format
msgid "Standard test page"
-msgstr ""
+msgstr "senarai-tab-halaman"
-#: printer/printerdrake.pm:2950
+#: printer/printerdrake.pm:3118
#, c-format
msgid "Alternative test page (Letter)"
msgstr ""
-#: printer/printerdrake.pm:2953
+#: printer/printerdrake.pm:3121
#, fuzzy, c-format
msgid "Alternative test page (A4)"
msgstr "A4"
-#: printer/printerdrake.pm:2955
-#, c-format
+#: printer/printerdrake.pm:3123
+#, fuzzy, c-format
msgid "Photo test page"
-msgstr ""
+msgstr "senarai-tab-halaman"
-#: printer/printerdrake.pm:2959
+#: printer/printerdrake.pm:3127
#, c-format
msgid "Do not print any test page"
msgstr ""
-#: printer/printerdrake.pm:2967 printer/printerdrake.pm:3123
+#: printer/printerdrake.pm:3135 printer/printerdrake.pm:3300
#, fuzzy, c-format
msgid "Printing test page(s)..."
-msgstr "Cetakan."
+msgstr "senarai-tab-halaman"
-#: printer/printerdrake.pm:2992
+#: printer/printerdrake.pm:3150
+#, c-format
+msgid "Could not install the %s package!"
+msgstr ""
+
+#: printer/printerdrake.pm:3152
+#, fuzzy, c-format
+msgid "Skipping photo test page."
+msgstr "senarai-tab-halaman"
+
+#: printer/printerdrake.pm:3169
#, fuzzy, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -11077,24 +11178,24 @@ msgid ""
"\n"
msgstr "Ujian"
-#: printer/printerdrake.pm:2996
+#: printer/printerdrake.pm:3173
#, fuzzy, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
msgstr "Ujian"
-#: printer/printerdrake.pm:3003
+#: printer/printerdrake.pm:3180
#, c-format
msgid "Did it work properly?"
msgstr ""
-#: printer/printerdrake.pm:3024 printer/printerdrake.pm:4192
-#, c-format
+#: printer/printerdrake.pm:3201 printer/printerdrake.pm:4397
+#, fuzzy, c-format
msgid "Raw printer"
-msgstr ""
+msgstr "Pencetak Tidak Diketahui"
-#: printer/printerdrake.pm:3054
+#: printer/printerdrake.pm:3231
#, fuzzy, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -11103,7 +11204,7 @@ msgid ""
"to modify the option settings easily.\n"
msgstr "Kepada fail<file><file><file> dan"
-#: printer/printerdrake.pm:3056
+#: printer/printerdrake.pm:3233
#, fuzzy, c-format
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
@@ -11111,8 +11212,8 @@ msgid ""
"because the file to print is provided by the application.\n"
msgstr "dalam Cetakan fail fail"
-#: printer/printerdrake.pm:3059 printer/printerdrake.pm:3076
-#: printer/printerdrake.pm:3086
+#: printer/printerdrake.pm:3236 printer/printerdrake.pm:3253
+#: printer/printerdrake.pm:3263
#, c-format
msgid ""
"\n"
@@ -11121,7 +11222,7 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: printer/printerdrake.pm:3062 printer/printerdrake.pm:3102
+#: printer/printerdrake.pm:3239 printer/printerdrake.pm:3279
#, fuzzy, c-format
msgid ""
"To know about the options available for the current printer read either the "
@@ -11129,22 +11230,22 @@ msgid ""
"\n"
msgstr "Kepada on"
-#: printer/printerdrake.pm:3066
+#: printer/printerdrake.pm:3243
#, c-format
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: printer/printerdrake.pm:3071 printer/printerdrake.pm:3081
+#: printer/printerdrake.pm:3248 printer/printerdrake.pm:3258
#, fuzzy, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr "Kepada fail<file>"
-#: printer/printerdrake.pm:3073 printer/printerdrake.pm:3083
-#: printer/printerdrake.pm:3093
+#: printer/printerdrake.pm:3250 printer/printerdrake.pm:3260
+#: printer/printerdrake.pm:3270
#, fuzzy, c-format
msgid ""
"This command you can also use in the \"Printing command\" field of the "
@@ -11152,21 +11253,21 @@ msgid ""
"because the file to print is provided by the application.\n"
msgstr "dalam Cetakan fail fail"
-#: printer/printerdrake.pm:3078 printer/printerdrake.pm:3088
+#: printer/printerdrake.pm:3255 printer/printerdrake.pm:3265
#, fuzzy, c-format
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr "Kepada on."
-#: printer/printerdrake.pm:3091
+#: printer/printerdrake.pm:3268
#, fuzzy, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr "Kepada fail<file><file>"
-#: printer/printerdrake.pm:3095
+#: printer/printerdrake.pm:3272
#, fuzzy, c-format
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
@@ -11177,7 +11278,7 @@ msgid ""
"jams.\n"
msgstr "dan KDE on"
-#: printer/printerdrake.pm:3099
+#: printer/printerdrake.pm:3276
#, fuzzy, c-format
msgid ""
"\n"
@@ -11186,42 +11287,42 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr "dan<file>"
-#: printer/printerdrake.pm:3109
+#: printer/printerdrake.pm:3286
#, fuzzy, c-format
msgid "Printing/Scanning/Photo Cards on \"%s\""
msgstr "Cetakan Kad on"
-#: printer/printerdrake.pm:3110
+#: printer/printerdrake.pm:3287
#, fuzzy, c-format
msgid "Printing/Scanning on \"%s\""
-msgstr "Cetakan on"
+msgstr "Ralat pada baris %d: %s"
-#: printer/printerdrake.pm:3112
+#: printer/printerdrake.pm:3289
#, fuzzy, c-format
msgid "Printing/Photo Card Access on \"%s\""
msgstr "Cetakan on"
-#: printer/printerdrake.pm:3113
+#: printer/printerdrake.pm:3290
#, fuzzy, c-format
msgid "Printing on the printer \"%s\""
-msgstr "Cetakan on"
+msgstr "dihantar kepada pencetak `%s'"
-#: printer/printerdrake.pm:3116 printer/printerdrake.pm:3119
-#: printer/printerdrake.pm:3120 printer/printerdrake.pm:3121
-#: printer/printerdrake.pm:4179 standalone/drakTermServ:321
-#: standalone/drakbackup:4583 standalone/drakbug:177 standalone/drakfont:497
-#: standalone/drakfont:588 standalone/net_monitor:106
+#: printer/printerdrake.pm:3293 printer/printerdrake.pm:3296
+#: printer/printerdrake.pm:3297 printer/printerdrake.pm:3298
+#: printer/printerdrake.pm:4384 standalone/drakTermServ:324
+#: standalone/drakbackup:4265 standalone/drakbug:177 standalone/drakfont:500
+#: standalone/drakfont:591 standalone/net_monitor:106
#: standalone/printerdrake:508
-#, fuzzy, c-format
+#, c-format
msgid "Close"
msgstr "Tutup"
-#: printer/printerdrake.pm:3119
-#, c-format
+#: printer/printerdrake.pm:3296
+#, fuzzy, c-format
msgid "Print option list"
-msgstr ""
+msgstr "senarai-tab-halaman"
-#: printer/printerdrake.pm:3140
+#: printer/printerdrake.pm:3317
#, fuzzy, c-format
msgid ""
"Your multi-function device was configured automatically to be able to scan. "
@@ -11235,7 +11336,7 @@ msgid ""
"Do not use \"scannerdrake\" for this device!"
msgstr "dalam Fail on!"
-#: printer/printerdrake.pm:3163
+#: printer/printerdrake.pm:3343
#, fuzzy, c-format
msgid ""
"Your printer was configured automatically to give you access to the photo "
@@ -11249,18 +11350,18 @@ msgid ""
"of the file lists."
msgstr "Aplikasi Fail Fail on fail Masuk fail."
-#: printer/printerdrake.pm:3185 printer/printerdrake.pm:3575
+#: printer/printerdrake.pm:3365 printer/printerdrake.pm:3767
#, fuzzy, c-format
msgid "Reading printer data..."
-msgstr "Membaca."
+msgstr "IDENT: data tidak betul."
-#: printer/printerdrake.pm:3205 printer/printerdrake.pm:3232
-#: printer/printerdrake.pm:3267
-#, c-format
+#: printer/printerdrake.pm:3385 printer/printerdrake.pm:3412
+#: printer/printerdrake.pm:3447
+#, fuzzy, c-format
msgid "Transfer printer configuration"
-msgstr ""
+msgstr "dihantar kepada pencetak `%s'"
-#: printer/printerdrake.pm:3206
+#: printer/printerdrake.pm:3386
#, fuzzy, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -11270,33 +11371,33 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr "siap Semua dan default"
-#: printer/printerdrake.pm:3209
+#: printer/printerdrake.pm:3389
#, fuzzy, c-format
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr "on"
-#: printer/printerdrake.pm:3211
+#: printer/printerdrake.pm:3391
#, fuzzy, c-format
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr "lokal dan"
-#: printer/printerdrake.pm:3213
+#: printer/printerdrake.pm:3393
#, fuzzy, c-format
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr "dan"
-#: printer/printerdrake.pm:3215
+#: printer/printerdrake.pm:3395
#, fuzzy, c-format
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr "Masuk."
-#: printer/printerdrake.pm:3216
+#: printer/printerdrake.pm:3396
#, fuzzy, c-format
msgid ""
"\n"
@@ -11304,7 +11405,7 @@ msgid ""
"or with native CUPS drivers cannot be transferred."
msgstr "fail."
-#: printer/printerdrake.pm:3217
+#: printer/printerdrake.pm:3397
#, fuzzy, c-format
msgid ""
"\n"
@@ -11312,17 +11413,17 @@ msgid ""
"\"Transfer\"."
msgstr "dan."
-#: printer/printerdrake.pm:3220
-#, c-format
+#: printer/printerdrake.pm:3400
+#, fuzzy, c-format
msgid "Do not transfer printers"
-msgstr ""
+msgstr "-s --suppress-common-lines Jangan keluarkan baris sama."
-#: printer/printerdrake.pm:3221 printer/printerdrake.pm:3237
+#: printer/printerdrake.pm:3401 printer/printerdrake.pm:3417
#, c-format
msgid "Transfer"
msgstr ""
-#: printer/printerdrake.pm:3233
+#: printer/printerdrake.pm:3413
#, fuzzy, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -11330,45 +11431,45 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr "A."
-#: printer/printerdrake.pm:3254
+#: printer/printerdrake.pm:3434
#, fuzzy, c-format
msgid "New printer name"
-msgstr "Baru"
+msgstr "Nama warna latarbelakang"
-#: printer/printerdrake.pm:3257
-#, c-format
+#: printer/printerdrake.pm:3437
+#, fuzzy, c-format
msgid "Transferring %s..."
-msgstr ""
+msgstr "Memindahkan mesej..."
-#: printer/printerdrake.pm:3268
+#: printer/printerdrake.pm:3448
#, fuzzy, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
"the default printer under the new printing system %s?"
msgstr "default default?"
-#: printer/printerdrake.pm:3278
-#, c-format
+#: printer/printerdrake.pm:3458
+#, fuzzy, c-format
msgid "Refreshing printer data..."
-msgstr ""
+msgstr "IDENT: data tidak betul."
-#: printer/printerdrake.pm:3287
-#, c-format
+#: printer/printerdrake.pm:3467
+#, fuzzy, c-format
msgid "Starting network..."
-msgstr ""
+msgstr "Rangkaian tidak dapat dicapai."
-#: printer/printerdrake.pm:3328 printer/printerdrake.pm:3332
-#: printer/printerdrake.pm:3334
-#, c-format
+#: printer/printerdrake.pm:3508 printer/printerdrake.pm:3512
+#: printer/printerdrake.pm:3514
+#, fuzzy, c-format
msgid "Configure the network now"
-msgstr ""
+msgstr "current->data sekarang = \"%s\"\n"
-#: printer/printerdrake.pm:3329
+#: printer/printerdrake.pm:3509
#, fuzzy, c-format
msgid "Network functionality not configured"
msgstr "Rangkaian"
-#: printer/printerdrake.pm:3330
+#: printer/printerdrake.pm:3510
#, fuzzy, c-format
msgid ""
"You are going to configure a remote printer. This needs working network "
@@ -11377,22 +11478,22 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr "on?"
-#: printer/printerdrake.pm:3333
+#: printer/printerdrake.pm:3513
#, fuzzy, c-format
msgid "Go on without configuring the network"
msgstr "Pergi ke on"
-#: printer/printerdrake.pm:3367
+#: printer/printerdrake.pm:3547
#, fuzzy, c-format
msgid ""
"The network configuration done during the installation cannot be started "
-"now. Please check whether the network is accessable after booting your "
+"now. Please check whether the network is accessible after booting your "
"system and correct the configuration using the %s Control Center, section "
"\"Network & Internet\"/\"Connection\", and afterwards set up the printer, "
"also using the %s Control Center, section \"Hardware\"/\"Printer\""
msgstr "siap dan Rangkaian Internet dan Perkakasan"
-#: printer/printerdrake.pm:3368
+#: printer/printerdrake.pm:3548
#, fuzzy, c-format
msgid ""
"The network access was not running and could not be started. Please check "
@@ -11400,34 +11501,34 @@ msgid ""
"printer again."
msgstr "dan dan."
-#: printer/printerdrake.pm:3378
-#, c-format
+#: printer/printerdrake.pm:3558
+#, fuzzy, c-format
msgid "Restarting printing system..."
-msgstr ""
+msgstr "Ralat sistem yang tidak diketahui"
-#: printer/printerdrake.pm:3417
+#: printer/printerdrake.pm:3597
#, c-format
msgid "high"
msgstr ""
-#: printer/printerdrake.pm:3417
+#: printer/printerdrake.pm:3597
#, c-format
msgid "paranoid"
msgstr ""
-#: printer/printerdrake.pm:3418
+#: printer/printerdrake.pm:3598
#, fuzzy, c-format
msgid "Installing a printing system in the %s security level"
msgstr "dalam"
-#: printer/printerdrake.pm:3419
+#: printer/printerdrake.pm:3599
#, fuzzy, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
"s security level.\n"
"\n"
"This printing system runs a daemon (background process) which waits for "
-"print jobs and handles them. This daemon is also accessable by remote "
+"print jobs and handles them. This daemon is also accessible by remote "
"machines through the network and so it is a possible point for attacks. "
"Therefore only a few selected daemons are started by default in this "
"security level.\n"
@@ -11435,12 +11536,12 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr "on dalam dan dan default dalam on?"
-#: printer/printerdrake.pm:3453
+#: printer/printerdrake.pm:3633
#, c-format
msgid "Starting the printing system at boot time"
msgstr ""
-#: printer/printerdrake.pm:3454
+#: printer/printerdrake.pm:3634
#, fuzzy, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -11454,47 +11555,67 @@ msgid ""
"again?"
msgstr "off on?"
-#: printer/printerdrake.pm:3475 printer/printerdrake.pm:3690
-#, c-format
+#: printer/printerdrake.pm:3655 printer/printerdrake.pm:3889
+#, fuzzy, c-format
msgid "Checking installed software..."
-msgstr ""
+msgstr "The Free Software Foundation"
-#: printer/printerdrake.pm:3481
-#, c-format
+#: printer/printerdrake.pm:3661
+#, fuzzy, c-format
msgid "Removing %s ..."
-msgstr ""
+msgstr "%s: membuang"
-#: printer/printerdrake.pm:3488
+#: printer/printerdrake.pm:3665
+#, fuzzy, c-format
+msgid "Could not remove the %s printing system!"
+msgstr "Ralat sistem yang tidak diketahui"
+
+#: printer/printerdrake.pm:3674
#, c-format
msgid "Installing %s ..."
msgstr ""
-#: printer/printerdrake.pm:3535
+#: printer/printerdrake.pm:3678
+#, fuzzy, c-format
+msgid "Could not install the %s printing system!"
+msgstr "Ralat sistem yang tidak diketahui"
+
+#: printer/printerdrake.pm:3727
#, fuzzy, c-format
msgid "Setting Default Printer..."
-msgstr "Default."
+msgstr "dihantar kepada pencetak default"
-#: printer/printerdrake.pm:3555
-#, c-format
+#: printer/printerdrake.pm:3747
+#, fuzzy, c-format
msgid "Select Printer Spooler"
-msgstr ""
+msgstr "dihantar kepada pencetak `%s'"
-#: printer/printerdrake.pm:3556
+#: printer/printerdrake.pm:3748
#, c-format
msgid "Which printing system (spooler) do you want to use?"
msgstr ""
-#: printer/printerdrake.pm:3607
+#: printer/printerdrake.pm:3799
#, fuzzy, c-format
msgid "Failed to configure printer \"%s\"!"
-msgstr "Gagal!"
+msgstr "dihantar kepada pencetak default"
-#: printer/printerdrake.pm:3620
+#: printer/printerdrake.pm:3812
#, c-format
msgid "Installing Foomatic..."
msgstr ""
-#: printer/printerdrake.pm:3806
+#: printer/printerdrake.pm:3818
+#, c-format
+msgid "Could not install %s packages, %s cannot be started!"
+msgstr ""
+
+#: printer/printerdrake.pm:3910
+#, c-format
+msgid "Could not install necessary packages, %s cannot be started!"
+msgstr ""
+
+#: printer/printerdrake.pm:4011
#, fuzzy, c-format
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -11502,164 +11623,164 @@ msgid ""
"it. "
msgstr "on default."
-#: printer/printerdrake.pm:3834
+#: printer/printerdrake.pm:4039
#, fuzzy, c-format
msgid "Display all available remote CUPS printers"
msgstr "Paparan"
-#: printer/printerdrake.pm:3835
+#: printer/printerdrake.pm:4040
#, fuzzy, c-format
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr "Segarkan"
-#: printer/printerdrake.pm:3845
-#, c-format
+#: printer/printerdrake.pm:4050
+#, fuzzy, c-format
msgid "CUPS configuration"
-msgstr ""
+msgstr "Status konfigurasi bagi %s %s\n"
-#: printer/printerdrake.pm:3857
+#: printer/printerdrake.pm:4062
#, fuzzy, c-format
msgid "Change the printing system"
-msgstr "Ubah"
+msgstr "Ralat sistem yang tidak diketahui"
-#: printer/printerdrake.pm:3866
-#, c-format
+#: printer/printerdrake.pm:4071
+#, fuzzy, c-format
msgid "Normal Mode"
-msgstr ""
+msgstr "Mod aktiviti"
-#: printer/printerdrake.pm:3867
-#, c-format
+#: printer/printerdrake.pm:4072
+#, fuzzy, c-format
msgid "Expert Mode"
-msgstr ""
+msgstr "Mod aktiviti"
-#: printer/printerdrake.pm:4138 printer/printerdrake.pm:4193
-#: printer/printerdrake.pm:4274 printer/printerdrake.pm:4284
-#, c-format
+#: printer/printerdrake.pm:4343 printer/printerdrake.pm:4398
+#: printer/printerdrake.pm:4479 printer/printerdrake.pm:4489
+#, fuzzy, c-format
msgid "Printer options"
-msgstr ""
+msgstr "Opsyen mengufuk"
-#: printer/printerdrake.pm:4174
-#, c-format
+#: printer/printerdrake.pm:4379
+#, fuzzy, c-format
msgid "Modify printer configuration"
-msgstr ""
+msgstr "dihantar kepada pencetak `%s'"
-#: printer/printerdrake.pm:4176
+#: printer/printerdrake.pm:4381
#, fuzzy, c-format
msgid ""
"Printer %s\n"
"What do you want to modify on this printer?"
msgstr "on?"
-#: printer/printerdrake.pm:4180
-#, c-format
+#: printer/printerdrake.pm:4385
+#, fuzzy, c-format
msgid "Do it!"
-msgstr ""
+msgstr " --help Sangat jelas..."
-#: printer/printerdrake.pm:4185 printer/printerdrake.pm:4243
-#, c-format
+#: printer/printerdrake.pm:4390 printer/printerdrake.pm:4448
+#, fuzzy, c-format
msgid "Printer connection type"
-msgstr ""
+msgstr "Jenis pek tab"
-#: printer/printerdrake.pm:4186 printer/printerdrake.pm:4247
+#: printer/printerdrake.pm:4391 printer/printerdrake.pm:4452
#, c-format
msgid "Printer name, description, location"
msgstr ""
-#: printer/printerdrake.pm:4188 printer/printerdrake.pm:4266
+#: printer/printerdrake.pm:4393 printer/printerdrake.pm:4471
#, c-format
msgid "Printer manufacturer, model, driver"
msgstr ""
-#: printer/printerdrake.pm:4189 printer/printerdrake.pm:4267
-#, c-format
+#: printer/printerdrake.pm:4394 printer/printerdrake.pm:4472
+#, fuzzy, c-format
msgid "Printer manufacturer, model"
-msgstr ""
+msgstr "dihantar kepada pencetak `%s'"
-#: printer/printerdrake.pm:4195 printer/printerdrake.pm:4278
+#: printer/printerdrake.pm:4400 printer/printerdrake.pm:4483
#, c-format
msgid "Set this printer as the default"
msgstr ""
-#: printer/printerdrake.pm:4197 printer/printerdrake.pm:4285
+#: printer/printerdrake.pm:4402 printer/printerdrake.pm:4490
#, fuzzy, c-format
msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
msgstr "Tambah Pejabat"
-#: printer/printerdrake.pm:4198 printer/printerdrake.pm:4290
+#: printer/printerdrake.pm:4403 printer/printerdrake.pm:4495
#, fuzzy, c-format
msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
msgstr "Buang Pejabat"
-#: printer/printerdrake.pm:4199 printer/printerdrake.pm:4295
-#, c-format
+#: printer/printerdrake.pm:4404 printer/printerdrake.pm:4500
+#, fuzzy, c-format
msgid "Print test pages"
-msgstr ""
+msgstr "[%s (%s): %d halaman pada 1 helaian]\n"
-#: printer/printerdrake.pm:4200 printer/printerdrake.pm:4297
+#: printer/printerdrake.pm:4405 printer/printerdrake.pm:4502
#, c-format
msgid "Learn how to use this printer"
msgstr ""
-#: printer/printerdrake.pm:4201 printer/printerdrake.pm:4299
+#: printer/printerdrake.pm:4406 printer/printerdrake.pm:4504
#, fuzzy, c-format
msgid "Remove printer"
-msgstr "Buang"
+msgstr "Pencetak Tidak Diketahui"
-#: printer/printerdrake.pm:4255
-#, c-format
+#: printer/printerdrake.pm:4460
+#, fuzzy, c-format
msgid "Removing old printer \"%s\"..."
-msgstr ""
+msgstr "dihantar kepada pencetak `%s'"
-#: printer/printerdrake.pm:4286
+#: printer/printerdrake.pm:4491
#, fuzzy, c-format
msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
msgstr "Pejabat"
-#: printer/printerdrake.pm:4288
+#: printer/printerdrake.pm:4493
#, fuzzy, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
msgstr "Pejabat."
-#: printer/printerdrake.pm:4289
+#: printer/printerdrake.pm:4494
#, fuzzy, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
msgstr "Gagal Pejabat."
-#: printer/printerdrake.pm:4291
+#: printer/printerdrake.pm:4496
#, fuzzy, c-format
msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
msgstr "Pejabat"
-#: printer/printerdrake.pm:4293
+#: printer/printerdrake.pm:4498
#, fuzzy, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
"GIMP."
msgstr "Pejabat."
-#: printer/printerdrake.pm:4294
+#: printer/printerdrake.pm:4499
#, fuzzy, c-format
msgid ""
"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
msgstr "Gagal Pejabat."
-#: printer/printerdrake.pm:4338
+#: printer/printerdrake.pm:4543
#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr ""
-#: printer/printerdrake.pm:4342
-#, c-format
+#: printer/printerdrake.pm:4547
+#, fuzzy, c-format
msgid "Removing printer \"%s\"..."
-msgstr ""
+msgstr "Pencetak Tidak Diketahui"
-#: printer/printerdrake.pm:4366
+#: printer/printerdrake.pm:4571
#, fuzzy, c-format
msgid "Default printer"
-msgstr "Default"
+msgstr "Pencetak Default"
-#: printer/printerdrake.pm:4367
+#: printer/printerdrake.pm:4572
#, fuzzy, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr "default."
@@ -11675,9 +11796,9 @@ msgid "mkraid failed (maybe raidtools are missing?)"
msgstr ""
#: raid.pm:139
-#, c-format
+#, fuzzy, c-format
msgid "mkraid failed"
-msgstr ""
+msgstr "[%s (%s): gagal. Diabaikan]\n"
#: raid.pm:155
#, fuzzy, c-format
@@ -11689,31 +11810,36 @@ msgstr "RAD"
msgid "Could not create directory /usr/share/sane/firmware!"
msgstr ""
-#: scanner.pm:102
+#: scanner.pm:107
#, c-format
-msgid "Could not copy firmware file %s to /usr/share/sane/firmware!"
+msgid "Could not create link /usr/share/sane/%s!"
msgstr ""
-#: scanner.pm:109
+#: scanner.pm:114
#, c-format
-msgid "Could not set permissions of firmware file %s!"
+msgid "Could not copy firmware file %s to /usr/share/sane/firmware!"
msgstr ""
-#: scanner.pm:188 standalone/scannerdrake:59 standalone/scannerdrake:63
-#: standalone/scannerdrake:71 standalone/scannerdrake:333
-#: standalone/scannerdrake:407 standalone/scannerdrake:451
-#: standalone/scannerdrake:455 standalone/scannerdrake:477
-#: standalone/scannerdrake:542
+#: scanner.pm:121
+#, fuzzy, c-format
+msgid "Could not set permissions of firmware file %s!"
+msgstr "Tidak dapat menetapkan keizinan %o pada salinan %s: %s"
+
+#: 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
#, c-format
msgid "Scannerdrake"
msgstr ""
-#: scanner.pm:189 standalone/scannerdrake:903
+#: scanner.pm:201 standalone/scannerdrake:915
#, c-format
msgid "Could not install the packages needed to share your scanner(s)."
msgstr ""
-#: scanner.pm:190
+#: scanner.pm:202
#, c-format
msgid "Your scanner(s) will not be available for non-root users."
msgstr ""
@@ -11734,9 +11860,9 @@ msgid " Accept/Refuse icmp echo."
msgstr "Terima."
#: security/help.pm:17
-#, c-format
+#, fuzzy, c-format
msgid "Allow/Forbid autologin."
-msgstr ""
+msgstr "%s: pilihan `--%s' tidak mengizinkan hujah\n"
#: security/help.pm:19
#, fuzzy, c-format
@@ -11908,9 +12034,9 @@ msgid ""
msgstr "dan dan."
#: security/help.pm:99
-#, c-format
+#, fuzzy, c-format
msgid "Set the root umask."
-msgstr ""
+msgstr "Set latar belakang sel"
#: security/help.pm:100
#, fuzzy, c-format
@@ -12028,7 +12154,7 @@ msgstr ""
#: security/help.pm:129
#, fuzzy, c-format
msgid "Set the user umask."
-msgstr "pengguna."
+msgstr "pilihan pengguna tidak diketahui `%s'"
#: security/l10n.pm:11
#, fuzzy, c-format
@@ -12043,12 +12169,12 @@ msgstr "Terima"
#: security/l10n.pm:13
#, fuzzy, c-format
msgid "Accept icmp echo"
-msgstr "Terima"
+msgstr "Auto Terima Fail"
#: security/l10n.pm:15
-#, c-format
+#, fuzzy, c-format
msgid "/etc/issue* exist"
-msgstr ""
+msgstr "octal (i.e., `\\001' dsb.)"
#: security/l10n.pm:16
#, c-format
@@ -12061,9 +12187,9 @@ msgid "Allow remote root login"
msgstr ""