summaryrefslogtreecommitdiffstats
path: root/tools/oem-prepare
blob: e6c3b1458bf210d5b9f50b91cc382e26e922493e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
#!/usr/bin/perl

my ($mode, $dir, $reject_dir, $lang) = @ARGV;
$mode =~ s/^--(rebuild|clean)$/$1/ or die "mode should be --rebuild or --clean\n";
-e "$dir/Mandrake/base/hdlists" && -d $reject_dir or die "usage: oem-prepare <--rebuild|--clean> <top_dir> <reject_dir> <lang>\n";

#- detect language used and default options.
open F, "$dir/VERSION" or die "no installation found on $dir";
while (<F>) {
    /[\s-]fr/ and $lang = 'fr';
    /\[lang[=:]([^]]*)\]/ and $lang = $1;
    /[\[\-]server[\]\-]/ and $options{server} = '';
}
close F;

my ($flang, $charset);
#- default language fall to english ?
foreach ($lang || 'en') {
    /fr/ and ($lang, $flang, $charset) = ('fr', 'fr_FR@euro', 'iso-8859-15');
    /en/ and ($lang, $flang, $charset) = ('en', 'en_US', 'iso-8859-1');
    /de/ and ($lang, $flang, $charset) = ('de', 'de_DE@euro', 'iso-8859-15');
    /it/ and ($lang, $flang, $charset) = ('it', 'it_IT@euro', 'iso-8859-15');
    /es/ and ($lang, $flang, $charset) = ('es', 'es_ES@euro', 'iso-8859-15');
}
print "Found lang $lang\n";
foreach (keys %options) {
    print "Using option [$_" . ($options{$_} && "=$options{$_}") . "]\n";
}


my $packages = select_packages($dir, $lang);

my @media;
open F, "$dir/Mandrake/base/hdlists";
foreach (<F>) {
    chomp;
    s/\s*#.*$//;
    /^\s*$/ and next;
    m/^\s*(hdlist\S*\.cz2?)\s+(\S+)\s*(.*)$/ or die "invalid hdlist description \"$_\" in hdlists file";

    push @media, { hdlist => $1, rpmsdir => $2, descr => $3 };
}
close F;


#- keep in mind all the rpm files available (according to hdlists).
my (%rpms, %files);

require packdrake;
foreach my $medium (@media) {
    my $packer = new packdrake("$dir/Mandrake/base/$medium->{hdlist}");
    foreach (@{$packer->{files}}) {
	$packer->{data}{$_}[0] eq 'f' or next;
	my ($fullname, $file) = /([^:]*):(.*)/ ? ($1, "$2.rpm") : ($_, "$_.rpm");
	$files{$fullname} = $file;
	$rpms{$file} = $medium->{rpmsdir};
	-e "$dir/$medium->{rpmsdir}/$file" and next; #- already exist in the right directory.
	if (-e "$reject_dir/$file") {
	    $mode eq 'rebuild' and system "mv", "-f", "$reject_dir/$file", "$dir/$medium->{rpmsdir}/";
	    next;
	}
	print STDERR "unable to find package $file listed in medium \"$medium->{descr}\"\n";
    }
}

if ($mode eq 'clean') {
    #- copy and install from each cd image.
    foreach my $medium (@media) {
	print "Examining packages from medium labeled \"$medium->{descr}\"\n";

	foreach my $pkg (@{$packages->{depslist}}) {
	    $pkg->{closure} && !$pkg->{selected} or next;
	    my $file = "$dir/$medium->{rpmsdir}/" . $files{rpm_fullname($pkg)};
	    if (-e $file) {
		delete $rpms{$files{rpm_fullname($pkg)}} or next;
		print "  copying $file\n";
		delete $pkg->{closure};
	    }
	}

	if (my $pkg = pkgs::packageByName($packages, 'glibc')) { #- HACK FOR GLIBC
	    if ($pkg->{selected}) {
		my $file = "$dir/$medium->{rpmsdir}/" . $files{rpm_fullname($pkg)};
		if (-e $file) {
		    delete $rpms{$files{rpm_fullname($pkg)}} or next;
		    print "  installing $file\n";
		    delete $pkg->{selected};
		}
	    }
	} else {
	    die "no glibc package found";
	}
	foreach my $pkg (@{$packages->{depslist}}) {
	    $pkg->{selected} or next;
	    my $file = "$dir/$medium->{rpmsdir}/" . $files{rpm_fullname($pkg)};
	    if (-e $file) {
		delete $rpms{$files{rpm_fullname($pkg)}} or next;
		print "  installing $file\n";
		delete $pkg->{selected};
	    }
	}

	scalar(grep { $_->{selected} || $_->{closure} } @{$packages->{depslist}}) == 0 and last;
    }

    #- copy files.
    #- at this point, everything left in %rpms has to be moved to $reject_dir.
    foreach (keys %rpms) {
	-e "$reject_dir/$_" and next; #- already cleaned.
	-e "$dir/$rpms{$_}/$_" or print STDERR "file \"$_\" should be in [$dir/$rpms{$_}]\n", next;
	system "mv", "-f", "$dir/$rpms{$_}/$_", $reject_dir;
    }
}

#- provide package fullname that have to be installed and copied.
sub select_packages {
    my ($dir, $lang) = @_;
    my $o = { packages => read_depslist("$dir/Mandrake/base/depslist.ordered") };

    #- act as DrakX will do to select packages.
    pkgs::read_rpmsrate($o->{packages}, install_any::getFile("Mandrake/base/rpmsrate") || die "unable to read rpmsrate");
    ($o->{compssUsers}, $o->{compssUsersSorted}, $o->{compssUsersIcons}, $o->{compssUsersDescr}) = 
      pkgs::readCompssUsers($o->{packages}, $o->{meta_class});
    eval { install_any::getFile("XXX") }; #- close out any still opened filehandle..

    pkgs::selectPackage($o->{packages}, pkgs::packageByName($o->{packages}, 'basesystem') || die "no basesystem package found");
    #- by default, choose:
    $o->{compssUsersChoice}{$_} = 1 foreach 'GNOME', 'KDE', 'CONFIG', 'X';
    $o->{compssUsersChoice}{$_} = 1 
	foreach map { @{$o->{compssUsers}{$_}{flags}} } 'Workstation|Office Workstation', 'Workstation|Internet station';

    if (exists $options{server}) {
	foreach (qw(KDE ACCESSIBILITY PUBLISHING CUPS EDITORS TEXT_TOOLS COMMUNICATIONS TERMINALS
		    NETWORKING_FILE_TRANSFER NETWORKING_OTHER
		    NETWORKING_FILE_TRANSFER_SERVER NETWORKING_FIREWALLING_SERVER NETWORKING_LDAP_SERVER
		    NETWORKING_MAIL_SERVER NETWORKING_OTHER_SERVER
		    NETWORKING_REMOTE_ACCESS NETWORKING_REMOTE_ACCESS_SERVER NETWORKING_DNS NETWORKING_DNS_SERVER
		    NETWORKING_FILE NETWORKING_FILE_SERVER NETWORKING_WWW NETWORKING_WWW_SERVER
		    ARCHIVING DEVELOPMENT MONITORING FILE_TOOLS CONFIG BOOKS SYSTEM X DOCS)) {
	    $o->{compssUsersChoice}{$_} = 1;
	}
	#- additional packages to be selected for server, databases with MySQL (avoid rpmsrate modifications).
	foreach (qw(MySQL-client MySQL-shared MySQL perl-Mysql)) {
	    my $pkg = pkgs::packageByName($o->{packages}, $_);
	    $pkg and pkgs::selectPackage($o->{packages}, $pkg);
	}
    } else {
	$o->{compssUsersChoice}{$_} = 1 foreach map { @{$o->{compssUsers}{$_}} } @{$o->{compssUsersSorted}};
	$o->{compssUsersChoice}{$_} = 1 foreach qw(SYSTEM X DOCS);
	@{$o->{compssUsersChoice}}{grep { /SERVER|DATABASES/ } keys %{$o->{compssUsersChoice}}} = ();
    }

    my $lang_pkg = $lang && pkgs::packageByName($o->{packages}, "locales-$lang");
    if ($lang_pkg) {
	pkgs::selectPackage($o->{packages}, $lang_pkg);
	$o->{compssUsersChoice}{qq(LOCALES"$lang")} = 1;
	$o->{compssUsersChoice}{qq(LOCALES"$flang")} = 1;
	$o->{compssUsersChoice}{qq(CHARSET"$charset")} = 1;
    }

    pkgs::setSelectedFromCompssList($o->{packages}, $o->{compssUsersChoice}, 4, 0);
    #- save selected, but keep selected property.
    foreach my $pkg (@{$o->{packages}{depslist}}) {
	$pkg->{selected} and $pkg->{save_selected} = $pkg->{selected};
    }

    #- extend selection to closure now, make all selected as closure and restore selected after.
    $o->{compssUsersChoice}{$_} = 1 foreach qw(BURNER DVD PCMCIA BIGMEM SMP 3D TV SCANNER PHOTO SOUND);
    pkgs::setSelectedFromCompssList($o->{packages}, $o->{compssUsersChoice}, 4, 0);
    $o->{compssUsersChoice}{$_} = 0 foreach qw(BURNER DVD PCMCIA BIGMEM SMP 3D TV SCANNER PHOTO SOUND);
    #- INSTALL class need to be copied as closure (unless installed after).
    #- but we have to remove kernel22 and kernel22-smp now obsolete for oem.
    foreach (@{$o->{packages}{needToCopy}}) {
	/^(kernel22.*|raidtools|lvm|reiserfsprogs|xfsprogs|jfsprogs|XFree86-(Mach8|Mach32|Mono|W32|3DLabs|P9000|8514|VGA16|I128|AGX))$/ and next;
	my $pkg = pkgs::packageByName($o->{packages}, $_);
	pkgs::selectPackage($o->{packages}, $pkg);
    }
    #- first select package that have to go to closure according to their names.
    foreach my $pkg (@{$o->{packages}{depslist}}) {
	$pkg->{name} =~ /kernel-(\d|smp|enterprise)/ and pkgs::selectPackage($o->{packages}, $pkg);
	$pkg->{name} =~ /NVIDIA/ and pkgs::selectPackage($o->{packages}, $pkg);
    }
    foreach my $pkg (@{$o->{packages}{depslist}}) {
	delete $pkg->{selected} && !$pkg->{save_selected} and $pkg->{closure} = 1;
	$pkg->{save_selected} and $pkg->{selected} = $pkg->{save_selected};
    }

    #- package that have to selected here as a bonus for oem install.
    foreach (qw(cups cups-drivers a2ps drakprofile draksync numlock icewm-light
		Mesa Mesa-demos alsa alsa-utils curl
                glibc vim-minimal kernel gcc-cpp
	       ), exists $options{server} ? qw(openldap-migration openldap-clients pam_ldap) : ()) {
	my $pkg = pkgs::packageByName($o->{packages}, $_);
	$pkg and pkgs::selectPackage($o->{packages}, $pkg);
    }

    #- special packages that are to be move to closure always ...
    foreach (qw(nfs-utils-client numlock usbd hotplug alsa alsa-utils
	        Aurora Aurora-Monitor-NewStyle-Categorizing-WsLib bootsplash)) {
	my $pkg = pkgs::packageByName($o->{packages}, $_);
	if ($pkg) {
	    pkgs::selectPackage($o->{packages}, $pkg);
	    $pkg->{closure} = 1;
	    delete $pkg->{selected};
	}
    }

    #- special packages that are to be removed always... BEWARE THIS IS A HACK !!!
#    foreach (qw(gmc gcc3.0 gcc3.0-c++ gcc3.0-cpp libstdc++3.0 libstdc++3.0-devel)) {
#	my $pkg = pkgs::packageByName($o->{packages}, $_);
#	if ($pkg) {
#	    delete $pkg->{closure};
#	    delete $pkg->{selected};
#	}
#    }

    $o->{packages};
}

