summaryrefslogtreecommitdiffstats
path: root/perl-install
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install')
-rw-r--r--perl-install/Xconfigurator.pm3
-rw-r--r--perl-install/any.pm26
-rw-r--r--perl-install/bootloader.pm3
-rw-r--r--perl-install/common.pm2
-rw-r--r--perl-install/detect_devices.pm9
-rw-r--r--perl-install/fs.pm6
-rw-r--r--perl-install/fsedit.pm25
-rw-r--r--perl-install/install2.pm8
-rw-r--r--perl-install/install_any.pm49
-rw-r--r--perl-install/install_interactive.pm50
-rw-r--r--perl-install/install_steps.pm12
-rw-r--r--perl-install/install_steps_auto_install.pm2
-rw-r--r--perl-install/install_steps_interactive.pm122
-rw-r--r--perl-install/loopback.pm25
-rw-r--r--perl-install/modules.pm104
-rw-r--r--perl-install/printerdrake.pm2
16 files changed, 216 insertions, 232 deletions
diff --git a/perl-install/Xconfigurator.pm b/perl-install/Xconfigurator.pm
index 4fd969ef4..5c61322c0 100644
--- a/perl-install/Xconfigurator.pm
+++ b/perl-install/Xconfigurator.pm
@@ -148,8 +148,9 @@ sub keepOnlyLegalModes {
sub cardConfigurationAuto() {
my $card;
- if (my ($c) = (detect_devices::matching_type("DISPLAY"))) {
+ if (my ($c) = detect_devices::probeall()) {
local $_ = $c->{driver};
+ /(Card|Server):/ or next;
$card->{type} = $1 if /Card:(.*)/;
$card->{server} = $1 if /Server:(.*)/;
$card->{flags}{needVideoRam} &&= /86c368/;
diff --git a/perl-install/any.pm b/perl-install/any.pm
index 1c0d9c368..68f7ac515 100644
--- a/perl-install/any.pm
+++ b/perl-install/any.pm
@@ -10,7 +10,9 @@ use vars qw(@users);
use common qw(:common :system :file :functional);
use commands;
use detect_devices;
+use partition_table qw(:types);
use fsedit;
+use fs;
use run_program;
use log;
@@ -253,6 +255,30 @@ sub shells {
grep { -x "$prefix$_" } map { chomp; $_ } cat_("$prefix/etc/shells");
}
+sub inspect {
+ my ($part, $prefix, $rw) = @_;
+
+ isMountableRW($part) or return;
+
+ my $dir = "/tmp/inspect_tmp_dir";
+
+ if ($part->{isMounted}) {
+ $dir = ($prefix || '') . $part->{mntpoint};
+ } elsif ($part->{notFormatted} && !$part->{isFormatted}) {
+ $dir = '';
+ } else {
+ mkdir $dir, 0700;
+ fs::mount($part->{device}, $dir, type2fs($part->{type}), !$rw);
+ }
+ my $h = before_leaving {
+ if (!$part->{isMounted} && $dir) {
+ fs::umount($dir);
+ unlink($dir)
+ }
+ };
+ $h->{dir} = $dir;
+ $h;
+}
1;
diff --git a/perl-install/bootloader.pm b/perl-install/bootloader.pm
index f3fe2cd59..97e3ecd04 100644
--- a/perl-install/bootloader.pm
+++ b/perl-install/bootloader.pm
@@ -10,6 +10,7 @@ use vars qw(%vga_modes);
use common qw(:common :file :functional :system);
use partition_table qw(:types);
use log;
+use any;
use fsedit;
use loopback;
use commands;
@@ -632,7 +633,7 @@ sub install_loadlin {
my ($winpart) = grep { $_->{device_windobe} eq 'C' } @$fstab;
log::l("winpart is $winpart->{device}");
- my $winhandle = loopback::inspect($winpart, $prefix, 'rw');
+ my $winhandle = any::inspect($winpart, $prefix, 'rw');
my $windrive = $winhandle->{dir};
log::l("windrive is $windrive");
diff --git a/perl-install/common.pm b/perl-install/common.pm
index 779cec099..89d41b516 100644
--- a/perl-install/common.pm
+++ b/perl-install/common.pm
@@ -337,7 +337,7 @@ sub list_home() {
}
sub list_skels {
my ($prefix, $suffix) = @_;
- map { "$prefix$_$suffix" } '/etc/skel', '/root', list_home() }
+ map { "$prefix$_/$suffix" } '/etc/skel', '/root', list_home() }
sub translate {
my ($s) = @_;
diff --git a/perl-install/detect_devices.pm b/perl-install/detect_devices.pm
index 5aa50aeeb..54893ade3 100644
--- a/perl-install/detect_devices.pm
+++ b/perl-install/detect_devices.pm
@@ -192,21 +192,12 @@ sub hasNetDevice($) { c::hasNetDevice($_[0]) }
# pci_probing::main::probe with $probe_type is unsafe for pci! (bug in kernel&hardware)
# get_pcmcia_devices provides field "device", used in network.pm
# => probeall with $probe_type is unsafe
-# => matching_type is unsafe
sub probeall {
my ($probe_type, $pcic) = @_;
require pci_probing::main;
require sbus_probing::main;
pci_probing::main::probe($probe_type), sbus_probing::main::probe(), modules::get_pcmcia_devices($pcic);
}
-sub matching_type {
- my ($type, $pcic) = @_;
- grep {
- my $ok = $_->{driver} !~ /(unknown|ignore)/;
- $ok or log::l("skipping $_->{description}, no module available (if you know one, please mail pixel\@linux-mandrake.com)");
- $ok
- } grep { $_->{type} =~ /$type/i } probeall($type, $pcic);
-}
sub matching_desc {
my ($regexp) = @_;
grep { $_->{description} =~ /$regexp/i } probeall();
diff --git a/perl-install/fs.pm b/perl-install/fs.pm
index 3d9628071..c23ee948f 100644
--- a/perl-install/fs.pm
+++ b/perl-install/fs.pm
@@ -60,10 +60,10 @@ sub check_mounted($) {
}
}
-sub get_mntpoints_from_fstab($) {
- my ($fstab) = @_;
+sub get_mntpoints_from_fstab {
+ my ($fstab, $prefix) = @_;
- foreach (read_fstab('/etc/fstab')) {
+ foreach (read_fstab("$prefix/etc/fstab")) {
foreach my $p (@$fstab) {
$p->{device} eq $_->{device} or next;
$p->{mntpoint} ||= $_->{mntpoint};
diff --git a/perl-install/fsedit.pm b/perl-install/fsedit.pm
index edaadab88..813eb37e8 100644
--- a/perl-install/fsedit.pm
+++ b/perl-install/fsedit.pm
@@ -44,12 +44,12 @@ arch() !~ /^sparc/ ? (
) : (),
);
-sub typeOfPart($) { typeFromMagic(devices::make($_[0]), @partitions_signatures) }
+sub typeOfPart { typeFromMagic(devices::make($_[0]), @partitions_signatures) }
#-######################################################################################
#- Functions
#-######################################################################################
-sub hds($$) {
+sub hds {
my ($drives, $flags) = @_;
my @hds;
my $rc;
@@ -98,16 +98,16 @@ sub readProcPartitions {
}
#- get all normal partition including special ones as found on sparc.
-sub get_fstab(@) {
+sub get_fstab {
loopback::loopbacks(@_), map { partition_table::get_normal_parts($_) } @_
}
#- get normal partition that should be visible for working on.
-sub get_visible_fstab(@) {
+sub get_visible_fstab {
grep { $_ && !partition_table::isWholedisk($_) && !partition_table::isHiddenMacPart($_) } map { partition_table::get_normal_parts($_) } @_;
}
-sub free_space(@) {
+sub free_space {
sum map { $_->{size} } map { partition_table::get_holes($_) } @_;
}
@@ -117,7 +117,7 @@ sub hasRAID {
$b;
}
-sub get_root($;$) {
+sub get_root {
my ($fstab, $boot) = @_;
if ($boot) { $_->{mntpoint} eq "/boot" and return $_ foreach @$fstab; }
$_->{mntpoint} eq "/" and return $_ foreach @$fstab;
@@ -134,7 +134,7 @@ sub is_one_big_fat {
}
-sub computeSize($$$$) {
+sub computeSize {
my ($part, $best, $hds, $suggestions) = @_;
my $max = $part->{maxsize} || $part->{size};
return min($max, $best->{size}) unless $best->{ratio};
@@ -170,8 +170,8 @@ sub computeSize($$$$) {
if (grep { $_->{size} < $max - $size } @L) { $size } else { $max }
}
-sub suggest_part($$$;$) {
- my ($hd, $part, $hds, $suggestions) = @_;
+sub suggest_part {
+ my ($part, $hds, $suggestions) = @_;
$suggestions ||= \@suggestions;
@@ -181,7 +181,7 @@ sub suggest_part($$$;$) {
grep { !$_->{maxsize} || $part->{size} <= $_->{maxsize} }
grep { $_->{size} <= ($part->{maxsize} || $part->{size}) }
grep { !has_mntpoint($_->{mntpoint}, $hds) || isSwap($_) && !$has_swap }
- grep { !$_->{hd} || $_->{hd} eq $hd->{device} }
+ grep { !$_->{hd} || $_->{hd} eq $part->{rootDevice} }
grep { !$part->{type} || $part->{type} == $_->{type} || isTrueFS($part) && isTrueFS($_) }
@$suggestions or return;
@@ -199,7 +199,7 @@ sub suggest_part($$$;$) {
1;
}
-sub suggestions_mntpoint($) {
+sub suggestions_mntpoint {
my ($hds) = @_;
sort grep { !/swap/ && !has_mntpoint($_, $hds) }
(@suggestions_mntpoints, map { $_->{mntpoint} } @suggestions);
@@ -291,8 +291,7 @@ sub allocatePartitions($$) {
foreach (partition_table::get_holes($hd)) {
my ($start, $size) = @$_{"start", "size"};
my $part;
- while (suggest_part($hd,
- $part = { start => $start, size => 0, maxsize => $size },
+ while (suggest_part($part = { start => $start, size => 0, maxsize => $size, rootDevice => $hd->{device} },
$hds, $to_add)) {
add($hd, $part, $hds);
$size -= $part->{size} + $part->{start} - $start;
diff --git a/perl-install/install2.pm b/perl-install/install2.pm
index 41824979c..9fa20092c 100644
--- a/perl-install/install2.pm
+++ b/perl-install/install2.pm
@@ -294,8 +294,6 @@ sub selectInstallClass {
#------------------------------------------------------------------------------
sub doPartitionDisks {
- return $o->searchAndMount4Upgrade if $o->{isUpgrade};
-
$o->{steps}{formatPartitions}{done} = 0;
$o->doPartitionDisksBefore;
$o->doPartitionDisks;
@@ -445,10 +443,8 @@ sub addUser {
}
#------------------------------------------------------------------------------
-#-PADTODO
sub createBootdisk {
modules::write_conf($o->{prefix});
-
$o->createBootdisk($_[1] == 1);
}
@@ -662,6 +658,10 @@ sub main {
eval { modules::load("af_packet") };
+ map_index {
+ modules::add_alias("snd-slot-$::i", $_->{driver});
+ } modules::get_that_type('sound');
+
lang::set($o->{lang});
#-the main cycle
diff --git a/perl-install/install_any.pm b/perl-install/install_any.pm
index 25fbdbf79..596f5191a 100644
--- a/perl-install/install_any.pm
+++ b/perl-install/install_any.pm
@@ -535,10 +535,9 @@ sub g_auto_install(;$) {
$_ = { %{$_ || {}} }, delete @$_{qw(oldu oldg password password2)} foreach $o->{superuser}, @{$o->{users} || []};
- local *F;
- open F, ">$f" or log::l("can't output the auto_install script in $f"), return;
- print F "# You should always check the syntax with 'perl -cw auto_inst.cfg.pl' before testing\n";
- print F Data::Dumper->Dump([$o], ['$o']), "\0";
+ output($f,
+ "# You should always check the syntax with 'perl -cw auto_inst.cfg.pl' before testing\n",
+ Data::Dumper->Dump([$o], ['$o']), "\0");
}
sub loadO {
@@ -597,4 +596,46 @@ sub generate_ks_cfg {
$ks;
}
+sub suggest_mount_points {
+ my ($hds, $prefix) = @_;
+ my @parts = grep { isTrueFS($_) } fsedit::get_fstab(@$hds);
+
+ my (%mntpoints, $user);
+
+ my %l = (
+ '/' => 'etc/fstab',
+ '/boot' => 'vmlinuz',
+ '/tmp' => '.X11-unix',
+ '/usr' => 'X11R6',
+ '/var' => 'catman',
+ );
+
+ foreach my $part (@parts) {
+ $part->{mntpoint} and next; #- if already found via an fstab
+
+ my $handle = any::inspect($part, $prefix) or return;
+ my $d = $handle->{dir};
+ my ($mnt) = grep { -e "$d/$l{$_}" } keys %l;
+ $mnt ||= (stat("$d/.bashrc"))[4] ? '/root' : '/home/user' . ++$user if -e "$d/.bashrc";
+
+ $part->{mntpoint} = $mnt;
+
+ # try to find other mount points via fstab
+ fs::get_mntpoints_from_fstab(\@parts, $d) if $mnt eq '/';
+ }
+ $_->{mntpoint} and fsedit::suggest_part($_, $hds) foreach @parts;
+}
+
+#- mainly for finding the root partitions for upgrade
+sub find_root_parts {
+ my ($hds, $prefix) = @_;
+ suggest_mount_points($hds, $prefix);
+ grep { delete($_->{mntpoint}) eq '/' } fsedit::get_fstab(@$hds);
+}
+sub use_root_part {
+ my ($fstab, $part, $prefix) = @_;
+ my $handle = any::inspect($part, $prefix) or die;
+ fs::get_mntpoints_from_fstab($fstab, $handle->{dir});
+}
+
1;
diff --git a/perl-install/install_interactive.pm b/perl-install/install_interactive.pm
index d6eeae823..6e60b8f6f 100644
--- a/perl-install/install_interactive.pm
+++ b/perl-install/install_interactive.pm
@@ -13,6 +13,7 @@ use partition_table qw(:types);
use partition_table_raw;
use detect_devices;
use devices;
+use modules;
sub getHds {
@@ -270,4 +271,53 @@ When you are done, don't forget to save using `w'", partition_table_raw::descrip
%solutions;
}
+#------------------------------------------------------------------------------
+sub load_thiskind {
+ my ($o, $type) = @_;
+ my $w; #- needed to make the wait_message stay alive
+ my $pcmcia = $o->{pcmcia}
+ unless !$::beginner && modules::pcmcia_need_config($o->{pcmcia}) &&
+ !$o->ask_yesorno('', _("Try to find PCMCIA cards?"), 1);
+ $w = $o->wait_message(_("PCMCIA"), _("Configuring PCMCIA cards...")) if modules::pcmcia_need_config($pcmcia);
+
+ modules::load_thiskind($type, $pcmcia, sub { $w = $o->wait_load_module($type, @_) });
+}
+
+#------------------------------------------------------------------------------
+sub setup_thiskind {
+ my ($o, $type, $auto, $at_least_one) = @_;
+
+ return if arch() eq "ppc";
+
+ my @l;
+ my $allow_probe = !$::expert || $o->ask_yesorno('', _("Try to find %s devices?", "PCI" . (arch() =~ /sparc/ && "/SBUS")), 1);
+
+ if ($allow_probe) {
+ @l = $o->load_thiskind($type);
+ if (my @err = grep { $_->{error} } map { $_->{error} } @l) {
+ $o->ask_warn('', join("\n", @err));
+ }
+ return if $auto && (@l || !$at_least_one);
+ }
+ @l = map { $_->{driver} } @l;
+ while (1) {
+ my $msg = @l ?
+ [ _("Found %s %s interfaces", join(", ", @l), $type),
+ _("Do you have another one?") ] :
+ _("Do you have any %s interfaces?", $type);
+
+ my $opt = [ __("Yes"), __("No") ];
+ push @$opt, __("See hardware info") if $::expert;
+ my $r = "Yes";
+ $r = $o->ask_from_list_('', $msg, $opt, "No") unless $at_least_one && @l == 0;
+ if ($r eq "No") { return }
+ if ($r eq "Yes") {
+ push @l, $o->load_module($type) || next;
+ } else {
+ #-eval { commands::modprobe("isapnp") };
+ $o->ask_warn('', [ detect_devices::stringlist() ]); #-, scalar cat_("/proc/isapnp") ]);
+ }
+ }
+}
+
1;
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm
index 709764a1e..fb7d24f4c 100644
--- a/perl-install/install_steps.pm
+++ b/perl-install/install_steps.pm
@@ -127,7 +127,7 @@ sub setupSCSI {
sub doPartitionDisksBefore {
my ($o) = @_;
- if (cat_("/proc/mounts") =~ m|/\w+/(\S+)\s+/tmp/hdimage\s+(\S+)|) {
+ if (cat_("/proc/mounts") =~ m|/\w+/(\S+)\s+/tmp/hdimage\s+(\S+)| && !$o->{partitioning}{readonly}) {
$o->{stage1_hd} = { dev => $1, fs => $2 };
install_any::getFile("XXX"); #- close still opened filehandle
eval { fs::umount("/tmp/hdimage") };
@@ -159,7 +159,15 @@ sub doPartitionDisksAfter {
#------------------------------------------------------------------------------
sub doPartitionDisks {
- my ($o, $hds) = @_;
+ my ($o) = @_;
+
+ if ($o->{isUpgrade}) {
+ # either one root is defined (and all is ok), or we take the first one we find
+ my $p = fsedit::get_root($o->{fstab}) || first(install_any::find_root_parts($o->{hds}, $o->{prefix})) or die;
+ install_any::use_root_part($o->{fstab}, $p, $o->{prefix});
+ } else {
+ #TODO;
+ }
}
#------------------------------------------------------------------------------
diff --git a/perl-install/install_steps_auto_install.pm b/perl-install/install_steps_auto_install.pm
index 19a4358d9..3fc5fcd09 100644
--- a/perl-install/install_steps_auto_install.pm
+++ b/perl-install/install_steps_auto_install.pm
@@ -33,7 +33,7 @@ sub new {
sub configureNetwork {
my ($o) = @_;
- modules::load_thiskind('net', sub {}, $o->{pcmcia});
+ modules::load_thiskind('net', $o->{pcmcia});
install_steps::configureNetwork($o);
}
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm
index 20a23e7cc..ca54f9d87 100644
--- a/perl-install/install_steps_interactive.pm
+++ b/perl-install/install_steps_interactive.pm
@@ -86,16 +86,6 @@ sub selectKeyboard($) {
install_steps::selectKeyboard($o);
}
#------------------------------------------------------------------------------
-sub selectRootPartition($@) {
- my ($o, @parts) = @_;
- $o->{upgradeRootPartition} =
- $o->ask_from_list(_("Root Partition"),
- _("What is the root partition (/) of your system?"),
- [ @parts ], $o->{upgradeRootPartition});
-#- TODO check choice, then mount partition in $o->{prefix} and autodetect.
-#- install_steps::selectRootPartition($o);
-}
-
sub selectInstallClass1 {
my ($o, $verif, $l, $def, $l2, $def2) = @_;
$verif->($o->ask_from_list(_("Install Class"), _("Which installation class do you want?"), $l, $def));
@@ -182,9 +172,11 @@ sub selectMouse {
#------------------------------------------------------------------------------
sub setupSCSI {
my ($o) = @_;
- { my $w = $o->wait_message(_("IDE"), _("Configuring IDE"));
- modules::load_ide() }
- setup_thiskind($_[0], 'scsi|raid', $_[1], $_[2]);
+ {
+ my $w = $o->wait_message(_("IDE"), _("Configuring IDE"));
+ modules::load_ide();
+ }
+ install_interactive::setup_thiskind($o, 'scsi|raid', $_[1], $_[2]);
}
sub ask_mntpoint_s {
@@ -216,18 +208,28 @@ sub ask_mntpoint_s {
#------------------------------------------------------------------------------
sub doPartitionDisks {
my ($o) = @_;
- my %solutions = install_interactive::partitionWizard($o, $o->{hds}, $o->{fstab}, $o->{partitioning}{readonly});
- my @solutions = sort { $b->[0] <=> $a->[0] } values %solutions;
-
- my $level = $::beginner ? 2 : -9999;
- my @sol = grep { $_->[0] >= $level } @solutions;
- @solutions = @sol if @sol > 1;
-
- my $ok; while (!$ok) {
- my $sol = $o->ask_from_listf('', _("The DrakX Partitioning wizard found the following solutions:"), sub { $_->[1] }, \@solutions) or redo;
- eval { $ok = $sol->[2]->() };
- $ok &&= !$@;
- $@ and $o->ask_warn('', _("Partitioning failed: %s", $@));
+ if ($o->{isUpgrade}) {
+ # either one root is defined (and all is ok), or we take the first one we find
+ my @p = fsedit::get_root($o->{fstab});
+ @p = install_any::find_root_parts($o->{hds}, $o->{prefix}) if !@p;
+ my $p = $o->ask_from_listf(_("Root Partition"),
+ _("What is the root partition (/) of your system?"),
+ \&partition_table_raw::description, [ @p ]) or die "setstep exitInstall\n";
+ install_any::use_root_part($o->{fstab}, $p, $o->{prefix});
+ } else {
+ my %solutions = install_interactive::partitionWizard($o, $o->{hds}, $o->{fstab}, $o->{partitioning}{readonly});
+ my @solutions = sort { $b->[0] <=> $a->[0] } values %solutions;
+
+ my $level = $::beginner ? 2 : -9999;
+ my @sol = grep { $_->[0] >= $level } @solutions;
+ @solutions = @sol if @sol > 1;
+
+ my $ok; while (!$ok) {
+ my $sol = $o->ask_from_listf('', _("The DrakX Partitioning wizard found the following solutions:"), sub { $_->[1] }, \@solutions) or redo;
+ eval { $ok = $sol->[2]->() };
+ $ok &&= !$@;
+ $@ and $o->ask_warn('', _("Partitioning failed: %s", $@));
+ }
}
}
@@ -1158,75 +1160,7 @@ sub load_thiskind {
!$o->ask_yesorno('', _("Try to find PCMCIA cards?"), 1);
$w = $o->wait_message(_("PCMCIA"), _("Configuring PCMCIA cards...")) if modules::pcmcia_need_config($pcmcia);
- modules::load_thiskind($type, sub { $w = wait_load_module($o, $type, @_) }, $pcmcia);
-}
-
-#------------------------------------------------------------------------------
-# (dam's) is not anymore used by setupSCSI
-sub setup_thiskind {
- my ($o, $type, $auto, $at_least_one) = @_;
-
- return if arch() eq "ppc";
-
- my @l;
- my $allow_probe = !$::expert || $o->ask_yesorno('', _("Try to find %s devices?", "PCI" . (arch() =~ /sparc/ && "/SBUS")), 1);
-
- if ($allow_probe) {
- eval { @l = grep { !/ide-/ } $o->load_thiskind($type) };
- $o->ask_warn('', $@) if $@;
- return if $auto && (@l || !$at_least_one);
- }
- while (1) {
- my $msg = @l ?
- [ _("Found %s %s interfaces", join(", ", @l), $type),
- _("Do you have another one?") ] :
- _("Do you have any %s interfaces?", $type);
-
- my $opt = [ __("Yes"), __("No") ];
- push @$opt, __("See hardware info") if $::expert;
- my $r = "Yes";
- $r = $o->ask_from_list_('', $msg, $opt, "No") unless $at_least_one && @l == 0;
- if ($r eq "No") { return }
- if ($r eq "Yes") {
- push @l, $o->load_module($type) || next;
- } else {
- #-eval { commands::modprobe("isapnp") };
- $o->ask_warn('', [ detect_devices::stringlist() ]); #-, scalar cat_("/proc/isapnp") ]);
- }
- }
-}
-
-sub setup_scsi_raid {
- my ($o, $type, $auto, $at_least_one) = @_;
-
- return if arch() eq "ppc";
-
- my @l;
- my $allow_probe = !$::expert || $o->ask_yesorno('', _("Try to find %s devices?", "PCI" . (arch() =~ /sparc/ && "/SBUS")), 1);
-
- if ($allow_probe) {
- eval { @l = grep { !/ide-/ } $o->load_thiskind($type) };
- $o->ask_warn('', $@) if $@;
- return if $auto && (@l || !$at_least_one);
- }
- while (1) {
- my $msg = @l ?
- [ _("Found %s %s interfaces", join(", ", @l), $type),
- _("Do you have another one?") ] :
- _("Do you have any %s interfaces?", $type);
-
- my $opt = [ __("Yes"), __("No") ];
- push @$opt, __("See hardware info") if $::expert;
- my $r = "Yes";
- $r = $o->ask_from_list_('', $msg, $opt, "No") unless $at_least_one && @l == 0;
- if ($r eq "No") { return }
- if ($r eq "Yes") {
- push @l, $o->load_module($type) || next;
- } else {
- #-eval { commands::modprobe("isapnp") };
- $o->ask_warn('', [ detect_devices::stringlist() ]); #-, scalar cat_("/proc/isapnp") ]);
- }
- }
+ modules::load_thiskind($type, $pcmcia, sub { $w = wait_load_module($o, $type, @_) });
}
sub upNetwork {
diff --git a/perl-install/loopback.pm b/perl-install/loopback.pm
index 1a90e1091..4eb14a9dc 100644
--- a/perl-install/loopback.pm
+++ b/perl-install/loopback.pm
@@ -72,31 +72,6 @@ sub create {
$f;
}
-sub inspect {
- my ($part, $prefix, $rw) = @_;
-
- isMountableRW($part) or return;
-
- my $dir = "/tmp/loopback_tmp";
-
- if ($part->{isMounted}) {
- $dir = ($prefix || '') . $part->{mntpoint};
- } elsif ($part->{notFormatted} && !$part->{isFormatted}) {
- $dir = '';
- } else {
- mkdir $dir, 0700;
- fs::mount($part->{device}, $dir, type2fs($part->{type}), !$rw);
- }
- my $h = before_leaving {
- if (!$part->{isMounted} && $dir) {
- fs::umount($dir);
- unlink($dir)
- }
- };
- $h->{dir} = $dir;
- $h;
-}
-
sub getFree {
my ($dir, $part) = @_;
my $freespace = $dir ?
diff --git a/perl-install/modules.pm b/perl-install/modules.pm
index b4a6206f6..facef09c9 100644
--- a/perl-install/modules.pm
+++ b/perl-install/modules.pm
@@ -1,6 +1,6 @@
package modules;
-use vars qw(%loaded %drivers);
+use vars qw(%drivers);
use common qw(:common :file :system);
use detect_devices;
@@ -9,7 +9,6 @@ use log;
my %conf;
-my %loaded; #- array of loaded modules for each types (scsi/net/...)
my $scsi = 0;
my %deps = ();
@@ -322,9 +321,6 @@ while (my ($k, $v) = each %drivers) {
$drivers{$k} = \%l;
}
-
-1;
-
sub module_of_type__4update_kernel {
my ($type) = @_;
my %skip; @skip{@skip_modules_on_stage1} = ();
@@ -380,8 +376,10 @@ sub load {
eval { load($_, 'prereq') } foreach @{$deps{$name}};
load_raw([ $name, @options ]);
}
- push @{$loaded{$type}}, $name;
-
+ if ($name eq "usb-storage") {
+ sleep(2);
+ -d "/proc/scsi/usb" or return;
+ }
if ($type) {
add_alias('usb-interface', $name) if $type =~ /SERIAL_USB/i;
add_alias('scsi_hostadapter', $name), load('sd_mod') if $type =~ /scsi/ || $type eq $type_aliases{scsi};
@@ -409,9 +407,6 @@ sub unload($;$) {
delete $conf{$m}{loaded};
}
}
- foreach (keys %loaded) {
- @{$loaded{$_}} = grep { $m ne $_ } @{$loaded{$_}};
- }
remove_alias($m) if $remove_alias;
}
@@ -431,11 +426,15 @@ sub load_raw {
}
} @l;
- #- this is a hack to make plip go
foreach (@l) {
- $_->[0] eq "parport_pc" or next;
- foreach (@{$_->[1]}) {
- /^irq=(\d+)/ and eval { output "/proc/parport/0/irq", $1 };
+ if ($_->[0] eq "parport_pc") {
+ #- this is a hack to make plip go
+ foreach (@{$_->[1]}) {
+ /^irq=(\d+)/ and eval { output "/proc/parport/0/irq", $1 };
+ }
+ } elsif ($_->[0] =~ /usb-[uo]hci/) {
+ #- ensure keyboard is working, the kernel must do the job the BIOS was doing
+ load_multi("usbkbd", "keybdev");
}
}
die "insmod'ing module " . join(", ", map { $_->[0] } @failed) . " failed" if @failed;
@@ -445,7 +444,6 @@ sub read_already_loaded() {
foreach (cat_("/proc/modules")) {
my ($name) = split;
$conf{$name}{loaded} = 1;
- my $l = $loaded{($drivers{$name} || next)->{type}} ||= [];
push @$l, $name unless member($name, @$l);
}
}
@@ -524,48 +522,26 @@ sub read_stage1_conf {
}
sub load_thiskind {
- my ($type, $f, $pcic) = @_;
- show_load_thiskind($type, $f, $pcic, 1);
-}
-
-sub show_load_thiskind {
- my ($type, $f, $pcic, $load) = @_;
- my %loaded_text;
-
- my @devs = grep { my $l = $drivers{$_->{driver}}; $l && $l->{type} eq $type } detect_devices::probeall('', $pcip);
- log::l("probe found " . scalar @devs . " $type devices");
+ my ($type, $pcic, $f) = @_;
- my %devs; foreach (@devs) {
- my ($text, $mod) = ($_->{description}, $_->{driver});
- $devs{$mod}++ and log::l("multiple $mod devices found"), next;
- log::l("found driver for $mod");
- &$f($text, $mod) if $f;
- $load ? load($mod, $type) : push @{$loaded{$type}}, $mod;
- $loaded_text{$mod} = $text;
- }
- if ($load && $type =~ /scsi/) {
- #- hey, we're allowed to pci probe :) let's do a lot of probing!
+ grep {
+ $f->($_->{description}, $_->{driver}) if $f;
+ eval { load($_->{driver}) };
+ $_->{error} = $@;
- #- probe for USB SCSI.
- if (detect_devices::probeUSB()) {
- eval { load("usb-storage", $type); sleep(2); };
- -d "/proc/scsi/usb" or unload("usb-storage");
- }
- #- probe for parport SCSI.
- if (arch() !~ /sparc/) {
- foreach ("imm", "ppa") {
- eval { load($_, $type) };
- last if !$@;
- }
- }
- if (my ($c) = (show_load_thiskind ('audio'))) { #detect_devices::matching_type('AUDIO'))) {
- add_alias("sound", $c->{driver}); #- (dam's) this should be changed, we shouldn't use alias sound
- }
- }
+ !($@ && $_->{try});
+ } get_that_type($type, $pcic),
+ $type =~ /scsi/ && arch() !~ /sparc/ ?
+ (map { +{ driver => $_, description => $_, try => 1 } } "usb-storage", "imm", "ppa") : ();
+}
- my @loaded = map { $loaded_text{$_} || $_ } @{$loaded{$type} || []};
- $type =~ /scsi/ and @loaded and $load and eval { load("sd_mod") };
- @loaded;
+sub get_that_type {
+ my ($type, $pcic) = @_;
+
+ grep {
+ my $l = $drivers{$_->{driver}};
+ $l && $l->{type} eq $type && detect_devices::check($_);
+ } detect_devices::probeall('', $pcic);
}
sub pcmcia_need_config($) {
@@ -617,23 +593,5 @@ sub load_ide {
}
-sub load_bordel {
-
- #- probe for USB SCSI.
- if (detect_devices::probeUSB()) {
- eval { load("usb-storage", $type); sleep(2); };
- -d "/proc/scsi/usb" or unload("usb-storage");
- }
- #- probe for parport SCSI.
- if (arch() !~ /sparc/) {
- foreach ("imm", "ppa") {
- eval { load($_, $type) };
- last if !$@;
- }
- }
-# if (my ($c) = (show_load_thiskind ('audio'))) { #detect_devices::matching_type('AUDIO'))) {
-# add_alias("sound", $c->{driver}); #- (dam's) this should be changed, we shouldn't use alias sound
- }
- }
-}
+1;
diff --git a/perl-install/printerdrake.pm b/perl-install/printerdrake.pm
index 9d7349740..d1cfabc0d 100644
--- a/perl-install/printerdrake.pm
+++ b/perl-install/printerdrake.pm
@@ -18,7 +18,7 @@ sub auto_detect {
{
my $w = $in->wait_message(_("Test ports"), _("Detecting devices..."));
detect_devices::probeUSB() and eval { modules::load("printer"); sleep(1); };
- eval { modules::load("parport_pc"); modules::load("parport_probe"); modules::load("lp"); };
+ eval { modules::load_multi("parport_pc", "parport_probe", "lp"); };
}
my $b = before_leaving { eval { modules::unload("parport_probe") } };
detect_devices::whatPrinter();
1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317
#
# Latest versions of po files are at http://www.mandrivalinux.com/l10n/ga.php3
#
# Irish language translations for %s
# Copyright (C) 2000 Free Software Foundation, Inc.
# Alastair McKinstry, <mckinstry@computer.org>, 2000
#
msgid ""
msgstr ""
"Project-Id-Version: rpmdrake\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-10-11 12:57+0200\n"
"PO-Revision-Date: 2006-10-25 22:16+0200\n"
"Last-Translator: Alastair McKinstry <mckinstry@computer.org>\n"
"Language-Team: Irish <ga@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8-bit\n"

#: ../MandrivaUpdate:103 ../Rpmdrake/gui.pm:855
#, c-format
msgid ""
"The list of updates is empty. This means that either there is\n"
"no available update for the packages installed on your computer,\n"
"or you already installed all of them."
msgstr ""

#: ../MandrivaUpdate:126 ../rpmdrake:90 ../rpmdrake:725 ../rpmdrake.pm:210
#, fuzzy, c-format
msgid "Software Management"
msgstr "Bainisteoir Chomad"

#: ../MandrivaUpdate:151
#, fuzzy, c-format
msgid "Here is the list of software package updates"
msgstr "Bainisteóir Bóg-Earraí"

#: ../MandrivaUpdate:158
#, c-format
msgid "Name"
msgstr "Ainm"

#: ../MandrivaUpdate:159 ../rpmdrake:275
#, fuzzy, c-format
msgid "Version"
msgstr "Leagan"

#: ../MandrivaUpdate:160 ../rpmdrake:279
#, c-format
msgid "Release"
msgstr ""

#: ../MandrivaUpdate:161
#, fuzzy, c-format
msgid "Arch"
msgstr "Cartlannú"

#: ../MandrivaUpdate:175 ../Rpmdrake/edit_urpm_sources.pm:1140
#, c-format
msgid "Help"
msgstr "Cúnamh"

#: ../MandrivaUpdate:179 ../rpmdrake:652 ../rpmdrake.pm:817
#, c-format
msgid "Select all"
msgstr "Roghnaigh gach rud"

#: ../MandrivaUpdate:192 ../rpmdrake.pm:821
#, c-format
msgid "Update"
msgstr "Nuashonraigh"

#: ../MandrivaUpdate:200 ../rpmdrake:663
#, c-format
msgid "Quit"
msgstr "Éirigh"

#: ../Rpmdrake/edit_urpm_sources.pm:62
#, c-format
msgid "CD-ROM"
msgstr ""

#: ../Rpmdrake/edit_urpm_sources.pm:63
#, fuzzy, c-format
msgid "FTP"
msgstr "Greasan/FTP"

#: ../Rpmdrake/edit_urpm_sources.pm:64 ../Rpmdrake/edit_urpm_sources.pm:74
#, fuzzy, c-format
msgid "Local"
msgstr "Comhaid Áitiúl"

#: ../Rpmdrake/edit_urpm_sources.pm:65
#, c-format
msgid "HTTP"
msgstr ""

#: ../Rpmdrake/edit_urpm_sources.pm:66
#, c-format
msgid "HTTPS"
msgstr ""

#: ../Rpmdrake/edit_urpm_sources.pm:67 ../Rpmdrake/edit_urpm_sources.pm:70
#, c-format
msgid "NFS"
msgstr ""

#: ../Rpmdrake/edit_urpm_sources.pm:68
#, fuzzy, c-format
msgid "Removable"
msgstr "Bain"

#: ../Rpmdrake/edit_urpm_sources.pm:69
#, c-format
msgid "rsync"
msgstr ""

#: ../Rpmdrake/edit_urpm_sources.pm:73
#, c-format
msgid "Mirror list"
msgstr ""

#: ../Rpmdrake/edit_urpm_sources.pm:114
#, c-format
msgid "Choose media type"
msgstr ""

#: ../Rpmdrake/edit_urpm_sources.pm:115
#, c-format
msgid ""
"In order to keep your system secure and stable, you must at a minimum set "
"up\n"
"sources for official security and stability updates. You can also choose to "
"set\n"
"up a fuller set of sources which includes the complete official Mandriva\n"
"repositories, giving you access to more software than can fit on the "
"Mandriva\n"
"discs. Please choose whether to configure update sources only, or the full "
"set\n"
"of sources."
msgstr ""

#: ../Rpmdrake/edit_urpm_sources.pm:122
#, c-format
msgid "Full set of sources"
msgstr ""

#: ../Rpmdrake/edit_urpm_sources.pm:122
#, c-format
msgid "Update sources only"
msgstr ""

#: ../Rpmdrake/edit_urpm_sources.pm:134
#, c-format
msgid ""
"This will attempt to install all official sources corresponding to your\n"
"distribution (%s).\n"
"\n"
"I need to contact the Mandriva website to get the mirror list.\n"
"Please check that your network is currently running.\n"
"\n"
"Is it ok to continue?"
msgstr ""

#: ../Rpmdrake/edit_urpm_sources.pm:144 ../Rpmdrake/edit_urpm_sources.pm:158
#, fuzzy, c-format
msgid "Please wait, adding media..."
msgstr ""
"Fan tamall\n"
"Checking dependencies"

#: ../Rpmdrake/edit_urpm_sources.pm:166
#, fuzzy, c-format
msgid "Add a medium"
msgstr "Suimigh Modúil"

#: ../Rpmdrake/edit_urpm_sources.pm:170
#, c-format
msgid "Local files"
msgstr "Comhaid Áitiúl"

#: ../Rpmdrake/edit_urpm_sources.pm:170
#, fuzzy, c-format
msgid "Medium path:"
msgstr "Measartha: "

#: ../Rpmdrake/edit_urpm_sources.pm:171
#, c-format
msgid "FTP server"
msgstr "Freastalaí FTP:"

#: ../Rpmdrake/edit_urpm_sources.pm:171 ../Rpmdrake/edit_urpm_sources.pm:172
#: ../Rpmdrake/edit_urpm_sources.pm:173 ../Rpmdrake/edit_urpm_sources.pm:476
#, c-format
msgid "URL:"
msgstr "URL:"

#: ../Rpmdrake/edit_urpm_sources.pm:172
#, c-format
msgid "RSYNC server"
msgstr "Freastalaí RSYNC"

#: ../Rpmdrake/edit_urpm_sources.pm:173
#, c-format
msgid "HTTP server"
msgstr "Freastalaí HTTP:"

#: ../Rpmdrake/edit_urpm_sources.pm:174
#, c-format
msgid "Removable device"
msgstr "Gléas Inbhainte"

#: ../Rpmdrake/edit_urpm_sources.pm:174
#, c-format
msgid "Path or mount point:"
msgstr "Conair nó pointe feistithe:"

#: ../Rpmdrake/edit_urpm_sources.pm:192
#, c-format
msgid "Browse..."
msgstr "Brabhsáil..."

#: ../Rpmdrake/edit_urpm_sources.pm:219
#, c-format
msgid "Login:"
msgstr "Logann:"

#: ../Rpmdrake/edit_urpm_sources.pm:219 ../Rpmdrake/edit_urpm_sources.pm:576
#: ../rpmdrake.pm:143
#, c-format
msgid "Password:"
msgstr "Pasfhocal:"

#: ../Rpmdrake/edit_urpm_sources.pm:225
#, fuzzy, c-format
msgid "Medium name:"
msgstr "Measartha: "

#: ../Rpmdrake/edit_urpm_sources.pm:231
#, c-format
msgid "Create media for a whole distribution"
msgstr ""

#: ../Rpmdrake/edit_urpm_sources.pm:235
#, c-format
msgid "Tag this medium as an update medium"
msgstr ""

#: ../Rpmdrake/edit_urpm_sources.pm:245
#, c-format
msgid "You need to fill up at least the two first entries."
msgstr ""

#: ../Rpmdrake/edit_urpm_sources.pm:249
#, c-format
msgid ""
"There is already a medium by that name, do you\n"
"really want to replace it?"
msgstr ""

#: ../Rpmdrake/edit_urpm_sources.pm:261
#, fuzzy, c-format
msgid "Adding a medium:"
msgstr "Suimigh Modúil"

#: ../Rpmdrake/edit_urpm_sources.pm:263
#, c-format
msgid "Type of medium:"
msgstr ""

#: ../Rpmdrake/edit_urpm_sources.pm:273 ../Rpmdrake/edit_urpm_sources.pm:387
#: ../Rpmdrake/edit_urpm_sources.pm:485 ../Rpmdrake/edit_urpm_sources.pm:512
#: ../Rpmdrake/edit_urpm_sources.pm:593 ../Rpmdrake/edit_urpm_sources.pm:657
#: ../Rpmdrake/edit_urpm_sources.pm:759 ../Rpmdrake/gui.pm:600
#: ../Rpmdrake/init.pm:159 ../Rpmdrake/pkg.pm:179 ../Rpmdrake/pkg.pm:774
#: ../rpmdrake.pm:324 ../rpmdrake.pm:665 ../rpmdrake.pm:737 ../rpmdrake.pm:813
#, c-format
msgid "Cancel"
msgstr "Cealaigh"

#: ../Rpmdrake/edit_urpm_sources.pm:275 ../Rpmdrake/edit_urpm_sources.pm:389
#: ../Rpmdrake/edit_urpm_sources.pm:512 ../Rpmdrake/edit_urpm_sources.pm:583
#: ../Rpmdrake/edit_urpm_sources.pm:656 ../Rpmdrake/edit_urpm_sources.pm:752
#: ../Rpmdrake/edit_urpm_sources.pm:825 ../Rpmdrake/edit_urpm_sources.pm:939
#: ../Rpmdrake/edit_urpm_sources.pm:1141 ../Rpmdrake/gui.pm:600
#: ../Rpmdrake/gui.pm:616 ../Rpmdrake/gui.pm:621 ../Rpmdrake/init.pm:159
#: ../Rpmdrake/pkg.pm:574 ../Rpmdrake/pkg.pm:774 ../Rpmdrake/rpmnew.pm:180
#: ../rpmdrake.pm:134 ../rpmdrake.pm:260 ../rpmdrake.pm:327 ../rpmdrake.pm:665
#, c-format
msgid "Ok"
msgstr "Ceart go Leor"

#: ../Rpmdrake/edit_urpm_sources.pm:330
#, fuzzy, c-format
msgid "Global options for package installation"
msgstr "Ag Ullmhaigh feistiú"

#: ../Rpmdrake/edit_urpm_sources.pm:332
#, c-format
msgid "never"
msgstr "riamh"

#: ../Rpmdrake/edit_urpm_sources.pm:332
#, c-format
msgid "always"
msgstr "i gcónaí"

#: ../Rpmdrake/edit_urpm_sources.pm:337 ../Rpmdrake/edit_urpm_sources.pm:369
#, fuzzy, c-format
msgid "Never"
msgstr "riamh"

#: ../Rpmdrake/edit_urpm_sources.pm:338 ../Rpmdrake/edit_urpm_sources.pm:372
#, c-format
msgid "On-demand"
msgstr ""

#: ../Rpmdrake/edit_urpm_sources.pm:339 ../Rpmdrake/edit_urpm_sources.pm:376
#, fuzzy, c-format
msgid "Update-only"
msgstr "Nuashonraigh"

#: ../Rpmdrake/edit_urpm_sources.pm:340 ../Rpmdrake/edit_urpm_sources.pm:379
#, fuzzy, c-format
msgid "Always"
msgstr "i gcónaí"

#: ../Rpmdrake/edit_urpm_sources.pm:348
#, c-format
msgid "Verify RPMs to be installed:"
msgstr ""

#: ../Rpmdrake/edit_urpm_sources.pm:353
#, c-format
msgid "Download program to use:"
msgstr ""

#: ../Rpmdrake/edit_urpm_sources.pm:360
#, c-format
msgid "XML meta-data download policy:"
msgstr ""

#: ../Rpmdrake/edit_urpm_sources.pm:367
#, c-format
msgid ""
"For remote media, specify when XML meta-data (file lists, changelogs & "
"informations) are downloaded."
msgstr ""

#: ../Rpmdrake/edit_urpm_sources.pm:370
#, c-format
msgid "For remote media, XML meta-data are never downloaded."
msgstr ""

#: ../Rpmdrake/edit_urpm_sources.pm:373
#, c-format
msgid "(This is the default)"
msgstr ""

#: ../Rpmdrake/edit_urpm_sources.pm:374
#, c-format
msgid "The specific XML info file is downloaded when clicking on package."
msgstr ""

#: ../Rpmdrake/edit_urpm_sources.pm:377
#, c-format
msgid ""
"Updating media implies updating XML info files already required at least "
"once."
msgstr ""

#: ../Rpmdrake/edit_urpm_sources.pm:380
#, c-format
msgid "All XML info files are downloaded when adding or updating media."
msgstr ""

#: ../Rpmdrake/edit_urpm_sources.pm:409
#, fuzzy, c-format
msgid "Source Removal"
msgstr "Bainisteóir Bóg-Earraí"

#: ../Rpmdrake/edit_urpm_sources.pm:411
#, c-format
msgid "Are you sure you want to remove source \"%s\"?"
msgstr ""

#: ../Rpmdrake/edit_urpm_sources.pm:412
#, c-format
msgid "Are you sure you want to remove the following sources ?"
msgstr ""

#: ../Rpmdrake/edit_urpm_sources.pm:418
#, fuzzy, c-format
msgid "Please wait, removing medium..."
msgstr ""
"Fan tamall\n"
"Checking dependencies"

#: ../Rpmdrake/edit_urpm_sources.pm:466
#, fuzzy, c-format
msgid "Edit a medium"
msgstr ""
"Fan tamall\n"
"Ag scrios pacáistí"

#: ../Rpmdrake/edit_urpm_sources.pm:473
#, fuzzy, c-format
msgid "Editing medium \"%s\":"
msgstr "léamh depslist comhad [%s]"

#: ../Rpmdrake/edit_urpm_sources.pm:477
#, c-format
msgid "Downloader:"
msgstr ""

#: ../Rpmdrake/edit_urpm_sources.pm:489
#, c-format
msgid "Save changes"
msgstr "Sábháil an athraí"

#: ../Rpmdrake/edit_urpm_sources.pm:498
#, c-format
msgid "Proxy..."
msgstr "Seachfhreastalaí..."

#: ../Rpmdrake/edit_urpm_sources.pm:510
#, c-format
msgid "You need to insert the medium to continue"
msgstr ""

#: ../Rpmdrake/edit_urpm_sources.pm:511
#, c-format
msgid ""
"In order to save the changes, you need to insert the medium in the drive."
msgstr ""

#: ../Rpmdrake/edit_urpm_sources.pm:546
#, c-format
msgid "Configure proxies"
msgstr ""

#: ../Rpmdrake/edit_urpm_sources.pm:559
#, c-format
msgid "Proxy settings for media \"%s\""
msgstr ""

#: ../Rpmdrake/edit_urpm_sources.pm:560
#, c-format
msgid "Global proxy settings"
msgstr ""

#: ../Rpmdrake/edit_urpm_sources.pm:562
#, c-format
msgid ""
"If you need a proxy, enter the hostname and an optional port (syntax: "
"<proxyhost[:port]>):"
msgstr ""

#: ../Rpmdrake/edit_urpm_sources.pm:565
#, c-format
msgid "Proxy hostname:"
msgstr ""

#: ../Rpmdrake/edit_urpm_sources.pm:568
#, c-format
msgid "You may specify a user/password for the proxy authentication:"
msgstr ""

#: ../Rpmdrake/edit_urpm_sources.pm:571
#, c-format
msgid "User:"
msgstr "Úsáideoir:"

#: ../Rpmdrake/edit_urpm_sources.pm:667
#, c-format
msgid "Add a parallel group"
msgstr ""

#: ../Rpmdrake/edit_urpm_sources.pm:667
#, c-format
msgid "Edit a parallel group"
msgstr ""

#: ../Rpmdrake/edit_urpm_sources.pm:691
#, fuzzy, c-format
msgid "Add a medium limit"
msgstr "Suimigh Modúil"

#: ../Rpmdrake/edit_urpm_sources.pm:691
#, c-format
msgid "Choose a medium for adding in the media limit:"
msgstr ""

#: ../Rpmdrake/edit_urpm_sources.pm:708
#, c-format
msgid "Add a host"
msgstr ""

#: ../Rpmdrake/edit_urpm_sources.pm:708
#, c-format
msgid "Type in the hostname or IP address of the host to add:"
msgstr ""

#: ../Rpmdrake/edit_urpm_sources.pm:722
#, fuzzy, c-format
msgid "Editing parallel group \"%s\":"
msgstr ""
"Fan tamall\n"
"Ag scrios pacáistí"

#: ../Rpmdrake/edit_urpm_sources.pm:726
#, c-format
msgid "Group name:"
msgstr "Ainm grúpa:"

#: ../Rpmdrake/edit_urpm_sources.pm:727
#, c-format
msgid "Protocol:"
msgstr "Prótacal:"

#: ../Rpmdrake/edit_urpm_sources.pm:729
#, c-format
msgid "Media limit:"
msgstr ""

#: ../Rpmdrake/edit_urpm_sources.pm:734 ../Rpmdrake/edit_urpm_sources.pm:743
#: ../Rpmdrake/edit_urpm_sources.pm:927 ../Rpmdrake/edit_urpm_sources.pm:1128
#, c-format
msgid "Add"
msgstr "Cuir Leis"

#: ../Rpmdrake/edit_urpm_sources.pm:735 ../Rpmdrake/edit_urpm_sources.pm:744
#: ../Rpmdrake/edit_urpm_sources.pm:805 ../Rpmdrake/edit_urpm_sources.pm:931
#: ../Rpmdrake/edit_urpm_sources.pm:1118
#, c-format
msgid "Remove"
msgstr "Bain"

#: ../Rpmdrake/edit_urpm_sources.pm:738
#, c-format
msgid "Hosts:"
msgstr "Óstríomhairí:"

#: ../Rpmdrake/edit_urpm_sources.pm:774
#, c-format
msgid "Configure parallel urpmi (distributed execution of urpmi)"
msgstr ""

#: ../Rpmdrake/edit_urpm_sources.pm:778
#, c-format
msgid "Group"
msgstr "Grúpa"

#: ../Rpmdrake/edit_urpm_sources.pm:778
#, c-format
msgid "Protocol"
msgstr "Prótacal"

#: ../Rpmdrake/edit_urpm_sources.pm:778
#, c-format
msgid "Media limit"
msgstr ""

#: ../Rpmdrake/edit_urpm_sources.pm:779
#, c-format
msgid "Command"
msgstr "Ordú"

#: ../Rpmdrake/edit_urpm_sources.pm:789 ../Rpmdrake/formatting.pm:129
#: ../Rpmdrake/gui.pm:852 ../Rpmdrake/pkg.pm:93 ../Rpmdrake/pkg.pm:138
#: ../Rpmdrake/pkg.pm:149 ../Rpmdrake/pkg.pm:170 ../Rpmdrake/rpmnew.pm:76
#, c-format
msgid "(none)"
msgstr "(ar bith)"

#: ../Rpmdrake/edit_urpm_sources.pm:809
#, c-format
msgid "Edit..."
msgstr "Eagar..."

#: ../Rpmdrake/edit_urpm_sources.pm:817
#, c-format
msgid "Add..."
msgstr "Cuir Leis..."

#: ../Rpmdrake/edit_urpm_sources.pm:833
#, c-format
msgid "Manage keys for digital signatures of packages"
msgstr ""

#: ../Rpmdrake/edit_urpm_sources.pm:839 ../Rpmdrake/edit_urpm_sources.pm:1041
#, c-format
msgid "Medium"
msgstr "Measartha"

#: ../Rpmdrake/edit_urpm_sources.pm:846
#, c-format
msgid ""
"_:cryptographic keys\n"
"Keys"
msgstr ""

#: ../Rpmdrake/edit_urpm_sources.pm:869
#, c-format
msgid "no name found, key doesn't exist in rpm keyring!"
msgstr ""

#: ../Rpmdrake/edit_urpm_sources.pm:889
#, fuzzy, c-format
msgid "Add a key"
msgstr ""
"Fan tamall\n"
"Ag scrios pacáistí"

#: ../Rpmdrake/edit_urpm_sources.pm:889
#, c-format
msgid "Choose a key for adding to the medium %s"
msgstr ""

#: ../Rpmdrake/edit_urpm_sources.pm:908
#, fuzzy, c-format
msgid "Remove a key"
msgstr "Scríos Printéir"

#: ../Rpmdrake/edit_urpm_sources.pm:909
#, c-format
msgid ""
"Are you sure you want to remove the key %s from medium %s?\n"
"(name of the key: %s)"
msgstr ""

#: ../Rpmdrake/edit_urpm_sources.pm:948 ../Rpmdrake/edit_urpm_sources.pm:1111
#, c-format
msgid "Configure media"
msgstr ""

#: ../Rpmdrake/edit_urpm_sources.pm:955 ../Rpmdrake/edit_urpm_sources.pm:956
#: ../Rpmdrake/edit_urpm_sources.pm:957 ../Rpmdrake/edit_urpm_sources.pm:958
#: ../Rpmdrake/edit_urpm_sources.pm:959 ../rpmdrake:521 ../rpmdrake:524
#: ../rpmdrake:529 ../rpmdrake:544 ../rpmdrake:545
#, c-format
msgid "/_File"
msgstr "/C_omhad"

#: ../Rpmdrake/edit_urpm_sources.pm:956
#, fuzzy, c-format
msgid "/_Update"
msgstr "Nuashonraigh"

#: ../Rpmdrake/edit_urpm_sources.pm:956
#, fuzzy, c-format
msgid "<control>U"
msgstr "<control>E"

#: ../Rpmdrake/edit_urpm_sources.pm:957
#, fuzzy, c-format
msgid "/Add _media"
msgstr ""
"Fan tamall\n"
"Ag scrios pacáistí"

#: ../Rpmdrake/edit_urpm_sources.pm:957 ../Rpmdrake/edit_urpm_sources.pm:958
#, fuzzy, c-format
msgid "<control>A"
msgstr "<control>E"

#: ../Rpmdrake/edit_urpm_sources.pm:958
#, fuzzy, c-format
msgid "/_Add a custom medium"
msgstr ""
"Fan tamall\n"
"Ag scrios pacáistí"

#: ../Rpmdrake/edit_urpm_sources.pm:959
#, fuzzy, c-format
msgid "/Close"
msgstr "Dún"

#: ../Rpmdrake/edit_urpm_sources.pm:959
#, fuzzy, c-format
msgid "<control>W"
msgstr "<control>E"

#: ../Rpmdrake/edit_urpm_sources.pm:960 ../Rpmdrake/edit_urpm_sources.pm:961
#: ../Rpmdrake/edit_urpm_sources.pm:962 ../Rpmdrake/edit_urpm_sources.pm:963
#: ../Rpmdrake/edit_urpm_sources.pm:964 ../rpmdrake:517 ../rpmdrake:518
#: ../rpmdrake:548 ../rpmdrake:555 ../rpmdrake:559 ../rpmdrake:615
#, c-format
msgid "/_Options"
msgstr "/_Roghanna"

#: ../Rpmdrake/edit_urpm_sources.pm:961
#, fuzzy, c-format
msgid "/_Global options"
msgstr "/_Roghanna"

#: ../Rpmdrake/edit_urpm_sources.pm:961
#, fuzzy, c-format
msgid "<control>G"
msgstr "<control>E"

#: ../Rpmdrake/edit_urpm_sources.pm:962
#, c-format
msgid "/Manage _keys"
msgstr ""

#: ../Rpmdrake/edit_urpm_sources.pm:962
#, fuzzy, c-format
msgid "<control>K"
msgstr "<control>E"

#: ../Rpmdrake/edit_urpm_sources.pm:963
#, fuzzy, c-format
msgid "/_Parallel"
msgstr "Comhuaineach..."

#: ../Rpmdrake/edit_urpm_sources.pm:963
#, fuzzy, c-format
msgid "<control>P"
msgstr "<control>E"

#: ../Rpmdrake/edit_urpm_sources.pm:964
#, fuzzy, c-format
msgid "/P_roxy"
msgstr "Seachfhreastalaí..."

#: ../Rpmdrake/edit_urpm_sources.pm:964
#, fuzzy, c-format
msgid "<control>R"
msgstr "<control>E"

#: ../Rpmdrake/edit_urpm_sources.pm:966 ../Rpmdrake/edit_urpm_sources.pm:967
#: ../Rpmdrake/edit_urpm_sources.pm:968 ../Rpmdrake/edit_urpm_sources.pm:969
#: ../rpmdrake:573 ../rpmdrake:574 ../rpmdrake:575 ../rpmdrake:576
#, c-format
msgid "/_Help"
msgstr "/C_úidiú"

#: ../Rpmdrake/edit_urpm_sources.pm:967 ../rpmdrake:574
#, c-format
msgid "/_Report Bug"
msgstr "/_Tuairaisc Fabht"

#: ../Rpmdrake/edit_urpm_sources.pm:969 ../rpmdrake:576
#, c-format
msgid "/_About..."
msgstr "/_Faoi..."

#: ../Rpmdrake/edit_urpm_sources.pm:972 ../rpmdrake:579
#, fuzzy, c-format
msgid "Rpmdrake"
msgstr "rpmdrake"

#: ../Rpmdrake/edit_urpm_sources.pm:974 ../rpmdrake:581
#, c-format
msgid "Copyright (C) %s by Mandriva"
msgstr ""

#: ../Rpmdrake/edit_urpm_sources.pm:976 ../rpmdrake:583
#, c-format
msgid "Rpmdrake is Mandriva Linux package management tool."
msgstr ""

#: ../Rpmdrake/edit_urpm_sources.pm:978 ../rpmdrake:585
#, c-format
msgid "Mandriva Linux"
msgstr "Mandriva Linux"

#. -PO: put here name(s) and email(s) of translator(s) (eg: "John Smith <jsmith@nowhere.com>")
#. -PO: put here name(s) and email(s) of translator(s) (eg: "John Smith <jsmith@nowhere.com>")
#: ../Rpmdrake/edit_urpm_sources.pm:983 ../rpmdrake:590
#, c-format
msgid "_: Translator(s) name(s) & email(s)\n"
msgstr ""

#: ../Rpmdrake/edit_urpm_sources.pm:1038 ../Rpmdrake/pkg.pm:249
#, c-format
msgid "Enabled"
msgstr "Cumasaithe"

#: ../Rpmdrake/edit_urpm_sources.pm:1039
#, fuzzy, c-format
msgid "Updates"
msgstr "Nuashonraigh"

#: ../Rpmdrake/edit_urpm_sources.pm:1040
#, c-format
msgid "Type"
msgstr "Cineál"

#: ../Rpmdrake/edit_urpm_sources.pm:1055
#, c-format
msgid "This medium needs to be updated to be usable. Update it now ?"
msgstr ""

#: ../Rpmdrake/edit_urpm_sources.pm:1086
#, c-format
msgid ""
"Unable to update medium, errors reported:\n"
"\n"
"%s"
msgstr ""

#: ../Rpmdrake/edit_urpm_sources.pm:1122
#, c-format
msgid "Edit"
msgstr "Eagar"

#: ../Rpmdrake/edit_urpm_sources.pm:1161
#, c-format
msgid ""
"Packages database is locked. Please close other applications\n"
"working with packages database (do you have another media\n"
"manager on another desktop, or are you currently installing\n"
"packages as well?)."
msgstr ""

#: ../Rpmdrake/formatting.pm:102
#, fuzzy, c-format
msgid "None (installed)"
msgstr "Ag Feistiú:"

#: ../Rpmdrake/formatting.pm:166
#, c-format
msgid "%s of additional disk space will be used."
msgstr ""

#: ../Rpmdrake/formatting.pm:167
#, c-format
msgid "%s of disk space will be freed."
msgstr ""

#: ../Rpmdrake/gui.pm:119 ../Rpmdrake/gui.pm:216 ../Rpmdrake/gui.pm:218
#: ../Rpmdrake/pkg.pm:162
#, c-format
msgid "(Not available)"
msgstr "(Níl ar Fáil)"

#: ../Rpmdrake/gui.pm:148 ../Rpmdrake/gui.pm:234
#, c-format
msgid "Importance: "
msgstr "Tábhacht: "

#: ../Rpmdrake/gui.pm:149 ../Rpmdrake/gui.pm:242
#, c-format
msgid "Reason for update: "
msgstr ""

#: ../Rpmdrake/gui.pm:153
#, fuzzy, c-format
msgid "Security advisory"
msgstr "Roghnaigh liebhéal slándáil"

#: ../Rpmdrake/gui.pm:158 ../Rpmdrake/gui.pm:244
#, c-format
msgid "No description"
msgstr "Gan cur síos"

#: ../Rpmdrake/gui.pm:165 ../Rpmdrake/gui.pm:229
#, c-format
msgid "Version: "
msgstr "Leagan: "

#: ../Rpmdrake/gui.pm:168 ../Rpmdrake/gui.pm:224
#, c-format
msgid "Currently installed version: "
msgstr ""

#: ../Rpmdrake/gui.pm:171
#, fuzzy, c-format
msgid "Group: "
msgstr "Grúpa"

#: ../Rpmdrake/gui.pm:172 ../Rpmdrake/gui.pm:230
#, c-format
msgid "Architecture: "
msgstr "Ailtireacht: "

#: ../Rpmdrake/gui.pm:173 ../Rpmdrake/gui.pm:231
#, c-format
msgid "Size: "
msgstr "Méid: "

#: ../Rpmdrake/gui.pm:173 ../Rpmdrake/gui.pm:231
#, c-format
msgid "%s KB"
msgstr "%s KB"

#: ../Rpmdrake/gui.pm:174 ../Rpmdrake/gui.pm:223 ../rpmdrake.pm:872
#, c-format
msgid "Medium: "
msgstr "Measartha: "

#: ../Rpmdrake/gui.pm:185
#, fuzzy, c-format
msgid "URL: "
msgstr "URL:"

#: ../Rpmdrake/gui.pm:190
#, c-format
msgid "Details:"
msgstr ""

#: ../Rpmdrake/gui.pm:194
#, c-format
msgid "Files:"
msgstr "Comhaid:"

#: ../Rpmdrake/gui.pm:202
#, c-format
msgid "Changelog:"
msgstr ""

#: ../Rpmdrake/gui.pm:213
#, c-format
msgid "Files:\n"
msgstr "Comhaid:\n"

#: ../Rpmdrake/gui.pm:218
#, fuzzy, c-format
msgid "Changelog:\n"
msgstr "KPresenter"

#: ../Rpmdrake/gui.pm:228
#, c-format
msgid "Name: "
msgstr "Ainm: "

#: ../Rpmdrake/gui.pm:238
#, c-format
msgid "Summary: "
msgstr "Achoimre: "

#: ../Rpmdrake/gui.pm:244
#, c-format
msgid "Description: "
msgstr "Cur Síos: "

#: ../Rpmdrake/gui.pm:259 ../Rpmdrake/gui.pm:453 ../Rpmdrake/gui.pm:459
#: ../Rpmdrake/gui.pm:465 ../Rpmdrake/pkg.pm:784 ../Rpmdrake/pkg.pm:794
#: ../rpmdrake.pm:793 ../rpmdrake.pm:911
#, c-format
msgid "Warning"
msgstr "Rabhadh"

#: ../Rpmdrake/gui.pm:261
#, c-format
msgid "The package \"%s\" was found."
msgstr ""

#: ../Rpmdrake/gui.pm:262
#, c-format
msgid "However this package is not in the package list."
msgstr ""

#: ../Rpmdrake/gui.pm:263
#, c-format
msgid "You may want to update your urpmi database."
msgstr ""

#: ../Rpmdrake/gui.pm:265
#, fuzzy, c-format
msgid "Matching packages:"
msgstr "Tóg pacáist"

#. -PO: this is list fomatting: "- <package_name> (medium: <medium_name>)"
#. -PO: eg: "- rpmdrake (medium: "Main Release"
#: ../Rpmdrake/gui.pm:270
#, c-format
msgid "- %s (medium: %s)"
msgstr ""

#: ../Rpmdrake/gui.pm:454
#, c-format
msgid "Removing package %s would break your system"
msgstr ""

#: ../Rpmdrake/gui.pm:459
#, c-format
msgid ""
"The \"%s\" package is in urpmi skip list.\n"
"Do you want to select it anyway?"
msgstr ""

#: ../Rpmdrake/gui.pm:465 ../Rpmdrake/pkg.pm:668
#, c-format
msgid ""
"Rpmdrake or one of its priority dependencies needs to be updated first. "
"Rpmdrake will then restart."
msgstr ""

#: ../Rpmdrake/gui.pm:582 ../Rpmdrake/gui.pm:612 ../Rpmdrake/gui.pm:614
#, c-format
msgid "More information on package..."
msgstr ""

#: ../Rpmdrake/gui.pm:584
#, c-format
msgid "Please choose"
msgstr "Roghnaigh le do thoil"

#: ../Rpmdrake/gui.pm:585
#, fuzzy, c-format
msgid "The following package is needed:"
msgstr "Tá ceann de na pacáistí seo de dhíth:"

#: ../Rpmdrake/gui.pm:585
#, c-format
msgid "One of the following packages is needed:"
msgstr "Tá ceann de na pacáistí seo de dhíth:"

#. -PO: Keep it short, this is gonna be on a button
#: ../Rpmdrake/gui.pm:600 ../Rpmdrake/gui.pm:605
#, c-format
msgid "More info"
msgstr "Eolas Breise"

#: ../Rpmdrake/gui.pm:607
#, fuzzy, c-format
msgid "Information on packages"
msgstr "Teip ag oscailt pacáiste"

#: ../Rpmdrake/gui.pm:635
#, c-format
msgid "Checking dependencies of package..."
msgstr ""

#: ../Rpmdrake/gui.pm:642
#, c-format
msgid "Some additional packages need to be removed"
msgstr ""

#: ../Rpmdrake/gui.pm:643
#, c-format
msgid ""
"Because of their dependencies, the following package(s) also need to be\n"
"removed:"
msgstr ""

#: ../Rpmdrake/gui.pm:649 ../Rpmdrake/gui.pm:659
#, c-format
msgid "Some packages can't be removed"
msgstr ""

#: ../Rpmdrake/gui.pm:650
#, c-format
msgid ""
"Removing these packages would break your system, sorry:\n"
"\n"
msgstr ""

#: ../Rpmdrake/gui.pm:660 ../Rpmdrake/gui.pm:737
#, c-format
msgid ""
"Because of their dependencies, the following package(s) must be\n"
"unselected now:\n"
"\n"
msgstr ""

#: ../Rpmdrake/gui.pm:690
#, c-format
msgid "Additional packages needed"
msgstr ""

#: ../Rpmdrake/gui.pm:691
#, c-format
msgid ""
"To satisfy dependencies, the following package(s) also need\n"
"to be installed:\n"
"\n"
msgstr ""

#: ../Rpmdrake/gui.pm:713
#, c-format
msgid "%s (belongs to the skip list)"
msgstr ""

#: ../Rpmdrake/gui.pm:717
#, c-format
msgid "One package cannot be installed"
msgstr ""

#: ../Rpmdrake/gui.pm:717
#, fuzzy, c-format
msgid "Some packages can't be installed"
msgstr "Níl an pacáiste suiteáilte"

#: ../Rpmdrake/gui.pm:719
#, fuzzy, c-format
msgid ""
"Sorry, the following package cannot be selected:\n"
"\n"
"%s"
msgstr "Tá ceann de na pacáistí seo de dhíth:"

#: ../Rpmdrake/gui.pm:720
#, fuzzy, c-format
msgid ""
"Sorry, the following packages can't be selected:\n"
"\n"
"%s"
msgstr "Tá ceann de na pacáistí seo de dhíth:"

#: ../Rpmdrake/gui.pm:736 ../Rpmdrake/pkg.pm:672
#, c-format
msgid "Some packages need to be removed"
msgstr ""

#: ../Rpmdrake/gui.pm:769
#, c-format
msgid "Error: %s appears to be mounted read-only."
msgstr ""

#: ../Rpmdrake/gui.pm:773
#, c-format
msgid "You need to select some packages first."
msgstr ""

#: ../Rpmdrake/gui.pm:778
#, c-format
msgid "Too many packages are selected"
msgstr ""

#: ../Rpmdrake/gui.pm:779
#, c-format
msgid ""
"Warning: it seems that you are attempting to add so much\n"
"packages that your filesystem may run out of free diskspace,\n"
"during or after package installation ; this is particularly\n"
"dangerous and should be considered with care.\n"
"\n"
"Do you really want to install all the selected packages?"
msgstr ""

#: ../Rpmdrake/gui.pm:805 ../Rpmdrake/open_db.pm:89
#, c-format
msgid "Fatal error"
msgstr "Earráid mharfach"

#: ../Rpmdrake/gui.pm:806 ../Rpmdrake/open_db.pm:90 ../Rpmdrake/pkg.pm:391
#, c-format
msgid "A fatal error occurred: %s."
msgstr ""

#: ../Rpmdrake/gui.pm:841
#, fuzzy, c-format
msgid "Please wait, listing packages..."
msgstr ""
"Fan tamall\n"
"Ag scrios pacáistí"

#: ../Rpmdrake/gui.pm:854
#, fuzzy, c-format
msgid "No update"
msgstr "slí"

#: ../Rpmdrake/gui.pm:881 ../Rpmdrake/icon.pm:35 ../rpmdrake:354
#: ../rpmdrake:381
#, c-format
msgid "All"
msgstr "Gach Rud"

#: ../Rpmdrake/gui.pm:891 ../rpmdrake:193
#, c-format
msgid "Upgradable"
msgstr "In-uasghrádaithe"

#: ../Rpmdrake/gui.pm:891 ../rpmdrake:355
#, c-format
msgid "Installed"
msgstr "Suiteáilte"

#: ../Rpmdrake/gui.pm:892 ../rpmdrake:193
#, fuzzy, c-format
msgid "Addable"
msgstr "Ag Feistiú"

#: ../Rpmdrake/gui.pm:904
#, c-format
msgid "Description not available for this package\n"
msgstr ""

#: ../Rpmdrake/icon.pm:36
#, c-format
msgid "Accessibility"
msgstr "Inrochtaineacht"

#: ../Rpmdrake/icon.pm:37 ../Rpmdrake/icon.pm:38 ../Rpmdrake/icon.pm:39
#: ../Rpmdrake/icon.pm:40 ../Rpmdrake/icon.pm:41
#, c-format
msgid "Archiving"
msgstr "Cartlannú"

#: ../Rpmdrake/icon.pm:38
#, c-format
msgid "Backup"
msgstr "Déan cúltaca"

#: ../Rpmdrake/icon.pm:39
#, c-format
msgid "Cd burning"
msgstr ""

#: ../Rpmdrake/icon.pm:40
#, c-format
msgid "Compression"
msgstr "Comhbhrú"

#: ../Rpmdrake/icon.pm:41 ../Rpmdrake/icon.pm:47 ../Rpmdrake/icon.pm:58
#: ../Rpmdrake/icon.pm:72 ../Rpmdrake/icon.pm:90 ../Rpmdrake/icon.pm:111
#: ../Rpmdrake/icon.pm:124 ../Rpmdrake/icon.pm:135
#, c-format
msgid "Other"
msgstr "Eile"

#: ../Rpmdrake/icon.pm:42 ../Rpmdrake/icon.pm:43 ../Rpmdrake/icon.pm:44
#: ../Rpmdrake/icon.pm:45 ../Rpmdrake/icon.pm:46 ../Rpmdrake/icon.pm:47
#, c-format
msgid "Books"
msgstr "Leabhraí"

#: ../Rpmdrake/icon.pm:43
#, c-format
msgid "Computer books"
msgstr ""

#: ../Rpmdrake/icon.pm:44
#, c-format
msgid "Faqs"
msgstr "FAQanna"

#: ../Rpmdrake/icon.pm:45
#, c-format
msgid "Howtos"
msgstr ""

#: ../Rpmdrake/icon.pm:46
#, c-format
msgid "Literature"
msgstr ""

#: ../Rpmdrake/icon.pm:48
#, c-format
msgid "Communications"
msgstr "Cumarsáidí"

#: ../Rpmdrake/icon.pm:49 ../Rpmdrake/icon.pm:53
#, c-format
msgid "Databases"
msgstr "Bunachair Sonraí"

#: ../Rpmdrake/icon.pm:50 ../Rpmdrake/icon.pm:51 ../Rpmdrake/icon.pm:52
#: ../Rpmdrake/icon.pm:53 ../Rpmdrake/icon.pm:54 ../Rpmdrake/icon.pm:55
#: ../Rpmdrake/icon.pm:56 ../Rpmdrake/icon.pm:57 ../Rpmdrake/icon.pm:58
#: ../Rpmdrake/icon.pm:59 ../Rpmdrake/icon.pm:60 ../Rpmdrake/icon.pm:61
#: ../Rpmdrake/icon.pm:62 ../Rpmdrake/icon.pm:173 ../Rpmdrake/icon.pm:174
#: ../Rpmdrake/icon.pm:175
#, c-format
msgid "Development"
msgstr "Forbairt"

#: ../Rpmdrake/icon.pm:51
#, c-format
msgid "C"
msgstr "C"

#: ../Rpmdrake/icon.pm:52
#, c-format
msgid "C++"
msgstr "C++"

#: ../Rpmdrake/icon.pm:54
#, c-format
msgid "GNOME and GTK+"
msgstr "GNOME agus GTK+"

#: ../Rpmdrake/icon.pm:55
#, c-format
msgid "Java"
msgstr "Java"

#: ../Rpmdrake/icon.pm:56
#, c-format
msgid "KDE and Qt"
msgstr "KDE agus Qt"

#: ../Rpmdrake/icon.pm:57
#, c-format
msgid "Kernel"
msgstr "Eithne"

#: ../Rpmdrake/icon.pm:59
#, c-format
msgid "Perl"
msgstr "Perl"

#: ../Rpmdrake/icon.pm:60
#, c-format
msgid "PHP"
msgstr "PHP"

#: ../Rpmdrake/icon.pm:61
#, c-format
msgid "Python"
msgstr "Python"

#. -PO: This is a package/product name. Only translate it if needed:
#: ../Rpmdrake/icon.pm:62 ../Rpmdrake/icon.pm:150
#, c-format
msgid "X11"
msgstr "X11"

#: ../Rpmdrake/icon.pm:63
#, c-format
msgid "Editors"
msgstr "Eagair"

#: ../Rpmdrake/icon.pm:64
#, c-format
msgid "Education"
msgstr "Oideachas"

#: ../Rpmdrake/icon.pm:65
#, c-format
msgid "Emulators"
msgstr "Iomaitheoirí"

#: ../Rpmdrake/icon.pm:66
#, c-format
msgid "File tools"
msgstr "Uirlisí Chomaid"

#: ../Rpmdrake/icon.pm:67 ../Rpmdrake/icon.pm:68 ../Rpmdrake/icon.pm:69
#: ../Rpmdrake/icon.pm:70 ../Rpmdrake/icon.pm:71 ../Rpmdrake/icon.pm:72
#: ../Rpmdrake/icon.pm:73 ../Rpmdrake/icon.pm:74 ../Rpmdrake/icon.pm:75
#, c-format
msgid "Games"
msgstr "Cluichí"

#: ../Rpmdrake/icon.pm:68
#, c-format
msgid "Adventure"
msgstr "Eachtra"

#: ../Rpmdrake/icon.pm:69
#, c-format
msgid "Arcade"
msgstr "Stuara"

#: ../Rpmdrake/icon.pm:70
#, fuzzy, c-format
msgid "Boards"
msgstr "Fidcheall"

#: ../Rpmdrake/icon.pm:71
#, c-format
msgid "Cards"
msgstr "Cartaí"

#: ../Rpmdrake/icon.pm:73
#, fuzzy, c-format
msgid "Puzzles"
msgstr "Corcra"

#: ../Rpmdrake/icon.pm:74
#, c-format
msgid "Sports"
msgstr "Sport"

#: ../Rpmdrake/icon.pm:75
#, c-format
msgid "Strategy"
msgstr "Stratéis"

#: ../Rpmdrake/icon.pm:76 ../Rpmdrake/icon.pm:77 ../Rpmdrake/icon.pm:80
#: ../Rpmdrake/icon.pm:81 ../Rpmdrake/icon.pm:84 ../Rpmdrake/icon.pm:87
#: ../Rpmdrake/icon.pm:90 ../Rpmdrake/icon.pm:91 ../Rpmdrake/icon.pm:94
#: ../Rpmdrake/icon.pm:97
#, fuzzy, c-format
msgid "Graphical desktop"
msgstr "Grafaic"

#. -PO: This is a package/product name. Only translate it if needed:
#: ../Rpmdrake/icon.pm:79
#, c-format
msgid "Enlightenment"
msgstr "Enlightenment"

#: ../Rpmdrake/icon.pm:80
#, c-format
msgid "FVWM based"
msgstr ""

#. -PO: This is a package/product name. Only translate it if needed:
#: ../Rpmdrake/icon.pm:83
#, c-format
msgid "GNOME"
msgstr "GNOME"

#. -PO: This is a package/product name. Only translate it if needed:
#: ../Rpmdrake/icon.pm:86
#, c-format
msgid "Icewm"
msgstr ""

#. -PO: This is a package/product name. Only translate it if needed:
#: ../Rpmdrake/icon.pm:89
#, c-format
msgid "KDE"
msgstr "KDE"

#. -PO: This is a package/product name. Only translate it if needed:
#: ../Rpmdrake/icon.pm:93
#, c-format
msgid "Sawfish"
msgstr "Sawfish"

#. -PO: This is a package/product name. Only translate it if needed:
#: ../Rpmdrake/icon.pm:96
#, c-format
msgid "WindowMaker"
msgstr "WindowMaker"

#. -PO: This is a package/product name. Only translate it if needed:
#: ../Rpmdrake/icon.pm:99
#, c-format
msgid "Xfce"
msgstr ""

#: ../Rpmdrake/icon.pm:100
#, c-format
msgid "Graphics"
msgstr "Grafaic"

#: ../Rpmdrake/icon.pm:101
#, fuzzy, c-format
msgid "Monitoring"
msgstr "Scáileán"

#: ../Rpmdrake/icon.pm:102 ../Rpmdrake/icon.pm:103
#, c-format
msgid "Multimedia"
msgstr "Ilmheánach"

#: ../Rpmdrake/icon.pm:103 ../Rpmdrake/icon.pm:154
#, c-format
msgid "Video"
msgstr "Fís"

#: ../Rpmdrake/icon.pm:104 ../Rpmdrake/icon.pm:105 ../Rpmdrake/icon.pm:106
#: ../Rpmdrake/icon.pm:107 ../Rpmdrake/icon.pm:108 ../Rpmdrake/icon.pm:109
#: ../Rpmdrake/icon.pm:110 ../Rpmdrake/icon.pm:111 ../Rpmdrake/icon.pm:112
#: ../Rpmdrake/icon.pm:113 ../Rpmdrake/icon.pm:134
#, c-format
msgid "Networking"
msgstr "Líonrú"

#: ../Rpmdrake/icon.pm:105
#, c-format
msgid "Chat"
msgstr "Comhrá"

#: ../Rpmdrake/icon.pm:106
#, c-format
msgid "File transfer"
msgstr "Aistriú comhad"

#: ../Rpmdrake/icon.pm:107
#, c-format
msgid "IRC"
msgstr "IRC"

#: ../Rpmdrake/icon.pm:108
#, c-format
msgid "Instant messaging"
msgstr "Teachtaireachtaí meandaracha"

#: ../Rpmdrake/icon.pm:109 ../Rpmdrake/icon.pm:180
#, c-format
msgid "Mail"
msgstr "Post"

#: ../Rpmdrake/icon.pm:110
#, c-format
msgid "News"
msgstr "Nuacht"

#: ../Rpmdrake/icon.pm:112
#, fuzzy, c-format
msgid "Remote access"
msgstr "Líonra/Deamhain"

#: ../Rpmdrake/icon.pm:113
#, c-format
msgid "WWW"
msgstr "WWW"

#: ../Rpmdrake/icon.pm:114
#, c-format
msgid "Office"
msgstr "Oifig"

#: ../Rpmdrake/icon.pm:115
#, c-format
msgid "Public Keys"
msgstr ""

#: ../Rpmdrake/icon.pm:116
#, c-format
msgid "Publishing"
msgstr "Foilsitheoireacht"

#: ../Rpmdrake/icon.pm:117 ../Rpmdrake/icon.pm:118 ../Rpmdrake/icon.pm:119
#: ../Rpmdrake/icon.pm:120 ../Rpmdrake/icon.pm:121 ../Rpmdrake/icon.pm:122
#: ../Rpmdrake/icon.pm:123 ../Rpmdrake/icon.pm:124 ../Rpmdrake/icon.pm:125
#, c-format
msgid "Sciences"
msgstr "Eolaíochtaí"

#: ../Rpmdrake/icon.pm:118
#, c-format
msgid "Astronomy"
msgstr "Réalteolaíocht"

#: ../Rpmdrake/icon.pm:119
#, c-format
msgid "Biology"
msgstr "Bitheolaíocht"

#: ../Rpmdrake/icon.pm:120
#, c-format
msgid "Chemistry"
msgstr "Ceimic"

#: ../Rpmdrake/icon.pm:121
#, c-format
msgid "Computer science"
msgstr "Riomheolaíocht"

#: ../Rpmdrake/icon.pm:122
#, fuzzy, c-format
msgid "Geosciences"
msgstr "Eolaíochtaí"

#: ../Rpmdrake/icon.pm:123
#, c-format
msgid "Mathematics"
msgstr "Mathemaitce"

#: ../Rpmdrake/icon.pm:125
#, c-format
msgid "Physics"
msgstr "Fisic"

#: ../Rpmdrake/icon.pm:126
#, c-format
msgid "Shells"
msgstr "Blaoscanna"

#: ../Rpmdrake/icon.pm:127
#, c-format
msgid "Sound"
msgstr "Fuaim"

#: ../Rpmdrake/icon.pm:128 ../Rpmdrake/icon.pm:129 ../Rpmdrake/icon.pm:130
#: ../Rpmdrake/icon.pm:131 ../Rpmdrake/icon.pm:132 ../Rpmdrake/icon.pm:133
#: ../Rpmdrake/icon.pm:134 ../Rpmdrake/icon.pm:135 ../Rpmdrake/icon.pm:136
#: ../Rpmdrake/icon.pm:137 ../Rpmdrake/icon.pm:138 ../Rpmdrake/icon.pm:139
#: ../Rpmdrake/icon.pm:140 ../Rpmdrake/icon.pm:141 ../Rpmdrake/icon.pm:142
#: ../Rpmdrake/icon.pm:143 ../Rpmdrake/icon.pm:144 ../Rpmdrake/icon.pm:145
#: ../Rpmdrake/icon.pm:146 ../Rpmdrake/icon.pm:147 ../Rpmdrake/icon.pm:148
#, c-format
msgid "System"
msgstr "Córas"

#: ../Rpmdrake/icon.pm:129
#, c-format
msgid "Base"
msgstr "Bonn"

#: ../Rpmdrake/icon.pm:130
#, c-format
msgid "Cluster"
msgstr ""

#: ../Rpmdrake/icon.pm:131 ../Rpmdrake/icon.pm:132 ../Rpmdrake/icon.pm:133
#: ../Rpmdrake/icon.pm:134 ../Rpmdrake/icon.pm:135 ../Rpmdrake/icon.pm:136
#: ../Rpmdrake/icon.pm:137 ../Rpmdrake/icon.pm:158
#, c-format
msgid "Configuration"
msgstr "Cumraíocht"

#: ../Rpmdrake/icon.pm:132
#, c-format
msgid "Boot and Init"
msgstr "Tosnú"

#: ../Rpmdrake/icon.pm:133
#, c-format
msgid "Hardware"
msgstr "Crua-earraí"

#: ../Rpmdrake/icon.pm:136
#, fuzzy, c-format
msgid "Packaging"
msgstr "KPackage"

#: ../Rpmdrake/icon.pm:137 ../Rpmdrake/icon.pm:146
#, c-format
msgid "Printing"
msgstr "Priontáil"

#: ../Rpmdrake/icon.pm:138 ../Rpmdrake/icon.pm:139 ../Rpmdrake/icon.pm:140
#: ../Rpmdrake/icon.pm:141 ../Rpmdrake/icon.pm:142
#, c-format
msgid "Fonts"
msgstr "Chlofhoireanna"

#: ../Rpmdrake/icon.pm:139
#, c-format
msgid "Console"
msgstr "Consóil"

#: ../Rpmdrake/icon.pm:140
#, c-format
msgid "True type"
msgstr "True type"

#: ../Rpmdrake/icon.pm:141
#, c-format
msgid "Type1"
msgstr "Type1"

#: ../Rpmdrake/icon.pm:142
#, fuzzy, c-format
msgid "X11 bitmap"
msgstr "Córas/Clófhoirne/True Type"

#: ../Rpmdrake/icon.pm:143
#, c-format
msgid "Internationalization"
msgstr "Idirnáisiúnú"

#: ../Rpmdrake/icon.pm:144
#, c-format
msgid "Kernel and hardware"
msgstr ""

#: ../Rpmdrake/icon.pm:145
#, c-format
msgid "Libraries"
msgstr "Leabharlanna"

#: ../Rpmdrake/icon.pm:147
#, c-format
msgid "Servers"
msgstr "Freastalaithe"

#: ../Rpmdrake/icon.pm:151
#, c-format
msgid "Terminals"
msgstr "Teirminealanna"

#: ../Rpmdrake/icon.pm:152
#, c-format
msgid "Text tools"
msgstr "Uirlisí Teacs"

#: ../Rpmdrake/icon.pm:153
#, c-format
msgid "Toys"
msgstr "Cluichí"

#: ../Rpmdrake/icon.pm:157 ../Rpmdrake/icon.pm:158 ../Rpmdrake/icon.pm:159
#: ../Rpmdrake/icon.pm:160 ../Rpmdrake/icon.pm:161 ../Rpmdrake/icon.pm:162
#: ../Rpmdrake/icon.pm:163 ../Rpmdrake/icon.pm:164 ../Rpmdrake/icon.pm:165
#: ../Rpmdrake/icon.pm:166
#, c-format
msgid "Workstation"
msgstr "Stáisiún Oibre"

#: ../Rpmdrake/icon.pm:159
#, c-format
msgid "Console Tools"
msgstr "Uirlisí Consóil"

#: ../Rpmdrake/icon.pm:160 ../Rpmdrake/icon.pm:175
#, c-format
msgid "Documentation"
msgstr "Doiciméadú"

#: ../Rpmdrake/icon.pm:161
#, c-format
msgid "Game station"
msgstr "Stáisiún Cluichí"

#: ../Rpmdrake/icon.pm:162
#, c-format
msgid "Internet station"
msgstr "Stáisiún Idirlíon"

#: ../Rpmdrake/icon.pm:163
#, c-format
msgid "Multimedia station"
msgstr "Stáisiún ilmheánach"

#: ../Rpmdrake/icon.pm:164
#, fuzzy, c-format
msgid "Network Computer (client)"
msgstr "Printéir Gréasán (lpd)"

#: ../Rpmdrake/icon.pm:165
#, c-format
msgid "Office Workstation"
msgstr "Stáisiún Oibre"

#: ../Rpmdrake/icon.pm:166
#, c-format
msgid "Scientific Workstation"
msgstr ""

#: ../Rpmdrake/icon.pm:167 ../Rpmdrake/icon.pm:169 ../Rpmdrake/icon.pm:170
#: ../Rpmdrake/icon.pm:171 ../Rpmdrake/icon.pm:172
#, c-format
msgid "Graphical Environment"
msgstr "Timpeallacht Ghrafach"

#: ../Rpmdrake/icon.pm:169
#, c-format
msgid "GNOME Workstation"
msgstr "Stáisiún Gnome"

#: ../Rpmdrake/icon.pm:170
#, fuzzy, c-format
msgid "IceWm Desktop"
msgstr "Deasc"

#: ../Rpmdrake/icon.pm:171
#, c-format
msgid "KDE Workstation"
msgstr "Stáisiún KDE"

#: ../Rpmdrake/icon.pm:172
#, c-format
msgid "Other Graphical Desktops"
msgstr "Deasc Graphaicí Eile"

#: ../Rpmdrake/icon.pm:176 ../Rpmdrake/icon.pm:177 ../Rpmdrake/icon.pm:178
#: ../Rpmdrake/icon.pm:179 ../Rpmdrake/icon.pm:180 ../Rpmdrake/icon.pm:181
#: ../Rpmdrake/icon.pm:182 ../Rpmdrake/icon.pm:183
#, c-format
msgid "Server"
msgstr "Freastalaí"

#: ../Rpmdrake/icon.pm:177
#, fuzzy, c-format
msgid "DNS/NIS"
msgstr "DNS/NIS "

#: ../Rpmdrake/icon.pm:178
#, c-format
msgid "Database"
msgstr "Bunachar Sonraí"

#: ../Rpmdrake/icon.pm:179
#, c-format
msgid "Firewall/Router"
msgstr ""

#: ../Rpmdrake/icon.pm:181
#, c-format
msgid "Mail/Groupware/News"
msgstr ""

#: ../Rpmdrake/icon.pm:182
#, fuzzy, c-format
msgid "Network Computer server"
msgstr "Cláréadan Gréasán"

#: ../Rpmdrake/icon.pm:183
#, c-format
msgid "Web/FTP"
msgstr "Greasan/FTP"

#: ../Rpmdrake/init.pm:49
#, c-format
msgid "Usage: %s [OPTION]..."
msgstr "Úsáid: %s [ROGHA]..."

#: ../Rpmdrake/init.pm:50
#, c-format
msgid "  --auto                 assume default answers to questions"
msgstr ""

#: ../Rpmdrake/init.pm:51
#, c-format
msgid ""
"  --changelog-first      display changelog before filelist in the "
"description window"
msgstr ""

#: ../Rpmdrake/init.pm:52
#, c-format
msgid "  --media=medium1,..     limit to given media"
msgstr ""

#: ../Rpmdrake/init.pm:53
#, c-format
msgid ""
"  --merge-all-rpmnew     propose to merge all .rpmnew/.rpmsave files found"
msgstr ""

#: ../Rpmdrake/init.pm:54
#, c-format
msgid "  --mode=MODE            set mode (install (default), remove, update)"
msgstr ""

#: ../Rpmdrake/init.pm:55
#, c-format
msgid ""
"  --justdb               update the database, but do not modify the "
"filesystem"
msgstr ""

#: ../Rpmdrake/init.pm:56
#, c-format
msgid ""
"  --no-confirmation      don't ask first confirmation question in update mode"
msgstr ""

#: ../Rpmdrake/init.pm:57
#, c-format
msgid "  --no-media-update      don't update media at startup"
msgstr ""

#: ../Rpmdrake/init.pm:58
#, c-format
msgid ""
"  --no-splash            don't ask first confirmation question in update mode"
msgstr ""

#: ../Rpmdrake/init.pm:59
#, c-format
msgid "  --no-verify-rpm        don't verify packages signatures"
msgstr ""

#: ../Rpmdrake/init.pm:60
#, c-format
msgid ""
"  --parallel=alias,host  be in parallel mode, use \"alias\" group, use \"host"
"\" machine to show needed deps"
msgstr ""

#: ../Rpmdrake/init.pm:61
#, c-format
msgid "  --rpm-root=path        use another root for rpm installation"
msgstr ""

#: ../Rpmdrake/init.pm:62
#, c-format
msgid ""
"  --urpmi-root           use another root for urpmi db & rpm installation"
msgstr ""

#: ../Rpmdrake/init.pm:63
#, c-format
msgid "  --root                 force to run as root"
msgstr ""

#: ../Rpmdrake/init.pm:63
#, fuzzy, c-format
msgid "(Deprecated)"
msgstr "Roghnaithe"

#: ../Rpmdrake/init.pm:64
#, c-format
msgid "  --run-as-root          force to run as root"
msgstr ""

#: ../Rpmdrake/init.pm:65
#, c-format
msgid "  --search=pkg           run search for \"pkg\""
msgstr ""

#: ../Rpmdrake/init.pm:66
#, c-format
msgid ""
"  --test                 only verify if the installation can be achieved "
"correctly"
msgstr ""

#: ../Rpmdrake/init.pm:67
#, c-format
msgid "  --version              print this tool's version number\n"
msgstr ""

#: ../Rpmdrake/init.pm:156
#, c-format
msgid "Running in user mode"
msgstr ""

#: ../Rpmdrake/init.pm:157
#, c-format
msgid ""
"You are launching this program as a normal user.\n"
"You will not be able to perform modifications on the system,\n"
"but you may still browse the existing database."
msgstr ""

#: ../Rpmdrake/pkg.pm:104
#, c-format
msgid "Getting information from XML meta-data from %s..."
msgstr ""

#: ../Rpmdrake/pkg.pm:108
#, c-format
msgid "Getting '%s' from XML meta-data..."
msgstr ""

#: ../Rpmdrake/pkg.pm:111 ../Rpmdrake/pkg.pm:359 ../Rpmdrake/pkg.pm:692
#: ../Rpmdrake/pkg.pm:882 ../rpmdrake:127 ../rpmdrake.pm:352
#: ../rpmdrake.pm:561
#, c-format
msgid "Please wait"
msgstr "Fan tamall"

#: ../Rpmdrake/pkg.pm:123
#, c-format
msgid "No xml info for medium \"%s\", only partial result for package %s"
msgstr ""

#: ../Rpmdrake/pkg.pm:125
#, c-format
msgid ""
"No xml info for medium \"%s\", unable to return any result for package %s"
msgstr ""

#: ../Rpmdrake/pkg.pm:178 ../Rpmdrake/pkg.pm:183
#, fuzzy, c-format
msgid "Downloading package `%s'..."
msgstr "Ag feistiál  pacáiste %s"

#: ../Rpmdrake/pkg.pm:185
#, c-format
msgid "        %s%% of %s completed, ETA = %s, speed = %s"
msgstr ""

#: ../Rpmdrake/pkg.pm:186
#, c-format
msgid "        %s%% completed, speed = %s"
msgstr ""

#: ../Rpmdrake/pkg.pm:229 ../Rpmdrake/pkg.pm:672
#, c-format
msgid "Confirmation"
msgstr "Deimhniú"

#: ../Rpmdrake/pkg.pm:230
#, c-format
msgid ""
"I need to contact the mirror to get latest update packages.\n"
"Please check that your network is currently running.\n"
"\n"
"Is it ok to continue?"
msgstr ""

#: ../Rpmdrake/pkg.pm:234
#, c-format
msgid "Do not ask me next time"
msgstr ""

#: ../Rpmdrake/pkg.pm:243
#, fuzzy, c-format
msgid "Already existing update media"
msgstr ""
"Fan tamall\n"
"Checking dependencies"

#: ../Rpmdrake/pkg.pm:244
#, c-format
msgid ""
"You already have at least one update medium configured, but\n"
"all of them are currently disabled. You should run the Software\n"
"Media Manager to enable at least one (check it in the \"%s\"\n"
"column).\n"
"\n"
"Then, restart \"%s\"."
msgstr ""

#: ../Rpmdrake/pkg.pm:254
#, c-format
msgid ""
"You have no configured update media. MandrivaUpdate cannot operate without "
"any update media."
msgstr ""

#: ../Rpmdrake/pkg.pm:255 ../rpmdrake.pm:594
#, c-format
msgid ""
"I need to contact the Mandriva website to get the mirror list.\n"
"Please check that your network is currently running.\n"
"\n"
"Is it ok to continue?"
msgstr ""

#: ../Rpmdrake/pkg.pm:262
#, c-format
msgid "How to choose manually your mirror"
msgstr ""

#: ../Rpmdrake/pkg.pm:263
#, c-format
msgid ""
"You may also choose your desired mirror manually: to do so,\n"
"launch the Software Media Manager, and then add a `Security\n"
"updates' medium.\n"
"\n"
"Then, restart %s."
msgstr ""

#: ../Rpmdrake/pkg.pm:359 ../Rpmdrake/pkg.pm:692
#, fuzzy, c-format
msgid "Package installation..."
msgstr "Ag Ullmhaigh feistiú"

#: ../Rpmdrake/pkg.pm:359 ../Rpmdrake/pkg.pm:692 ../Rpmdrake/pkg.pm:882
#, c-format
msgid "Initializing..."
msgstr "Ag Túsú..."

#: ../Rpmdrake/pkg.pm:374
#, fuzzy, c-format
msgid "Reading updates description"
msgstr "Cuntasaí"

#: ../Rpmdrake/pkg.pm:380 ../Rpmdrake/pkg.pm:416
#, fuzzy, c-format
msgid "Please wait, finding available packages..."
msgstr ""
"Fan tamall\n"
"Ag scrios pacáistí"

#: ../Rpmdrake/pkg.pm:386
#, fuzzy, c-format
msgid "Please wait, listing base packages..."
msgstr ""
"Fan tamall\n"
"Ag scrios pacáistí"

#: ../Rpmdrake/pkg.pm:391 ../Rpmdrake/pkg.pm:808 ../Rpmdrake/pkg.pm:831
#: ../rpmdrake.pm:780 ../rpmdrake.pm:870 ../rpmdrake.pm:894
#, c-format
msgid "Error"
msgstr "Earraidh"

#: ../Rpmdrake/pkg.pm:399
#, fuzzy, c-format
msgid "Please wait, finding installed packages..."
msgstr ""
"Fan tamall\n"
"Ag scrios pacáistí"

#: ../Rpmdrake/pkg.pm:554
#, c-format
msgid "Upgrade information"
msgstr ""

#: ../Rpmdrake/pkg.pm:556
#, c-format
msgid "These packages come with upgrade information"
msgstr ""

#: ../Rpmdrake/pkg.pm:564
#, fuzzy, c-format
msgid "Upgrade information about this package"
msgstr "Teip ag oscailt pacáiste"

#: ../Rpmdrake/pkg.pm:567
#, fuzzy, c-format
msgid "Upgrade information about package %s"
msgstr "Teip ag oscailt pacáiste"

#: ../Rpmdrake/pkg.pm:589 ../Rpmdrake/pkg.pm:825
#, c-format
msgid "All requested packages were installed successfully."
msgstr ""

#: ../Rpmdrake/pkg.pm:593 ../Rpmdrake/pkg.pm:799
#, c-format
msgid "Problem during installation"
msgstr ""

#: ../Rpmdrake/pkg.pm:594 ../Rpmdrake/pkg.pm:614 ../Rpmdrake/pkg.pm:801
#, c-format
msgid ""
"There was a problem during the installation:\n"
"\n"
"%s"
msgstr ""

#: ../Rpmdrake/pkg.pm:613
#, c-format
msgid "Installation failed"
msgstr "Theip ag feistiú"

#: ../Rpmdrake/pkg.pm:633
#, c-format
msgid "Checking validity of requested packages..."
msgstr ""

#: ../Rpmdrake/pkg.pm:649
#, c-format
msgid "Unable to get source packages."
msgstr ""

#: ../Rpmdrake/pkg.pm:650
#, c-format
msgid "Unable to get source packages, sorry. %s"
msgstr ""

#: ../Rpmdrake/pkg.pm:651
#, c-format
msgid ""
"\n"
"\n"
"Error(s) reported:\n"
"%s"
msgstr ""

#: ../Rpmdrake/pkg.pm:669
#, c-format
msgid "The following package is going to be installed:"
msgid_plural "The following %d packages are going to be installed:"
msgstr[0] "Tá ceann de na pacáistí seo de dhíth:"
msgstr[1] "Tá ceann de na pacáistí seo de dhíth:"

#: ../Rpmdrake/pkg.pm:675
#, c-format
msgid "Remove one package?"
msgid_plural "Remove %d packages?"
msgstr[0] "Scríos Printéir"
msgstr[1] "Scríos Printéir"

#: ../Rpmdrake/pkg.pm:677
#, c-format
msgid "The following package has to be removed for others to be upgraded:"
msgstr ""

#: ../Rpmdrake/pkg.pm:678
#, c-format
msgid "The following packages have to be removed for others to be upgraded:"
msgstr ""

#: ../Rpmdrake/pkg.pm:681
#, c-format
msgid "%s of packages will be retrieved."
msgstr ""

#: ../Rpmdrake/pkg.pm:683
#, c-format
msgid "Is it ok to continue?"
msgstr ""

#: ../Rpmdrake/pkg.pm:699 ../Rpmdrake/pkg.pm:866
#, fuzzy, c-format
msgid "Orphan packages"
msgstr "Tóg pacáist"

#: ../Rpmdrake/pkg.pm:699
#, fuzzy, c-format
msgid "The following orphan package will be removed."
msgid_plural "The following orphan packages will be removed."
msgstr[0] "Tá ceann de na pacáistí seo de dhíth:"
msgstr[1] "Tá ceann de na pacáistí seo de dhíth:"

#: ../Rpmdrake/pkg.pm:713
#, fuzzy, c-format
msgid "Preparing packages installation..."
msgstr "Ag Ullmhaigh feistiú"

#: ../Rpmdrake/pkg.pm:713
#, fuzzy, c-format
msgid "Preparing package installation transaction..."
msgstr "Ag Ullmhaigh feistiú"

#: ../Rpmdrake/pkg.pm:716
#, fuzzy, c-format
msgid "Installing package `%s' (%s/%s)..."
msgstr ""
"Ag feisteáil pacáiste %s\n"
"%d%%"

#: ../Rpmdrake/pkg.pm:717
#, c-format
msgid "Total: %s/%s"
msgstr ""

#: ../Rpmdrake/pkg.pm:772
#, c-format
msgid "Change medium"
msgstr ""

#: ../Rpmdrake/pkg.pm:773
#, c-format
msgid "Please insert the medium named \"%s\""
msgstr ""

#: ../Rpmdrake/pkg.pm:777
#, c-format
msgid "Verifying package signatures..."
msgstr ""

#: ../Rpmdrake/pkg.pm:800
#, fuzzy, c-format
msgid "%d installation transactions failed"
msgstr "Theip ag feistiú"

#: ../Rpmdrake/pkg.pm:809
#, c-format
msgid "Unrecoverable error: no package found for installation, sorry."
msgstr ""

#: ../Rpmdrake/pkg.pm:812
#, c-format
msgid "Inspecting configuration files..."
msgstr ""

#: ../Rpmdrake/pkg.pm:820
#, c-format
msgid ""
"The installation is finished; everything was installed correctly.\n"
"\n"
"Some configuration files were created as `.rpmnew' or `.rpmsave',\n"
"you may now inspect some in order to take actions:"
msgstr ""

#: ../Rpmdrake/pkg.pm:826
#, c-format
msgid "Looking for \"README\" files..."
msgstr ""

#: ../Rpmdrake/pkg.pm:857
#, c-format
msgid "RPM transaction %d/%d"
msgstr ""

#: ../Rpmdrake/pkg.pm:858
#, fuzzy, c-format
msgid "Unselect all"
msgstr "Roghnaigh gach rud"

#: ../Rpmdrake/pkg.pm:859
#, c-format
msgid "Details"
msgstr ""

#: ../Rpmdrake/pkg.pm:882 ../Rpmdrake/pkg.pm:898
#, fuzzy, c-format
msgid "Please wait, removing packages..."
msgstr ""
"Fan tamall\n"
"Ag scrios pacáistí"

#: ../Rpmdrake/pkg.pm:911
#, c-format
msgid "Problem during removal"
msgstr ""

#: ../Rpmdrake/pkg.pm:912
#, c-format
msgid ""
"There was a problem during the removal of packages:\n"
"\n"
"%s"
msgstr ""

#: ../Rpmdrake/rpmnew.pm:77
#, c-format
msgid "Inspecting %s"
msgstr ""

#: ../Rpmdrake/rpmnew.pm:102
#, fuzzy, c-format
msgid "Changes:"
msgstr "KPresenter"

#: ../Rpmdrake/rpmnew.pm:111
#, c-format
msgid ""
"You can either remove the .%s file, use it as main file or do nothing. If "
"unsure, keep the current file (\"%s\")."
msgstr ""

#: ../Rpmdrake/rpmnew.pm:112 ../Rpmdrake/rpmnew.pm:117
#, c-format
msgid "Remove .%s"
msgstr ""

#: ../Rpmdrake/rpmnew.pm:121
#, c-format
msgid "Use .%s as main file"
msgstr ""

#: ../Rpmdrake/rpmnew.pm:125
#, c-format
msgid "Do nothing"
msgstr "Ná déan faic"

#: ../Rpmdrake/rpmnew.pm:157
#, fuzzy, c-format
msgid "Installation finished"
msgstr "Theip ag feistiú"

#: ../Rpmdrake/rpmnew.pm:172
#, c-format
msgid "Inspect..."
msgstr "Scrúdaigh..."

#: ../Rpmdrake/rpmnew.pm:190 ../rpmdrake:95
#, fuzzy, c-format
msgid "Please wait, searching..."
msgstr ""
"Fan tamall\n"
"Ag scrios pacáistí"

#: ../gurpmi.addmedia:103
#, c-format
msgid "bad <url> (for local directory, the path must be absolute)"
msgstr ""

#: ../gurpmi.addmedia:117
#, c-format
msgid ""
"%s\n"
"\n"
"Is it ok to continue?"
msgstr ""

#: ../gurpmi.addmedia:121
#, c-format
msgid ""
"You are about to add new packages media, %s.\n"
"That means you will be able to add new software packages\n"
"to your system from these new media."
msgstr ""

#: ../gurpmi.addmedia:124
#, c-format
msgid ""
"You are about to add a new packages medium, `%s'.\n"
"That means you will be able to add new software packages\n"
"to your system from that new medium."
msgstr ""

#: ../gurpmi.addmedia:150
#, c-format
msgid "Successfully added media %s."
msgstr ""

#: ../gurpmi.addmedia:151
#, c-format
msgid "Successfully added medium `%s'."
msgstr ""

#: ../rpmdrake:67
#, c-format
msgid "Search results"
msgstr "Torthaí Cuardaigh"

#: ../rpmdrake:67
#, fuzzy, c-format
msgid "Search results (none)"
msgstr "Cuardaigh"

#: ../rpmdrake:100
#, c-format
msgid "Stop"
msgstr "Stad"

#: ../rpmdrake:134
#, c-format
msgid "no xml-info available for medium \"%s\""
msgstr ""

#: ../rpmdrake:150 ../rpmdrake:178
#, fuzzy, c-format
msgid "Search aborted"
msgstr "Torthaí Cuardaigh"

#: ../rpmdrake:195
#, c-format
msgid "Selected"
msgstr "Roghnaithe"

#: ../rpmdrake:195
#, fuzzy, c-format
msgid "Not selected"
msgstr "Tóg gach rud"

#: ../rpmdrake:231
#, c-format
msgid "Selected: %s / Free disk space: %s"
msgstr ""

#: ../rpmdrake:271
#, fuzzy, c-format
msgid "Package"
msgstr "Tóg pacáist"

#. -PO: "Architecture" but to be kept *small* !!!
#: ../rpmdrake:285
#, fuzzy, c-format
msgid "Arch."
msgstr "Cartlannú"

#. -PO: "Status" should be kept *small* !!!
#: ../rpmdrake:313
#, c-format
msgid "Status"
msgstr ""

#: ../rpmdrake:356
#, fuzzy, c-format
msgid "Not installed"
msgstr "Ag Feistiú:"

#: ../rpmdrake:371
#, c-format
msgid "All packages, alphabetical"
msgstr ""

#: ../rpmdrake:372
#, c-format
msgid "All packages, by group"
msgstr ""

#: ../rpmdrake:373
#, c-format
msgid "Leaves only, sorted by install date"
msgstr ""

#: ../rpmdrake:374
#, c-format
msgid "All packages, by update availability"
msgstr ""

#: ../rpmdrake:375
#, c-format
msgid "All packages, by selection state"
msgstr ""

#: ../rpmdrake:376
#, c-format
msgid "All packages, by size"
msgstr ""

#: ../rpmdrake:377
#, c-format
msgid "All packages, by medium repository"
msgstr ""

#. -PO: Backports media are newer but less-tested versions of some packages in main
#. -PO: See http://wiki.mandriva.com/en/Policies/SoftwareMedia#.2Fmain.2Fbackports
#: ../rpmdrake:385
#, fuzzy, c-format
msgid "Backports"
msgstr "Déan cúltaca"

#: ../rpmdrake:386
#, fuzzy, c-format
msgid "Meta packages"
msgstr "Tóg pacáist"

#: ../rpmdrake:387
#, c-format
msgid "Packages with GUI"
msgstr ""

#: ../rpmdrake:388
#, fuzzy, c-format
msgid "All updates"
msgstr "slí"

#: ../rpmdrake:389
#, fuzzy, c-format
msgid "Security updates"
msgstr "Roghnaigh liebhéal slándáil"

#: ../rpmdrake:390
#, c-format
msgid "Bugfixes updates"
msgstr ""

#: ../rpmdrake:391
#, fuzzy, c-format
msgid "General updates"
msgstr "slí"

#: ../rpmdrake:414
#, c-format
msgid "View"
msgstr "Radharc"

#: ../rpmdrake:442
#, fuzzy, c-format
msgid "Filter"
msgstr "/C_omhad"

#: ../rpmdrake:478
#, c-format
msgid "in names"
msgstr ""

#: ../rpmdrake:478
#, fuzzy, c-format
msgid "in descriptions"
msgstr "Cuntasaí"

#: ../rpmdrake:478
#, c-format
msgid "in summaries"
msgstr ""

#: ../rpmdrake:478
#, fuzzy, c-format
msgid "in file names"
msgstr "Fíor ainm"

#: ../rpmdrake:517
#, c-format
msgid "/_Select dependencies without asking"
msgstr ""

#: ../rpmdrake:518
#, c-format
msgid "Clear download cache after successfull install"
msgstr ""

#: ../rpmdrake:524
#, fuzzy, c-format
msgid "/_Update media"
msgstr ""
"Fan tamall\n"
"Ag scrios pacáistí"

#: ../rpmdrake:529
#, c-format
msgid "/_Reset the selection"
msgstr ""

#: ../rpmdrake:544
#, c-format
msgid "/Reload the _packages list"
msgstr ""

#: ../rpmdrake:545
#, c-format
msgid "/_Quit"
msgstr "/_Ériggh"

#: ../rpmdrake:545
#, c-format
msgid "<control>Q"
msgstr "<control>E"

#: ../rpmdrake:555
#, fuzzy, c-format
msgid "/_Media Manager"
msgstr "Bainisteoir Chomad"

#: ../rpmdrake:559 ../rpmdrake:615
#, c-format
msgid "/_Show automatically selected packages"
msgstr ""

#: ../rpmdrake:563 ../rpmdrake:566 ../rpmdrake:571 ../rpmdrake:603
#, c-format
msgid "/_View"
msgstr "/_Radharc"

#: ../rpmdrake:631
#, c-format
msgid "Find:"
msgstr "Faigh:"

#: ../rpmdrake:634
#, c-format
msgid "Find"
msgstr "Faigh"

#: ../rpmdrake:659
#, c-format
msgid "Apply"
msgstr "Deán"

#: ../rpmdrake:678
#, c-format
msgid "Quick Introduction"
msgstr ""

#: ../rpmdrake:679
#, c-format
msgid "You can browse the packages through the categories tree on the left."
msgstr ""

#: ../rpmdrake:680
#, c-format
msgid ""
"You can view information about a package by clicking on it on the right list."
msgstr ""

#: ../rpmdrake:681
#, c-format
msgid "To install, update or remove a package, just click on its \"checkbox\"."
msgstr ""

#: ../rpmdrake.pm:115
#, c-format
msgid "Software Update"
msgstr "Nuashonrú Bogearraí"

#: ../rpmdrake.pm:115
#, fuzzy, c-format
msgid "Mandriva Linux Update"
msgstr "HardDrake"

#: ../rpmdrake.pm:142
#, c-format
msgid "Please enter your credentials for accessing proxy\n"
msgstr ""

#: ../rpmdrake.pm:143
#, c-format
msgid "User name:"
msgstr "Ainm úsáideora:"

#: ../rpmdrake.pm:205
#, fuzzy, c-format
msgid "Software Packages Removal"
msgstr "Bainisteóir Bóg-Earraí"

#: ../rpmdrake.pm:206 ../rpmdrake.pm:210
#, fuzzy, c-format
msgid "Software Packages Update"
msgstr "Bainisteóir Bóg-Earraí"

#: ../rpmdrake.pm:207
#, fuzzy, c-format
msgid "Software Packages Installation"
msgstr "Roghnú Grúpa Pacáistí"

#: ../rpmdrake.pm:251
#, c-format
msgid "No"
msgstr "Níl"

#: ../rpmdrake.pm:255
#, c-format
msgid "Yes"
msgstr "Tá"

#: ../rpmdrake.pm:307
#, c-format
msgid "Info..."
msgstr "Eolas..."

#: ../rpmdrake.pm:432
#, c-format
msgid "Austria"
msgstr "An Ostair"

#: ../rpmdrake.pm:433
#, c-format
msgid "Australia"
msgstr "An Aistráil"

#: ../rpmdrake.pm:434
#, c-format
msgid "Belgium"
msgstr "An Bheilg"

#: ../rpmdrake.pm:435
#, c-format
msgid "Brazil"
msgstr "An Bhrasail"

#: ../rpmdrake.pm:436
#, c-format
msgid "Canada"
msgstr "Ceanada"

#: ../rpmdrake.pm:437
#, c-format
msgid "Switzerland"
msgstr "An Eilvéis"

# CR
#: ../rpmdrake.pm:438
#, c-format
msgid "Costa Rica"
msgstr "Cósta Rice"

#: ../rpmdrake.pm:439
#, c-format
msgid "Czech Republic"
msgstr "An Phoblacht nc tSeic"

#: ../rpmdrake.pm:440
#, c-format
msgid "Germany"
msgstr "An Ghearmáin"

#: ../rpmdrake.pm:441
#, c-format
msgid "Danmark"
msgstr ""

#: ../rpmdrake.pm:442 ../rpmdrake.pm:446
#, c-format
msgid "Greece"
msgstr "An Ghréig"

# ES
#: ../rpmdrake.pm:443
#, c-format
msgid "Spain"
msgstr "An Spáinn"

#: ../rpmdrake.pm:444
#, c-format
msgid "Finland"
msgstr "An Fhionlainn"

#: ../rpmdrake.pm:445
#, c-format
msgid "France"
msgstr "An Fhrainc"

#: ../rpmdrake.pm:447
#, c-format
msgid "Hungary"
msgstr "An Ungáir"

#: ../rpmdrake.pm:448
#, c-format
msgid "Israel"
msgstr "Iosrael"

#: ../rpmdrake.pm:449
#, c-format
msgid "Italy"
msgstr "An Iodáil"

#: ../rpmdrake.pm:450
#, c-format
msgid "Japan"
msgstr "An tSeapáin"

#: ../rpmdrake.pm:451
#, c-format
msgid "Korea"
msgstr "An Choiré Theas"

#: ../rpmdrake.pm:452
#, c-format
msgid "Netherlands"
msgstr "An Isiltír"

#: ../rpmdrake.pm:453
#, c-format
msgid "Norway"
msgstr "An Iorua"

#: ../rpmdrake.pm:454
#, c-format
msgid "Poland"
msgstr "An Pholainn"

# PT
#: ../rpmdrake.pm:455
#, c-format
msgid "Portugal"
msgstr "An Phortaingéil"

#: ../rpmdrake.pm:456
#, c-format
msgid "Russia"
msgstr "An Rúis"

#: ../rpmdrake.pm:457
#, c-format
msgid "Sweden"
msgstr "An tSualainn"

# SG
#: ../rpmdrake.pm:458
#, c-format
msgid "Singapore"
msgstr "Singeapór"

#: ../rpmdrake.pm:459
#, c-format
msgid "Slovakia"
msgstr "An tSlóvaic"

#: ../rpmdrake.pm:460
#, c-format
msgid "Taiwan"
msgstr "An Téaváin"

# UK
#: ../rpmdrake.pm:461
#, c-format
msgid "United Kingdom"
msgstr "An Ríocht"

#: ../rpmdrake.pm:462
#, c-format
msgid "China"
msgstr "An tSín"

#: ../rpmdrake.pm:463 ../rpmdrake.pm:464 ../rpmdrake.pm:465 ../rpmdrake.pm:466
#, c-format
msgid "United States"
msgstr "Stáit Aontaithe Mheiriceá"

#: ../rpmdrake.pm:546
#, fuzzy, c-format
msgid "Please wait, downloading mirror addresses."
msgstr ""
"Fan tamall\n"
"Checking dependencies"

#: ../rpmdrake.pm:547
#, c-format
msgid "Please wait, downloading mirror addresses from the Mandriva website."
msgstr ""

#: ../rpmdrake.pm:568
#, c-format
msgid "retrieval of [%s] failed"
msgstr ""

#: ../rpmdrake.pm:590
#, c-format
msgid ""
"I need to access internet to get the mirror list.\n"
"Please check that your network is currently running.\n"
"\n"
"Is it ok to continue?"
msgstr ""

#: ../rpmdrake.pm:598 ../rpmdrake.pm:637
#, c-format
msgid "Mirror choice"
msgstr ""

#: ../rpmdrake.pm:610
#, c-format
msgid "Error during download"
msgstr ""

#: ../rpmdrake.pm:612
#, c-format
msgid ""
"There was an error downloading the mirror list:\n"
"\n"
"%s\n"
"The network, or the website, may be unavailable.\n"
"Please try again later."
msgstr ""

#: ../rpmdrake.pm:617
#, c-format
msgid ""
"There was an error downloading the mirror list:\n"
"\n"
"%s\n"
"The network, or the Mandriva website, may be unavailable.\n"
"Please try again later."
msgstr ""

#: ../rpmdrake.pm:627
#, fuzzy, c-format
msgid "No mirror"
msgstr "Gan earraidh"

#: ../rpmdrake.pm:629
#, c-format
msgid "I can't find any suitable mirror."
msgstr ""

#: ../rpmdrake.pm:630
#, c-format
msgid ""
"I can't find any suitable mirror.\n"
"\n"
"There can be many reasons for this problem; the most frequent is\n"
"the case when the architecture of your processor is not supported\n"
"by Mandriva Linux Official Updates."
msgstr ""

#: ../rpmdrake.pm:649
#, c-format
msgid "Please choose the desired mirror."
msgstr ""

#: ../rpmdrake.pm:690
#, c-format
msgid "Copying file for medium `%s'..."
msgstr ""

#: ../rpmdrake.pm:693
#, c-format
msgid "Examining file of medium `%s'..."
msgstr ""

#: ../rpmdrake.pm:696
#, c-format
msgid "Examining remote file of medium `%s'..."
msgstr ""

#: ../rpmdrake.pm:700
#, c-format
msgid " done."
msgstr ""

#: ../rpmdrake.pm:704
#, fuzzy, c-format
msgid " failed!"
msgstr "teip ar 'mkraid'"

#. -PO: We're downloading the said file from the said medium
#: ../rpmdrake.pm:708
#, c-format
msgid "%s from medium %s"
msgstr ""

#: ../rpmdrake.pm:712
#, c-format
msgid "Starting download of `%s'..."
msgstr ""

#: ../rpmdrake.pm:716
#, c-format
msgid "Download of `%s', time to go:%s, speed:%s"
msgstr ""

#: ../rpmdrake.pm:719
#, c-format
msgid "Download of `%s', speed:%s"
msgstr ""

#: ../rpmdrake.pm:730
#, fuzzy, c-format
msgid "Please wait, updating media..."
msgstr ""
"Fan tamall\n"
"Checking dependencies"

#: ../rpmdrake.pm:756
#, c-format
msgid "Error retrieving packages"
msgstr ""

#: ../rpmdrake.pm:757
#, c-format
msgid ""
"It's impossible to retrieve the list of new packages from the media\n"
"`%s'. Either this update media is misconfigured, and in this case\n"
"you should use the Software Media Manager to remove it and re-add it in "
"order\n"
"to reconfigure it, either it is currently unreachable and you should retry\n"
"later."
msgstr ""

#: ../rpmdrake.pm:788
#, fuzzy, c-format
msgid "Update media"
msgstr ""
"Fan tamall\n"
"Ag scrios pacáistí"

#: ../rpmdrake.pm:793
#, c-format
msgid ""
"No active medium found. You must enable some media to be able to update them."
msgstr ""

#: ../rpmdrake.pm:800
#, c-format
msgid "Select the media you wish to update:"
msgstr ""

#: ../rpmdrake.pm:850
#, c-format
msgid ""
"Unable to update medium; it will be automatically disabled.\n"
"\n"
"Errors:\n"
"%s"
msgstr ""

#: ../rpmdrake.pm:871 ../rpmdrake.pm:882
#, c-format
msgid ""
"Unable to add medium, errors reported:\n"
"\n"
"%s"
msgstr ""

#: ../rpmdrake.pm:894
#, c-format
msgid "Unable to create medium."
msgstr ""

#: ../rpmdrake.pm:899
#, c-format
msgid "Failure when adding medium"
msgstr ""

#: ../rpmdrake.pm:900
#, c-format
msgid ""
"There was a problem adding medium:\n"
"\n"
"%s"
msgstr ""

#: ../rpmdrake.pm:913
#, c-format
msgid ""
"Your medium `%s', used for updates, does not match the version of %s you're "
"running (%s).\n"
"It will be disabled."
msgstr ""

#: ../rpmdrake.pm:916
#, c-format
msgid ""
"Your medium `%s', used for updates, does not match the version of Mandriva "
"Linux you're running (%s).\n"
"It will be disabled."
msgstr ""

#: ../rpmdrake.pm:957
#, c-format
msgid "Help launched in background"
msgstr ""

#: ../rpmdrake.pm:958
#, c-format
msgid ""
"The help window has been started, it should appear shortly on your desktop."
msgstr ""

#: ../data/rpmdrake-browse-only.desktop.in.h:1
msgid "A graphical front end for browsing installed & available packages"
msgstr ""

#: ../data/rpmdrake-browse-only.desktop.in.h:2
msgid "Browse Available Software"
msgstr ""

#: ../data/rpmdrake.desktop.in.h:1
msgid "A graphical front end for installing, removing and updating packages"
msgstr ""

#: ../data/rpmdrake.desktop.in.h:2
#, fuzzy
msgid "Install & Remove Software"
msgstr "Suiteáil"

#: ../data/rpmdrake-sources.desktop.in.h:1
#, fuzzy
msgid "Software Media Manager"
msgstr "Bainistíocht Bhogearraí"

#: ../mime/gurpmi.addmedia.desktop.in.h:1
#, fuzzy
msgid "Add urpmi media"
msgstr ""
"Fan tamall\n"
"Ag scrios pacáistí"

#: ../mime/x-urpmi-media.desktop.in.h:1
#, fuzzy
msgid "Urpmi medium info"
msgstr ""
"Fan tamall\n"
"Ag scrios pacáistí"

#~ msgid "Welcome"
#~ msgstr "Fáilte"

#~ msgid "None"
#~ msgstr "Neamhní"

#~ msgid "Search"
#~ msgstr "Cuardaigh"

#~ msgid "Clear"
#~ msgstr "Glan"

#~ msgid "Download directory does not exist"
#~ msgstr "Níl an chomhadlann thíosluchtála ann"

#~ msgid "Out of memory\n"
#~ msgstr "Cuimhne ídithe\n"

#~ msgid "FTP can't get host\n"
#~ msgstr "Ní féidir le FTP an t-óstríomhaire a fháil\n"

#~ msgid "HTTP not found\n"
#~ msgstr "Níor aimsíodh HTTP\n"

#~ msgid "Write error\n"
#~ msgstr "Earraidh scríobhta\n"

#~ msgid "Time out\n"
#~ msgstr "Thar am\n"

#~ msgid "Library not found\n"
#~ msgstr "Níor aimsíodh an leabharlann\n"

#~ msgid "Function not found\n"
#~ msgstr "Níor aimsíodh an fheidhm\n"

#~ msgid "SSL crypto engine not found\n"
#~ msgstr "Níor aimsíodh an t-inneal rúnscríbh SSL\n"

#~ msgid "problem with the local certificate\n"
#~ msgstr "fadhb sa teastas logánta\n"

#~ msgid "Unknown error code %d\n"
#~ msgstr "Cód earraidh gan aithne %d\n"

#, fuzzy
#~ msgid "Official updates"
#~ msgstr "Roghnaigh liebhéal slándáil"

#~ msgid "Path:"
#~ msgstr "Slí:"

#~ msgid "Update..."
#~ msgstr "Nuashonraigh..."

#, fuzzy
#~ msgid "installing %s from %s"
#~ msgstr "ag feistiú %s\n"

#, fuzzy
#~ msgid "installing %s"
#~ msgstr "ag feistiú %s\n"

#, fuzzy
#~ msgid "removing %s"
#~ msgstr "ag feistiú %s"

#, fuzzy
#~ msgid "Installation failed:"
#~ msgstr "Theip ag feistiú"

#~ msgid "Preparing..."
#~ msgstr "Á Ullmhú..."

#~ msgid "Deploiement"
#~ msgstr "Imlonnú"

#~ msgid "Deployment"
#~ msgstr "Imlonnú"

#, fuzzy
#~ msgid "Remove key"
#~ msgstr "Scríos Printéir"

#, fuzzy
#~ msgid "unable to access rpm file [%s]"
#~ msgstr "Téip ag oscailt comhad: %s\n"

#, fuzzy
#~ msgid ""
#~ "To satisfy dependencies, the following package is going to be installed:\n"
#~ "%2$s\n"
#~ msgid_plural ""
#~ "To satisfy dependencies, the following %d packages are going to be "
#~ "installed:\n"
#~ "%s\n"
#~ msgstr[0] "Tá ceann de na pacáistí seo de dhíth:"
#~ msgstr[1] "Tá ceann de na pacáistí seo de dhíth:"

#, fuzzy
#~ msgid "Please wait, reading packages database..."
#~ msgstr ""
#~ "Fan tamall\n"
#~ "Ag scrios pacáistí"

#~ msgid "About Rpmdrake"
#~ msgstr "Maidir le Rpmdrake"

#, fuzzy
#~ msgid "XFree86"
#~ msgstr "Córas/Bun"

#, fuzzy
#~ msgid "No package found for installation."
#~ msgstr "Ag Ullmhaigh feistiú"

#, fuzzy
#~ msgid "Please wait, generating hdlist..."
#~ msgstr ""
#~ "Fan tamall\n"
#~ "Checking dependencies"

#~ msgid "Keys"
#~ msgstr "Eochracha"

#~ msgid "Development/Databases"
#~ msgstr "Forbairt/Bunachair Sonraí"

#~ msgid "Development/Kernel"
#~ msgstr "Forbairt/Eithne"

#~ msgid "System/Fonts/True type"
#~ msgstr "Córas/Clófhoirne/True Type"

#~ msgid "Source: "
#~ msgstr "Bún: "

#~ msgid "Source"
#~ msgstr "Bún"

#~ msgid " n/a "
#~ msgstr "g/a "

#~ msgid "/File/-"
#~ msgstr "/Comhad/-"

#~ msgid "/File/_Quit"
#~ msgstr "/Comhad/_Ealu"

#~ msgid "Disk"
#~ msgstr "Diosca"

#~ msgid "Force"
#~ msgstr "Fórsáil"

#~ msgid "Incorrect password"
#~ msgstr "Pasfhocal míceart"

#~ msgid "Name: %s"
#~ msgstr "Ainm: %s"

#~ msgid "Package is corrupted"
#~ msgstr "Tá an pacáiste lofa"

#~ msgid "Port:"
#~ msgstr "Poirt:"

#~ msgid "Preferences"
#~ msgstr "Roghnachais"

#~ msgid "Security"
#~ msgstr "Slándáil"

#~ msgid "Skip"
#~ msgstr "Scipeáil"

#~ msgid ""
#~ "The action you requested requires root priviliges.\n"
#~ "Please enter the root password"
#~ msgstr ""
#~ "Caithfear bheith root le seo a dhéanamh.\n"
#~ "Ionchur pasfhocal root le d'thoil"

#~ msgid "grpmi error: you must be superuser!\n"
#~ msgstr "Earráidh grpmi: Is éigin forúsáideoir duit!\n"

#~ msgid "n/a"
#~ msgstr "g/a"

#~ msgid "security"
#~ msgstr "slándála"

#~ msgid "usage: grpmi <[-noupgrade] rpms>\n"
#~ msgstr "úsáid: grpmi <[-noupgrade] pacáistí\n"

#~ msgid "usage: gsu [-c] command [args]\n"
#~ msgstr "úsáid: gsu [-c] treoir [paraiméadar]\n"

#~ msgid "%.1f MB"
#~ msgstr "%.1f MB"

#~ msgid ""
#~ "Name: %s\n"
#~ "Type: %s"
#~ msgstr ""
#~ "Ainm: %s\n"
#~ "Cinéal: %s"

#~ msgid "unknown"
#~ msgstr "gan aithne"

#~ msgid "/File/_Preferences"
#~ msgstr "/Comhad/_Roghnachais"

#~ msgid "Proxies"
#~ msgstr "Seachaí"

#~ msgid "HTTP Proxy:"
#~ msgstr "Seach Http:"

#~ msgid "FTP Proxy:"
#~ msgstr "Seach Ftp:"

#~ msgid "RPM directory"
#~ msgstr "Eolaire RPM"