sub chop_version {
    ($_[0] =~ /^([^:\s]*)-[^:\-\s]+-[^:\-\s]+\.[^:\.\-\s]*(?::\S*)?/)[0] || die "unable to parse $_[0]";
}
sub rpm_fullname {
    ($_[0]{name} =~ /^([^:\s]*-[^:\-\s]+-[^:\-\s]+\.[^:\.\-\s]*)(?::\S*)?/)[0] || die "unable to parse $_[0]";
}

sub read_depslist {
    my ($file) = @_;
    my $packages = { depslist => [], names => {} };

    #- read depslist.oredered file.
    my $id = 0;

    open F, "$file" or die "unable to open ordered dependencies list file";
    while (<F>) {
	my ($name, $size, @deps) = split;
	push @{$packages->{depslist}}, { id => $id++, name => $name, size => $size, deps => \@deps };
    }
    close F;

    foreach (@{$packages->{depslist}}) {
	$packages->{names}{chop_version($_->{name})} = $_;
    }

    print "read " . scalar(@{$packages->{depslist}}) . " package dependancies\n";
    $packages;
}

#- compability method for the below ones, wrap DrakX code extracted.
package log;
sub l {}

package detect_devices;
sub matching_desc { 1 }

package install_any;
sub getFile { open FILE, "$dir/$_[0]" or return; \*FILE }

package pkgs;
sub if_ { my $b = shift; $b or return (); wantarray ? @_ : $_[0] }
sub formatXiB { $_[0] } #- NOP
sub packageName { ::chop_version($_[0]{name}) }
sub packageFlagSelected { $_[0]{selected} }
sub packageSize { $_[0]{size} }
sub packageDepsId { @{$_[0]{deps}} }
sub packageRate { $_[0]{values}[0] }
sub packageRateRFlags { @{$_[0]{values}} }
sub packageSetRateRFlags {
    my ($pkg, @rate_rflags) = @_;
    $pkg->{values} = [ @rate_rflags ];
}
sub packageByName {
    my ($packages, $name) = @_;
    $packages->{names}{$name};
}
sub packageById {
    my ($packages, $id) = @_;
    $packages->{depslist}[$id];
}
sub selectedSize {
    my ($packages) = @_;
    my $size = 0;
    foreach (@{$packages->{depslist}}) {
	$_->{selected} and $size += $_->{size};
    }
    $size;
}
my @preferred = qw(perl-GTK postfix gcc gcc-cpp gcc-c++ proftpd ghostscript-X vim-minimal kernel db1 db2 ispell-en Bastille-Curses-module nautilus libxpm4);
sub selectPackage {
    my ($packages, $pkg, $base, $otherOnly, $check_recursion) = @_;

    #- avoid infinite recursion (mainly against badly generated depslist.ordered).
    $check_recursion ||= {}; exists $check_recursion->{$pkg->{name}} and return; $check_recursion->{$pkg->{name}} = undef;

    #- make sure base package are set even if already selected.
    $base and $pkg->{base} = 1;

    #- select package and dependancies, otherOnly may be a reference
    #- to a hash to indicate package that will strictly be selected
    #- when value is true, may be selected when value is false (this
    #- is only used for unselection, not selection)
    unless ($pkg->{selected}) {
	foreach (@{$pkg->{deps}}) {
	    my $preferred;	    
	    if (/\|/) {
		#- choice deps should be reselected recursively as no
		#- closure on them is computed, this code is exactly the
		#- same as pixel's one.
		my %preferred; @preferred{@preferred} = ();
		foreach (split '\|') {
		    my $dep = $packages->{depslist}[$_] or next;
		    $preferred ||= $dep;
		    $dep->{selected} and $preferred = $dep, last;
		    exists $preferred{::chop_version($dep->{name})} and $preferred = $dep;
		}
		selectPackage($packages, $preferred, $base, $otherOnly, $check_recursion) if $preferred;
	    } else {
		#- deps have been closed except for choices, so no need to
		#- recursively apply selection, expand base on it.
		my $dep = $packages->{depslist}[$_];
		$base and $dep->{base} = 1;
		$otherOnly and !$dep->{selected} and $otherOnly->{::chop_version($dep->{name})} = 1;
		$otherOnly or $dep->{selected} += 1;
	    }
	}
    }
    $otherOnly and !$pkg->{selected} and $otherOnly->{::chop_version($pkg->{name})} = 1;
    $otherOnly or $pkg->{selected} += 1;
    1;
}

#- this code is extracted from DrakX and SHOULD NOT BE MODIFIED, wrapper method exists above to provide a good choice.
sub read_rpmsrate {
    my ($packages, $f) = @_;
    my $line_nb = 0;
    my $fatal_error;
    my (@l);
    while (<$f>) {
	$line_nb++;
	/\t/ and die "tabulations not allowed at line $line_nb\n";
	s/#.*//; # comments

	my ($indent, $data) = /(\s*)(.*)/;
	next if !$data; # skip empty lines

	@l = grep { $_->[0] < length $indent } @l;

	my @m = @l ? @{$l[$#l][1]} : ();
	my ($t, $flag, @l2);
	while ($data =~ 
	       /^((
                   [1-5]
                   |
                   (?:            (?: !\s*)? [0-9A-Z_]+(?:".*?")?)
                   (?: \s*\|\|\s* (?: !\s*)? [0-9A-Z_]+(?:".*?")?)*
                  )
                  (?:\s+|$)
                 )(.*)/x) { #@")) {
	    ($t, $flag, $data) = ($1,$2,$3);
	    while ($flag =~ s,^\s*(("[^"]*"|[^"\s]*)*)\s+,$1,) {}
	    my $ok = 0;
	    $flag = join('||', grep { 
		if (my ($inv, $p) = /^(!)?HW"(.*)"/) {
		    ($inv xor detect_devices::matching_desc($p)) and $ok = 1;
		    0;
		} else {
		    1;
		}
	    } split '\|\|', $flag);
	    push @m, $ok ? 'TRUE' : $flag || 'FALSE';
	    push @l2, [ length $indent, [ @m ] ];
	    $indent .= $t;
	}
	if ($data) {
	    # has packages on same line
	    my ($rate) = grep { /^\d$/ } @m or die sprintf qq(missing rate for "%s" at line %d (flags are %s)\n), $data, $line_nb, join('&&', @m);
	    foreach (split ' ', $data) {
		if ($packages) {
		    my $p = packageByName($packages, $_) or next;
		    my @m2 = 
		      map { if_($_ && packageName($_) =~ /locales-(.*)/, qq(LOCALES"$1")) }
		      map { packageById($packages, $_) } packageDepsId($p);

		    my @m3 = ((grep { !/^\d$/ } @m), @m2);
		    if (@m3 >= 1 && $m3[0] eq 'INSTALL' || @m3 >=2 && $m3[1] eq 'INSTALL') {
			push @{$packages->{needToCopy} ||= []}, $_;
			next; #- don't need to put INSTALL flag for a package.
		    }
		    if (packageRate($p)) {
			my ($rate2, @m4) = packageRateRFlags($p);
			if (@m3 > 1 || @m4 > 1) {
			    log::l("can't handle complicate flags for packages appearing twice ($_)");
			    $fatal_error++;
			}
			log::l("package $_ appearing twice with different rates ($rate != $rate2)") if $rate != $rate2;
			packageSetRateRFlags($p, $rate, "$m3[0]||$m4[0]");
		    } else {
			packageSetRateRFlags($p, $rate, @m3);
		    }
		} else {
		    print "$_ = ", join(" && ", @m), "\n";
		}
	    }
	    push @l, @l2;
	} else {
	    push @l, [ $l2[0][0], $l2[$#l2][1] ];
	}
    }
    $fatal_error and die "$fatal_error fatal errors in rpmsrate";
}

sub readCompssUsers {
    my ($packages, $meta_class) = @_;
    my (%compssUsers, %compssUsersIcons, , %compssUsersDescr, @sorted, $l);
    my (%compss); 

    my $file = 'Mandrake/base/compssUsers';
    my $f = $meta_class && install_any::getFile("$file.$meta_class") || install_any::getFile($file) or die "can't find $file";
    local $_;
    while (<$f>) {
	/^\s*$/ || /^#/ and next;
	s/#.*//;

	if (/^(\S.*)/) {
	    my ($icon, $descr);
	    /^(.*?)\s*\[icon=(.*?)\](.*)/  and $_ = "$1$3", $icon  = $2;
	    /^(.*?)\s*\[descr=(.*?)\](.*)/ and $_ = "$1$3", $descr = $2;
	    $compssUsersIcons{$_} = $icon; 
	    $compssUsersDescr{$_} = $descr; 
	    push @sorted, $_;
	    $compssUsers{$_} = $l = [];
	} elsif (/^\s+(.*?)\s*$/) {
	    push @$l, $1;
	}
    }
    \%compssUsers, \@sorted, \%compssUsersIcons, \%compssUsersDescr;
}

sub setSelectedFromCompssList {
    my ($packages, $compssUsersChoice, $min_level, $max_size, $otherOnly) = @_;
    $compssUsersChoice->{TRUE} = 1; #- ensure TRUE is set
    my $nb = selectedSize($packages);
    foreach my $p (sort { packageRate($b) <=> packageRate($a) } values %{$packages->{names}}) {
	my ($rate, @flags) = packageRateRFlags($p);
	next if 
	  !$rate || $rate < $min_level || 
	  grep { !grep { /^!(.*)/ ? !$compssUsersChoice->{$1} : $compssUsersChoice->{$_} } split('\|\|') } @flags;

	#- determine the packages that will be selected when
	#- selecting $p. the packages are not selected.
	my %newSelection;
	selectPackage($packages, $p, 0, \%newSelection);

	#- this enable an incremental total size.
	my $old_nb = $nb;
	foreach (grep { $newSelection{$_} } keys %newSelection) {
	    $nb += packageSize($packages->{names}{$_});
	}
	if ($max_size && $nb > $max_size) {
	    $nb = $old_nb;
	    $min_level = packageRate($p);
	    last;
	}

	#- at this point the package can safely be selected.
	if ($otherOnly) {
	    selectPackage($packages, $p, 0, $otherOnly);
	} else {
	    selectPackage($packages, $p);
	}
    }
    unless ($otherOnly) {
	log::l("setSelectedFromCompssList: reached size ", formatXiB($nb), ", up to indice $min_level (less than ", formatXiB($max_size), ")");
	log::l("setSelectedFromCompssList: ", join(" ", sort map { packageName($_) } grep { packageFlagSelected($_) } @{$packages->{depslist}}));
    }
    $min_level;
}
'n1125' href='#n1125'>1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 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
#
# Latest versions of po files are at http://www.mandrakelinux.com/l10n/wa.php3
#
# translation of urpmi-wa.po to Walon
# Translatrion file of Mandrakelinux graphic install
# Copyright (C) 1999 Mandrakesoft
# Pablo Saratxaga <pablo@mandrakesoft.com>, 1999-2000,2003.
# Lorint Hendschel <LorintHendschel@skynet.be>, 1999, 2002,2003.
# Pablo Saratxaga <pablo@walon.org>, 2003, 2004.
#
msgid ""
msgstr ""
"Project-Id-Version: urpmi 3.3\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2005-01-20 16:53+0100\n"
"PO-Revision-Date: 2004-08-08 20:26+0200\n"
"Last-Translator: Pablo Saratxaga <pablo@walon.org>\n"
"Language-Team: Walloon <linux-wa@walon.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.0.2\n"

#. This is a list of chars acceptable as a 'yes' answer to a Yes/No question;
#. you can put here the letters for 'yes' for your language, so people
#. can hit those keys in their keyboard to reply.
#. please keep the 'Yy' for compatibility reasons
#.
#: placeholder.h:11
msgid "Yy"
msgstr "OoAaYyWw"

#. This is a list of chars acceptable as a 'no' answer to a Yes/No question;
#. you can put here the letters for 'no' for your language, so people
#. can hit those keys in their keyboard to reply.
#. please keep the 'Nn' for compatibility reasons
#.
#: placeholder.h:17
msgid "Nn"
msgstr "Nn"

#: ../_irpm:23
#, c-format
msgid "installing %s\n"
msgstr "dj' astale %s\n"

#: ../_irpm:33
#, c-format
msgid ""
"Automatic installation of packages...\n"
"You requested installation of package %s\n"
msgstr ""
"Astalaedje otomatike des pacaedjes...\n"
"Vos avoz dmandé l' astalaedje do pacaedje %s\n"

#: ../_irpm:33 ../urpme:29 ../urpmi:465
#, c-format
msgid "Is this OK?"
msgstr "Totafwait est i comifåt?"

#: ../_irpm:35
#, c-format
msgid "Ok"
msgstr "'l est bon"

#: ../_irpm:36
#, c-format
msgid "Cancel"
msgstr "Rinoncî"

#: ../_irpm:44 ../urpmi:381 ../urpmi:399 ../urpmi:469
#, c-format
msgid " (Y/n) "
msgstr " (O/n) "

#: ../_irpm:63
#, c-format
msgid "%s: command not found\n"
msgstr "%s: comande nén trovêye\n"

#: ../gurpmi:54 ../gurpmi2:77
#, c-format
msgid "Unknown option %s"
msgstr "Tchuze nén cnoxhowe %s"

#: ../gurpmi:58 ../gurpmi2:81
#, c-format
msgid "No packages specified"
msgstr "Nou pacaedje di scpecifyî"

#: ../gurpmi:68 ../gurpmi2:93
#, c-format
msgid "RPM installation"
msgstr "Astalaedje do pacaedje"

#: ../gurpmi:81
#, c-format
msgid ""
"You have selected a source package:\n"
"\n"
"%s\n"
"\n"
"You probably didn't want to install it on your computer (installing it would "
"allow you to make modifications to its sourcecode then compile it).\n"
"\n"
"What would you like to do?"
msgstr ""
"Vos avoz tchoezi on pacaedje côde sourdant:\n"
"\n"
"%s\n"
"\n"
"Probåblumint vos n' volîz nén l' astaler so vosse copiutrece (l' astaler\n"
"vos permete di fé des candjmints å côde sourdant eyet del ricopiler).\n"
"\n"
"Cwè voloz vs fé?"

#: ../gurpmi:89
#, c-format
msgid ""
"You are about to install the following software package on your computer:\n"
"\n"
"%s\n"
"\n"
"You may prefer to just save it. What is your choice?"
msgstr ""
"Vos alez astaler li pacaedje shuvant so vosse copiutrece:\n"
"\n"
"%s\n"
"\n"
"Motoit vos vloz djusse li schaper. Cwè tchoezixhoz vs?"

#: ../gurpmi:94
#, c-format
msgid ""
"You are about to install the following software packages on your computer:\n"
"\n"
"%s\n"
"\n"
"Proceed?"
msgstr ""
"Vos alez astaler les pacaedjes shuvants so vosse copiutrece:\n"
"\n"
"%s\n"
"\n"
"Estoz vs d' acoird?"

#: ../gurpmi:104
#, c-format
msgid "_Install"
msgstr "_Astaler"

#: ../gurpmi:105
#, c-format
msgid "_Save"
msgstr "_Schaper"

#: ../gurpmi:106 ../gurpmi2:161
#, c-format
msgid "_Cancel"
msgstr "_Rinoncî"

#: ../gurpmi:116
#, c-format
msgid "Choose location to save file"
msgstr "Tchoezixhoz l' plaece wice schaper l' fitchî"

#: ../gurpmi2:65
#, c-format
msgid "Please wait..."
msgstr "Tårdjîz on pô s' i vos plait..."

#: ../gurpmi2:83
#, c-format
msgid "Must be root"
msgstr "Vos dvoz esse root"

#: ../gurpmi2:113
#, c-format
msgid ""
"Some package requested cannot be installed:\n"
"%s\n"
"Continue?"
msgstr ""
"Sacwants pacaedjes dimandés n' polèt nén esse astalés:\n"
"%sContinouwer?"

#: ../gurpmi2:152
#, c-format
msgid " (to upgrade)"
msgstr " (a mete a djoû)"

#: ../gurpmi2:153
#, c-format
msgid " (to install)"
msgstr " (a-z astaler)"

#: ../gurpmi2:157 ../urpmi:346
#, c-format
msgid "One of the following packages is needed:"
msgstr "I gn a mezåjhe d' onk des pacaedjes ki shuvèt:"

#: ../gurpmi2:162 ../gurpmi2:178
#, c-format
msgid "_Ok"
msgstr "'l est bon"

#: ../gurpmi2:179
#, c-format
msgid "_Abort"
msgstr "_Rinoncî"

#: ../gurpmi2:199
#, c-format
msgid ""
"The following packages have to be removed for others to be upgraded:\n"
"%s\n"
"Continue?"
msgstr ""
"Les pacaedjes shuvants ont mezåjhe d' esse oistés po des ôtes esse metous a "
"djoû:\n"
"%sContinouwer?"

#: ../gurpmi2:213
#, c-format
msgid ""
"To satisfy dependencies, the following %d packages are going to be "
"installed:\n"
"%s\n"
msgstr ""
"Po satisfyî les aloyaedjes, les %d pacaedjes shuvants vont esse astalés:\n"
"%s\n"

#: ../gurpmi2:220
#, c-format
msgid "Package installation..."
msgstr "Astalaedje do pacaedje..."

#: ../gurpmi2:222 ../urpmi:477 ../urpmq:302
#, c-format
msgid "unable to get source packages, aborting"
msgstr "dji n' a savou prinde les pacaedjes sourdants, dji lai toumer"

#: ../gurpmi2:236 ../urpmi:488
#, c-format
msgid "Please insert the medium named \"%s\" on device [%s]"
msgstr "S' i vs plait metoz li sopoirt lomé «%s» el éndjin [%s]"

#: ../gurpmi2:263
#, c-format
msgid "Downloading package `%s'..."
msgstr "Dj' aberwetêye li pacaedje «%s»..."

#: ../gurpmi2:278
#, c-format
msgid ""
"The following packages have bad signatures:\n"
"%s\n"
"\n"
"Do you want to continue installation ?"
msgstr ""
"Les pacaedjes ki shuvèt ont ene mwaijhe sinateure:\n"
"%s\n"
"\n"
"Voloz vs continouwer avou l' astalaedje?"

#: ../gurpmi2:285 ../gurpmi2:334 ../urpmi:550 ../urpmi:666
#, c-format
msgid ""
"Installation failed, some files are missing:\n"
"%s\n"
"You may want to update your urpmi database"
msgstr ""
"L' astalaedje a fwait berwete, sacwants fitchîs mankèt:\n"
"%s\n"
"Vos dvrîz motoit mete a djoû li båze di dnêyes urpmi."

#: ../gurpmi2:292 ../urpme:115 ../urpmi:591
#, c-format
msgid "removing %s"
msgstr "dji oistêye li pacaedje %s"

#: ../gurpmi2:300 ../urpm.pm:2757
#, c-format
msgid "Preparing..."
msgstr "Dj' aprestêye..."

#: ../gurpmi2:302
#, c-format
msgid "Installing package `%s' (%s/%s)..."
msgstr "Dj' astale li pacaedje «%s» (%s/%s)..."

#: ../gurpmi2:320 ../urpmi:560 ../urpmi:604 ../urpmi:625 ../urpmi:645
#, c-format
msgid "Installation failed"
msgstr "L' astalåcion a fwait berwete"

#: ../gurpmi2:329
#, c-format
msgid "_Done"
msgstr "_Fwait"

#: ../gurpmi2:337 ../urpmi:682
#, c-format
msgid "The package(s) are already installed"
msgstr "tot a ddja stî astalé"

#: ../gurpmi2:339
#, c-format
msgid "Installation finished"
msgstr "L' astalåcion a fini"

#: ../rpm-find-leaves:12
#, c-format
msgid ""
"usage: %s [options]\n"
"where [options] are from\n"
msgstr ""
"po s' è siervi: %s [tchuzes]\n"
"avou les [tchuzes] prinjhes emey li djivêye chal pa dzo\n"

#: ../rpm-find-leaves:14
#, c-format
msgid "   -h|--help      - print this help message.\n"
msgstr "   -h|--help      - mostere ci messaedje d' aidance chal.\n"

#: ../rpm-find-leaves:15
#, c-format
msgid "   --root <path>  - use the given root instead of /\n"
msgstr ""
"   --root <tchimin> - eployî l' tchimin dné come raecene el plaece di «/»\n"

#: ../rpm-find-leaves:16
#, c-format
msgid "   -g [group]     - restrict results to given group.\n"
msgstr "   -g [goupe]     - håyner l' etikete di groupe: group.\n"

#: ../rpm-find-leaves:17
#, c-format
msgid "                    defaults is %s.\n"
msgstr "                    li prémetou est %s.\n"

#: ../urpm.pm:68
#, c-format
msgid "unknown protocol defined for %s"
msgstr "protocole nén cnoxhou defini po %s"

#: ../urpm.pm:101
#, c-format
msgid "no webfetch found, supported webfetch are: %s\n"
msgstr "nou aberweteu waibe di trové, les cis sopoirtés sont: %s\n"

#: ../urpm.pm:117
#, c-format
msgid "unable to handle protocol: %s"
msgstr "dji n' sai manaedjî l' protocole: %s"

#: ../urpm.pm:200
#, c-format
msgid "medium \"%s\" trying to use an already used hdlist, medium ignored"
msgstr ""
"li sopoirt «%s» saye d' eployî on fitchî hdlist dedja eployî, dji passe "
"houte do sopoirt"

#: ../urpm.pm:201
#, c-format
msgid "medium \"%s\" trying to use an already used list, medium ignored"
msgstr ""
"li sopoirt «%s» saye d' eployî ene djivêye dedja eployeye, dji passe houte "
"do sopoirt"

#: ../urpm.pm:214 ../urpm.pm:1228 ../urpm.pm:1238
#, c-format
msgid "unable to access hdlist file of \"%s\", medium ignored"
msgstr "dji n' sai aveur li fitchî hdlist di «%s», dji passe houte do sopoirt"

#: ../urpm.pm:217 ../urpm.pm:2376
#, c-format
msgid "unable to access list file of \"%s\", medium ignored"
msgstr ""
"dji n' sai aveur li fitchî di djivêye di «%s», dji passe houte do sopoirt"

#: ../urpm.pm:245
#, c-format
msgid "trying to bypass existing medium \"%s\", avoiding"
msgstr "dji saye di passer houte do sopoirt «%s»"

#: ../urpm.pm:253
#, c-format
msgid ""
"virtual medium \"%s\" should not have defined hdlist or list file, medium "
"ignored"
msgstr ""
"li forveyou sopoirt «%s» èn doet nén aveur defini di fitchî hdlist ou di "
"djivêye des fitchîs, dji passe houte do sopoirt"

#: ../urpm.pm:258
#, c-format
msgid "virtual medium \"%s\" should have a clear url, medium ignored"
msgstr ""
"li forveyou sopoirt «%s» duvreut aveur ene hårdêye valide, dji passe houte "
"do sopoirt"

#: ../urpm.pm:267
#, c-format
msgid "unable to find hdlist file for \"%s\", medium ignored"
msgstr "dji n' sai trover li fitchî hdlist di «%s», dji passe houte do sopoirt"

#: ../urpm.pm:274
#, c-format
msgid "unable to find list file for \"%s\", medium ignored"
msgstr ""
"dji n' sai trover li fitchî di djivêye di «%s», dji passe houte do sopoirt"

#: ../urpm.pm:296
#, c-format
msgid "inconsistent list file for \"%s\", medium ignored"
msgstr "crombe djivêye di fitchîs po «%s», dji passe houte do sopoirt"

#: ../urpm.pm:304
#, c-format
msgid "unable to inspect list file for \"%s\", medium ignored"
msgstr ""
"dji n' sai analijhî li fitchî di djivêye di «%s», dji passe houte do sopoirt"

#: ../urpm.pm:337
#, c-format
msgid "too many mount points for removable medium \"%s\""
msgstr "trop di ponts di montaedje pol sopoirt bodjåve «%s»"

#: ../urpm.pm:338
#, c-format
msgid "taking removable device as \"%s\""
msgstr "dji prind li bodjåve sopoirt come «%s»"

#: ../urpm.pm:342
#, c-format
msgid "using different removable device [%s] for \"%s\""
msgstr "eployant èn éndjin bodjåve diferin [%s] po «%s»"

#: ../urpm.pm:347 ../urpm.pm:350
#, c-format
msgid "unable to retrieve pathname for removable medium \"%s\""
msgstr "dji n' sai aveur li tchmin pol sopoirt bodjåve «%s»"

#: ../urpm.pm:375
#, c-format
msgid "unable to write config file [%s]"
msgstr "dji n' sai scrire li fitchî d' apontiaedje [%s]"

#: ../urpm.pm:379
#, c-format
msgid "unable to write file [%s]"
msgstr "dji n' sai scrire li fitchî [%s]"

#: ../urpm.pm:386
#, c-format
msgid "write config file [%s]"
msgstr "dji scrî l' fitchî d' apontiaedje [%s]"

#: ../urpm.pm:398
#, c-format
msgid "Can't use parallel mode with use-distrib mode"
msgstr "Dji n' sai eployî li môde paralele avou l' môde «use-distrib»"

#: ../urpm.pm:407
#, c-format
msgid "unable to parse \"%s\" in file [%s]"
msgstr "dji n' sai analijhî «%s» e l' fitchî [%s]"

#: ../urpm.pm:417
#, fuzzy, c-format
msgid "examining parallel handler in file [%s]"
msgstr "corwaitaedje do fitchî hdlist [%s]"

#: ../urpm.pm:427
#, fuzzy, c-format
msgid "found parallel handler for nodes: %s"
msgstr "«hdlist» (ou sinteze) ki vént d' esse sayî trové come «%s»"

#: ../urpm.pm:431
#, c-format
msgid "using associated media for parallel mode: %s"
msgstr "eployaedje do sopoirt assocyî å môde paralele: %s"

#: ../urpm.pm:435
#, c-format
msgid "unable to use parallel option \"%s\""
msgstr "dji n' sai eployî l' tchuze «%s» do môde paralele"

#: ../urpm.pm:446
#, c-format
msgid ""
"--synthesis cannot be used with --media, --excludemedia, --sortmedia, --"
"update or --parallel"
msgstr ""
"--synthesis èn pout nén esse eployî avou --media, --excludemedia, --"
"sortmedia, --update ou --parallel"

#: ../urpm.pm:507 ../urpm.pm:533 ../urpm.pm:985 ../urpm.pm:996 ../urpm.pm:1065
#: ../urpm.pm:1082 ../urpm.pm:1152 ../urpm.pm:1211 ../urpm.pm:1423
#: ../urpm.pm:1544 ../urpm.pm:1659 ../urpm.pm:1665 ../urpm.pm:1765
#: ../urpm.pm:1850 ../urpm.pm:1854
#, c-format
msgid "examining synthesis file [%s]"
msgstr "corwaitaedje do fitchî d' sinteze [%s]"

#: ../urpm.pm:511 ../urpm.pm:526 ../urpm.pm:539 ../urpm.pm:988 ../urpm.pm:999
#: ../urpm.pm:1071 ../urpm.pm:1077 ../urpm.pm:1157 ../urpm.pm:1215
#: ../urpm.pm:1427 ../urpm.pm:1548 ../urpm.pm:1653 ../urpm.pm:1671
#: ../urpm.pm:1860
#, c-format
msgid "examining hdlist file [%s]"
msgstr "corwaitaedje do fitchî hdlist [%s]"

#: ../urpm.pm:521 ../urpm.pm:992
#, c-format
msgid "virtual medium \"%s\" is not local, medium ignored"
msgstr "li forveyou sopoirt «%s» n' est nén locå, dji passe houte do sopoirt"

#: ../urpm.pm:551
#, c-format
msgid "Search start: %s end: %s"
msgstr "Cweraedje kimincî: %s fini: %s"

#: ../urpm.pm:556 ../urpm.pm:1006 ../urpm.pm:1090 ../urpm.pm:1161
#: ../urpm.pm:1552
#, c-format
msgid "problem reading hdlist or synthesis file of medium \"%s\""
msgstr ""
"åk n' a nén stî tot léjhant li fitchî hdlist ou di sinteze do sopoirt «%s»"

#: ../urpm.pm:562 ../urpm.pm:1803
#, c-format
msgid "performing second pass to compute dependencies\n"
msgstr "dji fwait l' deujhinme passe po carculer les aloyances\n"

#: ../urpm.pm:577
#, c-format
msgid "skipping package %s"
msgstr "dji passe houte do pacaedje %s"

#: ../urpm.pm:590
#, c-format
msgid "would install instead of upgrade package %s"
msgstr "dji va-st astaler purade ki mete a djoû l' pacaedje %s"

#: ../urpm.pm:601 ../urpm.pm:2189 ../urpm.pm:2253 ../urpm.pm:2822
#: ../urpm.pm:2936
#, c-format
msgid "unable to open rpmdb"
msgstr "dji n' sai drovi l' båze rpmdb"

#: ../urpm.pm:640
#, c-format
msgid "medium \"%s\" already exists"
msgstr "li sopoirt «%s» egzistêye dedja"

#: ../urpm.pm:647
#, c-format
msgid "virtual medium needs to be local"
msgstr "les forveyous sopoirts divént esse locås"

#: ../urpm.pm:673
#, c-format
msgid "added medium %s"
msgstr "sopoirt %s radjouté"

#: ../urpm.pm:700
#, c-format
msgid "unable to access first installation medium"
msgstr "dji n' a savou trover li prumî sopoirt d' astalaedje"

#: ../urpm.pm:704
#, c-format
msgid "copying hdlists file..."
msgstr "copiaedje do fitchî hdlist..."

#: ../urpm.pm:706 ../urpm.pm:1106 ../urpm.pm:1181
#, c-format
msgid "...copying done"
msgstr "...li copiaedje a stî comifåt"

#: ../urpm.pm:707 ../urpm.pm:1107 ../urpm.pm:1256 ../urpm.pm:1315
#: ../urpm.pm:1491 ../urpm.pm:1498
#, c-format
msgid "...copying failed"
msgstr "...li copiaedje a fwait berwete"

#: ../urpm.pm:710 ../urpm.pm:734 ../urpm.pm:769
#, c-format
msgid "unable to access first installation medium (no hdlists file found)"
msgstr ""
"dji n' a savou trover li prumî sopoirt d' astalaedje (nou fitchî hdlists di "
"trové)"

#: ../urpm.pm:717
#, c-format
msgid "retrieving hdlists file..."
msgstr "aberwetaedje do fitchî hdlist..."

#: ../urpm.pm:728 ../urpm.pm:1534 ../urpm.pm:1998 ../urpm.pm:2690
#: ../urpmi.addmedia:167
#, c-format
msgid "...retrieving done"
msgstr "...l' aberwetaedje a stî comifåt"

#: ../urpm.pm:730 ../urpm.pm:1518 ../urpm.pm:1527 ../urpm.pm:2001
#: ../urpm.pm:2692 ../urpmi.addmedia:169
#, c-format
msgid "...retrieving failed: %s"
msgstr "...l' aberwetaedje a fwait berwete: %s"

#: ../urpm.pm:752
#, c-format
msgid "invalid hdlist description \"%s\" in hdlists file"
msgstr "discrijhaedje hdlist nén valide «%s» el fitchî hdlists"

#: ../urpm.pm:806
#, c-format
msgid "trying to select nonexistent medium \"%s\""
msgstr "dji saye di tchoezi l' sopoirt «%s» ki n' egzistêye nén"

#: ../urpm.pm:808
#, c-format
msgid "selecting multiple media: %s"
msgstr "dji tchoezixh des sopoirts multipes: %s"

#: ../urpm.pm:808 ../urpmi.update:94
#, c-format
msgid "\"%s\""
msgstr %s»"

#: ../urpm.pm:824
#, c-format
msgid "removing medium \"%s\""
msgstr "dji bodje li sopoirt «%s»"

#: ../urpm.pm:875
#, c-format
msgid "reconfiguring urpmi for media \"%s\""
msgstr "rapontiaedje d' urpmi pol sopoirt «%s»"

#: ../urpm.pm:904
#, c-format
msgid "...reconfiguration failed"
msgstr "...li rapontiaedje a fwait berwete"

#: ../urpm.pm:911
#, c-format
msgid "reconfiguration done"
msgstr "li rapontiaedje a stî fwait"

#: ../urpm.pm:1043
#, c-format
msgid ""
"unable to access medium \"%s\",\n"
"this could happen if you mounted manually the directory when creating the "
"medium."
msgstr ""
"dji n' sai acceder å sopoirt «%s»,\n"
"çoula pout ariver metans si vos avoz monté al mwin li ridant divant di "
"radjouter l' sopoirt d' astalaedje."

#: ../urpm.pm:1094
#, c-format
msgid ""
"virtual medium \"%s\" should have valid source hdlist or synthesis, medium "
"ignored"
msgstr ""
"li forveyou sopoirt «%s» duvreut aveur on fitchî sourdant hdlist ou di "
"sinteze valides, dji passe houte do sopoirt"

#: ../urpm.pm:1104
#, c-format
msgid "copying description file of \"%s\"..."
msgstr "copiaedje do fitchî di discrijhaedjes di «%s»..."

#: ../urpm.pm:1128 ../urpm.pm:1399
#, c-format
msgid "computing md5sum of existing source hdlist (or synthesis)"
msgstr ""
"carculaedje do md5sum do fitchî «hdlist» (ou del sinteze) k' egzistêye dedja"

#: ../urpm.pm:1177
#, c-format
msgid "copying source hdlist (or synthesis) of \"%s\"..."
msgstr "copiaedje do sourdant «hdlist» (ou del sinteze) po «%s»..."

#: ../urpm.pm:1191
#, c-format
msgid "copy of [%s] failed (file is suspiciously small)"
msgstr ""
"li copeye di [%s] a fwait berwete (li fitchî est pår pitit ki s' end est "
"bizåre)"

#: ../urpm.pm:1196
#, c-format
msgid "computing md5sum of copied source hdlist (or synthesis)"
msgstr "carculaedje do fitchî «hdlist» (ou del sinteze) ki vént d' esse copyî"

#: ../urpm.pm:1198
#, c-format
msgid "copy of [%s] failed (md5sum mismatch)"
msgstr "li copeye di [%s] a fwait berwete (li md5sum ni corespond nén)"

#: ../urpm.pm:1219 ../urpm.pm:1431 ../urpm.pm:1768
#, c-format
msgid "problem reading synthesis file of medium \"%s\""
msgstr "åk n' a nén stî tot lijhant li fitchî di sinteze do sopoirt «%s»"

#: ../urpm.pm:1273
#, c-format
msgid "reading rpm files from [%s]"
msgstr "lijhant les fitchîs rpm foû di [%s]"

#: ../urpm.pm:1288
#, c-format
msgid "no rpms read"
msgstr "nou rpm di léjhou"

#: ../urpm.pm:1298
#, c-format
msgid "unable to read rpm files from [%s]: %s"
msgstr "dji n' sai lére les fitchîs rpm foû di [%s]: %s"

#: ../urpm.pm:1303
#, c-format
msgid "no rpm files found from [%s]"
msgstr "nou fitchî rpm di trové foû di [%s]"

#: ../urpm.pm:1449
#, c-format
msgid "retrieving source hdlist (or synthesis) of \"%s\"..."
msgstr "aberwetaedje do sourdant «hdlist» (ou del sinteze) po «%s»..."

#: ../urpm.pm:1476
#, c-format
msgid "found probed hdlist (or synthesis) as %s"
msgstr "«hdlist» (ou sinteze) ki vént d' esse sayî trové come «%s»"

#: ../urpm.pm:1525
#, c-format
msgid "computing md5sum of retrieved source hdlist (or synthesis)"
msgstr ""
"dji carcule li md5sum do fitchî «hdlist» (ou del sinteze) ki vént d' esse "
"aberweté"

#: ../urpm.pm:1527
#, c-format
msgid "md5sum mismatch"
msgstr "li md5sum ni corespond nén"

#: ../urpm.pm:1623
#, c-format
msgid "retrieval of source hdlist (or synthesis) failed"
msgstr "l' aberwetaedje do sourdant «hdlist» (ou del sinteze) a fwait berwete"

#: ../urpm.pm:1630
#, c-format
msgid "no hdlist file found for medium \"%s\""
msgstr "nou fitchî hdlist di trové pol sopoirt «%s»"

#: ../urpm.pm:1641 ../urpm.pm:1695
#, c-format
msgid "file [%s] already used in the same medium \"%s\""
msgstr "li fitchî [%s] est ddja eployî dins l' minme sopoirt «%s»"

#: ../urpm.pm:1681
#, c-format
msgid "unable to parse hdlist file of \"%s\""
msgstr "dji n' sai analijhî li fitchî hdlist di «%s»"

#: ../urpm.pm:1718
#, c-format
msgid "unable to write list file of \"%s\""
msgstr "dji n' sai scrire li fitchî djivêye di «%s»"

#: ../urpm.pm:1725
#, c-format
msgid "writing list file for medium \"%s\""
msgstr "dji screye li fitchî d' djivêye («list») pol sopoirt «%s»"

#: ../urpm.pm:1727
#, c-format
msgid "nothing written in list file for \"%s\""
msgstr "rén n' a stî scrît el fitchî djivêye po «%s»"

#: ../urpm.pm:1742
#, c-format
msgid "examining pubkey file of \"%s\"..."
msgstr "corwaitaedje do fitchî avou l' clé publike da «%s»..."

#: ../urpm.pm:1749
#, c-format
msgid "...imported key %s from pubkey file of \"%s\""
msgstr "...aberwetaedje del clé %s do fitchî di clés publikes da «%s»"

#: ../urpm.pm:1752
#, c-format
msgid "unable to import pubkey file of \"%s\""
msgstr "dji n' sai aberweter li clé publike da «%s»"

#: ../urpm.pm:1817
#, c-format
msgid "reading headers from medium \"%s\""
msgstr "dji lét les tiestires do sopoirt «%s»"

#: ../urpm.pm:1822
#, c-format
msgid "building hdlist [%s]"
msgstr "dji fwai l' fitchî hdlist [%s]"

#: ../urpm.pm:1837 ../urpm.pm:1872
#, c-format
msgid ""
"Unable to build synthesis file for medium \"%s\". Your hdlist file may be "
"corrupted."
msgstr ""
"Dji n' a savou fé l' fitchî d' sinteze pol sopoirt «%s». Motoit ki vosse "
"fitchî hdlist est cron."

#: ../urpm.pm:1840 ../urpm.pm:1875 ../urpmi:303
#, c-format
msgid "built hdlist synthesis file for medium \"%s\""
msgstr "dji fwai li fitchî d' sinteze hdlist pol sopoirt «%s»"

#: ../urpm.pm:1896
#, c-format
msgid "found %d headers in cache"
msgstr "%d tiestires trovêyes el muchete"

#: ../urpm.pm:1900
#, c-format
msgid "removing %d obsolete headers in cache"
msgstr "dji bodje %d viyès tiestires del muchete"

#: ../urpm.pm:1950
#, c-format
msgid "mounting %s"
msgstr "dji monte %s"

#: ../urpm.pm:1966
#, c-format
msgid "unmounting %s"
msgstr "dji dismonte %s"

#: ../urpm.pm:1990
#, c-format
msgid "invalid rpm file name [%s]"
msgstr "no d' fitchî rpm nén valåbe [%s]"

#: ../urpm.pm:1996
#, c-format
msgid "retrieving rpm file [%s] ..."
msgstr "aberwetaedje di fitchî rpm [%s]..."

#: ../urpm.pm:2003 ../urpm.pm:2864
#, c-format
msgid "unable to access rpm file [%s]"
msgstr "dji n' sai aveur accès å fitchî rpm [%s]"

#: ../urpm.pm:2008
#, c-format
msgid "unable to register rpm file"
msgstr "dji n' sai redjîstrer l' fitchî rpm"

#: ../urpm.pm:2011
#, c-format
msgid "error registering local packages"
msgstr "åk n' a nén stî tot-z eredjistrant les pacaedjes locås"

#: ../urpm.pm:2035
#, c-format
msgid "Search"
msgstr "Cweri"

#: ../urpm.pm:2126
#, c-format
msgid "no package named %s"
msgstr "nou pacaedje lomé %s"

#: ../urpm.pm:2129 ../urpme:92
#, c-format
msgid "The following packages contain %s: %s"
msgstr "Les pacaedjes ki shuvèt ont å dvins %s: %s"

#: ../urpm.pm:2313 ../urpm.pm:2357 ../urpm.pm:2383
#, c-format
msgid "there are multiple packages with the same rpm filename \"%s\""
msgstr "i gn a pus d' on pacaedje avou l' minme no d' fitchî rpm «%s»"

#: ../urpm.pm:2368
#, c-format
msgid "unable to correctly parse [%s] on value \"%s\""
msgstr "dji n' sai analijhî comifåt [%s] pol valixhance «%s»"

#: ../urpm.pm:2395
#, c-format
msgid ""
"medium \"%s\" uses an invalid list file:\n"
"  mirror is probably not up-to-date, trying to use alternate method"
msgstr ""
"li sopoirt «%s» eploye ene crombe djivêye di fitchîs:\n"
"  probåblumint ki l' muroe n' est nén a djoû, dji saye ene ôte metôde"

#: ../urpm.pm:2399
#, c-format
msgid "medium \"%s\" does not define any location for rpm files"
msgstr "li sopoirt «%s» èn definixh nou eplaeçmint po les fitchîs rpm"

#: ../urpm.pm:2411
#, c-format
msgid "package %s is not found."
msgstr "li pacaedje %s n' a nén stî trové."

#: ../urpm.pm:2451 ../urpm.pm:2466 ../urpm.pm:2490 ../urpm.pm:2505
#, c-format
msgid "urpmi database locked"
msgstr "båze di dnêyes urpmi serêye"

#: ../urpm.pm:2557 ../urpm.pm:2560 ../urpm.pm:2590
#, c-format
msgid "medium \"%s\" is not selected"
msgstr "li sopoirt «%s» n' a nén stî tchoezi"

#: ../urpm.pm:2586
#, c-format
msgid "unable to read rpm file [%s] from medium \"%s\""
msgstr "dji n' sai lére li fitchî rpm [%s] foû do sopoirt «%s»"

#: ../urpm.pm:2594
#, c-format
msgid "inconsistent medium \"%s\" marked removable but not really"
msgstr "sopoirt «%s» nén cowerant, metou come bodjåve mins nel est nén vormint"

#: ../urpm.pm:2606
#, c-format
msgid "unable to access medium \"%s\""
msgstr "dji n' sai aveur accès å sopoirt «%s»"

#: ../urpm.pm:2668
#, c-format
msgid "malformed input: [%s]"
msgstr "crombe intrêye: [%s]"

#: ../urpm.pm:2675
#, c-format
msgid "retrieving rpm files from medium \"%s\"..."
msgstr "aberwetaedje des fitchîs rpms do sopoirt «%s»..."

#: ../urpm.pm:2795
#, c-format
msgid "using process %d for executing transaction"
msgstr ""

#: ../urpm.pm:2826
#, c-format
msgid ""
"created transaction for installing on %s (remove=%d, install=%d, upgrade=%d)"
msgstr ""
"ahivé ene transaccion po l' astalaedje so %s (oister=%d, astaler=%d, mete a "
"djoû=%d)"

#: ../urpm.pm:2829
#, c-format
msgid "unable to create transaction"
msgstr "dji n' sai ahiver ene transaccion"

#: ../urpm.pm:2836
#, c-format
msgid "removing package %s"
msgstr "dji oistêye li pacaedje %s"

#: ../urpm.pm:2838
#, c-format
msgid "unable to remove package %s"
msgstr "dji n' sai oister l' pacaedje %s"

#: ../urpm.pm:2848
#, c-format
msgid "adding package %s (id=%d, eid=%d, update=%d, file=%s)"
msgstr ""
"dji radjoute li pacaedje %s (id=%d, eid=%d, metaedje a djoû=%d, fitchîs=%s)"

#: ../urpm.pm:2851
#, c-format
msgid "unable to install package %s"
msgstr "dji n' sai astaler l' pacaedje %s"

#: ../urpm.pm:2911
#, c-format
msgid "More information on package %s"
msgstr "Pus di racsegnes sol pacaedje %s"

#: ../urpm.pm:3068 ../urpm.pm:3101
#, c-format
msgid "due to missing %s"
msgstr "cåze di %s ki n' est nén la"

#: ../urpm.pm:3069 ../urpm.pm:3099
#, c-format
msgid "due to unsatisfied %s"
msgstr "cåze di %s ki n' est nén satisfyî"

#: ../urpm.pm:3070
#, fuzzy, c-format
msgid "trying to promote %s"
msgstr "Rén a oister"

#: ../urpm.pm:3071
#, c-format
msgid "in order to keep %s"
msgstr "po wårder %s"

#: ../urpm.pm:3094
#, c-format
msgid "in order to install %s"
msgstr "po-z astaler %s"

#: ../urpm.pm:3106
#, c-format
msgid "due to conflicts with %s"
msgstr "cåze di conflits avou %s"

#: ../urpm.pm:3108
#, c-format
msgid "unrequested"
msgstr "nén dmandé"

#: ../urpm.pm:3124
#, c-format
msgid "Invalid signature (%s)"
msgstr "Sinateure nén valide (%s)"

#: ../urpm.pm:3156
#, c-format
msgid "Invalid Key ID (%s)"
msgstr "ID di clé nén valide (%s)"

#: ../urpm.pm:3158
#, c-format
msgid "Missing signature (%s)"
msgstr "I manke li sinateure (%s)"

#: ../urpm.pm:3207
#, c-format
msgid "examining MD5SUM file"
msgstr "corwaitaedje do fitchî MD5SUM"

#: ../urpm.pm:3216
#, c-format
msgid "warning: md5sum for %s unavailable in MD5SUM file"
msgstr ""
"adviertixhmint: li verifiaedje md5sum po %s n' si trove nén e fitchî MD5SUM"

#: ../urpm/args.pm:90 ../urpm/args.pm:97
#, c-format
msgid "bad proxy declaration on command line\n"
msgstr "måle declaråcion do procsi sol roye di comande\n"

#: ../urpm/args.pm:229
#, c-format
msgid "urpmq: cannot read rpm file \"%s\"\n"
msgstr "urpmq: dji n' sai lére li fitchî rpm «%s»\n"

#: ../urpm/msg.pm:63
#, c-format
msgid "Sorry, bad choice, try again\n"
msgstr "Mwaijhe tchuze, sayîz co ene feye\n"

#: ../urpme:36
#, c-format
msgid ""
"urpme version %s\n"
"Copyright (C) 1999-2005 Mandrakesoft.\n"
"This is free software and may be redistributed under the terms of the GNU "
"GPL.\n"
"\n"
"usage:\n"
msgstr ""
"urpme modêye %s\n"
"Copyright © 1999-2005 Mandrakesoft.\n"
"Çouci est on libe programe et pout esse cossemé so les termes del licince "
"GPL.\n"
"\n"
"Po s' è siervi:\n"

#: ../urpme:41 ../urpmf:32 ../urpmi:76 ../urpmi.addmedia:47
#: ../urpmi.removemedia:44 ../urpmi.update:30 ../urpmq:43
#, c-format
msgid "  --help         - print this help message.\n"
msgstr "  --help         - mostere ci messaedje d' aidance chal.\n"

#: ../urpme:42 ../urpmi:83
#, c-format
msgid "  --auto         - automatically select a package in choices.\n"
msgstr ""
"  --auto         - tchoezi otomaticmint on pacaedje divins les tchuzes.\n"

#: ../urpme:43
#, c-format
msgid "  --test         - verify if the removal can be achieved correctly.\n"
msgstr "  --test         - verifyî si l' oistaedje si pout fé comifåt.\n"

#: ../urpme:44 ../urpmi:97 ../urpmq:64
#, c-format
msgid ""
"  --force        - force invocation even if some packages do not exist.\n"
msgstr ""
"  --force        - foirci, minme si des pacaedjes k' i gn a n' egzistèt "
"nén.\n"

#: ../urpme:45 ../urpmi:102 ../urpmq:65
#, c-format
msgid "  --parallel     - distributed urpmi across machines of alias.\n"
msgstr ""
" --parallel     - distribouwaedje di l' ovraedje d' urpmi so\n"
"                  so sacwantès éndjoles defineyes come alias.\n"

#: ../urpme:46
#, c-format
msgid "  --root         - use another root for rpm removal.\n"
msgstr "  --root         - eployî ene ôte raecene po l' oistaedje des rpm.\n"

#: ../urpme:47
#, c-format
msgid ""
"  --use-distrib  - configure urpmi on the fly from a distrib tree, useful\n"
"                   to (un)install a chroot with --root option.\n"
msgstr ""

#: ../urpme:49 ../urpmi:135 ../urpmi.addmedia:79 ../urpmi.removemedia:49
#: ../urpmi.update:48 ../urpmq:90
#, c-format
msgid "  -v             - verbose mode.\n"
msgstr "  -v             - môde badjawe.\n"

#: ../urpme:50
#, c-format
msgid "  -a             - select all packages matching expression.\n"
msgstr ""
"  -a             - tchoezi tos les pacaedjes ki corespondèt al ratourneure.\n"

#: ../urpme:66
#, c-format
msgid "Only superuser is allowed to remove packages"
msgstr "Seulmint li super-uzeu a l' droet d' oister des pacaedjes"

#: ../urpme:87
#, c-format
msgid "unknown packages"
msgstr "pacaedjes nén cnoxhous"

#: ../urpme:87
#, c-format
msgid "unknown package"
msgstr "pacaedje nén cnoxhou"

#: ../urpme:97
#, c-format
msgid "removing package %s will break your system"
msgstr "oister li pacaedje %s va spiyî vosse sistinme"

#: ../urpme:99
#, c-format
msgid "Nothing to remove"
msgstr "Rén a oister"

#: ../urpme:103
#, c-format
msgid "Checking to remove the following packages"
msgstr "Verifiaedje po oister les pacaedjes ki shuvèt"

#: ../urpme:110
#, c-format
msgid ""
"To satisfy dependencies, the following %d packages will be removed (%d MB)"
msgstr ""
"Po satisfyî les aloyaedjes, les %d pacaedjes ki shuvèt vont esse disastalés "
"(%d Mo)"

#: ../urpme:112 ../urpmi:423 ../urpmi:543
#, c-format
msgid " (y/N) "
msgstr " (o/N) "

#: ../urpme:119
#, c-format
msgid "Removing failed"
msgstr "Li oistaedje a fwait berwete"

#: ../urpmf:27
#, c-format
msgid ""
"urpmf version %s\n"
"Copyright (C) 2002-2004 Mandrakesoft.\n"
"This is free software and may be redistributed under the terms of the GNU "
"GPL.\n"
"\n"
"usage:\n"
msgstr ""
"urpmf modêye %s\n"
"Copyright © 2002-2004 Mandrakesoft.\n"
"Çouci est on libe programe et pout esse cossemé so les termes del licince "
"GPL.\n"
"\n"
"Po s' è siervi:\n"

#: ../urpmf:33 ../urpmi:77 ../urpmq:44
#, c-format
msgid "  --update       - use only update media.\n"
msgstr "  --update       - eployî kel sopoirt di metaedje a djoû.\n"

#: ../urpmf:34 ../urpmi:78 ../urpmq:45
#, c-format
msgid "  --media        - use only the given media, separated by comma.\n"
msgstr ""
"  --media        - eployî rén k' les sopoirts dinés, separés pa des comas.\n"

#: ../urpmf:35 ../urpmi:80 ../urpmq:47
#, c-format
msgid "  --excludemedia - do not use the given media, separated by comma.\n"
msgstr ""
"  --excludemedia - èn nén eployî les dnés sopoirts, separés pa des comas.\n"

#: ../urpmf:36 ../urpmi:81 ../urpmq:48
#, c-format
msgid ""
"  --sortmedia    - sort media according to substrings separated by comma.\n"
msgstr ""
"  --sortmedia    - relére les sopoirts sorlon les tchinnes dinêyes, "
"separêyes pa des comas.\n"

#: ../urpmf:37 ../urpmq:49
#, c-format
msgid "  --synthesis    - use the synthesis given instead of urpmi db.\n"
msgstr ""
"  --synthesis    - eployî l' fitchî d' sinteze diné purade kel\n"
"                   båze di dnêyes d' urpmi.\n"

#: ../urpmf:38
#, c-format
msgid "  --verbose      - verbose mode.\n"
msgstr "  --verbose      - môde badjawe.\n"

#: ../urpmf:39
#, c-format
msgid ""
"  --quiet        - do not print tag name (default if no tag given on "
"command\n"
"                   line, incompatible with interactive mode).\n"
msgstr ""
"  --quiet         - èn nén håyner l' no des etiketes (prémetou si nole\n"
"                    etikete dinêye sol roye di cmande, nén interactif).\n"

#: ../urpmf:41
#, c-format
msgid "  --uniq         - do not print identical lines.\n"
msgstr "  --uniq         - èn nén håyner les royes ki sont les minmes.\n"

#: ../urpmf:42
#, c-format
msgid "  --all          - print all tags.\n"
msgstr "  --all          - håyner totes les etiketes.\n"

#: ../urpmf:43
#, c-format
msgid "  --name         - print only package names.\n"
msgstr "  --name         - håyner fok les nos des pacaedjes.\n"

#: ../urpmf:44
#, c-format
msgid "  --group        - print tag group: group.\n"
msgstr "  --group        - håyner l' etikete di groupe: group.\n"

#: ../urpmf:45
#, c-format
msgid "  --size         - print tag size: size.\n"
msgstr "  --size         - håyner l' etikete del grandeu: size.\n"

#: ../urpmf:46
#, c-format
msgid "  --epoch        - print tag epoch: epoch.\n"
msgstr "  --epoch        - håyner l' etikete del epoke: epoch.\n"

#: ../urpmf:47
#, c-format
msgid "  --summary      - print tag summary: summary.\n"
msgstr "  --summary      - håyner l' etikete di rascourti: summary.\n"

#: ../urpmf:48
#, c-format
msgid "  --description  - print tag description: description.\n"
msgstr "  --description  - håyner l' etikete di discrijhaedje: description.\n"

#: ../urpmf:49
#, c-format
msgid "  --sourcerpm    - print tag sourcerpm: source rpm.\n"
msgstr ""
"  --sourcerpm    - håyner l' etikete «sourcerpm»: no do fitchî src.rpm "
"sourdant.\n"

#: ../urpmf:50
#, c-format
msgid "  --packager     - print tag packager: packager.\n"
msgstr ""
"  --packager     - håyner l' etikete «packager»: li ci k' a fwait "
"l' pacaedje.\n"

#: ../urpmf:51
#, c-format
msgid "  --buildhost    - print tag buildhost: build host.\n"
msgstr ""
"  --buildhost    - håyner l' etikete «buildhost»: lodjoe wice ki l' pacaedje "
"a stî fwait.\n"

#: ../urpmf:52
#, c-format
msgid "  --url          - print tag url: url.\n"
msgstr ""
"  --url          - håyner l' etikete «url»: hårdêye avou des informåcions.\n"

#: ../urpmf:53
#, c-format
msgid "  --provides     - print tag provides: all provides.\n"
msgstr ""
"  --provides     - håyner l' etikete «provides»: tot çou k' est ahessî.\n"

#: ../urpmf:54
#, c-format
msgid "  --requires     - print tag requires: all requires.\n"
msgstr ""
"  --requires     - håyner l' etikete «requires»: tot çou k' i gn a mezåjhe.\n"

#: ../urpmf:55
#, c-format
msgid "  --files        - print tag files: all files.\n"
msgstr "  --files        - håyner l' etikete «files»: tos les fitchîs.\n"

#: ../urpmf:56
#, c-format
msgid "  --conflicts    - print tag conflicts: all conflicts.\n"
msgstr "  --conflicts    - håyner l' etikete «conflicts»: tos les conflits.\n"

#: ../urpmf:57
#, c-format
msgid "  --obsoletes    - print tag obsoletes: all obsoletes.\n"
msgstr ""
"  --obsoletes    - håyner l' etikete «obsoletes»: tos les vîs cayets.\n"

#: ../urpmf:58 ../urpmi:117 ../urpmq:74
#, c-format
msgid ""
"  --env          - use specific environment (typically a bug\n"
"                   report).\n"
msgstr ""
"  --env          - eployî on evironmint dné (tipike po les rapoirts\n"
"                   di bug).\n"

#: ../urpmf:60
#, c-format
msgid "  -i             - ignore case distinctions in every pattern.\n"
msgstr "  -i             - èn nén fé di diferince pititès/grandès letes.\n"

#: ../urpmf:61 ../urpmq:80
#, c-format
msgid "  -f             - print version, release and arch with name.\n"
msgstr ""
"  -f             - mostere li modêye et release, eyet l' årtchitecteure avou "
"l' no.\n"

#: ../urpmf:62
#, c-format
msgid "  -e             - include perl code directly as perl -e.\n"
msgstr ""
"  -e             - sititchî do côde perl directumint, come «perl -e».\n"

#: ../urpmf:63
#, c-format
msgid ""
"  -a             - binary AND operator, true if both expression are true.\n"
msgstr ""
"  -a             - operateu binaire EYET, vraiy si les deus ratourneures "
"sont vraiyes.\n"

#: ../urpmf:64
#, c-format
msgid ""
"  -o             - binary OR operator, true if one expression is true.\n"
msgstr ""
"  -o             - operateu binaire OU, vraiy si ene des ratourneures est "
"vraiye.\n"

#: ../urpmf:65
#, c-format
msgid "  !              - unary NOT, true if expression is false.\n"
msgstr ""
"  !              - operateu unaire NENI, vraiy si l' ratourneure est fåsse.\n"

#: ../urpmf:66
#, c-format
msgid "  (              - left parenthesis to open group expression.\n"
msgstr ""
"  (              - åtchete di hintche po drovi on groupe di ratourneures.\n"

#: ../urpmf:67
#, c-format
msgid "  )              - right parenthesis to close group expression.\n"
msgstr ""
"  )              - åtchete di droete po clôre on groupe di ratourneures.\n"

#: ../urpmf:119
#, c-format
msgid ""
"callback is :\n"
"%s\n"
msgstr ""

#: ../urpmf:124 ../urpmi:198 ../urpmq:114
#, c-format
msgid "using specific environment on %s\n"
msgstr "eployant on evironmint specifike so %s\n"

#: ../urpmf:156
#, c-format
msgid ""
"Note: since no media searched uses hdlists, urpmf was unable to return any "
"result\n"
msgstr ""
"Note: come nou sopoirt des cis cwerous n' eploye des hdlist, urpmf n' a nén "
"savou rtourner des rzultats\n"

#: ../urpmf:157
#, c-format
msgid "You may want to use --name to search for package names.\n"
msgstr ""
"Motoit vos vôrîz eployî «--name» po fé on cweraedje sol no des pacaedjes.\n"

#: ../urpmi:71
#, c-format
msgid ""
"urpmi version %s\n"
"Copyright (C) 1999-2005 Mandrakesoft.\n"
"This is free software and may be redistributed under the terms of the GNU "
"GPL.\n"
"\n"
"usage:\n"
msgstr ""
"urpmi modêye %s\n"
"Copyright © 1999-2005 Mandrakesoft.\n"
"Çouci est on libe programe et pout esse cossemé so les termes del licince "
"GPL.\n"
"\n"
"Po s' è siervi:\n"

#: ../urpmi:79 ../urpmq:46
#, c-format
msgid ""
"  --searchmedia  - use only the given media to search requested (or updated) "
"packages.\n"
msgstr ""
"  --searchmedia  - eployî rén k' les sopoirts dinés po cweri les pacaedjes.\n"

#: ../urpmi:82
#, c-format
msgid "  --synthesis    - use the given synthesis instead of urpmi db.\n"
msgstr ""
"  --synthesis    - eployî l' fitchî d' sinteze diné purade kel\n"
"                   båze di dnêyes d' urpmi.\n"

#: ../urpmi:84 ../urpmq:50
#, c-format
msgid ""
"  --auto-select  - automatically select packages to upgrade the system.\n"
msgstr ""
"  --auto-select  - tchoezi otomaticmint les pacaedjes pol metaedje a djoû\n"
"                   do sistinme.\n"

#: ../urpmi:85
#, c-format
msgid ""
"  --no-uninstall - never ask to uninstall a package, abort the "
"installation.\n"
msgstr ""
"  --no-uninstall - måy dimander po dizastaler on pacaedje, purade rinoncî.\n"

#: ../urpmi:86 ../urpmq:52
#, c-format
msgid ""
"  --keep         - keep existing packages if possible, reject requested\n"
"                   packages that leads to remove.\n"
msgstr ""
"  --keep         - wårder les pacaedjes k' i gn a si c' est possibe,\n"
"                   rifuzer les dmandes ki oistêyrént des pacaedjes.\n"

#: ../urpmi:88
#, c-format
msgid ""
"  --split-level  - split in small transaction if more than given packages\n"
"                   are going to be installed or upgraded,\n"
"                   default is %d.\n"
msgstr ""

#: ../urpmi:91
#, c-format
msgid "  --split-length - small transaction length, default is %d.\n"
msgstr ""

#: ../urpmi:92 ../urpmq:51
#, c-format
msgid "  --fuzzy        - impose fuzzy search (same as -y).\n"
msgstr "  --fuzzy        - foirci des cweraedjes rishonnants (come -y).\n"

#: ../urpmi:93 ../urpmq:60
#, c-format
msgid "  --src          - next package is a source package (same as -s).\n"
msgstr ""
"  --src          - li pacaedje shuvant est on pacaedje sourdant\n"
"                   (parey ki -s).\n"

#: ../urpmi:94
#, c-format
msgid "  --install-src  - install only source package (no binaries).\n"
msgstr ""
"  --install-src  - astaler seulmint pacaedjes sourdant (nén les binaires).\n"

#: ../urpmi:95
#, c-format
msgid "  --clean        - remove rpm from cache before anything else.\n"
msgstr ""
"  --clean        - oister del muchete les pacaedjes rpm divant d' ataker.\n"

#: ../urpmi:96
#, c-format
msgid "  --noclean      - keep rpm not used in cache.\n"
msgstr "  --noclean      - wårder el muchete les pacaedjes rpm nén eployîs.\n"

#: ../urpmi:98
#, c-format
msgid ""
"  --allow-nodeps - allow asking user to install packages without\n"
"                   dependencies checking.\n"
msgstr ""
"  --allow-nodeps - permete k' on dimande a l' uzeu s' i vout astaler\n"
"                   les pacaedjes sins verifyî les aloyances.\n"

#: ../urpmi:100
#, c-format
msgid ""
"  --allow-force  - allow asking user to install packages without\n"
"                   dependencies checking and integrity.\n"
msgstr ""
"  --allow-force  - permete k' on dimande a l' uzeu s' i vout astaler\n"
"                   les pacaedjes sins verifyî les aloyances nerén\n"
"                   l' etegrité.\n"

#: ../urpmi:103
#, c-format
msgid "  --root         - use another root for rpm installation.\n"
msgstr "  --root         - eployî ene ôte raecene po l' astalaedje des rpm.\n"

#: ../urpmi:104
#, c-format
msgid ""
"  --use-distrib  - configure urpmi on the fly from a distrib tree, useful\n"
"                   to install a chroot with --root option.\n"
msgstr ""

#: ../urpmi:106 ../urpmi.addmedia:48 ../urpmi.update:31 ../urpmq:68
#, c-format
msgid "  --wget         - use wget to retrieve distant files.\n"
msgstr "  --wget         - eployî wget po-z aberweter les fitchî då lon.\n"

#: ../urpmi:107 ../urpmi.addmedia:49 ../urpmi.update:32 ../urpmq:69
#, c-format
msgid "  --curl         - use curl to retrieve distant files.\n"
msgstr "  --curl         - eployî curl po-z aberweter les fitchî då lon.\n"

#: ../urpmi:108 ../urpmi.addmedia:50 ../urpmi.update:33
#, c-format
msgid "  --limit-rate   - limit the download speed.\n"
msgstr "  --limit-rate   - limiter li roedeu di l' aberwetaedje.\n"

#: ../urpmi:109
#, c-format
msgid ""
"  --resume       - resume transfer of partially-downloaded files\n"
"                   (--no-resume disables it, default is disabled).\n"
msgstr ""
"  --resume       - rataker l' aberwetaedje des fitchîs rpm la wice k' il "
"ont\n"
"                   stî djokés (--no-resume po nel nén fé, prémetou=nén fé).\n"

#: ../urpmi:111 ../urpmi.addmedia:51 ../urpmi.update:34 ../urpmq:70
#, c-format
msgid ""
"  --proxy        - use specified HTTP proxy, the port number is assumed\n"
"                   to be 1080 by default (format is <proxyhost[:port]>).\n"
msgstr ""
"  --proxy        - eployî li procsi HTTP dné, li prémetou pôrt si nén dné\n"
"                   est 1080 (li cogne pol tchuze est <lodjoeprocsi[:pôrt]"
">).\n"

#: ../urpmi:113 ../urpmi.addmedia:53 ../urpmi.update:36 ../urpmq:72
#, c-format
msgid ""
"  --proxy-user   - specify user and password to use for proxy\n"
"                   authentication (format is <user:password>).\n"
msgstr ""
"  --proxy-user   - dene l' uzeu eyet l' sicret a-z eployî po\n"
"                   l' otintifiaedje sol procsi (li cogne est <uzeu:"
"sicret>).\n"

#: ../urpmi:115
#, c-format
msgid ""
"  --bug          - output a bug report in directory indicated by\n"
"                   next arg.\n"
msgstr ""
"  --bug          - sicrire on rapoirt di bug dins l' ridant dné come\n"
"                   årgumint djusse après.\n"

#: ../urpmi:119
#, c-format
msgid ""
"  --verify-rpm   - verify rpm signature before installation\n"
"                   (--no-verify-rpm disable it, default is enabled).\n"
msgstr ""
"  --verify-rpm   - verifyî li sinateure rpm divant d' astaler.\n"
"                   (--no-verify-rpm po n' nén l' fé, prémetou=verifyî).\n"

#: ../urpmi:121
#, c-format
msgid ""
"  --test         - verify if the installation can be achieved correctly.\n"
msgstr ""
"  --test         - verifyî si l' astalaedje si pout fé comifåt disk' al "
"fén.\n"

#: ../urpmi:122
#, c-format
msgid "  --excludepath  - exclude path separated by comma.\n"
msgstr "  --excludepath  - tchimins separés pa des comas, a n' nén foyter.\n"

#: ../urpmi:123
#, c-format
msgid "  --excludedocs  - exclude docs files.\n"
msgstr "  --excludedocs  - èn nén astaler les fitchîs d' documintåcion.\n"

#: ../urpmi:124
#, c-format
msgid "  --skip         - packages which installation should be skipped\n"
msgstr "  --skip         - pacaedjes k' i fåt passer houte et n' nén astaler\n"

#: ../urpmi:125
#, c-format
msgid ""
"  --more-choices - when several packages are found, propose more choices\n"
"                   than the default.\n"
msgstr ""
"  --more-choices - cwand sacwants pacaedjes sont trovés, propoze pus di\n"
"                   tchuzes ki les prémetowes.\n"

#: ../urpmi:127 ../urpmi.addmedia:75 ../urpmi.update:41
#, c-format
msgid "  --norebuild    - don't try to rebuild hdlist if not readable.\n"
msgstr ""
"  --norebuild    - èn nén sayî d' rifé l' fitchî «hdlist» si nén lijhåve.\n"

#: ../urpmi:128
#, c-format
msgid "  --strict-arch  - upgrade only packages with the same architecture.\n"
msgstr ""
"  --strict-arch  - mete a djoû seulmint les pacaedjes pol minme "
"årtchitecteure.\n"

#: ../urpmi:129 ../urpmq:77
#, c-format
msgid "  -a             - select all matches on command line.\n"
msgstr "  -a             - eployî --all-matches pol roye di comande.\n"

#: ../urpmi:130
#, c-format
msgid "  -p             - allow search in provides to find package.\n"
msgstr ""
"  -p             - fé des rcweraedjes ezès aloyances po trover on pacaedje.\n"

#: ../urpmi:131
#, c-format
msgid "  -P             - do not search in provides to find package.\n"
msgstr ""
"  -P             - èn nén fé des rcweraedjes ezès aloyances po trover\n"
"                   on pacaedje.\n"

#: ../urpmi:132 ../urpmq:91
#, c-format
msgid "  -y             - impose fuzzy search (same as --fuzzy).\n"
msgstr "  -y             - foirci des cweraedjes rishonnants (come --fuzzy).\n"

#: ../urpmi:133 ../urpmq:88
#, c-format
msgid "  -s             - next package is a source package (same as --src).\n"
msgstr ""
"  -s             - li pacaedje shuvant est on pacaedje sourdant\n"
"                   (parey ki --src).\n"

#: ../urpmi:134 ../urpmi.addmedia:78 ../urpmi.removemedia:48
#: ../urpmi.update:47
#, c-format
msgid "  -q             - quiet mode.\n"
msgstr "  -q             - môde taijheu.\n"

#: ../urpmi:136
#, c-format
msgid "  names or rpm files given on command line will be installed.\n"
msgstr "  les nos ou fitchîs rpm dinés sol roye di cmande seront-st astalés.\n"

#: ../urpmi:179
#, c-format
msgid "What can be done with binary rpm files when using --install-src"
msgstr ""
"Çou ki s' pout fé avou les pacaedjes rpm binaires cwand c' est k' on "
"tchoezixh «--install-src»"

#: ../urpmi:188
#, c-format
msgid ""
"Directory [%s] already exists, please use another directory for bug report "
"or delete it"
msgstr ""
"Li ridant [%s] egzistêye dedja, eployîz è èn ôte po les rapoirts di bugs, "
"oudonbén disfacez l'."

#: ../urpmi:189
#, c-format
msgid "Unable to create directory [%s] for bug report"
msgstr "dji n' sai askepyî l' ridant [%s] po fé des rapoirts di bug"

#: ../urpmi:192 ../urpmi:313
#, c-format
msgid "Copying failed"
msgstr "Li copiaedje a fwait berwete"

#: ../urpmi:209
#, c-format
msgid "Only superuser is allowed to install packages"
msgstr "Seulmint li super-uzeu a l' droet d' astaler des pacaedjes"

#: ../urpmi:218
#, c-format
msgid ""
"Error: %s appears to be mounted read-only.\n"
"Use --allow-force to force operation."
msgstr ""
"Aroke: i shonne ki %s soeye monté e môde seulmint-lére.\n"
"Eployîz --allow-force po foircî l' operåcion."

#: ../urpmi:348
#, c-format
msgid "What is your choice? (1-%d) "
msgstr "Ké tchoezixhoz vs? (1-%d) "

#: ../urpmi:373
#, c-format
msgid ""
"The following packages can't be installed because they depend on packages\n"
"that are older than the installed ones:\n"
"%s"
msgstr ""
"Les pacaedjes shuvants èn polèt nén esse astalés, la k' il ont mezåjhe\n"
"d' ôtes pacaedjes ki sont pus vîs k' les cis k' sont astalés:\n"
"%s"

#: ../urpmi:381 ../urpmi:399
#, c-format
msgid ""
"\n"
"Continue?"
msgstr ""
"\n"
"Continouwer?"

#: ../urpmi:392
#, c-format
msgid ""
"Some package requested cannot be installed:\n"
"%s"
msgstr ""
"Sacwants pacaedjes dimandés n' polèt nén esse astalés:\n"
"%s"

#: ../urpmi:412
#, c-format
msgid ""
"The installation cannot continue because the following packages\n"
"have to be removed for others to be upgraded:\n"
"%s\n"
msgstr ""
"L' astalaedje ni s' pout porshure, ca les pacaedjes shuvants\n"
"ont mezåjhe d' esse oistés po des ôtes esse metous a djoû:\n"
"%s\n"

#: ../urpmi:417
#, c-format
msgid ""
"The following packages have to be removed for others to be upgraded:\n"
"%s"
msgstr ""
"Les pacaedjes shuvants ont mezåjhe d' esse oistés po des ôtes esse metous a "
"djoû:\n"
"%s"

#: ../urpmi:452 ../urpmi:463
#, c-format
msgid ""
"To satisfy dependencies, the following %d packages are going to be installed "
"(%d MB)"
msgstr ""
"Po satisfyî les aloyaedjes, les %d pacaedjes shuvants vont esse astalés (%d "
"Mo)"

#: ../urpmi:453 ../urpmi:464
#, c-format
msgid ""
"To satisfy dependencies, the following package is going to be installed (%d "
"MB)"
msgstr ""
"Po satisfyî les aloyaedjes, li pacaedje aloyî ki shût va esse astalé (%d Mo)"

#: ../urpmi:459
#, c-format
msgid ""
"You need to be root to install the following dependencies:\n"
"%s\n"
msgstr ""
"Vos dvoz esse root po-z astaler les aloyances shuvantes:\n"
"%s\n"

#: ../urpmi:489
#, c-format
msgid "Press Enter when ready..."
msgstr "Tapez so «enter» cwand c' est fwait..."

#: ../urpmi:534
#, c-format
msgid "The following packages have bad signatures"
msgstr "Les pacaedjes ki shuvèt ont ene mwaijhe sinateure"

#: ../urpmi:535
#, c-format
msgid "Do you want to continue installation ?"
msgstr "Voloz vs continouwer avou l' astalaedje?"

#: ../urpmi:575
#, c-format
msgid "distributing %s"
msgstr "dji distribouwe %s"

#: ../urpmi:586
#, c-format
msgid "installing %s from %s"
msgstr "dj' astale %s a pårti di %s"

#: ../urpmi:588
#, c-format
msgid "installing %s"
msgstr "dj' astale %s"

#: ../urpmi:611
#, c-format
msgid "Try installation without checking dependencies? (y/N) "
msgstr "Sayî d' astaler sin verifyî les aloyaedjes? (o/N) "

#: ../urpmi:630
#, c-format
msgid "Try installation even more strongly (--force)? (y/N) "
msgstr "Sayî d' astaler co pus foirt (--force)? (o/N) "

#: ../urpmi:671
#, c-format
msgid "%d installation transactions failed"
msgstr "I gn a-st avou %d transaccions d' astalaedje k' ont fwait berwete"

#: ../urpmi:679
#, c-format
msgid "Installation is possible"
msgstr "L' astalaedje est possibe"

#: ../urpmi:698
#, c-format
msgid "restarting urpmi"
msgstr "renondant urpmi"

#: ../urpmi.addmedia:38
#, c-format
msgid ""
"usage: urpmi.addmedia [options] <name> <url> [with <relative_path>]\n"
"where <url> is one of\n"
"       [file:/]/<path> with <relative filename of hdlist>\n"
"       ftp://<login>:<password>@<host>/<path> with <relative filename of "
"hdlist>\n"
"       ftp://<host>/<path> with <relative filename of hdlist>\n"
"       http://<host>/<path> with <relative filename of hdlist>\n"
"       removable://<path>\n"
"\n"
"and [options] are from\n"
msgstr ""
"po s' è siervi: urpmi.addmedia [tchuzes] <etikete> <hårdêye> [with "
"<tchimin_relatif>]\n"
"li <hårdêye> pout esse ene etur:\n"
"       [file:/]/<tchimin> with <tchimin relatif pol fitchî hdlist>\n"
"       ftp://<login>:<sicret>@<lodjoe>/<tchimin> with <tchimin relatif pol "
"fitchî hdlist>\n"
"       ftp://<lodjoe>/<tchimin> with <tchimin relatif pol fitchî hdlist>\n"
"       http://<lodjoe>/<tchimin> with <tchimin relatif pol fitchî hdlist>\n"
"       removable://<tchimin>\n"
"\n"
"et les [tchuzes] possibes sont\n"

#: ../urpmi.addmedia:55
#, c-format
msgid "  --update       - create an update medium.\n"
msgstr "  --update       - fé on sopoirt di metaedje a djoû.\n"

#: ../urpmi.addmedia:56
#, c-format
msgid "  --probe-synthesis - try to find and use synthesis file.\n"
msgstr ""
"  --probe-synthesis - sayî di trover ey eployî les fitchîs di sinteze.\n"

#: ../urpmi.addmedia:57
#, c-format
msgid "  --probe-hdlist - try to find and use hdlist file.\n"
msgstr "  --probe-hdlist - sayî di trover ey eployî fitchî «hdlist».\n"

#: ../urpmi.addmedia:58
#, c-format
msgid ""
"  --no-probe     - do not try to find any synthesis or\n"
"                   hdlist file.\n"
msgstr ""
"  --no-probe     - èn nén sayî di trover on fitchî di sinteze\n"
"                   ou «hdlist».\n"

#: ../urpmi.addmedia:60
#, c-format
msgid ""
"  --distrib      - automatically create all media from an installation\n"
"                   medium.\n"
msgstr ""
"  --distrib      - fé otomaticmint tos les sopoirts a pårti d' on sopoirt\n"
"                   d' astalåcion.\n"

#: ../urpmi.addmedia:62
#, c-format
msgid ""
"  --distrib-XXX  - automatically create a medium for XXX part of a\n"