summaryrefslogtreecommitdiffstats
path: root/perl-install/commands.pm
blob: 88735b8ead6058a49466f491436f149a94685b49 (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
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
package commands; # $Id$

#-########################################################################
#- This file implement many common shell commands:
#- true, false, cat, which, dirname, basename, rmdir, lsmod, grep, tr,
#- mount, umount, mkdir, mknod, ln, rm, chmod, chown, swapon,
#- swapoff, ls, cp, ps, dd, head, tail, strings, hexdump, more, insmod,
#- modprobe, route, df, kill, lspci, lssbus, dmesg, sort, du, 
#-########################################################################

use diagnostics;
use strict;
use vars qw($printable_chars *ROUTE *DF *PS);

#-######################################################################################
#- misc imports
#-######################################################################################
use MDK::Common::System;
use common;

#-######################################################################################
#- Functions
#-######################################################################################
sub getopts {
    my $o = shift;
    my @r = map { '' } (@_ = split //, $_[0]);
    while (1) {
	local $_ = $o->[0];
	$_ && /^-/ or return @r;
	for (my $i = 0; $i < @_; $i++) { /$_[$i]/ and $r[$i] = $_[$i] }
	shift @$o;
    }
    @r;
}

sub true() { exit 0 }
sub false() { exit 1 }
sub cat { @ARGV = @_; print while <> }
sub dirname_ { print dirname(@_), "\n" }
sub basename_ { print basename(@_), "\n" }
sub rmdir_ { foreach (@_) { rmdir $_ or die "rmdir: can't remove $_\n" } }
sub lsmod() { print "Module                  Size  Used by\n"; cat("/proc/modules") }
sub which { 
  ARG: foreach (@_) { foreach my $c (split /:/, $ENV{PATH}) { -x "$c/$_" and print("$c/$_\n"), next ARG } }
}

sub grep_ {
    my ($h, $v, $i) = getopts(\@_, qw(hvi));
    @_ == 0 || $h and die "usage: grep <regexp> [files...]\n";
    my $r = shift;
    $r = qr/$r/i if $i;
    @ARGV = @_; (/$r/ xor $v) and print while <>;
}

sub tr_ {
    my ($s, $c, $d) = getopts(\@_, qw(s c d));
    @_ >= 1 + (!$d || $s) or die "usage: tr [-c] [-s [-d]] <set1> <set2> [files...]\n    or tr [-c] -d <set1> [files...]\n";
    my $set1 = shift;
    my $set2; !$d || $s and $set2 = shift;
    @ARGV = @_;
    eval "(tr/$set1/$set2/$s$d$c, print) while <>";
}

sub mount {
    @_ or return cat("/proc/mounts");
    my ($t, $r) = getopts(\@_, qw(tr));
    my $fs = $t && shift;

    @_ == 2 or die "usage: mount [-r] [-t <fs>] <device> <dir>\n",
    "       (use -r for readonly)\n",
    "       (if /dev/ is left off the device name, a temporary node will be created)\n";

    my ($dev, $where) = @_;
    $fs ||= $where =~ /:/ ? "nfs" :
            $dev =~ /fd/ ? "vfat" : "ext2";

    require fs;
    require modules;
    modules::load_dependencies("/modules/modules.dep");
    fs::mount($dev, $where, $fs, $r);
}

sub umount {
    @_ == 1 or die "umount expects a single argument\n";

    require fs;
    fs::umount($_[0]);
}

sub mkdir_ {
    my ($_rec) = getopts(\@_, qw(p));
    mkdir_p($_) foreach @_;
}


sub mknod {
    if (@_ == 1) {
	require devices;
	eval { devices::make($_[0]) }; $@ and die "mknod: failed to create $_[0]\n";
    } elsif (@_ == 4) {
	require c;
	my $mode = ${{ "b" => c::S_IFBLK(), "c" => c::S_IFCHR() }}{$_[1]} or die "unknown node type $_[1]\n";
	syscall_('mknod', my $_a = $_[0], $mode | 0600, makedev($_[2], $_[3])) or die "mknod failed: $!\n";
    } else { die "usage: mknod <path> [b|c] <major> <minor> or mknod <path>\n" }
}

sub ln {
    my ($force, $soft) = getopts(\@_, qw(fs));
    @_ >= 1 or die "usage: ln [-s] [-f] <source> [<dest>]\n";

    my ($source, $dest) = @_;
    $dest ||= basename($source);

    $force and unlink $dest;

    ($soft ? symlink($source, $dest) : link($source, $dest)) or die "ln failed: $!\n";
}

sub rm {
    my ($rec, undef) = getopts(\@_, qw(rf));

    my $rm; $rm = sub {
	foreach (@_) {
	    if (!-l $_ && -d $_) {
		$rec or die "$_ is a directory\n";
		&$rm(glob_($_));
		rmdir $_ or die "can't remove directory $_: $!\n";
	    } else { unlink $_ or die "rm of $_ failed: $!\n" }
	}
    };
    &$rm(@_);
}

sub chmod_ {
    @_ >= 2 or die "usage: chmod <mode> <files>\n";

    my $mode = shift;
    $mode =~ /^[0-7]+$/ or die "illegal mode $mode\n";

    foreach (@_) { chmod oct($mode), $_ or die "chmod failed $_: $!\n" }
}

sub chown_ {
    my ($rec, undef) = getopts(\@_, qw(r));
    local $_ = shift or die "usage: chown [-r] name[.group] <files>\n";

    my ($name, $group) = (split('\.'), $_);

    my ($uid, $gid) = (getpwnam($name) || $name, getgrnam($group) || $group);

    my $chown; $chown = sub {
	foreach (@_) {
	    chown $uid, $gid, $_ or die "chown of file $_ failed: $!\n";
	    -d $_ && $rec and &$chown(glob_($_));
	}
    };
    &$chown(@_);
}

sub swapon {
    @_ == 1 or die "swapon <file>\n";
    require swap;
    swap::swapon($_[0]);
}
sub swapoff {
    @_ == 1 or die "swapoff <file>\n";
    require swap;
    swap::swapoff($_[0]);
}

sub uncpio {
    @_ and die "uncpio reads from stdin\n";

#    cpioInstallArchive(gzdopen(0, "r"), NULL, 0, NULL, NULL, &fail);
}


sub rights {
    my $r = '-' x 9;
    my @rights = (qw(x w r x w r x w r), ['t', 0], ['s', 3], ['s', 6]);
    for (my $i = 0; $i < @rights; $i++) {
	if (vec(pack("S", $_[0]), $i, 1)) {
	    my ($val, $place) = $i >= 9 ? @{$rights[$i]} : ($rights[$i], $i);
	    my $old = \substr($r, 8 - $place, 1);
	    $$old = $$old eq '-' && $i >= 9 ? uc $val : $val;
	}
    }
    my @types = split //, "_pc_d_b_-_l_s";
    $types[($_[0] >> 12) & 0xf] . $r;
}

sub displaySize {
    my $m = $_[0] >> 12;
    $m == 4 || $m == 8 || $m == 10;
}

sub ls {
    my ($l, $h) = getopts(\@_, qw(lh));
    $h and die "usage: ls [-l] <files...>\n";

    @_ or @_ = '.';
    @_ == 1 && -d $_[0] and @_ = glob_($_[0]);
    foreach (sort @_) {
	if ($l) {
	    my @s = lstat or warn("can't stat file $_\n"), next;
	    formline(
"@<<<<<<<<< @<<<<<<< @<<<<<<< @>>>>>>>> @>>>>>>>>>>>>>>> @*\n",
		     rights($s[2]), getpwuid $s[4] || $s[4], getgrgid $s[5] || $s[5],
		     displaySize($s[2]) ? $s[7] : join(", ", unmakedev($s[6])),
		     scalar localtime $s[9], -l $_ ? "$_ -> " . readlink $_ : $_);
	    print $^A; $^A = '';
	} else { print "$_\n" }
    }
}
sub cp {
    @_ >= 2 or die "usage: cp <sources> <dest>\n(this cp does -Rfl by default)\n";
    cp_af(@_);
}

sub ps {
    @_ and die "usage: ps\n";
    my ($pid, $rss, $cpu, $cmd);
    my ($uptime) = split ' ', first(cat_("/proc/uptime"));
    my $hertz = 100;

    require c;
    my $page = c::getpagesize() / 1024;

    open PS, ">&STDOUT"; #- PS must be not be localised otherwise the "format PS" fails
    format PS_TOP =
  PID   RSS %CPU CMD
.
    format PS =
@>>>> @>>>> @>>> @<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
$pid, $rss, $cpu, $cmd
.
    foreach (sort { $a <=> $b } grep { /\d+/ } all('/proc')) {
	$pid = $_;
	my @l = split(' ', cat_("/proc/$pid/stat"));
	$cpu = sprintf "%2.1f", max(0, min(99, ($l[13] + $l[14]) * 100 / $hertz / ($uptime - $l[21] / $hertz)));
	$rss = (split ' ', cat_("/proc/$pid/stat"))[23] * $page;
	($cmd = cat_("/proc/$pid/cmdline")) =~ s/\0/ /g;
	$cmd ||= (split ' ', (cat_("/proc/$pid/stat"))[0])[1];
	write PS;
    }
}


sub dd {
    my $u = "usage: dd [-h] [-p] [if=<file>] [of=<file>] [bs=<number>] [count=<number>]\n";
    my ($help, $percent) = getopts(\@_, qw(hp));
    die $u if $help;
    my %h = (if => *STDIN, of => *STDOUT, bs => 512, count => undef);
    foreach (@_) {
	/(.*?)=(.*)/ && exists $h{$1} or die $u;
	$h{$1} = $2;
    }
    local (*IF, *OF); my ($tmp, $nb, $read);
    ref($h{if}) eq 'GLOB' ? (*IF = $h{if}) : sysopen(IF, $h{if}, 0)    || die "error: can't open file $h{if}\n";
    ref($h{of}) eq 'GLOB' ? (*OF = $h{of}) : sysopen(OF, $h{of}, 0x41) || die "error: can't open file $h{of}\n";

    $h{bs} = removeXiBSuffix($h{bs});

    for ($nb = 0; !$h{count} || $nb < $h{count}; $nb++) {
	printf "\r%02.1d%%", 100 * $nb / $h{count} if $h{count} && $percent;
	$read = sysread(IF, $tmp, $h{bs}) or ($h{count} ? die "error: can't read block $nb\n" : last);
	syswrite(OF, $tmp) or die "error: can't write block $nb\n";
	$read < $h{bs} and $read = 1, last;
    }
    print STDERR "\r$nb+$read records in\n";
    print STDERR   "$nb+$read records out\n";
}

sub head_tail {
    my ($h, $n) = getopts(\@_, qw(hn));
    $h || @_ < to_bool($n) and die "usage: $0 [-h] [-n lines] [<file>]\n";
    $n = $n ? shift : 10;
    my $fh; @_ ? open($fh, $_[0]) || die "error: can't open file $_[0]\n" : ($fh = *STDIN);

    if ($0 eq 'head') {
	local $_;
	while (<$fh>) { $n-- or return; print }
    } else {
	@_ = (); 
	local $_;
	while (<$fh>) { push @_, $_; @_ > $n and shift }
	print @_;
    }
}
sub head { $0 = 'head'; &head_tail }
sub tail { $0 = 'tail'; &head_tail }

sub strings {
    my ($h, $o, $n) = getopts(\@_, qw(hon));
    $h and die "usage: strings [-o] [-n min-length] [<files>]\n";
    $n = $n ? shift : 4;
    $/ = "\0"; @ARGV = @_; my $l = 0; 
    local $_;
    while (<>) {
	while (/[$printable_chars]{$n,}/og) {
	    printf "%07d ", ($l + length $') if $o;
	    print "$&\n";
	}
	$l += length;
    } continue { $l = 0 if eof }
}

sub hexdump {
    my $i = 0; $/ = \16; @ARGV = @_; 
    local $_;
    while (<>) {
	printf "%08lX  ", $i; $i += 16;
	print join(" ", (map { sprintf "%02X", $_ } unpack("C*", $_)),
		   (s/[^$printable_chars]/./og, $_)[1]), "\n";
    }
}

sub more {
    @ARGV = @_;
    require devices;
    my $tty = devices::make('tty');
    my $n = 0; 
    open(my $IN, $tty) or die "can't open $tty\n";
    local $_;
    while (<>) {
	if (++$n == 25) {
	    my $v = <$IN>;
	    $v =~ /^q/ and exit 0;
	    $n = 0;
	}
	print
    }
}

sub insmod {
    my ($h) = getopts(\@_, qw(h));
    $h || @_ == 0 and die "usage: insmod <module> [options]\n";
    my $f = local $_ = shift;

    require run_program;

    #- try to install the module if it exist else extract it from archive.
    #- needed for cardmgr.
    unless (-r $f) {
	$_ = $1 if m!.*/([^/]*)\.o!;
	unless (-r ($f = "/lib/modules/$_.o")) {
	    $f = "/tmp/$_.o";
	    my $cz = "/lib/modules" . (arch() eq 'sparc64' && "64") . ".cz";
	    -e $cz or $cz .= '-'.c::kernel_version();
	    if (-e $cz) {
		eval {
		    require packdrake;
		    my $packer = new packdrake($cz, quiet => 1);
		    $packer->extract_archive("/tmp", "$_.o");
		};
	    } elsif (-e "/lib/modules.cpio.bz2") {
		run_program::run("cd /tmp ; $ENV{LD_LOADER} bzip2 -cd /lib/modules.cpio.bz2 | $ENV{LD_LOADER} cpio -i $_.o");
	    } else {
		die "unable to find an archive for modules";
	    }
	}
    }
    -r $f or die "can't find module $_";
    run_program::run(["/usr/bin/insmod_", "insmod"], "-f", $f, @_) or die("insmod $_ failed");
    unlink $f;
}

sub modprobe {
    my ($h) = getopts(\@_, qw(h));
    $h || @_ == 0 and die "usage: modprobe <module> [options]\n";
    my $name = shift;
    require modules;
    modules::load_dependencies("/modules/modules.dep");
    modules::load([ $name, @_ ]);
}

sub route {
    @_ == 0 or die "usage: route\nsorry, no modification handled\n";
    my ($titles, @l) = cat_("/proc/net/route");
    my @titles = split ' ', $titles;
    my %l;
    open ROUTE, ">&STDOUT"; #- ROUTE must be not be localised otherwise the "format ROUTE" fails
    format ROUTE_TOP =
Destination    Gateway        Mask           Iface
.
    format ROUTE =
@<<<<<<<<<<<<  @<<<<<<<<<<<<  @<<<<<<<<<<<<  @<<<<<<<
$l{Destination}, $l{Gateway}, $l{Mask}, $l{Iface}
.
    foreach (@l) {
	/^\s*$/ and next;
	@l{@titles} = split;
	$_ = join ".", reverse map { hex $_ } unpack "a2a2a2a2", $_ foreach @l{qw(Destination Gateway Mask)};
	$l{Destination} = 'default' if $l{Destination} eq "0.0.0.0";
	$l{Gateway}     = '*'       if $l{Gateway}     eq "0.0.0.0";
	write ROUTE;
    }
}

sub df {
    my ($h) = getopts(\@_, qw(h));
    my ($dev, $size, $free, $used, $use, $mntpoint);
    open DF, ">&STDOUT"; #- DF must be not be localised otherwise the "format DF" fails
    format DF_TOP =
Filesystem          Size      Used    Avail     Use  Mounted on
.
    format DF =
@<<<<<<<<<<<<<<<< @>>>>>>> @>>>>>>> @>>>>>>> @>>>>>% @<<<<<<<<<<<<<<<<<<<<<<<<<
$dev, $size, $used, $free, $use, $mntpoint
.
    my %h;
    foreach (cat_("/proc/mounts"), cat_("/etc/mtab")) {
	($dev, $mntpoint) = split;
	$h{$dev} = $mntpoint;
    }
    foreach (sort keys %h) {
	$dev = $_;
	($size, $free) = MDK::Common::System::df($mntpoint = $h{$dev});
	$size or next;

	$use = int(100 * ($size - $free) / $size);
	$used = $size - $free;
	if ($h) {
	    $used = int($used / 1024 . "M");
	    $size = int($size / 1024 . "M");
	    $free = int($free / 1024 . "M");
	}
	write DF if $size;
    }
}

sub kill {
    my $signal = 15;
    @_ or die "usage: kill [-<signal>] pids\n";
    $signal = (shift, $1)[1] if $_[0] =~ /^-(.*)/;
    kill $signal, @_ or die "kill failed: $!\n";
}

sub lspci() {
    require detect_devices;
    print join "\n", detect_devices::stringlist(), '';
}
*lssbus = \&lspci;

sub dmesg() { print cat_("/tmp/syslog") }

sub sort {
    my ($n, $h) = getopts(\@_, qw(nh));
    $h and die "usage: sort [-n] [<file>]\n";
    my $fh; @_ ? open($fh, $_[0]) || die "error: can't open file $_[0]\n" : ($fh = *STDIN);
    if ($n) {
	print(sort { $a <=> $b } <$fh>);
    } else {
	print(sort <$fh>);
    }
}

sub du {
    my ($s, $h) = getopts(\@_, qw(sh));
    $h || !$s and die "usage: du -s [<directories>]\n";

    my $f; $f = sub {
	my ($e) = @_;
	my $s = (lstat($e))[12];
	$s += sum(map { &$f($_) } glob_("$e/*")) if !-l $e && -d $e;
	$s;
    };
    print &$f($_) >> 1, "\t$_\n" foreach @_ ? @_ : glob_("*");
}

sub  install_cpio($$;@) {
    my ($dir, $name, @more) = @_; 

    return "$dir/$name" if -e "$dir/$name";

    my $cpio = "$dir.cpio.bz2";
    -e $cpio or return;

    eval { rm("-r", $dir) };
    mkdir $dir, 0755;
    require run_program;
    
    my $more = join " ", map { $_ && "$_ $_/*" } @more;
    run_program::run("cd $dir ; $ENV{LD_LOADER} bzip2 -cd $cpio | $ENV{LD_LOADER} cpio -id $name $name/* $more");

    "$dir/$name";
}

sub bug {
    my ($h) = getopts(\@_, "h");
    $h and die "usage: bug\nput file report.bug on fat formatted floppy\n";

    require detect_devices;
    mount devices::make(detect_devices::floppy()), "/fd0";

    require install_any;
    output("/fd0/report.bug", install_any::report_bug("/mnt")); #- no other way :-(
    umount "/fd0";
    common::sync();
}

sub loadkeys {
    my ($h) = getopts(\@_, "h");
    $h || @_ != 1 and die "usage: loadkeys <keyboard>\n";

    require keyboard;
    keyboard::setup({ KEYBOARD => $_[0] });
}

sub sync() { common::sync() }

1;
msgid " --provides - print tag provides: all provides (multiple lines)."
msgstr " --provides - print tag provides: all provides (multiple lines)."
-#: po/placeholder.h:21
+#: po/placeholder.h:21 po/placeholder.h:186
msgid " --requires - print tag requires: all requires (multiple lines)."
msgstr " --requires - print tag requires: all requires (multiple lines)."
-#: po/placeholder.h:22
+#: po/placeholder.h:22 po/placeholder.h:41
msgid " --files - print tag files: all files (multiple lines)."
msgstr " --files - print tag files: all files (multiple lines)."
-#: po/placeholder.h:23
+#: po/placeholder.h:23 po/placeholder.h:34
msgid ""
" --conflicts - print tag conflicts: all conflicts (multiple lines)."
msgstr ""
" --conflicts - print tag conflicts: all conflicts (multiple lines)."
-#: po/placeholder.h:24
+#: po/placeholder.h:24 po/placeholder.h:106
msgid ""
" --obsoletes - print tag obsoletes: all obsoletes (multiple lines)."
msgstr ""
" --obsoletes - print tag obsoletes: all obsoletes (multiple lines)."
-#: po/placeholder.h:25
+#: po/placeholder.h:25 po/placeholder.h:128
msgid " --prereqs - print tag prereqs: all prereqs (multiple lines)."
msgstr " --prereqs - print tag prereqs: all prereqs (multiple lines)."
-#: po/placeholder.h:27
+#: po/placeholder.h:27 po/placeholder.h:62
msgid "try urpmf --help for more options"
msgstr "جرب urpmf --help لخيارات أكثر"
-#: po/placeholder.h:28
+#: po/placeholder.h:28 po/placeholder.h:49
msgid "no full media list was found"
msgstr "لم يتم ايجاد قائمة وسائط كاملة"
-#: po/placeholder.h:29
+#: po/placeholder.h:29 po/placeholder.h:214
#, c-format
msgid "unable to write config file [%s]"
msgstr "غير قادر على كتابة ملف الإعدادات [%s]"
-#: po/placeholder.h:30 urpm.pm:1892
-msgid "retrieving rpms files..."
-msgstr "جاري استرجاع ملفات rpm..."
-
-#: po/placeholder.h:31
+#: po/placeholder.h:30 po/placeholder.h:216
msgid "examining whole urpmi database"
msgstr ""
-#: po/placeholder.h:32
+#: po/placeholder.h:31 po/placeholder.h:331 po/placeholder.h:449
+#, fuzzy
+msgid " -y - impose fuzzy search.\n"
+msgstr " -v - وضع تفصيلي.\n"
+
+#: po/placeholder.h:32 po/placeholder.h:220 urpm.pm:280
#, c-format
-msgid "using different removable device [%s] for \"%s\""
-msgstr "جاري استخدام الجهاز الآخر القابل للإزالة [%s] لـ\"%s\""
+msgid "unable to find list file for \"%s\", medium ignored"
+msgstr "لم يمكن ايحاد ملف القوائم لـ\"%s\", تم تجاهل الوسيط"
-#: po/placeholder.h:33
+#: po/placeholder.h:33 po/placeholder.h:218
#, c-format
msgid "nothing to write in list file for \"%s\""
msgstr "لا شئ للكتابة في ملف القوائم لـ \"%s\""
-#: po/placeholder.h:34
-msgid ""
-"unable to access first installation medium (no Mandrake/base/hdlists file "
-"found)"
-msgstr ""
-
-#: po/placeholder.h:35 urpm.pm:280
-#, c-format
-msgid "unable to find list file for \"%s\", medium ignored"
-msgstr "لم يمكن ايحاد ملف القوائم لـ\"%s\", تم تجاهل الوسيط"
-
-#: po/placeholder.h:36
+#: po/placeholder.h:35 po/placeholder.h:221
#, c-format
msgid "unable to parse hdlist file of \"%s\""
msgstr "لم يمكن تحليل ملف hdlist لـ \"%s\""
-#: po/placeholder.h:37
+#: po/placeholder.h:36 po/placeholder.h:222
#, c-format
msgid "nothing written in list file for \"%s\""
msgstr "لا شئ تمت كتايته في ملف القوائم لـ \"%s\""
-#: po/placeholder.h:38
+#: po/placeholder.h:37 po/placeholder.h:463
+msgid ""
+" --sources - give all source packages before downloading (root only).\n"
+msgstr " --sources - اعطاء كل الحزم المصدرية قبل التنزيل (الحذر فقط).\n"
+
+#: po/placeholder.h:38 po/placeholder.h:341 po/placeholder.h:466
+msgid ""
+" --auto-select - automatically select packages for upgrading the system.\n"
+msgstr " --auto-select - اختر الحزم آليا لترقية النظام.\n"
+
+#: po/placeholder.h:39 po/placeholder.h:223
#, fuzzy, c-format
msgid "retrieving description file of \"%s\"..."
msgstr "جاري استرجاع ملف الوصف..."
-#: po/placeholder.h:39
-#, fuzzy
-msgid "unable to access first installation medium"
-msgstr "لم يمكن الوصول الى ملف قائمة \"%s\", تم تجاهل الوسيط"
-
-#: po/placeholder.h:40 urpm.pm:1768
+#: po/placeholder.h:40 po/placeholder.h:225 urpm.pm:1769
#, c-format
msgid "package %s is not found."
msgstr "لم يمكن ايجاد الحزمة %s"
-#: po/placeholder.h:41 urpm.pm:1129
-#, c-format
-msgid "unmounting %s"
-msgstr "جاري ازالة تجهيز %s"
-
-#: po/placeholder.h:42
-#, c-format
-msgid "removing %d obsolete headers in cache"
-msgstr "removing %d obsolete headers in cache"
-
-#: po/placeholder.h:43
-#, c-format
-msgid "no hdlist file found for medium \"%s\""
-msgstr "لم يمكن ايجاد ملف hdlist للوسيط \"%s\""
-
-#: po/placeholder.h:44 urpm.pm:209
+#: po/placeholder.h:42 po/placeholder.h:229 urpm.pm:209
#, c-format
msgid "medium \"%s\" tries to use an already used hdlist, medium ignored"
msgstr "الويسط \"%s\" يحاول اسنخدام ملف hdlist مستخدم مسبقا, تم تجاهل الوسيط"
-#: po/placeholder.h:45 urpm.pm:1413
-msgid "<non printable chars>"
+#: po/placeholder.h:43 po/placeholder.h:317 urpme:52
+msgid "unknown package(s) "
msgstr ""
-#: po/placeholder.h:46
-#, fuzzy
-msgid "problem reading hdlist file, trying again"
-msgstr "جاري قراءة ملف hdlist [%s]"
-
-#: po/placeholder.h:47 urpm.pm:233
+#: po/placeholder.h:44 po/placeholder.h:232 urpm.pm:233
#, c-format
msgid "unable to use name \"%s\" for unnamed medium because it is already used"
msgstr "لم يمكن استخدام الإسم \"%s\" لوسيط غير مسمى لأنه مستخدم بالفعل"
-#: po/placeholder.h:48
-#, fuzzy, c-format
-msgid "removing medium \"%s\""
-msgstr "جاري محاولة ازالة الوسيط غير الموجود \"%s\""
+#: po/placeholder.h:45 po/placeholder.h:231
+#, fuzzy
+msgid "problem reading hdlist file, trying again"
+msgstr "جاري قراءة ملف hdlist [%s]"
-#: po/placeholder.h:49 urpm.pm:240
+#: po/placeholder.h:46 po/placeholder.h:234 urpm.pm:240
#, c-format
msgid "unable to take medium \"%s\" into account as no list file [%s] exists"
msgstr "لم يمكن أخذ الوسيط \"%s\" في الحسبان لأنه لا يوجد ملف القوائم [%s]"
-#: po/placeholder.h:50
+#: po/placeholder.h:47 po/placeholder.h:235
msgid "keeping only files referenced in provides"
msgstr "جاري حفظ الملفات المرتجعة في المعطيات فقط"
-#: po/placeholder.h:51
-#, c-format
-msgid "unable to build synthesis file for medium \"%s\""
-msgstr "لم يمكن بناء ملف التخليق للوسيط \"%s\""
-
-#: po/placeholder.h:52
+#: po/placeholder.h:48 po/placeholder.h:237
#, c-format
msgid "found %d headers in cache"
msgstr "found %d headers in cache"
-#: po/placeholder.h:53
-#, fuzzy, c-format
-msgid "trying to select multiple medium: %s"
-msgstr "جاري محاولة اختيار وسيط غير موجود \"%s\""
-
-#: po/placeholder.h:54 urpm.pm:2125
+#: po/placeholder.h:50 po/placeholder.h:394 urpmi.addmedia:76
+#: urpmi.addmedia:93
#, c-format
-msgid "avoid selecting %s as its locales language is not already selected"
-msgstr "امتنع عن اختيار %s بما أن لغة الإعداد المحلي الخاصة به غير مختارة"
+msgid "unable to update medium \"%s\"\n"
+msgstr "لم يمكن تحديث الوسيط \"%s\"\n"
-#: po/placeholder.h:55
-#, c-format
-msgid ""
-"removing %s to upgrade to %s ...\n"
-" since it will not be updated otherwise"
-msgstr ""
-"جاري ازالة %s للترقية الى %s ...\n"
-" جيث أنه لن تتم الترقية بطريقة أخرى"
+#: po/placeholder.h:51 po/placeholder.h:400 po/placeholder.h:423
+#: po/placeholder.h:442
+msgid " -c - clean headers cache directory.\n"
+msgstr " -c - clean headers cache directory.\n"
-#: po/placeholder.h:59
+#: po/placeholder.h:52 po/placeholder.h:244
#, c-format
msgid "medium \"%s\" already exists"
msgstr "الوسيط \"%s\" موجود مسبقا"
-#: po/placeholder.h:60
+#: po/placeholder.h:53 po/placeholder.h:245
#, c-format
msgid "unable to write list file of \"%s\""
msgstr "غير قادر على كتابة ملف القوائم لـ \"%s\""
-#: po/placeholder.h:61
-#, c-format
-msgid "write config file [%s]"
-msgstr "اكتب ملف التهيئة [%s]"
+#: po/placeholder.h:54 po/placeholder.h:452
+msgid " names or rpm files given on command line are queried.\n"
+msgstr " الأسماء أو ملفات rpm المعطاة على سطر الأوامر يتم الاستعلام عنها.\n"
-#: po/placeholder.h:62 urpm.pm:1302
+#: po/placeholder.h:55 po/placeholder.h:247 urpm.pm:1302
#, c-format
msgid "no package named %s"
msgstr "لا توجد حزمة بالإسم %s"
-#: po/placeholder.h:63
+#: po/placeholder.h:56 po/placeholder.h:365 urpmi:350 urpmi:374
+msgid "Try installation even more strongly (--force)? (y/N) "
+msgstr "حاول التثبيت بشكل أقوى (--force)؟ (y[نعم]/N[لا])."
+
+#: po/placeholder.h:57 po/placeholder.h:250 urpm.pm:275
+#, c-format
+msgid "unable to find hdlist file for \"%s\", medium ignored"
+msgstr "لم يمكن ايجاد ملف hdlist لـ \"%s\", تم تجاهل الوسيط"
+
+#: po/placeholder.h:58 po/placeholder.h:248
#, c-format
msgid "built hdlist synthesis file for medium \"%s\""
msgstr "تم بناء ملف تخليق hdlist للوسيط \"%s\""
-#: po/placeholder.h:64
+#: po/placeholder.h:59 po/placeholder.h:251
+msgid "urpmi database locked"
+msgstr ""
+
+#: po/placeholder.h:60 po/placeholder.h:319 urpme:63
#, fuzzy
-msgid "unable to build hdlist synthesis, using parsehdlist method"
-msgstr "لم يمكن بناء ملف التخليق للوسيط \"%s\""
+msgid " (y/N) "
+msgstr " (ل/ن)"
-#: po/placeholder.h:65 urpm.pm:275
-#, c-format
-msgid "unable to find hdlist file for \"%s\", medium ignored"
-msgstr "لم يمكن ايجاد ملف hdlist لـ \"%s\", تم تجاهل الوسيط"
+#: po/placeholder.h:61 po/placeholder.h:370
+msgid " -a - select all matches on command line.\n"
+msgstr " -a - اختر كل التطابقات على سطر الأوامر.\n"
-#: po/placeholder.h:66
-msgid "urpmi database locked"
+#: po/placeholder.h:63 po/placeholder.h:467 urpmq:137
+msgid ""
+"some packages have to be removed for being upgraded, this is not supported "
+"yet\n"
msgstr ""
+"بعض الحزم تحتاج الى أن تُزال لكي يتم ترقيتها, هذا لا يزال غير مدعوم حتى الآن\n"
-#: po/placeholder.h:67 urpm.pm:1118
+#: po/placeholder.h:64 po/placeholder.h:252 urpm.pm:1118
#, c-format
msgid "mounting %s"
msgstr "جاري تجهيز %s"
-#: po/placeholder.h:68 urpm.pm:227
-#, c-format
-msgid ""
-"unable to take care of medium \"%s\" as list file is already used by another "
-"medium"
-msgstr ""
-"unable to take care of medium \"%s\" as list file is already used by another "
-"medium"
-
-#: po/placeholder.h:69
-#, fuzzy, c-format
-msgid "examining synthesis file [%s]"
-msgstr "جاري قراءة ملف التخليق [%s]"
+#: po/placeholder.h:65 po/placeholder.h:405 po/placeholder.h:443
+msgid " -f - force generation of hdlist files.\n"
+msgstr " -f - قم بالإجبار على توليد ملفات hdlist.\n"
-#: po/placeholder.h:70 urpm.pm:98
+#: po/placeholder.h:66 po/placeholder.h:255 urpm.pm:98
#, c-format
msgid "wget failed: exited with %d or signal %d\n"
msgstr "wget فشل: تم الخروج بـ%d أو الإشارة %d\n"
-#: po/placeholder.h:71
-#, c-format
-msgid "unable to retrieve pathname for removable medium \"%s\""
-msgstr "لم يمكن استرجاع اسم المسار للويط القابل للإزالة \"%s\""
+#: po/placeholder.h:67 po/placeholder.h:414 urpmi.removemedia:47
+msgid "nothing to remove (use urpmi.addmedia to add a media)\n"
+msgstr "لا شء للإزالة (استخدم urpmi.addmedia لإضافة وسيط)\n"
-#: po/placeholder.h:72 urpm.pm:1887
+#: po/placeholder.h:68 po/placeholder.h:257 urpm.pm:1886
#, c-format
msgid "malformed input: [%s]"
msgstr "ادخال مشوه: [%s]"
-#: po/placeholder.h:73 urpm.pm:1721 urpm.pm:1747
+#: po/placeholder.h:69 po/placeholder.h:478
+msgid ""
+" -u - remove package if a better version is already installed.\n"
+msgstr " -u - ازالة الحزمة اذا كانت نسخة أفضل مثبتة مسبقا.\n"
+
+#: po/placeholder.h:70 po/placeholder.h:378 urpmi:216
#, c-format
-msgid "there are multiple packages with the same rpm filename \"%s\""
-msgstr "هناك حزم متعددة بنفس اسم ملف rpm \"%s\""
+msgid "One of the following packages is needed to install %s:"
+msgstr "واحد من هذه الحدم يُحتاج اليه لتثبيت %s:"
-#: po/placeholder.h:74
+#: po/placeholder.h:71 po/placeholder.h:376 urpmi:297
+msgid "Press Enter when it's done..."
+msgstr "اضغط Enter عند الانتهاء..."
+
+#: po/placeholder.h:72 po/placeholder.h:259
msgid "...copying failed"
msgstr ""
-#: po/placeholder.h:75 urpm.pm:212
+#: po/placeholder.h:73 po/placeholder.h:260 urpm.pm:212
#, c-format
msgid "medium \"%s\" tries to use an already used list, medium ignored"
msgstr "الوسيط \"%s\" يحاول استخدام قائمة مستخدمة مسبقا, تم تجاهل الوسيط"
-#: po/placeholder.h:76
-#, fuzzy
-msgid "retrieving hdlists file..."
-msgstr "جاري استرجاع ملفات rpm..."
+#: po/placeholder.h:74 po/placeholder.h:448
+msgid " -h - print this help message.\n"
+msgstr " -h - تطبع رسالة المساعدة هذه.\n"
-#: po/placeholder.h:77 urpm.pm:253
-#, c-format
-msgid "unable to access hdlist file of \"%s\", medium ignored"
-msgstr "لم يمكن الوصول الى ملف hdlist لـ\"%s\", تم تجاهل الوسيط"
+#: po/placeholder.h:75 po/placeholder.h:450
+msgid " -g - print groups too with name.\n"
+msgstr " -g - تطبع المجموعات أيضا مع الأسماء.\n"
-#: po/placeholder.h:78 urpm.pm:1208
-msgid "unable to register rpm file"
-msgstr "لم يمكن تسجيل ملف rpm"
+#: po/placeholder.h:76 po/placeholder.h:424
+#, fuzzy
+msgid " -a - select all media.\n"
+msgstr " -a - اختر كل الوسائط غير القابلة للإزالة.\n"
-#: po/placeholder.h:79
+#: po/placeholder.h:77 po/placeholder.h:267
#, c-format
-msgid "\"%s\""
+msgid "invalid hdlist description \"%s\" in hdlists file"
msgstr ""
-#: po/placeholder.h:80 urpm.pm:307
-#, c-format
-msgid "unable to inspect list file for \"%s\", medium ignored"
-msgstr "لم يمكن التفتيش عن ملف قائمة \"%s\", تم تجاهل الوسيط"
-
-#: po/placeholder.h:81
-#, c-format
-msgid "too many mount points for removable medium \"%s\""
-msgstr "نقاط تجهيز كثيرة جدا للوسيط القابل للإزالة \"%s\""
+#: po/placeholder.h:78 po/placeholder.h:407
+#, fuzzy
+msgid " -h - try to find and use synthesis or hdlist file.\n"
+msgstr " -f - قم بالإجبار على توليد ملفات hdlist.\n"
-#: po/placeholder.h:82
-#, c-format
-msgid "invalid hdlist description \"%s\" in hdlists file"
-msgstr ""
+#: po/placeholder.h:79 po/placeholder.h:454
+msgid " -r - print version and release too with name.\n"
+msgstr " -r - تطبع الإصدار و رقمه أيضا مع الإسم.\n"
-#: po/placeholder.h:83 urpm.pm:299
-#, c-format
-msgid "incoherent list file for \"%s\", medium ignored"
-msgstr "incoherent list file for \"%s\", medium ignored"
+#: po/placeholder.h:80 po/placeholder.h:455
+msgid " -f - print version, release and arch with name.\n"
+msgstr " -f - اعرض معلومات الإصدار و البرنامج مع الإسم.\n"
-#: po/placeholder.h:84
-#, c-format
-msgid "copy of [%s] failed"
-msgstr "فشل نسخ [%s]"
+#: po/placeholder.h:81 po/placeholder.h:338
+msgid " --auto - automatically select a good package in choices.\n"
+msgstr " --auto - قم باختيار حزمة جيدة في الاختيارات.\n"
-#: po/placeholder.h:85 urpm.pm:1420
+#: po/placeholder.h:82 po/placeholder.h:270 urpm.pm:1420
#, c-format
msgid "unable to parse correctly [%s]"
msgstr "لم يمكن تحليل [%s] بشكل صحيح"
-#: po/placeholder.h:86 urpm.pm:1421
+#: po/placeholder.h:83 po/placeholder.h:446 urpmi.update:57
+msgid "nothing to update (use urpmi.addmedia to add a media)\n"
+msgstr "لا شئ للتحديث (استخدم urpmi.addmedia لإضافة وسيط)\n"
+
+#: po/placeholder.h:84 po/placeholder.h:271 urpm.pm:1421
#, c-format
msgid "read synthesis file [%s]"
msgstr "اقرأ ملف التخليق [%s]"
-#: po/placeholder.h:87 urpm.pm:1412 urpm.pm:1419
-#, c-format
-msgid "unable to analyse synthesis data of %s"
-msgstr "لم يمكن تحليل بيانات التخليق لـ %s"
-
-#: po/placeholder.h:88 urpm.pm:93
+#: po/placeholder.h:85 po/placeholder.h:273 urpm.pm:93
#, fuzzy
msgid "no webfetch (curl or wget currently) found\n"
msgstr "لم يمكن ايجاد وسيلة لتنزيل الملفات (curl أو wget مثلا)\n"
-#: po/placeholder.h:89
-#, fuzzy, c-format
-msgid "retrieving source hdlist (or synthesis) of \"%s\"..."
-msgstr "جاري استرجاع hdlist )أو ملف تخليق( المصدر..."
+#: po/placeholder.h:86 po/placeholder.h:464
+msgid ""
+" -c - choose complete method for resolving requires closure.\n"
+msgstr ""
+" -c - choose complete method for resolving requires closure.\n"
-#: po/placeholder.h:90
-#, fuzzy
-msgid "...copying done"
-msgstr "...تم الاسترجاع"
+#: po/placeholder.h:88 po/placeholder.h:393 urpmi.addmedia:92
+#, c-format
+msgid "unable to create medium \"%s\"\n"
+msgstr "لم يمكن عمل الوسيط \"%s\"\n"
-#: po/placeholder.h:91
+#: po/placeholder.h:90 po/placeholder.h:276
#, fuzzy, c-format
msgid "copying source hdlist (or synthesis) of \"%s\"..."
msgstr "جاري استرجاع hdlist )أو ملف تخليق( المصدر..."
-#: po/placeholder.h:92
-#, fuzzy
-msgid "copying hdlists file..."
-msgstr "جاري قراءة ملف hdlist [%s]"
-
-#: po/placeholder.h:93 urpm.pm:188 urpm.pm:200
+#: po/placeholder.h:91 po/placeholder.h:468 urpmq:87
#, c-format
-msgid "syntax error in config file at line %s"
-msgstr "خطأ تركيبي في ملف التهيئة عند السطر %s"
+msgid "urpmq: unknown option \"-%s\", check usage with --help\n"
+msgstr ""
+"urpmq: خيار غير معروف \"-%s\", تحقق من طريقة الاستخدام بالخيار --help\n"
+
+#: po/placeholder.h:92 po/placeholder.h:324 urpme:39
+#, fuzzy
+msgid "usage: urpme [-a] [--auto] <packages...>\n"
+msgstr "الإستخدام: urpmi.removemedia [-a] <name> ..."
-#: po/placeholder.h:94
+#: po/placeholder.h:93 po/placeholder.h:279
#, c-format
msgid "building hdlist [%s]"
msgstr "جاري بناء hdlist [%s]"
-#: po/placeholder.h:95 urpm.pm:1822
-#, c-format
-msgid "unable to read rpm file [%s] from medium \"%s\""
-msgstr "لم يمكن قراءة ملف rpm [%s] من الوسيط \"%s\""
+#: po/placeholder.h:94 po/placeholder.h:347 po/placeholder.h:474
+#, fuzzy
+msgid " --media - use only the media listed by comma.\n"
+msgstr " --update - قم بتحديث الوسائط فقط.\n"
-#: po/placeholder.h:96
+#: po/placeholder.h:95 po/placeholder.h:281
#, c-format
msgid "added medium %s"
msgstr ""
-#: po/placeholder.h:97
+#: po/placeholder.h:96 po/placeholder.h:280 urpm.pm:1821
+#, c-format
+msgid "unable to read rpm file [%s] from medium \"%s\""
+msgstr "لم يمكن قراءة ملف rpm [%s] من الوسيط \"%s\""
+
+#: po/placeholder.h:97 po/placeholder.h:282
#, fuzzy
msgid "retrieve of source hdlist (or synthesis) failed"
msgstr "جاري استرجاع hdlist )أو ملف تخليق( المصدر..."
-#: po/placeholder.h:98 urpm.pm:1212
-msgid "error registering local packages"
-msgstr "خطأ في تسجيل الحزم المحلية"
-
-#: po/placeholder.h:99
-#, c-format
-msgid "taking removable device as \"%s\""
-msgstr "جاري أخذ الأجهزة القابلة للإزالة كـ\"%s\""
-
-#: po/placeholder.h:100 urpm.pm:1899
+#: po/placeholder.h:98 po/placeholder.h:285 urpm.pm:1898
#, c-format
msgid "...retrieving failed: %s"
msgstr "...فشل الإسترجاع: %s"
-#: po/placeholder.h:101 urpm.pm:1838
+#: po/placeholder.h:99 po/placeholder.h:286 urpm.pm:1837
#, c-format
msgid "incoherent medium \"%s\" marked removable but not really"
msgstr "incoherent medium \"%s\" marked removable but not really"
-#: po/placeholder.h:102
-#, fuzzy, c-format
-msgid "copying description file of \"%s\"..."
-msgstr "جاري استرجاع ملف الوصف..."
-
-#: po/placeholder.h:103
-#, c-format
-msgid "unable to build hdlist: %s"
-msgstr "لم يمكن بناء hdlist: %s"
-
-#: po/placeholder.h:104 urpm.pm:1812 urpm.pm:1815 urpm.pm:1834
-#, c-format
-msgid "medium \"%s\" is not selected"
-msgstr "الوسيط \"%s\" غير مختار"
-
-#: po/placeholder.h:105 urpm.pm:1203
+#: po/placeholder.h:100 po/placeholder.h:290 urpm.pm:1203
#, c-format
msgid "invalid rpm file name [%s]"
msgstr "اسم ملف rpm yير موجود [%s]"
-#: po/placeholder.h:106 urpm.pm:1398
+#: po/placeholder.h:101 po/placeholder.h:291 urpm.pm:1398
#, c-format
msgid "unknown data associated with %s"
msgstr "بيانات غير معروفة مرتبطة مع %s"
-#: po/placeholder.h:107 urpm.pm:269
+#: po/placeholder.h:103 po/placeholder.h:357 urpmi:225
#, c-format
-msgid "trying to bypass existing medium \"%s\", avoiding"
-msgstr "trying to bypass existing medium \"%s\", avoiding"
+msgid "What is your choice? (1-%d) "
+msgstr "ما هو اختيارك؟ (1-%d)"
-#: po/placeholder.h:108 urpm.pm:255
+#: po/placeholder.h:104 po/placeholder.h:293 urpm.pm:255
#, c-format
msgid "unable to access list file of \"%s\", medium ignored"
msgstr "لم يمكن الوصول الى ملف قائمة \"%s\", تم تجاهل الوسيط"
-#: po/placeholder.h:109 urpm.pm:2113
+#: po/placeholder.h:105 po/placeholder.h:358 po/placeholder.h:406
+#: po/placeholder.h:444
+msgid " --wget - use wget to retrieve distant files.\n"
+msgstr " --wget - استخدم wget لتنزيل الملفات .\n"
+
+#: po/placeholder.h:107 po/placeholder.h:294 urpm.pm:2113
#, c-format
msgid "avoid selecting %s as not enough files will be updated"
msgstr "امتنع عن اختيار %s لأنه لا توجد ملفات كافية ستُحدّث"
-#: po/placeholder.h:110 urpm.pm:1204
+#: po/placeholder.h:108 po/placeholder.h:295 urpm.pm:1204
#, c-format
msgid "unable to access rpm file [%s]"
msgstr "لم يمكن الوصول الى ملف rpm [%s]"
-#: po/placeholder.h:111
+#: po/placeholder.h:110 po/placeholder.h:368 urpmi:228
+msgid "Sorry, bad choice, try again\n"
+msgstr "المعذرة, اختيار سئ, حاول مرة أخرى\n"
+
+#: po/placeholder.h:111 po/placeholder.h:301 urpm.pm:1848
#, c-format
-msgid ""
-"removing %s to upgrade to %s ...\n"
-" since it will not upgrade correctly!"
-msgstr ""
-"جاري ازالة %s للترقية الى %s ...\n"
-" يم أن الترقية لن تتم بشكل صحيح!"
+msgid "unable to access medium \"%s\""
+msgstr "لم يمكن الوصول الى الوسيط \"%s\""
-#: po/placeholder.h:115 urpm.pm:1190
+#: po/placeholder.h:112 po/placeholder.h:300 urpm.pm:1190
#, c-format
msgid "relocated %s entries in depslist"
msgstr "تم اعدة %s مدخل في depslist"
-#: po/placeholder.h:116 urpm.pm:1849
+#: po/placeholder.h:113 po/placeholder.h:371 po/placeholder.h:399
+#: po/placeholder.h:437
+msgid " --curl - use curl to retrieve distant files.\n"
+msgstr " --curl - استخدم curl لتنزيل الملفات.\n"
+
+#: po/placeholder.h:114 po/placeholder.h:303
#, c-format
-msgid "unable to access medium \"%s\""
-msgstr "لم يمكن الوصول الى الوسيط \"%s\""
+msgid "trying to select inexistent medium \"%s\""
+msgstr "جاري محاولة اختيار وسيط غير موجود \"%s\""
-#: po/placeholder.h:117 urpm.pm:1756
+#: po/placeholder.h:115 po/placeholder.h:302 urpm.pm:1757
#, c-format
msgid "unable to parse correctly [%s] on value \"%s\""
msgstr "لم يمكن تحليل [%s] بشكل صحيح على القيمة \"%s\""
-#: po/placeholder.h:118
+#: po/placeholder.h:116 po/placeholder.h:305
#, c-format
-msgid "trying to select inexistent medium \"%s\""
-msgstr "جاري محاولة اختيار وسيط غير موجود \"%s\""
+msgid "no rpm files found from [%s]"
+msgstr "لم يُعثر على ملفات rpm من [%s]"
+
+#: po/placeholder.h:117 po/placeholder.h:312 urpm.pm:101
+msgid "curl is missing\n"
+msgstr "curl غير موجود\n"
-#: po/placeholder.h:119 urpm.pm:1305
+#: po/placeholder.h:118 po/placeholder.h:315 urpm.pm:244
#, c-format
-msgid "The following packages contain %s: %s"
-msgstr "الحزم التالية تحتوي على %s: %s"
+msgid "unable to determine medium of this hdlist file [%s]"
+msgstr "لم يمكن التعرف على الوسيط الخاص بملف hdlist هذا [%s]"
+
+#: po/placeholder.h:119 po/placeholder.h:328
+msgid " --help - print this help message.\n"
+msgstr " --help - تطبع رسالة المساعدة هذه.\n"
+
+#: po/placeholder.h:121 po/placeholder.h:329 urpmi:383
+msgid "everything already installed"
+msgstr "كل شئ مثبت مسبقا"
+
+#: po/placeholder.h:122 po/placeholder.h:215 urpm.pm:1891
+msgid "retrieving rpms files..."
+msgstr "جاري استرجاع ملفات rpm..."
-#: po/placeholder.h:120
+#: po/placeholder.h:123 po/placeholder.h:217
#, c-format
-msgid "no rpm files found from [%s]"
-msgstr "لم يُعثر على ملفات rpm من [%s]"
+msgid "using different removable device [%s] for \"%s\""
+msgstr "جاري استخدام الجهاز الآخر القابل للإزالة [%s] لـ\"%s\""
-#: po/placeholder.h:121
-#, fuzzy, c-format
-msgid "examining hdlist file [%s]"
-msgstr "جاري قراءة ملف hdlist [%s]"
+#: po/placeholder.h:124 po/placeholder.h:332 urpmi:217
+msgid "One of the following packages is needed:"
+msgstr "أحد الحزم التالية يُحتاج اليه:"
-#: po/placeholder.h:122 urpm.pm:1191
-msgid "no entries relocated in depslist"
-msgstr "لم يتم اعادة مداخل في depslist"
+#: po/placeholder.h:125 po/placeholder.h:219
+msgid ""
+"unable to access first installation medium (no Mandrake/base/hdlists file "
+"found)"
+msgstr ""
-#: po/placeholder.h:123 urpm.pm:1897
-msgid "...retrieving done"
-msgstr "...تم الاسترجاع"
+#: po/placeholder.h:126 po/placeholder.h:451 urpmq:90
+#, c-format
+msgid "urpmq: cannot read rpm file \"%s\"\n"
+msgstr "urpmq: لم يمكن ايجاد ملف rpm \"%s\"\n"
-#: po/placeholder.h:124 urpm.pm:2006
+#: po/placeholder.h:129 po/placeholder.h:323 urpme:87
+msgid "Nothing to remove.\n"
+msgstr ""
+
+#: po/placeholder.h:131 po/placeholder.h:340 urpmi:329 urpmi:336 urpmi:349
+#: urpmi:360 urpmi:373
+msgid "Installation failed"
+msgstr "فشل التثبيت"
+
+#: po/placeholder.h:132 po/placeholder.h:224
+#, fuzzy
+msgid "unable to access first installation medium"
+msgstr "لم يمكن الوصول الى ملف قائمة \"%s\", تم تجاهل الوسيط"
+
+#: po/placeholder.h:133 po/placeholder.h:345 po/placeholder.h:469
+#, fuzzy
+msgid " -P - do not search in provides to find package.\n"
+msgstr " -p - السماح بالبحث في المعطيات ليجاد حزمة.\n"
+
+#: po/placeholder.h:135 po/placeholder.h:226 urpm.pm:1129
#, c-format
-msgid "selecting %s using obsoletes"
-msgstr "selecting %s using obsoletes"
+msgid "unmounting %s"
+msgstr "جاري ازالة تجهيز %s"
-#: po/placeholder.h:125 urpm.pm:151
+#: po/placeholder.h:136 po/placeholder.h:227
#, c-format
-msgid "curl failed: exited with %d or signal %d\n"
-msgstr "فشل curl: تم الخروج بـ %d أو الإشارة %d\n"
+msgid "removing %d obsolete headers in cache"
+msgstr "removing %d obsolete headers in cache"
-#: po/placeholder.h:126 urpm.pm:2122
+#: po/placeholder.h:137 po/placeholder.h:228
#, c-format
-msgid "selecting %s by selection on files"
-msgstr "selecting %s by selection on files"
+msgid "no hdlist file found for medium \"%s\""
+msgstr "لم يمكن ايجاد ملف hdlist للوسيط \"%s\""
-#: po/placeholder.h:127 urpm.pm:101
-msgid "curl is missing\n"
-msgstr "curl غير موجود\n"
+#: po/placeholder.h:139 po/placeholder.h:230 urpm.pm:1413
+msgid "<non printable chars>"
+msgstr ""
+
+#: po/placeholder.h:140 po/placeholder.h:352 po/placeholder.h:476
+msgid " -v - verbose mode.\n"
+msgstr " -v - وضع تفصيلي.\n"
-#: po/placeholder.h:128
+#: po/placeholder.h:141 po/placeholder.h:233
#, fuzzy, c-format
-msgid "copying source list of \"%s\"..."
-msgstr "جاري استرجاع hdlist )أو ملف تخليق( المصدر..."
+msgid "removing medium \"%s\""
+msgstr "جاري محاولة ازالة الوسيط غير الموجود \"%s\""
-#: po/placeholder.h:129 urpm.pm:96
-msgid "wget is missing\n"
-msgstr "wget غير موجود\n"
+#: po/placeholder.h:142 po/placeholder.h:236
+#, c-format
+msgid "unable to build synthesis file for medium \"%s\""
+msgstr "لم يمكن بناء ملف التخليق للوسيط \"%s\""
+
+#: po/placeholder.h:143 po/placeholder.h:238
+#, fuzzy, c-format
+msgid "trying to select multiple medium: %s"
+msgstr "جاري محاولة اختيار وسيط غير موجود \"%s\""
+
+#: po/placeholder.h:144 po/placeholder.h:447
+msgid " -a - select all non-removable media.\n"
+msgstr " -a - اختر كل الوسائط غير القابلة للإزالة.\n"
+
+#: po/placeholder.h:145 po/placeholder.h:354
+#, fuzzy
+msgid " names or rpm files given on command line are installed.\n"
+msgstr " الأسماء أو ملفات rpm المعطاة على سطر الأوامر يتم الاستعلام عنها.\n"
-#: po/placeholder.h:130 urpm.pm:244
+#: po/placeholder.h:147 po/placeholder.h:239 urpm.pm:2125
#, c-format
-msgid "unable to determine medium of this hdlist file [%s]"
-msgstr "لم يمكن التعرف على الوسيط الخاص بملف hdlist هذا [%s]"
+msgid "avoid selecting %s as its locales language is not already selected"
+msgstr "امتنع عن اختيار %s بما أن لغة الإعداد المحلي الخاصة به غير مختارة"
-#: po/placeholder.h:132
-msgid " --help - print this help message.\n"
-msgstr " --help - تطبع رسالة المساعدة هذه.\n"
+#: po/placeholder.h:148 po/placeholder.h:356
+msgid " --complete - use parsehdlist server to complete selection.\n"
+msgstr ""
-#: po/placeholder.h:133 urpmi:383
-msgid "everything already installed"
-msgstr "كل شئ مثبت مسبقا"
+#: po/placeholder.h:149 po/placeholder.h:246
+#, c-format
+msgid "write config file [%s]"
+msgstr "اكتب ملف التهيئة [%s]"
-#: po/placeholder.h:134 urpmi:113
+#: po/placeholder.h:150 po/placeholder.h:249
+#, fuzzy
+msgid "unable to build hdlist synthesis, using parsehdlist method"
+msgstr "لم يمكن بناء ملف التخليق للوسيط \"%s\""
+
+#: po/placeholder.h:151 po/placeholder.h:413
+msgid ""
+" --distrib - automatically create all media from an installation "
+"medium.\n"
+msgstr ""
+
+#: po/placeholder.h:155 po/placeholder.h:253 urpm.pm:227
+#, c-format
+msgid ""
+"unable to take care of medium \"%s\" as list file is already used by another "
+"medium"
+msgstr ""
+"unable to take care of medium \"%s\" as list file is already used by another "
+"medium"
+
+#: po/placeholder.h:156 po/placeholder.h:254
+#, fuzzy, c-format
+msgid "examining synthesis file [%s]"
+msgstr "جاري قراءة ملف التخليق [%s]"
+
+#: po/placeholder.h:158 po/placeholder.h:256
+#, c-format
+msgid "unable to retrieve pathname for removable medium \"%s\""
+msgstr "لم يمكن استرجاع اسم المسار للويط القابل للإزالة \"%s\""
+
+#: po/placeholder.h:160 po/placeholder.h:258 urpm.pm:1722 urpm.pm:1748
+#, c-format
+msgid "there are multiple packages with the same rpm filename \"%s\""
+msgstr "هناك حزم متعددة بنفس اسم ملف rpm \"%s\""
+
+#: po/placeholder.h:161 po/placeholder.h:316 urpme:93
+#, fuzzy, c-format
+msgid ""
+"To satisfy dependencies, the following packages are going to be removed (%d "
+"MB)"
+msgstr "لإرضاء الاعتمادات, سيتم تثبيت الحزم التالية )%d ميغابايت("
+
+#: po/placeholder.h:163 po/placeholder.h:261
+#, fuzzy
+msgid "retrieving hdlists file..."
+msgstr "جاري استرجاع ملفات rpm..."
+
+#: po/placeholder.h:164 po/placeholder.h:330 urpmi:113
#, c-format
msgid "urpmi: unknown option \"-%s\", check usage with --help\n"
msgstr "urpmi: خيار غير معلوم \"-%s\", تحقَّق من طريقة الإستخدام بـ --help\n"
-#: po/placeholder.h:135 po/placeholder.h:253
-#, fuzzy
-msgid " -y - impose fuzzy search.\n"
-msgstr " -v - وضع تفصيلي.\n"
+#: po/placeholder.h:165 po/placeholder.h:262 urpm.pm:253
+#, c-format
+msgid "unable to access hdlist file of \"%s\", medium ignored"
+msgstr "لم يمكن الوصول الى ملف hdlist لـ\"%s\", تم تجاهل الوسيط"
-#: po/placeholder.h:136 urpmi:217
-msgid "One of the following packages is needed:"
-msgstr "أحد الحزم التالية يُحتاج اليه:"
+#: po/placeholder.h:166 po/placeholder.h:263 urpm.pm:1208
+msgid "unable to register rpm file"
+msgstr "لم يمكن تسجيل ملف rpm"
-#: po/placeholder.h:137 po/placeholder.h:257
+#: po/placeholder.h:167 po/placeholder.h:264
+#, c-format
+msgid "\"%s\""
+msgstr ""
+
+#: po/placeholder.h:168 po/placeholder.h:265 urpm.pm:307
+#, c-format
+msgid "unable to inspect list file for \"%s\", medium ignored"
+msgstr "لم يمكن التفتيش عن ملف قائمة \"%s\", تم تجاهل الوسيط"
+
+#: po/placeholder.h:169 po/placeholder.h:266
+#, c-format
+msgid "too many mount points for removable medium \"%s\""
+msgstr "نقاط تجهيز كثيرة جدا للوسيط القابل للإزالة \"%s\""
+
+#: po/placeholder.h:170 po/placeholder.h:268 urpm.pm:299
+#, c-format
+msgid "incoherent list file for \"%s\", medium ignored"
+msgstr "incoherent list file for \"%s\", medium ignored"
+
+#: po/placeholder.h:171 po/placeholder.h:333 po/placeholder.h:453
msgid " --update - use only update media.\n"
msgstr " --update - قم بتحديث الوسائط فقط.\n"
-#: po/placeholder.h:138 urpmi:321
-msgid ""
-"Installation failed, some files are missing.\n"
-"You may want to update your urpmi database"
-msgstr ""
-"لقد فشل التثبيت, بعض الملفات غير موجودة.\n"
-"ربما تريد نحديث فاعدة بيانات urpmi الخاصة بك"
+#: po/placeholder.h:172 po/placeholder.h:269
+#, c-format
+msgid "copy of [%s] failed"
+msgstr "فشل نسخ [%s]"
-#: po/placeholder.h:142
-msgid " --auto - automatically select a good package in choices.\n"
-msgstr " --auto - قم باختيار حزمة جيدة في الاختيارات.\n"
+#: po/placeholder.h:173 po/placeholder.h:462
+msgid " -d - extend query to package dependencies.\n"
+msgstr " -d - تمديد الاستعلام حتى اعتمادات الحزم.\n"
-#: po/placeholder.h:144 urpmi:329 urpmi:336 urpmi:349 urpmi:360 urpmi:373
-msgid "Installation failed"
-msgstr "فشل التثبيت"
+#: po/placeholder.h:174 po/placeholder.h:272 urpm.pm:1412 urpm.pm:1419
+#, c-format
+msgid "unable to analyse synthesis data of %s"
+msgstr "لم يمكن تحليل بيانات التخليق لـ %s"
-#: po/placeholder.h:145 po/placeholder.h:270
-msgid ""
-" --auto-select - automatically select packages for upgrading the system.\n"
-msgstr " --auto-select - اختر الحزم آليا لترقية النظام.\n"
+#: po/placeholder.h:175 po/placeholder.h:274
+#, fuzzy, c-format
+msgid "retrieving source hdlist (or synthesis) of \"%s\"..."
+msgstr "جاري استرجاع hdlist )أو ملف تخليق( المصدر..."
-#: po/placeholder.h:147
+#: po/placeholder.h:177 po/placeholder.h:343
msgid " --X - use X interface.\n"
msgstr " --X - استخدم الواجهة الرسومية.\n"
-#: po/placeholder.h:148 urpmi:267
+#: po/placeholder.h:178 po/placeholder.h:275
+#, fuzzy
+msgid "...copying done"
+msgstr "...تم الاسترجاع"
+
+#: po/placeholder.h:179 po/placeholder.h:344 urpmi:267
#, c-format
msgid ""
"To satisfy dependencies, the following packages are going to be installed (%"
"d MB)"
msgstr "لإرضاء الاعتمادات, سيتم تثبيت الحزم التالية )%d ميغابايت("
-#: po/placeholder.h:149 po/placeholder.h:273
+#: po/placeholder.h:180 po/placeholder.h:277
#, fuzzy
-msgid " -P - do not search in provides to find package.\n"
-msgstr " -p - السماح بالبحث في المعطيات ليجاد حزمة.\n"
+msgid "copying hdlists file..."
+msgstr "جاري قراءة ملف hdlist [%s]"
-#: po/placeholder.h:150 urpmi:342 urpmi:366
+#: po/placeholder.h:181 po/placeholder.h:278 urpm.pm:188 urpm.pm:200
+#, c-format
+msgid "syntax error in config file at line %s"
+msgstr "خطأ تركيبي في ملف التهيئة عند السطر %s"
+
+#: po/placeholder.h:182 po/placeholder.h:346 urpmi:342 urpmi:366
msgid "Try installation without checking dependencies? (y/N) "
msgstr "محاولة التثبيت دون التأكد من الاعتمادات؟ (y[نعم]/N[لا])"
-#: po/placeholder.h:151 po/placeholder.h:278
-#, fuzzy
-msgid " --media - use only the media listed by comma.\n"
-msgstr " --update - قم بتحديث الوسائط فقط.\n"
-
-#: po/placeholder.h:152
-msgid ""
-" --best-output - choose best interface according to the environment:\n"
-" X or text mode.\n"
-msgstr ""
-" --best-output - اختر أفضل واجهة تبعا لبيئة العمل:\n"
-" واجهة رسومية أو نصية.\n"
+#: po/placeholder.h:183 po/placeholder.h:283 urpm.pm:1212
+msgid "error registering local packages"
+msgstr "خطأ في تسجيل الحزم المحلية"
-#: po/placeholder.h:156 po/placeholder.h:280
-msgid " -v - verbose mode.\n"
-msgstr " -v - وضع تفصيلي.\n"
+#: po/placeholder.h:184 po/placeholder.h:284
+#, c-format
+msgid "taking removable device as \"%s\""
+msgstr "جاري أخذ الأجهزة القابلة للإزالة كـ\"%s\""
-#: po/placeholder.h:157 po/placeholder.h:279
+#: po/placeholder.h:185 po/placeholder.h:353 po/placeholder.h:475
msgid " -p - allow search in provides to find package.\n"
msgstr " -p - السماح بالبحث في المعطيات ليجاد حزمة.\n"
-#: po/placeholder.h:158
-#, fuzzy
-msgid " names or rpm files given on command line are installed.\n"
-msgstr " الأسماء أو ملفات rpm المعطاة على سطر الأوامر يتم الاستعلام عنها.\n"
-
-#: po/placeholder.h:159
-msgid " -q - quiet mode.\n"
-msgstr " -q - وضع هادئ.\n"
-
-#: po/placeholder.h:160
-msgid " --complete - use parsehdlist server to complete selection.\n"
-msgstr ""
+#: po/placeholder.h:187 po/placeholder.h:287
+#, fuzzy, c-format
+msgid "copying description file of \"%s\"..."
+msgstr "جاري استرجاع ملف الوصف..."
-#: po/placeholder.h:161 urpmi:225
+#: po/placeholder.h:188 po/placeholder.h:288
#, c-format
-msgid "What is your choice? (1-%d) "
-msgstr "ما هو اختيارك؟ (1-%d)"
+msgid "unable to build hdlist: %s"
+msgstr "لم يمكن بناء hdlist: %s"
-#: po/placeholder.h:162 po/placeholder.h:210 po/placeholder.h:233
-msgid " --wget - use wget to retrieve distant files.\n"
-msgstr " --wget - استخدم wget لتنزيل الملفات .\n"
+#: po/placeholder.h:189 po/placeholder.h:289 urpm.pm:1811 urpm.pm:1814
+#: urpm.pm:1833
+#, c-format
+msgid "medium \"%s\" is not selected"
+msgstr "الوسيط \"%s\" غير مختار"
-#: po/placeholder.h:163
+#: po/placeholder.h:190 po/placeholder.h:292 urpm.pm:269
#, c-format
-msgid ""
-"urpmi version %s\n"
-"Copyright (C) 1999, 2000, 2001 MandrakeSoft.\n"
-"This is free software and may be redistributed under the terms of the GNU "
-"GPL.\n"
-"usage:\n"
-msgstr ""
-"urpmi الإصدار %s\n"
-" جميع الحقوق محفوظة 1999, 2000, 2001 MandrakeSoft.\n"
-" هذا برنامج حر ومجاني و يمكن اعادة توزيعه تحت بنود ترخيص GNU GPL.\n"
-"الاستخدام:\n"
+msgid "trying to bypass existing medium \"%s\", avoiding"
+msgstr "trying to bypass existing medium \"%s\", avoiding"
-#: po/placeholder.h:169 urpmi:350 urpmi:374
-msgid "Try installation even more strongly (--force)? (y/N) "
-msgstr "حاول التثبيت بشكل أقوى (--force)؟ (y[نعم]/N[لا])."
+#: po/placeholder.h:191 po/placeholder.h:355
+msgid " -q - quiet mode.\n"
+msgstr " -q - وضع هادئ.\n"
-#: po/placeholder.h:171 po/placeholder.h:269
+#: po/placeholder.h:194 po/placeholder.h:367 po/placeholder.h:465
msgid ""
" --force - force invocation even if some packages do not exist.\n"
msgstr ""
" --force - قم بالتثبيت اجباريا حتى لو لم تكن بعض الحزم موجودة.\n"
-#: po/placeholder.h:172 urpmi:228
-msgid "Sorry, bad choice, try again\n"
-msgstr "المعذرة, اختيار سئ, حاول مرة أخرى\n"
-
-#: po/placeholder.h:174
-msgid " -a - select all matches on command line.\n"
-msgstr " -a - اختر كل التطابقات على سطر الأوامر.\n"
-
-#: po/placeholder.h:175 po/placeholder.h:203 po/placeholder.h:226
-msgid " --curl - use curl to retrieve distant files.\n"
-msgstr " --curl - استخدم curl لتنزيل الملفات.\n"
+#: po/placeholder.h:196 po/placeholder.h:320 urpme:62
+#, c-format
+msgid "Using \"%s\" as a substring, I found"
+msgstr ""
-#: po/placeholder.h:176 urpmi:316
+#: po/placeholder.h:197 po/placeholder.h:372 urpmi:316
#, c-format
msgid "installing %s\n"
msgstr "جاري تثبيت %s\n"
-#: po/placeholder.h:177 urpmi:296
+#: po/placeholder.h:198 po/placeholder.h:325 urpme:30
+msgid "Remove them all?"
+msgstr ""
+
+#: po/placeholder.h:199 po/placeholder.h:373 urpmi:296
#, c-format
msgid "Please insert the medium named \"%s\" on device [%s]"
msgstr "يرجى ادخال الوسيط \"%s\" في الجهاز [%s]"
-#: po/placeholder.h:179 po/placeholder.h:281 urpmi:286 urpmq:151
+#: po/placeholder.h:200 po/placeholder.h:304 urpm.pm:1305
+#, c-format
+msgid "The following packages contain %s: %s"
+msgstr "الحزم التالية تحتوي على %s: %s"
+
+#: po/placeholder.h:201 po/placeholder.h:306
+#, fuzzy, c-format
+msgid "examining hdlist file [%s]"
+msgstr "جاري قراءة ملف hdlist [%s]"
+
+#: po/placeholder.h:202 po/placeholder.h:307 urpm.pm:1191
+msgid "no entries relocated in depslist"
+msgstr "لم يتم اعادة مداخل في depslist"
+
+#: po/placeholder.h:203 po/placeholder.h:412
+#, fuzzy
+msgid " --update - create an update medium.\n"
+msgstr " --update - قم بتحديث الوسائط فقط.\n"
+
+#: po/placeholder.h:205 po/placeholder.h:445
+msgid ""
+" -d - force complete computation of depslist.ordered file.\n"
+msgstr ""
+" -d - force complete computation of depslist.ordered file.\n"
+
+#: po/placeholder.h:206 po/placeholder.h:375 po/placeholder.h:477 urpmi:286
+#: urpmq:151
msgid "unable to get source packages, aborting"
msgstr "لم يمكن الحصول على الحزمة المصدرية, جاري الإنهاء"
-#: po/placeholder.h:180 urpmi:297
-msgid "Press Enter when it's done..."
-msgstr "اضغط Enter عند الانتهاء..."
+#: po/placeholder.h:207 po/placeholder.h:308 urpm.pm:1896
+msgid "...retrieving done"
+msgstr "...تم الاسترجاع"
+
+#: po/placeholder.h:208 po/placeholder.h:309 urpm.pm:2006
+#, c-format
+msgid "selecting %s using obsoletes"
+msgstr "selecting %s using obsoletes"
+
+#: po/placeholder.h:209 po/placeholder.h:310 urpm.pm:151
+#, c-format
+msgid "curl failed: exited with %d or signal %d\n"
+msgstr "فشل curl: تم الخروج بـ %d أو الإشارة %d\n"
+
+#: po/placeholder.h:210 po/placeholder.h:311 urpm.pm:2122
+#, c-format
+msgid "selecting %s by selection on files"
+msgstr "selecting %s by selection on files"
+
+#: po/placeholder.h:211 po/placeholder.h:313
+#, fuzzy, c-format
+msgid "copying source list of \"%s\"..."
+msgstr "جاري استرجاع hdlist )أو ملف تخليق( المصدر..."
-#: po/placeholder.h:181 urpmi:131
+#: po/placeholder.h:212 po/placeholder.h:377 urpmi:131
msgid "Only superuser is allowed to install packages"
msgstr "المستخدم الجذر فقط مسموح له بتثبيت الحزم"
-#: po/placeholder.h:182 urpmi:216
+#: po/placeholder.h:213 po/placeholder.h:314 urpm.pm:96
+msgid "wget is missing\n"
+msgstr "wget غير موجود\n"
+
+#: po/placeholder.h:240
#, c-format
-msgid "One of the following packages is needed to install %s:"
-msgstr "واحد من هذه الحدم يُحتاج اليه لتثبيت %s:"
+msgid ""
+"removing %s to upgrade to %s ...\n"
+" since it will not be updated otherwise"
+msgstr ""
+"جاري ازالة %s للترقية الى %s ...\n"
+" جيث أنه لن تتم الترقية بطريقة أخرى"
-#: po/placeholder.h:183 urpmi.addmedia:70
+#: po/placeholder.h:296
+#, c-format
+msgid ""
+"removing %s to upgrade to %s ...\n"
+" since it will not upgrade correctly!"
+msgstr ""
+"جاري ازالة %s للترقية الى %s ...\n"
+" يم أن الترقية لن تتم بشكل صحيح!"
+
+#: po/placeholder.h:334 urpmi:321
+msgid ""
+"Installation failed, some files are missing.\n"
+"You may want to update your urpmi database"
+msgstr ""
+"لقد فشل التثبيت, بعض الملفات غير موجودة.\n"
+"ربما تريد نحديث فاعدة بيانات urpmi الخاصة بك"
+
+#: po/placeholder.h:348
+msgid ""
+" --best-output - choose best interface according to the environment:\n"
+" X or text mode.\n"
+msgstr ""
+" --best-output - اختر أفضل واجهة تبعا لبيئة العمل:\n"
+" واجهة رسومية أو نصية.\n"
+
+#: po/placeholder.h:359
+#, c-format
+msgid ""
+"urpmi version %s\n"
+"Copyright (C) 1999, 2000, 2001 MandrakeSoft.\n"
+"This is free software and may be redistributed under the terms of the GNU "
+"GPL.\n"
+"usage:\n"
+msgstr ""
+"urpmi الإصدار %s\n"
+" جميع الحقوق محفوظة 1999, 2000, 2001 MandrakeSoft.\n"
+" هذا برنامج حر ومجاني و يمكن اعادة توزيعه تحت بنود ترخيص GNU GPL.\n"
+"الاستخدام:\n"
+
+#: po/placeholder.h:379 urpmi.addmedia:70
#, fuzzy, c-format
msgid ""
"%s\n"
@@ -816,7 +976,7 @@ msgstr ""
"%s\n"
"<relative path of hdlist> غير موجود\n"
-#: po/placeholder.h:187
+#: po/placeholder.h:383
msgid ""
"usage: urpmi.addmedia [options] <name> <url> [with <relative_path>]\n"
"where <url> is one of\n"
@@ -838,17 +998,7 @@ msgstr ""
" removable://<path>\n"
"و [options] هم من\n"
-#: po/placeholder.h:197 urpmi.addmedia:92
-#, c-format
-msgid "unable to create medium \"%s\"\n"
-msgstr "لم يمكن عمل الوسيط \"%s\"\n"
-
-#: po/placeholder.h:198 urpmi.addmedia:76 urpmi.addmedia:93
-#, c-format
-msgid "unable to update medium \"%s\"\n"
-msgstr "لم يمكن تحديث الوسيط \"%s\"\n"
-
-#: po/placeholder.h:199 po/placeholder.h:222 po/placeholder.h:238
+#: po/placeholder.h:395 po/placeholder.h:415 po/placeholder.h:433
#: urpmi.addmedia:57
#, c-format
msgid ""
@@ -858,11 +1008,7 @@ msgstr ""
"\n"
"خيارات غير معروفة '%s'\n"
-#: po/placeholder.h:204 po/placeholder.h:231 po/placeholder.h:246
-msgid " -c - clean headers cache directory.\n"
-msgstr " -c - clean headers cache directory.\n"
-
-#: po/placeholder.h:205 urpmi.addmedia:82
+#: po/placeholder.h:401 urpmi.addmedia:82
#, c-format
msgid ""
"%s\n"
@@ -871,16 +1017,7 @@ msgstr ""
"%s\n"
"<relative path of hdlist> غير موجود\n"
-#: po/placeholder.h:209 po/placeholder.h:232
-msgid " -f - force generation of hdlist files.\n"
-msgstr " -f - قم بالإجبار على توليد ملفات hdlist.\n"
-
-#: po/placeholder.h:211
-#, fuzzy
-msgid " -h - try to find and use synthesis or hdlist file.\n"
-msgstr " -f - قم بالإجبار على توليد ملفات hdlist.\n"
-
-#: po/placeholder.h:212 urpmi.addmedia:84
+#: po/placeholder.h:408 urpmi.addmedia:84
#, c-format
msgid ""
"%s\n"
@@ -889,53 +1026,7 @@ msgstr ""
"%s\n"
"`with' غير موجود لوسائط ftp\n"
-#: po/placeholder.h:216
-#, fuzzy
-msgid " --update - create an update medium.\n"
-msgstr " --update - قم بتحديث الوسائط فقط.\n"
-
-#: po/placeholder.h:217
-msgid ""
-" --distrib - automatically create all media from an installation "
-"medium.\n"
-msgstr ""
-
-#: po/placeholder.h:218
-msgid ""
-"usage: urpmi.update [options] <name> ...\n"
-"where <name> is a medium name to update.\n"
-msgstr ""
-"الاستخدام: urpmi.update [options] <name> ...\n"
-"حيث أن <name> هو اسم الوسيط المطلوب تحديثه.\n"
-
-#: po/placeholder.h:227 urpmi.update:59
-#, c-format
-msgid ""
-"the entry to update is missing\n"
-"(one of %s)\n"
-msgstr ""
-"المدخل المطلوب تحديثه غير موجود\n"
-")واحد من %s(\n"
-
-#: po/placeholder.h:234
-msgid ""
-" -d - force complete computation of depslist.ordered file.\n"
-msgstr ""
-" -d - force complete computation of depslist.ordered file.\n"
-
-#: po/placeholder.h:235 urpmi.update:57
-msgid "nothing to update (use urpmi.addmedia to add a media)\n"
-msgstr "لا شئ للتحديث (استخدم urpmi.addmedia لإضافة وسيط)\n"
-
-#: po/placeholder.h:236
-msgid " -a - select all non-removable media.\n"
-msgstr " -a - اختر كل الوسائط غير القابلة للإزالة.\n"
-
-#: po/placeholder.h:237 urpmi.removemedia:47
-msgid "nothing to remove (use urpmi.addmedia to add a media)\n"
-msgstr "لا شء للإزالة (استخدم urpmi.addmedia لإضافة وسيط)\n"
-
-#: po/placeholder.h:242 urpmi.removemedia:49
+#: po/placeholder.h:419 urpmi.removemedia:49
#, c-format
msgid ""
"the entry to remove is missing\n"
@@ -944,12 +1035,7 @@ msgstr ""
"المدخل المطلوب ازالته غير موجود\n"
")واحد من %s(\n"
-#: po/placeholder.h:247
-#, fuzzy
-msgid " -a - select all media.\n"
-msgstr " -a - اختر كل الوسائط غير القابلة للإزالة.\n"
-
-#: po/placeholder.h:248
+#: po/placeholder.h:425
#, fuzzy
msgid ""
"usage: urpmi.removemedia [-a] <name> ...\n"
@@ -958,32 +1044,24 @@ msgstr ""
"الاستخدام: urpmi.update [options] <name> ...\n"
"حيث أن <name> هو اسم الوسيط المطلوب تحديثه.\n"
-#: po/placeholder.h:252
-msgid " -h - print this help message.\n"
-msgstr " -h - تطبع رسالة المساعدة هذه.\n"
-
-#: po/placeholder.h:254
-msgid " -g - print groups too with name.\n"
-msgstr " -g - تطبع المجموعات أيضا مع الأسماء.\n"
+#: po/placeholder.h:429
+msgid ""
+"usage: urpmi.update [options] <name> ...\n"
+"where <name> is a medium name to update.\n"
+msgstr ""
+"الاستخدام: urpmi.update [options] <name> ...\n"
+"حيث أن <name> هو اسم الوسيط المطلوب تحديثه.\n"
-#: po/placeholder.h:255 urpmq:90
+#: po/placeholder.h:438 urpmi.update:59
#, c-format
-msgid "urpmq: cannot read rpm file \"%s\"\n"
-msgstr "urpmq: لم يمكن ايجاد ملف rpm \"%s\"\n"
-
-#: po/placeholder.h:256
-msgid " names or rpm files given on command line are queried.\n"
-msgstr " الأسماء أو ملفات rpm المعطاة على سطر الأوامر يتم الاستعلام عنها.\n"
-
-#: po/placeholder.h:258
-msgid " -r - print version and release too with name.\n"
-msgstr " -r - تطبع الإصدار و رقمه أيضا مع الإسم.\n"
-
-#: po/placeholder.h:259
-msgid " -f - print version, release and arch with name.\n"
-msgstr " -f - اعرض معلومات الإصدار و البرنامج مع الإسم.\n"
+msgid ""
+"the entry to update is missing\n"
+"(one of %s)\n"
+msgstr ""
+"المدخل المطلوب تحديثه غير موجود\n"
+")واحد من %s(\n"
-#: po/placeholder.h:260
+#: po/placeholder.h:456
#, c-format
msgid ""
"urpmq version %s\n"
@@ -997,35 +1075,7 @@ msgstr ""
"هذا برنامج حر و مجاني و يمكن اعادة توزيعه تحت بنود ترخيص GNU GPL.\n"
"الاستخدام:\n"
-#: po/placeholder.h:266
-msgid " -d - extend query to package dependencies.\n"
-msgstr " -d - تمديد الاستعلام حتى اعتمادات الحزم.\n"
-
-#: po/placeholder.h:267
-msgid ""
-" --sources - give all source packages before downloading (root only).\n"
-msgstr " --sources - اعطاء كل الحزم المصدرية قبل التنزيل (الحذر فقط).\n"
-
-#: po/placeholder.h:268
-msgid ""
-" -c - choose complete method for resolving requires closure.\n"
-msgstr ""
-" -c - choose complete method for resolving requires closure.\n"
-
-#: po/placeholder.h:271 urpmq:137
-msgid ""
-"some packages have to be removed for being upgraded, this is not supported "
-"yet\n"
-msgstr ""
-"بعض الحزم تحتاج الى أن تُزال لكي يتم ترقيتها, هذا لا يزال غير مدعوم حتى الآن\n"
-
-#: po/placeholder.h:272 urpmq:87
-#, c-format
-msgid "urpmq: unknown option \"-%s\", check usage with --help\n"
-msgstr ""
-"urpmq: خيار غير معروف \"-%s\", تحقق من طريقة الاستخدام بالخيار --help\n"
-
-#: po/placeholder.h:274
+#: po/placeholder.h:470
msgid ""
" --headers - extract headers for package listed from urpmi db to\n"
" stdout (root only).\n"
@@ -1033,11 +1083,6 @@ msgstr ""
" --headers - extract headers for package listed from urpmi db to\n"
" stdout (root only).\n"
-#: po/placeholder.h:282
-msgid ""
-" -u - remove package if a better version is already installed.\n"
-msgstr " -u - ازالة الحزمة اذا كانت نسخة أفضل مثبتة مسبقا.\n"
-
#: urpm.pm:2030 urpm.pm:2039
#, c-format
msgid "removing %s to upgrade to %s ..."
@@ -1081,17 +1126,17 @@ msgstr ") . _("
msgid ");"
msgstr ");"
-#: urpmi.update:41
-msgid "usage: urpmi.update [options] <name> ..."
-msgstr "الاستخدام: urpmi.update [options] <name> ..."
+#: urpmi.removemedia:34
+msgid "usage: urpmi.removemedia [-a] <name> ..."
+msgstr "الإستخدام: urpmi.removemedia [-a] <name> ..."
#: urpmi.removemedia:38 urpmi.update:49
msgid ", $_);"
msgstr ", $_);"
-#: urpmi.removemedia:34
-msgid "usage: urpmi.removemedia [-a] <name> ..."
-msgstr "الإستخدام: urpmi.removemedia [-a] <name> ..."
+#: urpmi.update:41
+msgid "usage: urpmi.update [options] <name> ..."
+msgstr "الاستخدام: urpmi.update [options] <name> ..."
#: urpmq:34
#, c-format
diff --git a/po/az.po b/po/az.po
index f527dfaf..30e7fc66 100644
--- a/po/az.po
+++ b/po/az.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: urpmi 1.7\n"
-"POT-Creation-Date: 2002-01-30 14:07+0100\n"
+"POT-Creation-Date: 2002-02-06 14:21+0100\n"
"PO-Revision-Date: 2001-11-14 17:06GMT+0200\n"
"Last-Translator: Vasif İsmayıloğlu MD <azerb_linux@hotmail.com>\n"
"Language-Team: Azerbaijani Turkic <linuxaz@azerimail.net>\n"
@@ -26,27 +26,31 @@ msgstr ""
"Paketlərin öz özünə qurulması...\n"
"$rpm paketlərininin qurulmasını istədiniz\n"
-#: _irpm:31 po/placeholder.h:178 urpmi:268
+#: _irpm:31 po/placeholder.h:204 po/placeholder.h:322 po/placeholder.h:374
+#: urpme:29 urpmi:268
msgid "Is it OK?"
msgstr "Oldu mu?"
-#: _irpm:33 po/placeholder.h:170 urpmi:271 urpmi:299
+#: _irpm:33 po/placeholder.h:193 po/placeholder.h:366 urpmi:271 urpmi:299
msgid "Ok"
msgstr "Oldu"
-#: _irpm:34 po/placeholder.h:131 urpmi:272 urpmi:300
+#: _irpm:34 po/placeholder.h:162 po/placeholder.h:327 urpmi:272 urpmi:300
msgid "Cancel"
msgstr "Ləğv et"
-#: _irpm:40 po/placeholder.h:143 urpmi:276 urpmi:340 urpmi:364
+#: _irpm:40 po/placeholder.h:176 po/placeholder.h:326 po/placeholder.h:339
+#: urpme:32 urpmi:276 urpmi:340 urpmi:364
msgid "Nn"
msgstr "XxJjNn"
-#: _irpm:41 po/placeholder.h:146 urpmi:277 urpmi:341 urpmi:365
+#: _irpm:41 po/placeholder.h:89 po/placeholder.h:321 po/placeholder.h:342
+#: urpme:34 urpmi:277 urpmi:341 urpmi:365
msgid "Yy"
msgstr "Bb"
-#: _irpm:42 po/placeholder.h:173 urpmi:278
+#: _irpm:42 po/placeholder.h:195 po/placeholder.h:318 po/placeholder.h:369
+#: urpme:94 urpmi:278
msgid " (Y/n) "
msgstr " (B/x) "
@@ -54,651 +58,744 @@ msgstr " (B/x) "
msgid "$rpm: command not found\n"
msgstr "$rpm: əmr tapılmadı\n"
-#: po/placeholder.h:6
+#: po/placeholder.h:6 po/placeholder.h:154
#, c-format
msgid "urpmf version %s"
msgstr "urpmf buraxılışı %s"
-#: po/placeholder.h:7
+#: po/placeholder.h:7 po/placeholder.h:192
msgid "Copyright (C) 1999,2000,2001 MandrakeSoft."
msgstr "Təlif Haqqı (C) 1999,2000,2001 MandrakeSoft."
-#: po/placeholder.h:8
+#: po/placeholder.h:8 po/placeholder.h:152
msgid ""
"This is free software and may be redistributed under the terms of the GNU "
"GPL."
msgstr "Bu, pulsuz proqramdır və GNU GPL lisenziyası altında dağıdıla bilər."
-#: po/placeholder.h:9 po/placeholder.h:26
+#: po/placeholder.h:9 po/placeholder.h:26 po/placeholder.h:130
msgid "usage: urpmf [options] <file>"
msgstr "istifadə qaydası: [urpmf] <fayl>"
-#: po/placeholder.h:10
+#: po/placeholder.h:10 po/placeholder.h:109
msgid ""
" --quiet - do not print tag name (default if no tag given on command"
msgstr ""
" --quiet - təq adlarını göstərmə (təq əmrə verilməyibsə əsasdır"
-#: po/placeholder.h:11
+#: po/placeholder.h:11 po/placeholder.h:153
msgid " line, incompatible with interactive mode)."
msgstr " sətir, qarşılıqlı moda uyğun deyil)."
-#: po/placeholder.h:12
+#: po/placeholder.h:12 po/placeholder.h:127
msgid " --all - print all tags."
msgstr " --all - bütün təqləri göstər."
-#: po/placeholder.h:13
+#: po/placeholder.h:13 po/placeholder.h:157
msgid ""
" --name - print tag name: rpm filename (assumed if no tag given on"
msgstr ""
" --name - təq adını göstər: rpm fayladı (heç təq verilməyibsə"
-#: po/placeholder.h:14
+#: po/placeholder.h:14 po/placeholder.h:159
msgid " command line but without package name)."
msgstr " paket adsız əmr sətiri)."
-#: po/placeholder.h:15
+#: po/placeholder.h:15 po/placeholder.h:102
msgid " --group - print tag group: group."
msgstr " --group - təq qrupunu göstər: qrup."
-#: po/placeholder.h:16
+#: po/placeholder.h:16 po/placeholder.h:87
msgid " --size - print tag size: size."
msgstr " --size - təq böyüklüyünü göstər: böyüklük."
-#: po/placeholder.h:17
+#: po/placeholder.h:17 po/placeholder.h:134
msgid " --serial - print tag serial: serial."
msgstr " --serial - təq serialını göstər: serial."
-#: po/placeholder.h:18
+#: po/placeholder.h:18 po/placeholder.h:146
msgid " --summary - print tag summary: summary."
msgstr " --summary - təq icmalını göstər: icmal."
-#: po/placeholder.h:19
+#: po/placeholder.h:19 po/placeholder.h:120
msgid " --description - print tag description: description."
msgstr " --description - təq izahatını göstər: izahat."
-#: po/placeholder.h:20
+#: po/placeholder.h:20 po/placeholder.h:138
msgid " --provides - print tag provides: all provides (multiple lines)."
msgstr ""
" --provides - təq gətirənini göstər: bütün gətirənlər (çoxlu sətir)."
-#: po/placeholder.h:21
+#: po/placeholder.h:21 po/placeholder.h:186
msgid " --requires - print tag requires: all requires (multiple lines)."
msgstr ""
" --requires - lazımlılar təqini göstər: bütün lazımlılar (çoxlu sətir)."
-#: po/placeholder.h:22
+#: po/placeholder.h:22 po/placeholder.h:41
msgid " --files - print tag files: all files (multiple lines)."
msgstr ""
" --files - təq fayllarını göstər: bütün fayllar (çoxlu sətir)."
-#: po/placeholder.h:23
+#: po/placeholder.h:23 po/placeholder.h:34
msgid ""
" --conflicts - print tag conflicts: all conflicts (multiple lines)."
msgstr ""
" --conflicts - təq toqquşmalarını göstər: bütün toqquşmalar (çoxlu "
"sətir)."
-#: po/placeholder.h:24
+#: po/placeholder.h:24 po/placeholder.h:106
msgid ""
" --obsoletes - print tag obsoletes: all obsoletes (multiple lines)."
msgstr ""
" --obsoletes - təq mütləqlərini göstər: bütün mütləqlər (çoxlu sətir)."
-#: po/placeholder.h:25
+#: po/placeholder.h:25 po/placeholder.h:128
msgid " --prereqs - print tag prereqs: all prereqs (multiple lines)."
msgstr ""
" --prereqs - təq ön lazımlılarını göstər: bütün ön lazımlılar (çoxlu "
"sətir)."
-#: po/placeholder.h:27
+#: po/placeholder.h:27 po/placeholder.h:62
msgid "try urpmf --help for more options"
msgstr "daha təfsilatlı seçənəklər üçün urpmf --help sınayın"
-#: po/placeholder.h:28
+#: po/placeholder.h:28 po/placeholder.h:49
msgid "no full media list was found"
msgstr ""
-#: po/placeholder.h:29
+#: po/placeholder.h:29 po/placeholder.h:214
#, c-format
msgid "unable to write config file [%s]"
msgstr "[%s] quraşdırma faylı yazıla bilmir"
-#: po/placeholder.h:30 urpm.pm:1892
-#, fuzzy
-msgid "retrieving rpms files..."
-msgstr "[%s] cəhd edilir"
-
-#: po/placeholder.h:31
+#: po/placeholder.h:30 po/placeholder.h:216
msgid "examining whole urpmi database"
msgstr ""
-#: po/placeholder.h:32
+#: po/placeholder.h:31 po/placeholder.h:331 po/placeholder.h:449
+#, fuzzy
+msgid " -y - impose fuzzy search.\n"
+msgstr " --all - bütün təqləri göstər."
+
+#: po/placeholder.h:32 po/placeholder.h:220 urpm.pm:280
#, c-format
-msgid "using different removable device [%s] for \"%s\""
-msgstr ""
+msgid "unable to find list file for \"%s\", medium ignored"
+msgstr "\"%s\" üçün siyahı faylı tapıla bilmir, medya rədd edilir"
-#: po/placeholder.h:33
+#: po/placeholder.h:33 po/placeholder.h:218
#, c-format
msgid "nothing to write in list file for \"%s\""
msgstr "\"%s\" üçün siyahı faylında bir şey yazmağa lüzum yoxdur"
-#: po/placeholder.h:34
-msgid ""
-"unable to access first installation medium (no Mandrake/base/hdlists file "
-"found)"
-msgstr ""
-
-#: po/placeholder.h:35 urpm.pm:280
-#, c-format
-msgid "unable to find list file for \"%s\", medium ignored"
-msgstr "\"%s\" üçün siyahı faylı tapıla bilmir, medya rədd edilir"
-
-#: po/placeholder.h:36
+#: po/placeholder.h:35 po/placeholder.h:221
#, c-format
msgid "unable to parse hdlist file of \"%s\""
msgstr "\"%s\" hdlist faylı alına bilmir"
-#: po/placeholder.h:37
+#: po/placeholder.h:36 po/placeholder.h:222
#, c-format
msgid "nothing written in list file for \"%s\""
msgstr "\"%s\" üçün siyahı faylında bir şey yazılmır"
-#: po/placeholder.h:38
+#: po/placeholder.h:37 po/placeholder.h:463
+msgid ""
+" --sources - give all source packages before downloading (root only).\n"
+msgstr ""
+
+#: po/placeholder.h:38 po/placeholder.h:341 po/placeholder.h:466
+msgid ""
+" --auto-select - automatically select packages for upgrading the system.\n"
+msgstr ""
+
+#: po/placeholder.h:39 po/placeholder.h:223
#, fuzzy, c-format
msgid "retrieving description file of \"%s\"..."
msgstr "[%s] cəhd edilir"
-#: po/placeholder.h:39
-#, fuzzy
-msgid "unable to access first installation medium"
-msgstr "\"%s\" siyahı faylına çatıla bilmədi, medya rədd edildi"
-
-#: po/placeholder.h:40 urpm.pm:1768
+#: po/placeholder.h:40 po/placeholder.h:225 urpm.pm:1769
#, c-format
msgid "package %s is not found."
msgstr "%s paketi tapılmadı."
-#: po/placeholder.h:41 urpm.pm:1129
-#, c-format
-msgid "unmounting %s"
-msgstr "%s ayrılır"
-
-#: po/placeholder.h:42
-#, c-format
-msgid "removing %d obsolete headers in cache"
-msgstr "ön yaddaşdakı %d mütləq başlıqlar çıxardılır"
-
-#: po/placeholder.h:43
-#, c-format
-msgid "no hdlist file found for medium \"%s\""
-msgstr "\"%s\" medyası hdlist faylı tapılmadı"
-
-#: po/placeholder.h:44 urpm.pm:209
+#: po/placeholder.h:42 po/placeholder.h:229 urpm.pm:209
#, c-format
msgid "medium \"%s\" tries to use an already used hdlist, medium ignored"
msgstr ""
"\"%s\" medyası onsuz da istifadədə olan hdlist işlətməyə cəhd etdi, medya "
"rədd edildi"
-#: po/placeholder.h:45 urpm.pm:1413
-msgid "<non printable chars>"
+#: po/placeholder.h:43 po/placeholder.h:317 urpme:52
+msgid "unknown package(s) "
msgstr ""
-#: po/placeholder.h:46
-#, fuzzy
-msgid "problem reading hdlist file, trying again"
-msgstr "[%s] hdlist faylı oxunur"
-
-#: po/placeholder.h:47 urpm.pm:233
+#: po/placeholder.h:44 po/placeholder.h:232 urpm.pm:233
#, c-format
msgid "unable to use name \"%s\" for unnamed medium because it is already used"
msgstr ""
"adsız medya üçün \"%s\" adı işlədilə bilmir, çünkü onsuz da istifadədədir"
-#: po/placeholder.h:48
-#, fuzzy, c-format
-msgid "removing medium \"%s\""
-msgstr "mövcud olmayan \"%s\" medyası çıxardılmağa çalışılır"
+#: po/placeholder.h:45 po/placeholder.h:231
+#, fuzzy
+msgid "problem reading hdlist file, trying again"
+msgstr "[%s] hdlist faylı oxunur"
-#: po/placeholder.h:49 urpm.pm:240
+#: po/placeholder.h:46 po/placeholder.h:234 urpm.pm:240
#, c-format
msgid "unable to take medium \"%s\" into account as no list file [%s] exists"
msgstr "\"%s\" medyası [%s] siyahı faylına malik olmadığı üçün alına bilmir"
-#: po/placeholder.h:50
+#: po/placeholder.h:47 po/placeholder.h:235
msgid "keeping only files referenced in provides"
msgstr "təkcə gətirənlərdə yad edilən fayllar saxlanılır"
-#: po/placeholder.h:51
-#, c-format
-msgid "unable to build synthesis file for medium \"%s\""
-msgstr "\"%s\" medyası sintezi inşa edilə bilmi"
-
-#: po/placeholder.h:52
+#: po/placeholder.h:48 po/placeholder.h:237
#, c-format
msgid "found %d headers in cache"
msgstr "ön yaddaşda %d başlıq tapıldı"
-#: po/placeholder.h:53
-#, fuzzy, c-format
-msgid "trying to select multiple medium: %s"
-msgstr "mövcud olmayan \"%s\" medyası seçilə bilmi"
-
-#: po/placeholder.h:54 urpm.pm:2125
+#: po/placeholder.h:50 po/placeholder.h:394 urpmi.addmedia:76
+#: urpmi.addmedia:93
#, c-format
-msgid "avoid selecting %s as its locales language is not already selected"
-msgstr "%s yerləşdirmə dili seçili olmadığı üçün seçilə bilmir"
+msgid "unable to update medium \"%s\"\n"
+msgstr " \"%s\" medyası güncəllənə bilmir\n"
-#: po/placeholder.h:55
-#, fuzzy, c-format
-msgid ""
-"removing %s to upgrade to %s ...\n"
-" since it will not be updated otherwise"
-msgstr ""
-"düzgün aparıla bilməyəcəyindən %s\n"
-" %s olaraq güncəllənmək üçün çıxardılır!"
+#: po/placeholder.h:51 po/placeholder.h:400 po/placeholder.h:423
+#: po/placeholder.h:442
+#, fuzzy
+msgid " -c - clean headers cache directory.\n"
+msgstr " --all - bütün təqləri göstər."
-#: po/placeholder.h:59
+#: po/placeholder.h:52 po/placeholder.h:244
#, c-format
msgid "medium \"%s\" already exists"
msgstr "\"%s\" medyası onsuz da vardır"
-#: po/placeholder.h:60
+#: po/placeholder.h:53 po/placeholder.h:245
#, c-format
msgid "unable to write list file of \"%s\""
msgstr "\"%s\" fayl siyahısı yazıla bilmi"
-#: po/placeholder.h:61
-#, c-format
-msgid "write config file [%s]"
-msgstr "[%s] quraşdırma faylı yazılır"
+#: po/placeholder.h:54 po/placeholder.h:452
+msgid " names or rpm files given on command line are queried.\n"
+msgstr ""
-#: po/placeholder.h:62 urpm.pm:1302
+#: po/placeholder.h:55 po/placeholder.h:247 urpm.pm:1302
#, c-format
msgid "no package named %s"
msgstr "%s adlı paket yoxdur"
-#: po/placeholder.h:63
+#: po/placeholder.h:56 po/placeholder.h:365 urpmi:350 urpmi:374
+msgid "Try installation even more strongly (--force)? (y/N) "
+msgstr "Quruluşu zorlayaraq sınayım (--force)? (b/X)"
+
+#: po/placeholder.h:57 po/placeholder.h:250 urpm.pm:275
+#, c-format
+msgid "unable to find hdlist file for \"%s\", medium ignored"
+msgstr "\"%s\" üçün hdlist faylı tapıla bilmir, medya rədd edildi"
+
+#: po/placeholder.h:58 po/placeholder.h:248
#, c-format
msgid "built hdlist synthesis file for medium \"%s\""
msgstr "\"%s\" medyası hdlist sintezi inşa edilid"
-#: po/placeholder.h:64
+#: po/placeholder.h:59 po/placeholder.h:251
+msgid "urpmi database locked"
+msgstr ""
+
+#: po/placeholder.h:60 po/placeholder.h:319 urpme:63
#, fuzzy
-msgid "unable to build hdlist synthesis, using parsehdlist method"
-msgstr "bütün sintez faylları tapıla bilmir, daranmış hdlist işlədilir"
+msgid " (y/N) "
+msgstr " (B/x) "
-#: po/placeholder.h:65 urpm.pm:275
-#, c-format
-msgid "unable to find hdlist file for \"%s\", medium ignored"
-msgstr "\"%s\" üçün hdlist faylı tapıla bilmir, medya rədd edildi"
+#: po/placeholder.h:61 po/placeholder.h:370
+msgid " -a - select all matches on command line.\n"
+msgstr ""
-#: po/placeholder.h:66
-msgid "urpmi database locked"
+#: po/placeholder.h:63 po/placeholder.h:467 urpmq:137
+msgid ""
+"some packages have to be removed for being upgraded, this is not supported "
+"yet\n"
msgstr ""
+"bə'zi paketlər güncəllənmək üçün çıxardılmalıdırlar, bu da hələlik "
+"dəstəklənmir\n"
-#: po/placeholder.h:67 urpm.pm:1118
+#: po/placeholder.h:64 po/placeholder.h:252 urpm.pm:1118
#, c-format
msgid "mounting %s"
msgstr "%s bağlanır"
-#: po/placeholder.h:68 urpm.pm:227
-#, c-format
-msgid ""
-"unable to take care of medium \"%s\" as list file is already used by another "
-"medium"
-msgstr ""
-"\"%s\" medyası siyahı faylı başqa medya tərəfindən istifadədə olduğu üçün "
-"diqqətə alına bilir"
-
-#: po/placeholder.h:69
-#, fuzzy, c-format
-msgid "examining synthesis file [%s]"
-msgstr "[%s] asılılıqlar siyahısı faylı oxundu"
+#: po/placeholder.h:65 po/placeholder.h:405 po/placeholder.h:443
+#, fuzzy
+msgid " -f - force generation of hdlist files.\n"
+msgstr " --group - təq qrupunu göstər: qrup."
-#: po/placeholder.h:70 urpm.pm:98
+#: po/placeholder.h:66 po/placeholder.h:255 urpm.pm:98
#, c-format
msgid "wget failed: exited with %d or signal %d\n"
msgstr ""
-#: po/placeholder.h:71
-#, fuzzy, c-format
-msgid "unable to retrieve pathname for removable medium \"%s\""
-msgstr " \"%s\" medyası yaradıla bilmir\n"
+#: po/placeholder.h:67 po/placeholder.h:414 urpmi.removemedia:47
+msgid "nothing to remove (use urpmi.addmedia to add a media)\n"
+msgstr ""
+"çıxardılacaq bir şey yoxdur (medya əlavə etmək üçün urpmi.addmedia işlədin)\n"
-#: po/placeholder.h:72 urpm.pm:1887
+#: po/placeholder.h:68 po/placeholder.h:257 urpm.pm:1886
#, c-format
msgid "malformed input: [%s]"
msgstr "xətalı giriş: [%s]"
-#: po/placeholder.h:73 urpm.pm:1721 urpm.pm:1747
+#: po/placeholder.h:69 po/placeholder.h:478
+msgid ""
+" -u - remove package if a better version is already installed.\n"
+msgstr ""
+
+#: po/placeholder.h:70 po/placeholder.h:378 urpmi:216
#, c-format
-msgid "there are multiple packages with the same rpm filename \"%s\""
-msgstr "\"%s\" rpm fayl adlı çoxlu fayl tapıldı"
+msgid "One of the following packages is needed to install %s:"
+msgstr "Aşağıdakı paketlərin bir dənəsinə %s ehtiyac hiss edir:"
+
+#: po/placeholder.h:71 po/placeholder.h:376 urpmi:297
+msgid "Press Enter when it's done..."
+msgstr "Qurtardığında enter düyməsinə basın..."
-#: po/placeholder.h:74
+#: po/placeholder.h:72 po/placeholder.h:259
msgid "...copying failed"
msgstr ""
-#: po/placeholder.h:75 urpm.pm:212
+#: po/placeholder.h:73 po/placeholder.h:260 urpm.pm:212
#, c-format
msgid "medium \"%s\" tries to use an already used list, medium ignored"
msgstr ""
"\"%s\" medyumu onsuz da istifadədə olan bir siyahını işlətməyə cəhd etdi, "
"medya rədd edildi"
-#: po/placeholder.h:76
+#: po/placeholder.h:74 po/placeholder.h:448
#, fuzzy
-msgid "retrieving hdlists file..."
-msgstr "[%s] cəhd edilir"
+msgid " -h - print this help message.\n"
+msgstr " --all - bütün təqləri göstər."
-#: po/placeholder.h:77 urpm.pm:253
-#, c-format
-msgid "unable to access hdlist file of \"%s\", medium ignored"
-msgstr "\"%s\" medyası hdlist faylına çatıla bilmir, medya rədd edildi"
+#: po/placeholder.h:75 po/placeholder.h:450
+#, fuzzy
+msgid " -g - print groups too with name.\n"
+msgstr " --group - təq qrupunu göstər: qrup."
-#: po/placeholder.h:78 urpm.pm:1208
-msgid "unable to register rpm file"
-msgstr "rpm faylı qeyd edilə bilmir"
+#: po/placeholder.h:76 po/placeholder.h:424
+#, fuzzy
+msgid " -a - select all media.\n"
+msgstr " --all - bütün təqləri göstər."
-#: po/placeholder.h:79
+#: po/placeholder.h:77 po/placeholder.h:267
#, c-format
-msgid "\"%s\""
+msgid "invalid hdlist description \"%s\" in hdlists file"
msgstr ""
-#: po/placeholder.h:80 urpm.pm:307
-#, c-format
-msgid "unable to inspect list file for \"%s\", medium ignored"
-msgstr "\"%s\" faylları siyahısı incələnə bilmir, medya rədd edildi"
+#: po/placeholder.h:78 po/placeholder.h:407
+#, fuzzy
+msgid " -h - try to find and use synthesis or hdlist file.\n"
+msgstr " --group - təq qrupunu göstər: qrup."
-#: po/placeholder.h:81
-#, c-format
-msgid "too many mount points for removable medium \"%s\""
-msgstr ""
+#: po/placeholder.h:79 po/placeholder.h:454
+#, fuzzy
+msgid " -r - print version and release too with name.\n"
+msgstr " paket adsız əmr sətiri)."
-#: po/placeholder.h:82
-#, c-format
-msgid "invalid hdlist description \"%s\" in hdlists file"
+#: po/placeholder.h:80 po/placeholder.h:455
+msgid " -f - print version, release and arch with name.\n"
msgstr ""
-#: po/placeholder.h:83 urpm.pm:299
-#, c-format
-msgid "incoherent list file for \"%s\", medium ignored"
-msgstr "\"%s\" üçün inkoherent siyahı faylı, medya rədd edildi"
-
-#: po/placeholder.h:84
-#, c-format
-msgid "copy of [%s] failed"
-msgstr "[%s] köçürülmə əməliyyatı bacarılmadı"
+#: po/placeholder.h:81 po/placeholder.h:338
+msgid " --auto - automatically select a good package in choices.\n"
+msgstr ""
-#: po/placeholder.h:85 urpm.pm:1420
+#: po/placeholder.h:82 po/placeholder.h:270 urpm.pm:1420
#, c-format
msgid "unable to parse correctly [%s]"
msgstr "[%s] düzgün olaraq darana bilmir"
-#: po/placeholder.h:86 urpm.pm:1421
+#: po/placeholder.h:83 po/placeholder.h:446 urpmi.update:57
+msgid "nothing to update (use urpmi.addmedia to add a media)\n"
+msgstr ""
+"güncəllənəcək bir şey yoxdur (medya əlavə etmək üçün urpmi.addmedia "
+"işlədin)\n"
+
+#: po/placeholder.h:84 po/placeholder.h:271 urpm.pm:1421
#, fuzzy, c-format
msgid "read synthesis file [%s]"
msgstr "[%s] asılılıqlar siyahısı faylı oxundu"
-#: po/placeholder.h:87 urpm.pm:1412 urpm.pm:1419
-#, fuzzy, c-format
-msgid "unable to analyse synthesis data of %s"
-msgstr "\"%s\" hdlist faylı alına bilmir"
-
-#: po/placeholder.h:88 urpm.pm:93
+#: po/placeholder.h:85 po/placeholder.h:273 urpm.pm:93
msgid "no webfetch (curl or wget currently) found\n"
msgstr ""
-#: po/placeholder.h:89
-#, c-format
-msgid "retrieving source hdlist (or synthesis) of \"%s\"..."
+#: po/placeholder.h:86 po/placeholder.h:464
+msgid ""
+" -c - choose complete method for resolving requires closure.\n"
msgstr ""
-#: po/placeholder.h:90
-#, fuzzy
-msgid "...copying done"
-msgstr "[%s] cəhd edilir"
+#: po/placeholder.h:88 po/placeholder.h:393 urpmi.addmedia:92
+#, c-format
+msgid "unable to create medium \"%s\"\n"
+msgstr " \"%s\" medyası yaradıla bilmir\n"
-#: po/placeholder.h:91
+#: po/placeholder.h:90 po/placeholder.h:276
#, c-format
msgid "copying source hdlist (or synthesis) of \"%s\"..."
msgstr ""
-#: po/placeholder.h:92
-#, fuzzy
-msgid "copying hdlists file..."
-msgstr "[%s] hdlist faylı oxunur"
-
-#: po/placeholder.h:93 urpm.pm:188 urpm.pm:200
+#: po/placeholder.h:91 po/placeholder.h:468 urpmq:87
#, c-format
-msgid "syntax error in config file at line %s"
-msgstr "quraşdırma faylında %s sətirində sintaksis xətası"
+msgid "urpmq: unknown option \"-%s\", check usage with --help\n"
+msgstr ""
+"urpmq: namə'lum seçənək \"-%s\", istifadə qaydasını --help ilə yoxlayın\n"
-#: po/placeholder.h:94
+#: po/placeholder.h:92 po/placeholder.h:324 urpme:39
+#, fuzzy
+msgid "usage: urpme [-a] [--auto] <packages...>\n"
+msgstr "istifadə qaydası: urpmi.removemedia [-a] <ad> ..."
+
+#: po/placeholder.h:93 po/placeholder.h:279
#, c-format
msgid "building hdlist [%s]"
msgstr "[%s] hdlist faylı inşa edilir"
-#: po/placeholder.h:95 urpm.pm:1822
-#, c-format
-msgid "unable to read rpm file [%s] from medium \"%s\""
-msgstr "\"%s\" medyasından [%s] rpm faylı oxuna bilmir"
+#: po/placeholder.h:94 po/placeholder.h:347 po/placeholder.h:474
+msgid " --media - use only the media listed by comma.\n"
+msgstr ""
-#: po/placeholder.h:96
+#: po/placeholder.h:95 po/placeholder.h:281
#, c-format
msgid "added medium %s"
msgstr ""
-#: po/placeholder.h:97
-msgid "retrieve of source hdlist (or synthesis) failed"
-msgstr ""
-
-#: po/placeholder.h:98 urpm.pm:1212
-msgid "error registering local packages"
-msgstr "yerli paket qeydiyyat xətası"
-
-#: po/placeholder.h:99
+#: po/placeholder.h:96 po/placeholder.h:280 urpm.pm:1821
#, c-format
-msgid "taking removable device as \"%s\""
+msgid "unable to read rpm file [%s] from medium \"%s\""
+msgstr "\"%s\" medyasından [%s] rpm faylı oxuna bilmir"
+
+#: po/placeholder.h:97 po/placeholder.h:282
+msgid "retrieve of source hdlist (or synthesis) failed"
msgstr ""
-#: po/placeholder.h:100 urpm.pm:1899
+#: po/placeholder.h:98 po/placeholder.h:285 urpm.pm:1898
#, fuzzy, c-format
msgid "...retrieving failed: %s"
msgstr "[%s] cəhd edilir"
-#: po/placeholder.h:101 urpm.pm:1838
+#: po/placeholder.h:99 po/placeholder.h:286 urpm.pm:1837
#, c-format
msgid "incoherent medium \"%s\" marked removable but not really"
msgstr "\"%s\" inkeherent medyası söküləbilən deyə bildirilib, amma deyil"
-#: po/placeholder.h:102
-#, fuzzy, c-format
-msgid "copying description file of \"%s\"..."
-msgstr "\"%s\" üçün siyahı faylında bir şey yazılmır"
-
-#: po/placeholder.h:103
-#, c-format
-msgid "unable to build hdlist: %s"
-msgstr "hdlist inşa edilə bilmir: %s"
-
-#: po/placeholder.h:104 urpm.pm:1812 urpm.pm:1815 urpm.pm:1834
-#, c-format
-msgid "medium \"%s\" is not selected"
-msgstr "\"%s\" medyası seçili deyil"
-
-#: po/placeholder.h:105 urpm.pm:1203
+#: po/placeholder.h:100 po/placeholder.h:290 urpm.pm:1203
#, c-format
msgid "invalid rpm file name [%s]"
msgstr "hökmsüz rpm fayı adı [%s]"
-#: po/placeholder.h:106 urpm.pm:1398
+#: po/placeholder.h:101 po/placeholder.h:291 urpm.pm:1398
#, c-format
msgid "unknown data associated with %s"
msgstr "%s ilə naməlum verilən qarşılaşdırılıb"
-#: po/placeholder.h:107 urpm.pm:269
+#: po/placeholder.h:103 po/placeholder.h:357 urpmi:225
#, c-format
-msgid "trying to bypass existing medium \"%s\", avoiding"
-msgstr "mövcud medya \"%s\" yan keçilməyə çalışıldı, imtina edirəm"
+msgid "What is your choice? (1-%d) "
+msgstr "Seçkiniz? (1-%d)"
-#: po/placeholder.h:108 urpm.pm:255
+#: po/placeholder.h:104 po/placeholder.h:293 urpm.pm:255
#, c-format
msgid "unable to access list file of \"%s\", medium ignored"
msgstr "\"%s\" siyahı faylına çatıla bilmədi, medya rədd edildi"
-#: po/placeholder.h:109 urpm.pm:2113
+#: po/placeholder.h:105 po/placeholder.h:358 po/placeholder.h:406
+#: po/placeholder.h:444
+msgid " --wget - use wget to retrieve distant files.\n"
+msgstr ""
+
+#: po/placeholder.h:107 po/placeholder.h:294 urpm.pm:2113
#, c-format
msgid "avoid selecting %s as not enough files will be updated"
msgstr "kifayət qədər fayl güncəllənməyəcəyi üçün %s seçilməsi imtina edildi"
-#: po/placeholder.h:110 urpm.pm:1204
+#: po/placeholder.h:108 po/placeholder.h:295 urpm.pm:1204
#, c-format
msgid "unable to access rpm file [%s]"
msgstr "rpm faylı [%s] çatıla bilmir"
-#: po/placeholder.h:111
-#, fuzzy, c-format
-msgid ""
-"removing %s to upgrade to %s ...\n"
-" since it will not upgrade correctly!"
-msgstr ""
-"düzgün aparıla bilməyəcəyindən %s\n"
-" %s olaraq güncəllənmək üçün çıxardılır!"
-
-#: po/placeholder.h:115 urpm.pm:1190
-#, c-format
-msgid "relocated %s entries in depslist"
-msgstr "asılılıqlar siyahısında %s sahə yenidən yerləşdirildi"
+#: po/placeholder.h:110 po/placeholder.h:368 urpmi:228
+msgid "Sorry, bad choice, try again\n"
+msgstr "Xətalı seçənək, təkrar sınayın\n"
-#: po/placeholder.h:116 urpm.pm:1849
+#: po/placeholder.h:111 po/placeholder.h:301 urpm.pm:1848
#, c-format
msgid "unable to access medium \"%s\""
msgstr "\"%s\" medyasına çatıla bilmir"
-#: po/placeholder.h:117 urpm.pm:1756
+#: po/placeholder.h:112 po/placeholder.h:300 urpm.pm:1190
#, c-format
-msgid "unable to parse correctly [%s] on value \"%s\""
-msgstr "[%s] \"%s\" qiymətində düzgün darana bilmədi"
+msgid "relocated %s entries in depslist"
+msgstr "asılılıqlar siyahısında %s sahə yenidən yerləşdirildi"
+
+#: po/placeholder.h:113 po/placeholder.h:371 po/placeholder.h:399
+#: po/placeholder.h:437
+msgid " --curl - use curl to retrieve distant files.\n"
+msgstr ""
-#: po/placeholder.h:118
+#: po/placeholder.h:114 po/placeholder.h:303
#, c-format
msgid "trying to select inexistent medium \"%s\""
msgstr "mövcud olmayan \"%s\" medyası seçilə bilmi"
-#: po/placeholder.h:119 urpm.pm:1305
+#: po/placeholder.h:115 po/placeholder.h:302 urpm.pm:1757
#, c-format
-msgid "The following packages contain %s: %s"
-msgstr "Aşağıdakı paketlər %s daxıl edir: %s"
+msgid "unable to parse correctly [%s] on value \"%s\""
+msgstr "[%s] \"%s\" qiymətində düzgün darana bilmədi"
-#: po/placeholder.h:120
+#: po/placeholder.h:116 po/placeholder.h:305
#, c-format
msgid "no rpm files found from [%s]"
msgstr "[%s] üstündə rpm fayı tapıla bilmədi"
-#: po/placeholder.h:121
-#, fuzzy, c-format
-msgid "examining hdlist file [%s]"
-msgstr "[%s] hdlist faylı oxunur"
+#: po/placeholder.h:117 po/placeholder.h:312 urpm.pm:101
+msgid "curl is missing\n"
+msgstr ""
+
+#: po/placeholder.h:118 po/placeholder.h:315 urpm.pm:244
+#, c-format
+msgid "unable to determine medium of this hdlist file [%s]"
+msgstr "bu [%s] hdlist faylı medyası tapıla bilmədi"
-#: po/placeholder.h:122 urpm.pm:1191
+#: po/placeholder.h:119 po/placeholder.h:328
#, fuzzy
-msgid "no entries relocated in depslist"
-msgstr "asılılıqlar siyahısında %s sahə yenidən yerləşdirildi"
+msgid " --help - print this help message.\n"
+msgstr " --all - bütün təqləri göstər."
-#: po/placeholder.h:123 urpm.pm:1897
+#: po/placeholder.h:121 po/placeholder.h:329 urpmi:383
+msgid "everything already installed"
+msgstr "hər şey artıq qurulmuşdur"
+
+#: po/placeholder.h:122 po/placeholder.h:215 urpm.pm:1891
#, fuzzy
-msgid "...retrieving done"
+msgid "retrieving rpms files..."
msgstr "[%s] cəhd edilir"
-#: po/placeholder.h:124 urpm.pm:2006
+#: po/placeholder.h:123 po/placeholder.h:217
#, c-format
-msgid "selecting %s using obsoletes"
-msgstr "%s mütləqlər işlədilərək seçilir"
+msgid "using different removable device [%s] for \"%s\""
+msgstr ""
+
+#: po/placeholder.h:124 po/placeholder.h:332 urpmi:217
+msgid "One of the following packages is needed:"
+msgstr "Aşağıdakı paketlərin bir dənəsinə ehtiyac var:"
+
+#: po/placeholder.h:125 po/placeholder.h:219
+msgid ""
+"unable to access first installation medium (no Mandrake/base/hdlists file "
+"found)"
+msgstr ""
-#: po/placeholder.h:125 urpm.pm:151
+#: po/placeholder.h:126 po/placeholder.h:451 urpmq:90
#, c-format
-msgid "curl failed: exited with %d or signal %d\n"
+msgid "urpmq: cannot read rpm file \"%s\"\n"
+msgstr "urpmq: \"%s\" rpm faylı oxuna bilmir\n"
+
+#: po/placeholder.h:129 po/placeholder.h:323 urpme:87
+msgid "Nothing to remove.\n"
msgstr ""
-#: po/placeholder.h:126 urpm.pm:2122
+#: po/placeholder.h:131 po/placeholder.h:340 urpmi:329 urpmi:336 urpmi:349
+#: urpmi:360 urpmi:373
+msgid "Installation failed"
+msgstr "Qurulum iflas etdi"
+
+#: po/placeholder.h:132 po/placeholder.h:224
+#, fuzzy
+msgid "unable to access first installation medium"
+msgstr "\"%s\" siyahı faylına çatıla bilmədi, medya rədd edildi"
+
+#: po/placeholder.h:133 po/placeholder.h:345 po/placeholder.h:469
+#, fuzzy
+msgid " -P - do not search in provides to find package.\n"
+msgstr " --group - təq qrupunu göstər: qrup."
+
+#: po/placeholder.h:135 po/placeholder.h:226 urpm.pm:1129
#, c-format
-msgid "selecting %s by selection on files"
-msgstr "%s fayllar üstündə seçilərək seçilir"
+msgid "unmounting %s"
+msgstr "%s ayrılır"
-#: po/placeholder.h:127 urpm.pm:101
-msgid "curl is missing\n"
+#: po/placeholder.h:136 po/placeholder.h:227
+#, c-format
+msgid "removing %d obsolete headers in cache"
+msgstr "ön yaddaşdakı %d mütləq başlıqlar çıxardılır"
+
+#: po/placeholder.h:137 po/placeholder.h:228
+#, c-format
+msgid "no hdlist file found for medium \"%s\""
+msgstr "\"%s\" medyası hdlist faylı tapılmadı"
+
+#: po/placeholder.h:139 po/placeholder.h:230 urpm.pm:1413
+msgid "<non printable chars>"
msgstr ""
-#: po/placeholder.h:128
+#: po/placeholder.h:140 po/placeholder.h:352 po/placeholder.h:476
+msgid " -v - verbose mode.\n"
+msgstr ""
+
+#: po/placeholder.h:141 po/placeholder.h:233
#, fuzzy, c-format
-msgid "copying source list of \"%s\"..."
-msgstr "\"%s\" üçün siyahı faylında bir şey yazılmır"
+msgid "removing medium \"%s\""
+msgstr "mövcud olmayan \"%s\" medyası çıxardılmağa çalışılır"
-#: po/placeholder.h:129 urpm.pm:96
-msgid "wget is missing\n"
+#: po/placeholder.h:142 po/placeholder.h:236
+#, c-format
+msgid "unable to build synthesis file for medium \"%s\""
+msgstr "\"%s\" medyası sintezi inşa edilə bilmi"
+
+#: po/placeholder.h:143 po/placeholder.h:238
+#, fuzzy, c-format
+msgid "trying to select multiple medium: %s"
+msgstr "mövcud olmayan \"%s\" medyası seçilə bilmi"
+
+#: po/placeholder.h:144 po/placeholder.h:447
+#, fuzzy
+msgid " -a - select all non-removable media.\n"
+msgstr " --all - bütün təqləri göstər."
+
+#: po/placeholder.h:145 po/placeholder.h:354
+msgid " names or rpm files given on command line are installed.\n"
msgstr ""
-#: po/placeholder.h:130 urpm.pm:244
+#: po/placeholder.h:147 po/placeholder.h:239 urpm.pm:2125
#, c-format
-msgid "unable to determine medium of this hdlist file [%s]"
-msgstr "bu [%s] hdlist faylı medyası tapıla bilmədi"
+msgid "avoid selecting %s as its locales language is not already selected"
+msgstr "%s yerləşdirmə dili seçili olmadığı üçün seçilə bilmir"
+
+#: po/placeholder.h:148 po/placeholder.h:356
+msgid " --complete - use parsehdlist server to complete selection.\n"
+msgstr ""
-#: po/placeholder.h:132
+#: po/placeholder.h:149 po/placeholder.h:246
+#, c-format
+msgid "write config file [%s]"
+msgstr "[%s] quraşdırma faylı yazılır"
+
+#: po/placeholder.h:150 po/placeholder.h:249
#, fuzzy
-msgid " --help - print this help message.\n"
-msgstr " --all - bütün təqləri göstər."
+msgid "unable to build hdlist synthesis, using parsehdlist method"
+msgstr "bütün sintez faylları tapıla bilmir, daranmış hdlist işlədilir"
-#: po/placeholder.h:133 urpmi:383
-msgid "everything already installed"
-msgstr "hər şey artıq qurulmuşdur"
+#: po/placeholder.h:151 po/placeholder.h:413
+msgid ""
+" --distrib - automatically create all media from an installation "
+"medium.\n"
+msgstr ""
+
+#: po/placeholder.h:155 po/placeholder.h:253 urpm.pm:227
+#, c-format
+msgid ""
+"unable to take care of medium \"%s\" as list file is already used by another "
+"medium"
+msgstr ""
+"\"%s\" medyası siyahı faylı başqa medya tərəfindən istifadədə olduğu üçün "
+"diqqətə alına bilir"
+
+#: po/placeholder.h:156 po/placeholder.h:254
+#, fuzzy, c-format
+msgid "examining synthesis file [%s]"
+msgstr "[%s] asılılıqlar siyahısı faylı oxundu"
+
+#: po/placeholder.h:158 po/placeholder.h:256
+#, fuzzy, c-format
+msgid "unable to retrieve pathname for removable medium \"%s\""
+msgstr " \"%s\" medyası yaradıla bilmir\n"
+
+#: po/placeholder.h:160 po/placeholder.h:258 urpm.pm:1722 urpm.pm:1748
+#, c-format
+msgid "there are multiple packages with the same rpm filename \"%s\""
+msgstr "\"%s\" rpm fayl adlı çoxlu fayl tapıldı"
+
+#: po/placeholder.h:161 po/placeholder.h:316 urpme:93
+#, fuzzy, c-format
+msgid ""
+"To satisfy dependencies, the following packages are going to be removed (%d "
+"MB)"
+msgstr ""
+"Asılıqları ortadan qaldırmaq üçün, aşağıdakı paketlər də qurulmalıdır (%d Mb)"
+
+#: po/placeholder.h:163 po/placeholder.h:261
+#, fuzzy
+msgid "retrieving hdlists file..."
+msgstr "[%s] cəhd edilir"
-#: po/placeholder.h:134 urpmi:113
+#: po/placeholder.h:164 po/placeholder.h:330 urpmi:113
#, c-format
msgid "urpmi: unknown option \"-%s\", check usage with --help\n"
msgstr ""
"urpmq: namə'lum seçənək \"-%s\", istifadə qaydasını --help ilə yoxlayın\n"
-#: po/placeholder.h:135 po/placeholder.h:253
-#, fuzzy
-msgid " -y - impose fuzzy search.\n"
-msgstr " --all - bütün təqləri göstər."
+#: po/placeholder.h:165 po/placeholder.h:262 urpm.pm:253
+#, c-format
+msgid "unable to access hdlist file of \"%s\", medium ignored"
+msgstr "\"%s\" medyası hdlist faylına çatıla bilmir, medya rədd edildi"
-#: po/placeholder.h:136 urpmi:217
-msgid "One of the following packages is needed:"
-msgstr "Aşağıdakı paketlərin bir dənəsinə ehtiyac var:"
+#: po/placeholder.h:166 po/placeholder.h:263 urpm.pm:1208
+msgid "unable to register rpm file"
+msgstr "rpm faylı qeyd edilə bilmir"
-#: po/placeholder.h:137 po/placeholder.h:257
-msgid " --update - use only update media.\n"
+#: po/placeholder.h:167 po/placeholder.h:264
+#, c-format
+msgid "\"%s\""
msgstr ""
-#: po/placeholder.h:138 urpmi:321
-msgid ""
-"Installation failed, some files are missing.\n"
-"You may want to update your urpmi database"
+#: po/placeholder.h:168 po/placeholder.h:265 urpm.pm:307
+#, c-format
+msgid "unable to inspect list file for \"%s\", medium ignored"
+msgstr "\"%s\" faylları siyahısı incələnə bilmir, medya rədd edildi"
+
+#: po/placeholder.h:169 po/placeholder.h:266
+#, c-format
+msgid "too many mount points for removable medium \"%s\""
msgstr ""
-#: po/placeholder.h:142
-msgid " --auto - automatically select a good package in choices.\n"
+#: po/placeholder.h:170 po/placeholder.h:268 urpm.pm:299
+#, c-format
+msgid "incoherent list file for \"%s\", medium ignored"
+msgstr "\"%s\" üçün inkoherent siyahı faylı, medya rədd edildi"
+
+#: po/placeholder.h:171 po/placeholder.h:333 po/placeholder.h:453
+msgid " --update - use only update media.\n"
msgstr ""
-#: po/placeholder.h:144 urpmi:329 urpmi:336 urpmi:349 urpmi:360 urpmi:373
-msgid "Installation failed"
-msgstr "Qurulum iflas etdi"
+#: po/placeholder.h:172 po/placeholder.h:269
+#, c-format
+msgid "copy of [%s] failed"
+msgstr "[%s] köçürülmə əməliyyatı bacarılmadı"
-#: po/placeholder.h:145 po/placeholder.h:270
-msgid ""
-" --auto-select - automatically select packages for upgrading the system.\n"
+#: po/placeholder.h:173 po/placeholder.h:462
+#, fuzzy
+msgid " -d - extend query to package dependencies.\n"
+msgstr " paket adsız əmr sətiri)."
+
+#: po/placeholder.h:174 po/placeholder.h:272 urpm.pm:1412 urpm.pm:1419
+#, fuzzy, c-format
+msgid "unable to analyse synthesis data of %s"
+msgstr "\"%s\" hdlist faylı alına bilmir"
+
+#: po/placeholder.h:175 po/placeholder.h:274
+#, c-format
+msgid "retrieving source hdlist (or synthesis) of \"%s\"..."
msgstr ""
-#: po/placeholder.h:147
+#: po/placeholder.h:177 po/placeholder.h:343
#, fuzzy
msgid " --X - use X interface.\n"
msgstr " --all - bütün təqləri göstər."
-#: po/placeholder.h:148 urpmi:267
+#: po/placeholder.h:178 po/placeholder.h:275
+#, fuzzy
+msgid "...copying done"
+msgstr "[%s] cəhd edilir"
+
+#: po/placeholder.h:179 po/placeholder.h:344 urpmi:267
#, c-format
msgid ""
"To satisfy dependencies, the following packages are going to be installed (%"
@@ -706,116 +803,189 @@ msgid ""
msgstr ""
"Asılıqları ortadan qaldırmaq üçün, aşağıdakı paketlər də qurulmalıdır (%d Mb)"
-#: po/placeholder.h:149 po/placeholder.h:273
+#: po/placeholder.h:180 po/placeholder.h:277
#, fuzzy
-msgid " -P - do not search in provides to find package.\n"
-msgstr " --group - təq qrupunu göstər: qrup."
+msgid "copying hdlists file..."
+msgstr "[%s] hdlist faylı oxunur"
-#: po/placeholder.h:150 urpmi:342 urpmi:366
+#: po/placeholder.h:181 po/placeholder.h:278 urpm.pm:188 urpm.pm:200
+#, c-format
+msgid "syntax error in config file at line %s"
+msgstr "quraşdırma faylında %s sətirində sintaksis xətası"
+
+#: po/placeholder.h:182 po/placeholder.h:346 urpmi:342 urpmi:366
msgid "Try installation without checking dependencies? (y/N) "
msgstr "Paket asılılıqlarına fikir vermədən qurmağı sınayım? (b/X) "
-#: po/placeholder.h:151 po/placeholder.h:278
-msgid " --media - use only the media listed by comma.\n"
-msgstr ""
-
-#: po/placeholder.h:152
-msgid ""
-" --best-output - choose best interface according to the environment:\n"
-" X or text mode.\n"
-msgstr ""
+#: po/placeholder.h:183 po/placeholder.h:283 urpm.pm:1212
+msgid "error registering local packages"
+msgstr "yerli paket qeydiyyat xətası"
-#: po/placeholder.h:156 po/placeholder.h:280
-msgid " -v - verbose mode.\n"
+#: po/placeholder.h:184 po/placeholder.h:284
+#, c-format
+msgid "taking removable device as \"%s\""
msgstr ""
-#: po/placeholder.h:157 po/placeholder.h:279
+#: po/placeholder.h:185 po/placeholder.h:353 po/placeholder.h:475
msgid " -p - allow search in provides to find package.\n"
msgstr ""
-#: po/placeholder.h:158
-msgid " names or rpm files given on command line are installed.\n"
-msgstr ""
+#: po/placeholder.h:187 po/placeholder.h:287
+#, fuzzy, c-format
+msgid "copying description file of \"%s\"..."
+msgstr "\"%s\" üçün siyahı faylında bir şey yazılmır"
+
+#: po/placeholder.h:188 po/placeholder.h:288
+#, c-format
+msgid "unable to build hdlist: %s"
+msgstr "hdlist inşa edilə bilmir: %s"
+
+#: po/placeholder.h:189 po/placeholder.h:289 urpm.pm:1811 urpm.pm:1814
+#: urpm.pm:1833
+#, c-format
+msgid "medium \"%s\" is not selected"
+msgstr "\"%s\" medyası seçili deyil"
+
+#: po/placeholder.h:190 po/placeholder.h:292 urpm.pm:269
+#, c-format
+msgid "trying to bypass existing medium \"%s\", avoiding"
+msgstr "mövcud medya \"%s\" yan keçilməyə çalışıldı, imtina edirəm"
-#: po/placeholder.h:159
+#: po/placeholder.h:191 po/placeholder.h:355
#, fuzzy
msgid " -q - quiet mode.\n"
msgstr " --all - bütün təqləri göstər."
-#: po/placeholder.h:160
-msgid " --complete - use parsehdlist server to complete selection.\n"
+#: po/placeholder.h:194 po/placeholder.h:367 po/placeholder.h:465
+msgid ""
+" --force - force invocation even if some packages do not exist.\n"
msgstr ""
-#: po/placeholder.h:161 urpmi:225
+#: po/placeholder.h:196 po/placeholder.h:320 urpme:62
#, c-format
-msgid "What is your choice? (1-%d) "
-msgstr "Seçkiniz? (1-%d)"
+msgid "Using \"%s\" as a substring, I found"
+msgstr ""
-#: po/placeholder.h:162 po/placeholder.h:210 po/placeholder.h:233
-msgid " --wget - use wget to retrieve distant files.\n"
+#: po/placeholder.h:197 po/placeholder.h:372 urpmi:316
+#, c-format
+msgid "installing %s\n"
+msgstr "%s qurulur\n"
+
+#: po/placeholder.h:198 po/placeholder.h:325 urpme:30
+msgid "Remove them all?"
msgstr ""
-#: po/placeholder.h:163
+#: po/placeholder.h:199 po/placeholder.h:373 urpmi:296
+#, c-format
+msgid "Please insert the medium named \"%s\" on device [%s]"
+msgstr "Lütfən \"%s\" medyasını [%s] avadanlığına yerləşdirin"
+
+#: po/placeholder.h:200 po/placeholder.h:304 urpm.pm:1305
+#, c-format
+msgid "The following packages contain %s: %s"
+msgstr "Aşağıdakı paketlər %s daxıl edir: %s"
+
+#: po/placeholder.h:201 po/placeholder.h:306
#, fuzzy, c-format
-msgid ""
-"urpmi version %s\n"
-"Copyright (C) 1999, 2000, 2001 MandrakeSoft.\n"
-"This is free software and may be redistributed under the terms of the GNU "
-"GPL.\n"
-"usage:\n"
-msgstr "Bu, pulsuz proqramdır və GNU GPL lisenziyası altında dağıdıla bilər."
+msgid "examining hdlist file [%s]"
+msgstr "[%s] hdlist faylı oxunur"
-#: po/placeholder.h:169 urpmi:350 urpmi:374
-msgid "Try installation even more strongly (--force)? (y/N) "
-msgstr "Quruluşu zorlayaraq sınayım (--force)? (b/X)"
+#: po/placeholder.h:202 po/placeholder.h:307 urpm.pm:1191
+#, fuzzy
+msgid "no entries relocated in depslist"
+msgstr "asılılıqlar siyahısında %s sahə yenidən yerləşdirildi"
-#: po/placeholder.h:171 po/placeholder.h:269
-msgid ""
-" --force - force invocation even if some packages do not exist.\n"
+#: po/placeholder.h:203 po/placeholder.h:412
+msgid " --update - create an update medium.\n"
msgstr ""
-#: po/placeholder.h:172 urpmi:228
-msgid "Sorry, bad choice, try again\n"
-msgstr "Xətalı seçənək, təkrar sınayın\n"
+#: po/placeholder.h:205 po/placeholder.h:445
+#, fuzzy
+msgid ""
+" -d - force complete computation of depslist.ordered file.\n"
+msgstr " --group - təq qrupunu göstər: qrup."
-#: po/placeholder.h:174
-msgid " -a - select all matches on command line.\n"
-msgstr ""
+#: po/placeholder.h:206 po/placeholder.h:375 po/placeholder.h:477 urpmi:286
+#: urpmq:151
+msgid "unable to get source packages, aborting"
+msgstr "qaynaq paketi alına bilmir, çıxılır"
-#: po/placeholder.h:175 po/placeholder.h:203 po/placeholder.h:226
-msgid " --curl - use curl to retrieve distant files.\n"
-msgstr ""
+#: po/placeholder.h:207 po/placeholder.h:308 urpm.pm:1896
+#, fuzzy
+msgid "...retrieving done"
+msgstr "[%s] cəhd edilir"
-#: po/placeholder.h:176 urpmi:316
+#: po/placeholder.h:208 po/placeholder.h:309 urpm.pm:2006
#, c-format
-msgid "installing %s\n"
-msgstr "%s qurulur\n"
+msgid "selecting %s using obsoletes"
+msgstr "%s mütləqlər işlədilərək seçilir"
-#: po/placeholder.h:177 urpmi:296
+#: po/placeholder.h:209 po/placeholder.h:310 urpm.pm:151
#, c-format
-msgid "Please insert the medium named \"%s\" on device [%s]"
-msgstr "Lütfən \"%s\" medyasını [%s] avadanlığına yerləşdirin"
+msgid "curl failed: exited with %d or signal %d\n"
+msgstr ""
-#: po/placeholder.h:179 po/placeholder.h:281 urpmi:286 urpmq:151
-msgid "unable to get source packages, aborting"
-msgstr "qaynaq paketi alına bilmir, çıxılır"
+#: po/placeholder.h:210 po/placeholder.h:311 urpm.pm:2122
+#, c-format
+msgid "selecting %s by selection on files"
+msgstr "%s fayllar üstündə seçilərək seçilir"
-#: po/placeholder.h:180 urpmi:297
-msgid "Press Enter when it's done..."
-msgstr "Qurtardığında enter düyməsinə basın..."
+#: po/placeholder.h:211 po/placeholder.h:313
+#, fuzzy, c-format
+msgid "copying source list of \"%s\"..."
+msgstr "\"%s\" üçün siyahı faylında bir şey yazılmır"
-#: po/placeholder.h:181 urpmi:131
+#: po/placeholder.h:212 po/placeholder.h:377 urpmi:131
#, fuzzy
msgid "Only superuser is allowed to install packages"
msgstr ""
"Yerli paketləri qurmaq üçün sadəcə olaraq sistem operatoru məs'uliyyətlidir"
-#: po/placeholder.h:182 urpmi:216
-#, c-format
-msgid "One of the following packages is needed to install %s:"
-msgstr "Aşağıdakı paketlərin bir dənəsinə %s ehtiyac hiss edir:"
+#: po/placeholder.h:213 po/placeholder.h:314 urpm.pm:96
+msgid "wget is missing\n"
+msgstr ""
+
+#: po/placeholder.h:240
+#, fuzzy, c-format
+msgid ""
+"removing %s to upgrade to %s ...\n"
+" since it will not be updated otherwise"
+msgstr ""
+"düzgün aparıla bilməyəcəyindən %s\n"
+" %s olaraq güncəllənmək üçün çıxardılır!"
+
+#: po/placeholder.h:296
+#, fuzzy, c-format
+msgid ""
+"removing %s to upgrade to %s ...\n"
+" since it will not upgrade correctly!"
+msgstr ""
+"düzgün aparıla bilməyəcəyindən %s\n"
+" %s olaraq güncəllənmək üçün çıxardılır!"
-#: po/placeholder.h:183 urpmi.addmedia:70
+#: po/placeholder.h:334 urpmi:321
+msgid ""
+"Installation failed, some files are missing.\n"
+"You may want to update your urpmi database"
+msgstr ""
+
+#: po/placeholder.h:348
+msgid ""
+" --best-output - choose best interface according to the environment:\n"
+" X or text mode.\n"
+msgstr ""
+
+#: po/placeholder.h:359
+#, fuzzy, c-format
+msgid ""
+"urpmi version %s\n"
+"Copyright (C) 1999, 2000, 2001 MandrakeSoft.\n"
+"This is free software and may be redistributed under the terms of the GNU "
+"GPL.\n"
+"usage:\n"
+msgstr "Bu, pulsuz proqramdır və GNU GPL lisenziyası altında dağıdıla bilər."
+
+#: po/placeholder.h:379 urpmi.addmedia:70
#, fuzzy, c-format
msgid ""
"%s\n"
@@ -824,7 +994,7 @@ msgstr ""
"%s\n"
"<hdlistin nisbi yolu> mövcud deyildir\n"
-#: po/placeholder.h:187
+#: po/placeholder.h:383
#, fuzzy
msgid ""
"usage: urpmi.addmedia [options] <name> <url> [with <relative_path>]\n"
@@ -845,17 +1015,7 @@ msgstr ""
" http://<verici>/<cığır> with <nisbi fayl adı və ya hdlist>\n"
" removable_<avadanlıq>://<cığır>\n"
-#: po/placeholder.h:197 urpmi.addmedia:92
-#, c-format
-msgid "unable to create medium \"%s\"\n"
-msgstr " \"%s\" medyası yaradıla bilmir\n"
-
-#: po/placeholder.h:198 urpmi.addmedia:76 urpmi.addmedia:93
-#, c-format
-msgid "unable to update medium \"%s\"\n"
-msgstr " \"%s\" medyası güncəllənə bilmir\n"
-
-#: po/placeholder.h:199 po/placeholder.h:222 po/placeholder.h:238
+#: po/placeholder.h:395 po/placeholder.h:415 po/placeholder.h:433
#: urpmi.addmedia:57
#, c-format
msgid ""
@@ -863,12 +1023,7 @@ msgid ""
"unknown options '%s'\n"
msgstr ""
-#: po/placeholder.h:204 po/placeholder.h:231 po/placeholder.h:246
-#, fuzzy
-msgid " -c - clean headers cache directory.\n"
-msgstr " --all - bütün təqləri göstər."
-
-#: po/placeholder.h:205 urpmi.addmedia:82
+#: po/placeholder.h:401 urpmi.addmedia:82
#, c-format
msgid ""
"%s\n"
@@ -877,17 +1032,7 @@ msgstr ""
"%s\n"
"<hdlistin nisbi yolu> mövcud deyildir\n"
-#: po/placeholder.h:209 po/placeholder.h:232
-#, fuzzy
-msgid " -f - force generation of hdlist files.\n"
-msgstr " --group - təq qrupunu göstər: qrup."
-
-#: po/placeholder.h:211
-#, fuzzy
-msgid " -h - try to find and use synthesis or hdlist file.\n"
-msgstr " --group - təq qrupunu göstər: qrup."
-
-#: po/placeholder.h:212 urpmi.addmedia:84
+#: po/placeholder.h:408 urpmi.addmedia:84
#, c-format
msgid ""
"%s\n"
@@ -896,60 +1041,7 @@ msgstr ""
"%s\n"
"əksik ftp medyası ilə 'with'\n"
-#: po/placeholder.h:216
-msgid " --update - create an update medium.\n"
-msgstr ""
-
-#: po/placeholder.h:217
-msgid ""
-" --distrib - automatically create all media from an installation "
-"medium.\n"
-msgstr ""
-
-#: po/placeholder.h:218
-#, fuzzy
-msgid ""
-"usage: urpmi.update [options] <name> ...\n"
-"where <name> is a medium name to update.\n"
-msgstr ""
-"istifadə qaydası urpmi.removemedia [-a] <ad> ...\n"
-" <ad> çıxardılacaq medya adı.\n"
-" -a medya seç.\n"
-"\n"
-"namə'lum seçənəklər '%s' \n"
-
-#: po/placeholder.h:227 urpmi.update:59
-#, c-format
-msgid ""
-"the entry to update is missing\n"
-"(one of %s)\n"
-msgstr ""
-"güncəllənəcək giriş mövcud deyildir\n"
-"(%s dan (dən) biri)\n"
-
-#: po/placeholder.h:234
-#, fuzzy
-msgid ""
-" -d - force complete computation of depslist.ordered file.\n"
-msgstr " --group - təq qrupunu göstər: qrup."
-
-#: po/placeholder.h:235 urpmi.update:57
-msgid "nothing to update (use urpmi.addmedia to add a media)\n"
-msgstr ""
-"güncəllənəcək bir şey yoxdur (medya əlavə etmək üçün urpmi.addmedia "
-"işlədin)\n"
-
-#: po/placeholder.h:236
-#, fuzzy
-msgid " -a - select all non-removable media.\n"
-msgstr " --all - bütün təqləri göstər."
-
-#: po/placeholder.h:237 urpmi.removemedia:47
-msgid "nothing to remove (use urpmi.addmedia to add a media)\n"
-msgstr ""
-"çıxardılacaq bir şey yoxdur (medya əlavə etmək üçün urpmi.addmedia işlədin)\n"
-
-#: po/placeholder.h:242 urpmi.removemedia:49
+#: po/placeholder.h:419 urpmi.removemedia:49
#, c-format
msgid ""
"the entry to remove is missing\n"
@@ -958,12 +1050,7 @@ msgstr ""
"çıxardılacaq giriş mövcud deyildir\n"
"(%s dan (dən) biri)\n"
-#: po/placeholder.h:247
-#, fuzzy
-msgid " -a - select all media.\n"
-msgstr " --all - bütün təqləri göstər."
-
-#: po/placeholder.h:248
+#: po/placeholder.h:425
#, fuzzy
msgid ""
"usage: urpmi.removemedia [-a] <name> ...\n"
@@ -975,35 +1062,28 @@ msgstr ""
"\n"
"namə'lum seçənəklər '%s' \n"
-#: po/placeholder.h:252
-#, fuzzy
-msgid " -h - print this help message.\n"
-msgstr " --all - bütün təqləri göstər."
-
-#: po/placeholder.h:254
+#: po/placeholder.h:429
#, fuzzy
-msgid " -g - print groups too with name.\n"
-msgstr " --group - təq qrupunu göstər: qrup."
-
-#: po/placeholder.h:255 urpmq:90
-#, c-format
-msgid "urpmq: cannot read rpm file \"%s\"\n"
-msgstr "urpmq: \"%s\" rpm faylı oxuna bilmir\n"
-
-#: po/placeholder.h:256
-msgid " names or rpm files given on command line are queried.\n"
+msgid ""
+"usage: urpmi.update [options] <name> ...\n"
+"where <name> is a medium name to update.\n"
msgstr ""
+"istifadə qaydası urpmi.removemedia [-a] <ad> ...\n"
+" <ad> çıxardılacaq medya adı.\n"
+" -a medya seç.\n"
+"\n"
+"namə'lum seçənəklər '%s' \n"
-#: po/placeholder.h:258
-#, fuzzy
-msgid " -r - print version and release too with name.\n"
-msgstr " paket adsız əmr sətiri)."
-
-#: po/placeholder.h:259
-msgid " -f - print version, release and arch with name.\n"
+#: po/placeholder.h:438 urpmi.update:59
+#, c-format
+msgid ""
+"the entry to update is missing\n"
+"(one of %s)\n"
msgstr ""
+"güncəllənəcək giriş mövcud deyildir\n"
+"(%s dan (dən) biri)\n"
-#: po/placeholder.h:260
+#: po/placeholder.h:456
#, fuzzy, c-format
msgid ""
"urpmq version %s\n"
@@ -1013,46 +1093,12 @@ msgid ""
"usage:\n"
msgstr "Bu, pulsuz proqramdır və GNU GPL lisenziyası altında dağıdıla bilər."
-#: po/placeholder.h:266
-#, fuzzy
-msgid " -d - extend query to package dependencies.\n"
-msgstr " paket adsız əmr sətiri)."
-
-#: po/placeholder.h:267
-msgid ""
-" --sources - give all source packages before downloading (root only).\n"
-msgstr ""
-
-#: po/placeholder.h:268
-msgid ""
-" -c - choose complete method for resolving requires closure.\n"
-msgstr ""
-
-#: po/placeholder.h:271 urpmq:137
-msgid ""
-"some packages have to be removed for being upgraded, this is not supported "
-"yet\n"
-msgstr ""
-"bə'zi paketlər güncəllənmək üçün çıxardılmalıdırlar, bu da hələlik "
-"dəstəklənmir\n"
-
-#: po/placeholder.h:272 urpmq:87
-#, c-format
-msgid "urpmq: unknown option \"-%s\", check usage with --help\n"
-msgstr ""
-"urpmq: namə'lum seçənək \"-%s\", istifadə qaydasını --help ilə yoxlayın\n"
-
-#: po/placeholder.h:274
+#: po/placeholder.h:470
msgid ""
" --headers - extract headers for package listed from urpmi db to\n"
" stdout (root only).\n"
msgstr ""
-#: po/placeholder.h:282
-msgid ""
-" -u - remove package if a better version is already installed.\n"
-msgstr ""
-
#: urpm.pm:2030 urpm.pm:2039
#, c-format
msgid "removing %s to upgrade to %s ..."
@@ -1096,18 +1142,18 @@ msgstr ""
msgid ");"
msgstr ");"
-#: urpmi.update:41
-#, fuzzy
-msgid "usage: urpmi.update [options] <name> ..."
-msgstr "istifadə qaydası: urpmi.update [-a] <ad> ..."
+#: urpmi.removemedia:34
+msgid "usage: urpmi.removemedia [-a] <name> ..."
+msgstr "istifadə qaydası: urpmi.removemedia [-a] <ad> ..."
#: urpmi.removemedia:38 urpmi.update:49
msgid ", $_);"
msgstr ", $_);"
-#: urpmi.removemedia:34
-msgid "usage: urpmi.removemedia [-a] <name> ..."
-msgstr "istifadə qaydası: urpmi.removemedia [-a] <ad> ..."
+#: urpmi.update:41
+#, fuzzy
+msgid "usage: urpmi.update [options] <name> ..."
+msgstr "istifadə qaydası: urpmi.update [-a] <ad> ..."
#: urpmq:34
#, c-format
diff --git a/po/bg.po b/po/bg.po
index d6b75612..1dd75640 100644
--- a/po/bg.po
+++ b/po/bg.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: urpmi 1.7\n"
-"POT-Creation-Date: 2002-01-30 14:07+0100\n"
+"POT-Creation-Date: 2002-02-06 14:21+0100\n"
"PO-Revision-Date: 2000-01-30 17:59+0100\n"
"Last-Translator: Boyan Ivanov <boyan17@bulgaria.com>\n"
"Language-Team: Bulgarian\n"
@@ -25,27 +25,31 @@ msgstr ""
" ...\n"
" $rpm\n"
-#: _irpm:31 po/placeholder.h:178 urpmi:268
+#: _irpm:31 po/placeholder.h:204 po/placeholder.h:322 po/placeholder.h:374
+#: urpme:29 urpmi:268
msgid "Is it OK?"
msgstr " "
-#: _irpm:33 po/placeholder.h:170 urpmi:271 urpmi:299
+#: _irpm:33 po/placeholder.h:193 po/placeholder.h:366 urpmi:271 urpmi:299
msgid "Ok"
msgstr ""
-#: _irpm:34 po/placeholder.h:131 urpmi:272 urpmi:300
+#: _irpm:34 po/placeholder.h:162 po/placeholder.h:327 urpmi:272 urpmi:300
msgid "Cancel"
msgstr ""
-#: _irpm:40 po/placeholder.h:143 urpmi:276 urpmi:340 urpmi:364
+#: _irpm:40 po/placeholder.h:176 po/placeholder.h:326 po/placeholder.h:339
+#: urpme:32 urpmi:276 urpmi:340 urpmi:364
msgid "Nn"
msgstr "Nn"
-#: _irpm:41 po/placeholder.h:146 urpmi:277 urpmi:341 urpmi:365
+#: _irpm:41 po/placeholder.h:89 po/placeholder.h:321 po/placeholder.h:342
+#: urpme:34 urpmi:277 urpmi:341 urpmi:365
msgid "Yy"
msgstr "Yy"
-#: _irpm:42 po/placeholder.h:173 urpmi:278
+#: _irpm:42 po/placeholder.h:195 po/placeholder.h:318 po/placeholder.h:369
+#: urpme:94 urpmi:278
msgid " (Y/n) "
msgstr " (/) "
@@ -53,619 +57,705 @@ msgstr " (/) "
msgid "$rpm: command not found\n"
msgstr "$rpm: \n"
-#: po/placeholder.h:6
+#: po/placeholder.h:6 po/placeholder.h:154
#, c-format
msgid "urpmf version %s"
msgstr ""
-#: po/placeholder.h:7
+#: po/placeholder.h:7 po/placeholder.h:192
msgid "Copyright (C) 1999,2000,2001 MandrakeSoft."
msgstr ""
-#: po/placeholder.h:8
+#: po/placeholder.h:8 po/placeholder.h:152
msgid ""
"This is free software and may be redistributed under the terms of the GNU "
"GPL."
msgstr ""
-#: po/placeholder.h:9 po/placeholder.h:26
+#: po/placeholder.h:9 po/placeholder.h:26 po/placeholder.h:130
#, fuzzy
msgid "usage: urpmf [options] <file>"
msgstr " : rpmf [<>]"
-#: po/placeholder.h:10
+#: po/placeholder.h:10 po/placeholder.h:109
msgid ""
" --quiet - do not print tag name (default if no tag given on command"
msgstr ""
-#: po/placeholder.h:11
+#: po/placeholder.h:11 po/placeholder.h:153
msgid " line, incompatible with interactive mode)."
msgstr ""
-#: po/placeholder.h:12
+#: po/placeholder.h:12 po/placeholder.h:127
msgid " --all - print all tags."
msgstr ""
-#: po/placeholder.h:13
+#: po/placeholder.h:13 po/placeholder.h:157
msgid ""
" --name - print tag name: rpm filename (assumed if no tag given on"
msgstr ""
-#: po/placeholder.h:14
+#: po/placeholder.h:14 po/placeholder.h:159
msgid " command line but without package name)."
msgstr ""
-#: po/placeholder.h:15
+#: po/placeholder.h:15 po/placeholder.h:102
msgid " --group - print tag group: group."
msgstr ""
-#: po/placeholder.h:16
+#: po/placeholder.h:16 po/placeholder.h:87
msgid " --size - print tag size: size."
msgstr ""
-#: po/placeholder.h:17
+#: po/placeholder.h:17 po/placeholder.h:134
msgid " --serial - print tag serial: serial."
msgstr ""
-#: po/placeholder.h:18
+#: po/placeholder.h:18 po/placeholder.h:146
msgid " --summary - print tag summary: summary."
msgstr ""
-#: po/placeholder.h:19
+#: po/placeholder.h:19 po/placeholder.h:120
msgid " --description - print tag description: description."
msgstr ""
-#: po/placeholder.h:20
+#: po/placeholder.h:20 po/placeholder.h:138
msgid " --provides - print tag provides: all provides (multiple lines)."
msgstr ""
-#: po/placeholder.h:21
+#: po/placeholder.h:21 po/placeholder.h:186
msgid " --requires - print tag requires: all requires (multiple lines)."
msgstr ""
-#: po/placeholder.h:22
+#: po/placeholder.h:22 po/placeholder.h:41
msgid " --files - print tag files: all files (multiple lines)."
msgstr ""
-#: po/placeholder.h:23
+#: po/placeholder.h:23 po/placeholder.h:34
msgid ""
" --conflicts - print tag conflicts: all conflicts (multiple lines)."
msgstr ""
-#: po/placeholder.h:24
+#: po/placeholder.h:24 po/placeholder.h:106
msgid ""
" --obsoletes - print tag obsoletes: all obsoletes (multiple lines)."
msgstr ""
-#: po/placeholder.h:25
+#: po/placeholder.h:25 po/placeholder.h:128
msgid " --prereqs - print tag prereqs: all prereqs (multiple lines)."
msgstr ""
-#: po/placeholder.h:27
+#: po/placeholder.h:27 po/placeholder.h:62
msgid "try urpmf --help for more options"
msgstr ""
-#: po/placeholder.h:28
+#: po/placeholder.h:28 po/placeholder.h:49
msgid "no full media list was found"
msgstr ""
-#: po/placeholder.h:29
+#: po/placeholder.h:29 po/placeholder.h:214
#, c-format
msgid "unable to write config file [%s]"
msgstr ""
-#: po/placeholder.h:30 urpm.pm:1892
-msgid "retrieving rpms files..."
-msgstr ""
-
-#: po/placeholder.h:31
+#: po/placeholder.h:30 po/placeholder.h:216
msgid "examining whole urpmi database"
msgstr ""
-#: po/placeholder.h:32
-#, c-format
-msgid "using different removable device [%s] for \"%s\""
+#: po/placeholder.h:31 po/placeholder.h:331 po/placeholder.h:449
+msgid " -y - impose fuzzy search.\n"
msgstr ""
-#: po/placeholder.h:33
+#: po/placeholder.h:32 po/placeholder.h:220 urpm.pm:280
#, c-format
-msgid "nothing to write in list file for \"%s\""
-msgstr ""
-
-#: po/placeholder.h:34
-msgid ""
-"unable to access first installation medium (no Mandrake/base/hdlists file "
-"found)"
+msgid "unable to find list file for \"%s\", medium ignored"
msgstr ""
-#: po/placeholder.h:35 urpm.pm:280
+#: po/placeholder.h:33 po/placeholder.h:218
#, c-format
-msgid "unable to find list file for \"%s\", medium ignored"
+msgid "nothing to write in list file for \"%s\""
msgstr ""
-#: po/placeholder.h:36
+#: po/placeholder.h:35 po/placeholder.h:221
#, c-format
msgid "unable to parse hdlist file of \"%s\""
msgstr ""
-#: po/placeholder.h:37
+#: po/placeholder.h:36 po/placeholder.h:222
#, c-format
msgid "nothing written in list file for \"%s\""
msgstr ""
-#: po/placeholder.h:38
-#, c-format
-msgid "retrieving description file of \"%s\"..."
-msgstr ""
-
-#: po/placeholder.h:39
-msgid "unable to access first installation medium"
-msgstr ""
-
-#: po/placeholder.h:40 urpm.pm:1768
-#, c-format
-msgid "package %s is not found."
+#: po/placeholder.h:37 po/placeholder.h:463
+msgid ""
+" --sources - give all source packages before downloading (root only).\n"
msgstr ""
-#: po/placeholder.h:41 urpm.pm:1129
-#, c-format
-msgid "unmounting %s"
+#: po/placeholder.h:38 po/placeholder.h:341 po/placeholder.h:466
+msgid ""
+" --auto-select - automatically select packages for upgrading the system.\n"
msgstr ""
-#: po/placeholder.h:42
+#: po/placeholder.h:39 po/placeholder.h:223
#, c-format
-msgid "removing %d obsolete headers in cache"
+msgid "retrieving description file of \"%s\"..."
msgstr ""
-#: po/placeholder.h:43
+#: po/placeholder.h:40 po/placeholder.h:225 urpm.pm:1769
#, c-format
-msgid "no hdlist file found for medium \"%s\""
+msgid "package %s is not found."
msgstr ""
-#: po/placeholder.h:44 urpm.pm:209
+#: po/placeholder.h:42 po/placeholder.h:229 urpm.pm:209
#, c-format
msgid "medium \"%s\" tries to use an already used hdlist, medium ignored"
msgstr ""
-#: po/placeholder.h:45 urpm.pm:1413
-msgid "<non printable chars>"
-msgstr ""
-
-#: po/placeholder.h:46
-msgid "problem reading hdlist file, trying again"
+#: po/placeholder.h:43 po/placeholder.h:317 urpme:52
+msgid "unknown package(s) "
msgstr ""
-#: po/placeholder.h:47 urpm.pm:233
+#: po/placeholder.h:44 po/placeholder.h:232 urpm.pm:233
#, c-format
msgid "unable to use name \"%s\" for unnamed medium because it is already used"
msgstr ""
-#: po/placeholder.h:48
-#, c-format
-msgid "removing medium \"%s\""
+#: po/placeholder.h:45 po/placeholder.h:231
+msgid "problem reading hdlist file, trying again"
msgstr ""
-#: po/placeholder.h:49 urpm.pm:240
+#: po/placeholder.h:46 po/placeholder.h:234 urpm.pm:240
#, c-format
msgid "unable to take medium \"%s\" into account as no list file [%s] exists"
msgstr ""
-#: po/placeholder.h:50
+#: po/placeholder.h:47 po/placeholder.h:235
msgid "keeping only files referenced in provides"
msgstr ""
-#: po/placeholder.h:51
-#, c-format
-msgid "unable to build synthesis file for medium \"%s\""
-msgstr ""
-
-#: po/placeholder.h:52
+#: po/placeholder.h:48 po/placeholder.h:237
#, c-format
msgid "found %d headers in cache"
msgstr ""
-#: po/placeholder.h:53
-#, c-format
-msgid "trying to select multiple medium: %s"
-msgstr ""
-
-#: po/placeholder.h:54 urpm.pm:2125
+#: po/placeholder.h:50 po/placeholder.h:394 urpmi.addmedia:76
+#: urpmi.addmedia:93
#, c-format
-msgid "avoid selecting %s as its locales language is not already selected"
+msgid "unable to update medium \"%s\"\n"
msgstr ""
-#: po/placeholder.h:55
-#, c-format
-msgid ""
-"removing %s to upgrade to %s ...\n"
-" since it will not be updated otherwise"
+#: po/placeholder.h:51 po/placeholder.h:400 po/placeholder.h:423
+#: po/placeholder.h:442
+msgid " -c - clean headers cache directory.\n"
msgstr ""
-#: po/placeholder.h:59
+#: po/placeholder.h:52 po/placeholder.h:244
#, c-format
msgid "medium \"%s\" already exists"
msgstr ""
-#: po/placeholder.h:60
+#: po/placeholder.h:53 po/placeholder.h:245
#, c-format
msgid "unable to write list file of \"%s\""
msgstr ""
-#: po/placeholder.h:61
-#, c-format
-msgid "write config file [%s]"
+#: po/placeholder.h:54 po/placeholder.h:452
+msgid " names or rpm files given on command line are queried.\n"
msgstr ""
-#: po/placeholder.h:62 urpm.pm:1302
+#: po/placeholder.h:55 po/placeholder.h:247 urpm.pm:1302
#, fuzzy, c-format
msgid "no package named %s"
msgstr " %s\n"
-#: po/placeholder.h:63
-#, c-format
-msgid "built hdlist synthesis file for medium \"%s\""
-msgstr ""
+#: po/placeholder.h:56 po/placeholder.h:365 urpmi:350 urpmi:374
+msgid "Try installation even more strongly (--force)? (y/N) "
+msgstr " - (--force)? (/) "
-#: po/placeholder.h:64
-msgid "unable to build hdlist synthesis, using parsehdlist method"
+#: po/placeholder.h:57 po/placeholder.h:250 urpm.pm:275
+#, c-format
+msgid "unable to find hdlist file for \"%s\", medium ignored"
msgstr ""
-#: po/placeholder.h:65 urpm.pm:275
+#: po/placeholder.h:58 po/placeholder.h:248
#, c-format
-msgid "unable to find hdlist file for \"%s\", medium ignored"
+msgid "built hdlist synthesis file for medium \"%s\""
msgstr ""
-#: po/placeholder.h:66
+#: po/placeholder.h:59 po/placeholder.h:251
#, fuzzy
msgid "urpmi database locked"
msgstr ",rpm ,\n"
-#: po/placeholder.h:67 urpm.pm:1118
-#, fuzzy, c-format
-msgid "mounting %s"
-msgstr " %s\n"
+#: po/placeholder.h:60 po/placeholder.h:319 urpme:63
+#, fuzzy
+msgid " (y/N) "
+msgstr " (/) "
-#: po/placeholder.h:68 urpm.pm:227
-#, c-format
+#: po/placeholder.h:61 po/placeholder.h:370
+msgid " -a - select all matches on command line.\n"
+msgstr ""
+
+#: po/placeholder.h:63 po/placeholder.h:467 urpmq:137
msgid ""
-"unable to take care of medium \"%s\" as list file is already used by another "
-"medium"
+"some packages have to be removed for being upgraded, this is not supported "
+"yet\n"
msgstr ""
-#: po/placeholder.h:69
-#, c-format
-msgid "examining synthesis file [%s]"
+#: po/placeholder.h:64 po/placeholder.h:252 urpm.pm:1118
+#, fuzzy, c-format
+msgid "mounting %s"
+msgstr " %s\n"
+
+#: po/placeholder.h:65 po/placeholder.h:405 po/placeholder.h:443
+msgid " -f - force generation of hdlist files.\n"
msgstr ""
-#: po/placeholder.h:70 urpm.pm:98
+#: po/placeholder.h:66 po/placeholder.h:255 urpm.pm:98
#, c-format
msgid "wget failed: exited with %d or signal %d\n"
msgstr ""
-#: po/placeholder.h:71
-#, c-format
-msgid "unable to retrieve pathname for removable medium \"%s\""
+#: po/placeholder.h:67 po/placeholder.h:414 urpmi.removemedia:47
+msgid "nothing to remove (use urpmi.addmedia to add a media)\n"
msgstr ""
-#: po/placeholder.h:72 urpm.pm:1887
+#: po/placeholder.h:68 po/placeholder.h:257 urpm.pm:1886
#, c-format
msgid "malformed input: [%s]"
msgstr ""
-#: po/placeholder.h:73 urpm.pm:1721 urpm.pm:1747
-#, c-format
-msgid "there are multiple packages with the same rpm filename \"%s\""
+#: po/placeholder.h:69 po/placeholder.h:478
+msgid ""
+" -u - remove package if a better version is already installed.\n"
msgstr ""
-#: po/placeholder.h:74
+#: po/placeholder.h:70 po/placeholder.h:378 urpmi:216
+#, fuzzy, c-format
+msgid "One of the following packages is needed to install %s:"
+msgstr " :"
+
+#: po/placeholder.h:71 po/placeholder.h:376 urpmi:297
+msgid "Press Enter when it's done..."
+msgstr " enter, "
+
+#: po/placeholder.h:72 po/placeholder.h:259
msgid "...copying failed"
msgstr ""
-#: po/placeholder.h:75 urpm.pm:212
+#: po/placeholder.h:73 po/placeholder.h:260 urpm.pm:212
#, c-format
msgid "medium \"%s\" tries to use an already used list, medium ignored"
msgstr ""
-#: po/placeholder.h:76
-msgid "retrieving hdlists file..."
-msgstr ""
-
-#: po/placeholder.h:77 urpm.pm:253
-#, c-format
-msgid "unable to access hdlist file of \"%s\", medium ignored"
+#: po/placeholder.h:74 po/placeholder.h:448
+msgid " -h - print this help message.\n"
msgstr ""
-#: po/placeholder.h:78 urpm.pm:1208
-msgid "unable to register rpm file"
+#: po/placeholder.h:75 po/placeholder.h:450
+msgid " -g - print groups too with name.\n"
msgstr ""
-#: po/placeholder.h:79
-#, c-format
-msgid "\"%s\""
+#: po/placeholder.h:76 po/placeholder.h:424
+msgid " -a - select all media.\n"
msgstr ""
-#: po/placeholder.h:80 urpm.pm:307
+#: po/placeholder.h:77 po/placeholder.h:267
#, c-format
-msgid "unable to inspect list file for \"%s\", medium ignored"
+msgid "invalid hdlist description \"%s\" in hdlists file"
msgstr ""
-#: po/placeholder.h:81
-#, c-format
-msgid "too many mount points for removable medium \"%s\""
+#: po/placeholder.h:78 po/placeholder.h:407
+msgid " -h - try to find and use synthesis or hdlist file.\n"
msgstr ""
-#: po/placeholder.h:82
-#, c-format
-msgid "invalid hdlist description \"%s\" in hdlists file"
+#: po/placeholder.h:79 po/placeholder.h:454
+msgid " -r - print version and release too with name.\n"
msgstr ""
-#: po/placeholder.h:83 urpm.pm:299
-#, c-format
-msgid "incoherent list file for \"%s\", medium ignored"
+#: po/placeholder.h:80 po/placeholder.h:455
+msgid " -f - print version, release and arch with name.\n"
msgstr ""
-#: po/placeholder.h:84
-#, c-format
-msgid "copy of [%s] failed"
+#: po/placeholder.h:81 po/placeholder.h:338
+msgid " --auto - automatically select a good package in choices.\n"
msgstr ""
-#: po/placeholder.h:85 urpm.pm:1420
+#: po/placeholder.h:82 po/placeholder.h:270 urpm.pm:1420
#, c-format
msgid "unable to parse correctly [%s]"
msgstr ""
-#: po/placeholder.h:86 urpm.pm:1421
-#, c-format
-msgid "read synthesis file [%s]"
+#: po/placeholder.h:83 po/placeholder.h:446 urpmi.update:57
+msgid "nothing to update (use urpmi.addmedia to add a media)\n"
msgstr ""
-#: po/placeholder.h:87 urpm.pm:1412 urpm.pm:1419
+#: po/placeholder.h:84 po/placeholder.h:271 urpm.pm:1421
#, c-format
-msgid "unable to analyse synthesis data of %s"
+msgid "read synthesis file [%s]"
msgstr ""
-#: po/placeholder.h:88 urpm.pm:93
+#: po/placeholder.h:85 po/placeholder.h:273 urpm.pm:93
msgid "no webfetch (curl or wget currently) found\n"
msgstr ""
-#: po/placeholder.h:89
-#, c-format
-msgid "retrieving source hdlist (or synthesis) of \"%s\"..."
+#: po/placeholder.h:86 po/placeholder.h:464
+msgid ""
+" -c - choose complete method for resolving requires closure.\n"
msgstr ""
-#: po/placeholder.h:90
-msgid "...copying done"
+#: po/placeholder.h:88 po/placeholder.h:393 urpmi.addmedia:92
+#, c-format
+msgid "unable to create medium \"%s\"\n"
msgstr ""
-#: po/placeholder.h:91
+#: po/placeholder.h:90 po/placeholder.h:276
#, c-format
msgid "copying source hdlist (or synthesis) of \"%s\"..."
msgstr ""
-#: po/placeholder.h:92
-msgid "copying hdlists file..."
+#: po/placeholder.h:91 po/placeholder.h:468 urpmq:87
+#, c-format
+msgid "urpmq: unknown option \"-%s\", check usage with --help\n"
msgstr ""
-#: po/placeholder.h:93 urpm.pm:188 urpm.pm:200
-#, c-format
-msgid "syntax error in config file at line %s"
+#: po/placeholder.h:92 po/placeholder.h:324 urpme:39
+#, fuzzy
+msgid "usage: urpme [-a] [--auto] <packages...>\n"
msgstr ""
+": urpmi [-h] [--auto] [--force] [-a] __ "
+"[__...]\n"
-#: po/placeholder.h:94
+#: po/placeholder.h:93 po/placeholder.h:279
#, c-format
msgid "building hdlist [%s]"
msgstr ""
-#: po/placeholder.h:95 urpm.pm:1822
-#, c-format
-msgid "unable to read rpm file [%s] from medium \"%s\""
+#: po/placeholder.h:94 po/placeholder.h:347 po/placeholder.h:474
+msgid " --media - use only the media listed by comma.\n"
msgstr ""
-#: po/placeholder.h:96
+#: po/placeholder.h:95 po/placeholder.h:281
#, c-format
msgid "added medium %s"
msgstr ""
-#: po/placeholder.h:97
+#: po/placeholder.h:96 po/placeholder.h:280 urpm.pm:1821
+#, c-format
+msgid "unable to read rpm file [%s] from medium \"%s\""
+msgstr ""
+
+#: po/placeholder.h:97 po/placeholder.h:282
msgid "retrieve of source hdlist (or synthesis) failed"
msgstr ""
-#: po/placeholder.h:98 urpm.pm:1212
-msgid "error registering local packages"
+#: po/placeholder.h:98 po/placeholder.h:285 urpm.pm:1898
+#, c-format
+msgid "...retrieving failed: %s"
msgstr ""
-#: po/placeholder.h:99
+#: po/placeholder.h:99 po/placeholder.h:286 urpm.pm:1837
#, c-format
-msgid "taking removable device as \"%s\""
+msgid "incoherent medium \"%s\" marked removable but not really"
msgstr ""
-#: po/placeholder.h:100 urpm.pm:1899
+#: po/placeholder.h:100 po/placeholder.h:290 urpm.pm:1203
#, c-format
-msgid "...retrieving failed: %s"
+msgid "invalid rpm file name [%s]"
msgstr ""
-#: po/placeholder.h:101 urpm.pm:1838
+#: po/placeholder.h:101 po/placeholder.h:291 urpm.pm:1398
#, c-format
-msgid "incoherent medium \"%s\" marked removable but not really"
+msgid "unknown data associated with %s"
msgstr ""
-#: po/placeholder.h:102
+#: po/placeholder.h:103 po/placeholder.h:357 urpmi:225
#, c-format
-msgid "copying description file of \"%s\"..."
+msgid "What is your choice? (1-%d) "
+msgstr " ? (1-%d) "
+
+#: po/placeholder.h:104 po/placeholder.h:293 urpm.pm:255
+#, c-format
+msgid "unable to access list file of \"%s\", medium ignored"
+msgstr ""
+
+#: po/placeholder.h:105 po/placeholder.h:358 po/placeholder.h:406
+#: po/placeholder.h:444
+msgid " --wget - use wget to retrieve distant files.\n"
msgstr ""
-#: po/placeholder.h:103
+#: po/placeholder.h:107 po/placeholder.h:294 urpm.pm:2113
#, c-format
-msgid "unable to build hdlist: %s"
+msgid "avoid selecting %s as not enough files will be updated"
msgstr ""
-#: po/placeholder.h:104 urpm.pm:1812 urpm.pm:1815 urpm.pm:1834
+#: po/placeholder.h:108 po/placeholder.h:295 urpm.pm:1204
#, c-format
-msgid "medium \"%s\" is not selected"
+msgid "unable to access rpm file [%s]"
msgstr ""
-#: po/placeholder.h:105 urpm.pm:1203
+#: po/placeholder.h:110 po/placeholder.h:368 urpmi:228
+msgid "Sorry, bad choice, try again\n"
+msgstr ", , \n"
+
+#: po/placeholder.h:111 po/placeholder.h:301 urpm.pm:1848
#, c-format
-msgid "invalid rpm file name [%s]"
+msgid "unable to access medium \"%s\""
msgstr ""
-#: po/placeholder.h:106 urpm.pm:1398
+#: po/placeholder.h:112 po/placeholder.h:300 urpm.pm:1190
#, c-format
-msgid "unknown data associated with %s"
+msgid "relocated %s entries in depslist"
+msgstr ""
+
+#: po/placeholder.h:113 po/placeholder.h:371 po/placeholder.h:399
+#: po/placeholder.h:437
+msgid " --curl - use curl to retrieve distant files.\n"
msgstr ""
-#: po/placeholder.h:107 urpm.pm:269
+#: po/placeholder.h:114 po/placeholder.h:303
#, c-format
-msgid "trying to bypass existing medium \"%s\", avoiding"
+msgid "trying to select inexistent medium \"%s\""
msgstr ""
-#: po/placeholder.h:108 urpm.pm:255
+#: po/placeholder.h:115 po/placeholder.h:302 urpm.pm:1757
#, c-format
-msgid "unable to access list file of \"%s\", medium ignored"
+msgid "unable to parse correctly [%s] on value \"%s\""
msgstr ""
-#: po/placeholder.h:109 urpm.pm:2113
+#: po/placeholder.h:116 po/placeholder.h:305
#, c-format
-msgid "avoid selecting %s as not enough files will be updated"
+msgid "no rpm files found from [%s]"
msgstr ""
-#: po/placeholder.h:110 urpm.pm:1204
+#: po/placeholder.h:117 po/placeholder.h:312 urpm.pm:101
+msgid "curl is missing\n"
+msgstr ""
+
+#: po/placeholder.h:118 po/placeholder.h:315 urpm.pm:244
#, c-format
-msgid "unable to access rpm file [%s]"
+msgid "unable to determine medium of this hdlist file [%s]"
msgstr ""
-#: po/placeholder.h:111
+#: po/placeholder.h:119 po/placeholder.h:328
+msgid " --help - print this help message.\n"
+msgstr ""
+
+#: po/placeholder.h:121 po/placeholder.h:329 urpmi:383
+msgid "everything already installed"
+msgstr " "
+
+#: po/placeholder.h:122 po/placeholder.h:215 urpm.pm:1891
+msgid "retrieving rpms files..."
+msgstr ""
+
+#: po/placeholder.h:123 po/placeholder.h:217
#, c-format
+msgid "using different removable device [%s] for \"%s\""
+msgstr ""
+
+#: po/placeholder.h:124 po/placeholder.h:332 urpmi:217
+msgid "One of the following packages is needed:"
+msgstr " :"
+
+#: po/placeholder.h:125 po/placeholder.h:219
msgid ""
-"removing %s to upgrade to %s ...\n"
-" since it will not upgrade correctly!"
+"unable to access first installation medium (no Mandrake/base/hdlists file "
+"found)"
msgstr ""
-#: po/placeholder.h:115 urpm.pm:1190
+#: po/placeholder.h:126 po/placeholder.h:451 urpmq:90
#, c-format
-msgid "relocated %s entries in depslist"
+msgid "urpmq: cannot read rpm file \"%s\"\n"
+msgstr ""
+
+#: po/placeholder.h:129 po/placeholder.h:323 urpme:87
+msgid "Nothing to remove.\n"
+msgstr ""
+
+#: po/placeholder.h:131 po/placeholder.h:340 urpmi:329 urpmi:336 urpmi:349
+#: urpmi:360 urpmi:373
+msgid "Installation failed"
+msgstr " "
+
+#: po/placeholder.h:132 po/placeholder.h:224
+msgid "unable to access first installation medium"
+msgstr ""
+
+#: po/placeholder.h:133 po/placeholder.h:345 po/placeholder.h:469
+msgid " -P - do not search in provides to find package.\n"
msgstr ""
-#: po/placeholder.h:116 urpm.pm:1849
+#: po/placeholder.h:135 po/placeholder.h:226 urpm.pm:1129
#, c-format
-msgid "unable to access medium \"%s\""
+msgid "unmounting %s"
msgstr ""
-#: po/placeholder.h:117 urpm.pm:1756
+#: po/placeholder.h:136 po/placeholder.h:227
#, c-format
-msgid "unable to parse correctly [%s] on value \"%s\""
+msgid "removing %d obsolete headers in cache"
msgstr ""
-#: po/placeholder.h:118
+#: po/placeholder.h:137 po/placeholder.h:228
#, c-format
-msgid "trying to select inexistent medium \"%s\""
+msgid "no hdlist file found for medium \"%s\""
msgstr ""
-#: po/placeholder.h:119 urpm.pm:1305
-#, fuzzy, c-format
-msgid "The following packages contain %s: %s"
-msgstr " %s: %s\n"
+#: po/placeholder.h:139 po/placeholder.h:230 urpm.pm:1413
+msgid "<non printable chars>"
+msgstr ""
+
+#: po/placeholder.h:140 po/placeholder.h:352 po/placeholder.h:476
+msgid " -v - verbose mode.\n"
+msgstr ""
-#: po/placeholder.h:120
+#: po/placeholder.h:141 po/placeholder.h:233
#, c-format
-msgid "no rpm files found from [%s]"
+msgid "removing medium \"%s\""
msgstr ""
-#: po/placeholder.h:121
+#: po/placeholder.h:142 po/placeholder.h:236
#, c-format
-msgid "examining hdlist file [%s]"
+msgid "unable to build synthesis file for medium \"%s\""
msgstr ""
-#: po/placeholder.h:122 urpm.pm:1191
-msgid "no entries relocated in depslist"
+#: po/placeholder.h:143 po/placeholder.h:238
+#, c-format
+msgid "trying to select multiple medium: %s"
msgstr ""
-#: po/placeholder.h:123 urpm.pm:1897
-msgid "...retrieving done"
+#: po/placeholder.h:144 po/placeholder.h:447
+msgid " -a - select all non-removable media.\n"
msgstr ""
-#: po/placeholder.h:124 urpm.pm:2006
-#, c-format
-msgid "selecting %s using obsoletes"
+#: po/placeholder.h:145 po/placeholder.h:354
+msgid " names or rpm files given on command line are installed.\n"
msgstr ""
-#: po/placeholder.h:125 urpm.pm:151
+#: po/placeholder.h:147 po/placeholder.h:239 urpm.pm:2125
#, c-format
-msgid "curl failed: exited with %d or signal %d\n"
+msgid "avoid selecting %s as its locales language is not already selected"
+msgstr ""
+
+#: po/placeholder.h:148 po/placeholder.h:356
+msgid " --complete - use parsehdlist server to complete selection.\n"
msgstr ""
-#: po/placeholder.h:126 urpm.pm:2122
+#: po/placeholder.h:149 po/placeholder.h:246
#, c-format
-msgid "selecting %s by selection on files"
+msgid "write config file [%s]"
msgstr ""
-#: po/placeholder.h:127 urpm.pm:101
-msgid "curl is missing\n"
+#: po/placeholder.h:150 po/placeholder.h:249
+msgid "unable to build hdlist synthesis, using parsehdlist method"
msgstr ""
-#: po/placeholder.h:128
+#: po/placeholder.h:151 po/placeholder.h:413
+msgid ""
+" --distrib - automatically create all media from an installation "
+"medium.\n"
+msgstr ""
+
+#: po/placeholder.h:155 po/placeholder.h:253 urpm.pm:227
#, c-format
-msgid "copying source list of \"%s\"..."
+msgid ""
+"unable to take care of medium \"%s\" as list file is already used by another "
+"medium"
msgstr ""
-#: po/placeholder.h:129 urpm.pm:96
-msgid "wget is missing\n"
+#: po/placeholder.h:156 po/placeholder.h:254
+#, c-format
+msgid "examining synthesis file [%s]"
msgstr ""
-#: po/placeholder.h:130 urpm.pm:244
+#: po/placeholder.h:158 po/placeholder.h:256
#, c-format
-msgid "unable to determine medium of this hdlist file [%s]"
+msgid "unable to retrieve pathname for removable medium \"%s\""
msgstr ""
-#: po/placeholder.h:132
-msgid " --help - print this help message.\n"
+#: po/placeholder.h:160 po/placeholder.h:258 urpm.pm:1722 urpm.pm:1748
+#, c-format
+msgid "there are multiple packages with the same rpm filename \"%s\""
msgstr ""
-#: po/placeholder.h:133 urpmi:383
-msgid "everything already installed"
-msgstr " "
+#: po/placeholder.h:161 po/placeholder.h:316 urpme:93
+#, fuzzy, c-format
+msgid ""
+"To satisfy dependencies, the following packages are going to be removed (%d "
+"MB)"
+msgstr ""
+" , (%d MB)"
+
+#: po/placeholder.h:163 po/placeholder.h:261
+msgid "retrieving hdlists file..."
+msgstr ""
-#: po/placeholder.h:134 urpmi:113
+#: po/placeholder.h:164 po/placeholder.h:330 urpmi:113
#, c-format
msgid "urpmi: unknown option \"-%s\", check usage with --help\n"
msgstr ""
-#: po/placeholder.h:135 po/placeholder.h:253
-msgid " -y - impose fuzzy search.\n"
+#: po/placeholder.h:165 po/placeholder.h:262 urpm.pm:253
+#, c-format
+msgid "unable to access hdlist file of \"%s\", medium ignored"
msgstr ""
-#: po/placeholder.h:136 urpmi:217
-msgid "One of the following packages is needed:"
-msgstr " :"
+#: po/placeholder.h:166 po/placeholder.h:263 urpm.pm:1208
+msgid "unable to register rpm file"
+msgstr ""
-#: po/placeholder.h:137 po/placeholder.h:257
+#: po/placeholder.h:167 po/placeholder.h:264
+#, c-format
+msgid "\"%s\""
+msgstr ""
+
+#: po/placeholder.h:168 po/placeholder.h:265 urpm.pm:307
+#, c-format
+msgid "unable to inspect list file for \"%s\", medium ignored"
+msgstr ""
+
+#: po/placeholder.h:169 po/placeholder.h:266
+#, c-format
+msgid "too many mount points for removable medium \"%s\""
+msgstr ""
+
+#: po/placeholder.h:170 po/placeholder.h:268 urpm.pm:299
+#, c-format
+msgid "incoherent list file for \"%s\", medium ignored"
+msgstr ""
+
+#: po/placeholder.h:171 po/placeholder.h:333 po/placeholder.h:453
msgid " --update - use only update media.\n"
msgstr ""
-#: po/placeholder.h:138 urpmi:321
-msgid ""
-"Installation failed, some files are missing.\n"
-"You may want to update your urpmi database"
+#: po/placeholder.h:172 po/placeholder.h:269
+#, c-format
+msgid "copy of [%s] failed"
msgstr ""
-#: po/placeholder.h:142
-msgid " --auto - automatically select a good package in choices.\n"
+#: po/placeholder.h:173 po/placeholder.h:462
+msgid " -d - extend query to package dependencies.\n"
msgstr ""
-#: po/placeholder.h:144 urpmi:329 urpmi:336 urpmi:349 urpmi:360 urpmi:373
-msgid "Installation failed"
-msgstr " "
+#: po/placeholder.h:174 po/placeholder.h:272 urpm.pm:1412 urpm.pm:1419
+#, c-format
+msgid "unable to analyse synthesis data of %s"
+msgstr ""
-#: po/placeholder.h:145 po/placeholder.h:270
-msgid ""
-" --auto-select - automatically select packages for upgrading the system.\n"
+#: po/placeholder.h:175 po/placeholder.h:274
+#, c-format
+msgid "retrieving source hdlist (or synthesis) of \"%s\"..."
msgstr ""
-#: po/placeholder.h:147
+#: po/placeholder.h:177 po/placeholder.h:343
msgid " --X - use X interface.\n"
msgstr ""
-#: po/placeholder.h:148 urpmi:267
+#: po/placeholder.h:178 po/placeholder.h:275
+msgid "...copying done"
+msgstr ""
+
+#: po/placeholder.h:179 po/placeholder.h:344 urpmi:267
#, c-format
msgid ""
"To satisfy dependencies, the following packages are going to be installed (%"
@@ -673,259 +763,247 @@ msgid ""
msgstr ""
" , (%d MB)"
-#: po/placeholder.h:149 po/placeholder.h:273
-msgid " -P - do not search in provides to find package.\n"
+#: po/placeholder.h:180 po/placeholder.h:277
+msgid "copying hdlists file..."
msgstr ""
-#: po/placeholder.h:150 urpmi:342 urpmi:366
+#: po/placeholder.h:181 po/placeholder.h:278 urpm.pm:188 urpm.pm:200
+#, c-format
+msgid "syntax error in config file at line %s"
+msgstr ""
+
+#: po/placeholder.h:182 po/placeholder.h:346 urpmi:342 urpmi:366
msgid "Try installation without checking dependencies? (y/N) "
msgstr " ? (/) "
-#: po/placeholder.h:151 po/placeholder.h:278
-msgid " --media - use only the media listed by comma.\n"
-msgstr ""
-
-#: po/placeholder.h:152
-msgid ""
-" --best-output - choose best interface according to the environment:\n"
-" X or text mode.\n"
+#: po/placeholder.h:183 po/placeholder.h:283 urpm.pm:1212
+msgid "error registering local packages"
msgstr ""
-#: po/placeholder.h:156 po/placeholder.h:280
-msgid " -v - verbose mode.\n"
+#: po/placeholder.h:184 po/placeholder.h:284
+#, c-format
+msgid "taking removable device as \"%s\""
msgstr ""
-#: po/placeholder.h:157 po/placeholder.h:279
+#: po/placeholder.h:185 po/placeholder.h:353 po/placeholder.h:475
msgid " -p - allow search in provides to find package.\n"
msgstr ""
-#: po/placeholder.h:158
-msgid " names or rpm files given on command line are installed.\n"
-msgstr ""
-
-#: po/placeholder.h:159
-msgid " -q - quiet mode.\n"
+#: po/placeholder.h:187 po/placeholder.h:287
+#, c-format
+msgid "copying description file of \"%s\"..."
msgstr ""
-#: po/placeholder.h:160
-msgid " --complete - use parsehdlist server to complete selection.\n"
+#: po/placeholder.h:188 po/placeholder.h:288
+#, c-format
+msgid "unable to build hdlist: %s"
msgstr ""
-#: po/placeholder.h:161 urpmi:225
+#: po/placeholder.h:189 po/placeholder.h:289 urpm.pm:1811 urpm.pm:1814
+#: urpm.pm:1833
#, c-format
-msgid "What is your choice? (1-%d) "
-msgstr " ? (1-%d) "
-
-#: po/placeholder.h:162 po/placeholder.h:210 po/placeholder.h:233
-msgid " --wget - use wget to retrieve distant files.\n"
+msgid "medium \"%s\" is not selected"
msgstr ""
-#: po/placeholder.h:163
+#: po/placeholder.h:190 po/placeholder.h:292 urpm.pm:269
#, c-format
-msgid ""
-"urpmi version %s\n"
-"Copyright (C) 1999, 2000, 2001 MandrakeSoft.\n"
-"This is free software and may be redistributed under the terms of the GNU "
-"GPL.\n"
-"usage:\n"
+msgid "trying to bypass existing medium \"%s\", avoiding"
msgstr ""
-#: po/placeholder.h:169 urpmi:350 urpmi:374
-msgid "Try installation even more strongly (--force)? (y/N) "
-msgstr " - (--force)? (/) "
+#: po/placeholder.h:191 po/placeholder.h:355
+msgid " -q - quiet mode.\n"
+msgstr ""
-#: po/placeholder.h:171 po/placeholder.h:269
+#: po/placeholder.h:194 po/placeholder.h:367 po/placeholder.h:465
msgid ""
" --force - force invocation even if some packages do not exist.\n"
msgstr ""
-#: po/placeholder.h:172 urpmi:228
-msgid "Sorry, bad choice, try again\n"
-msgstr ", , \n"
-
-#: po/placeholder.h:174
-msgid " -a - select all matches on command line.\n"
-msgstr ""
-
-#: po/placeholder.h:175 po/placeholder.h:203 po/placeholder.h:226
-msgid " --curl - use curl to retrieve distant files.\n"
+#: po/placeholder.h:196 po/placeholder.h:320 urpme:62
+#, c-format
+msgid "Using \"%s\" as a substring, I found"
msgstr ""
-#: po/placeholder.h:176 urpmi:316
+#: po/placeholder.h:197 po/placeholder.h:372 urpmi:316
#, c-format
msgid "installing %s\n"
msgstr " %s\n"
-#: po/placeholder.h:177 urpmi:296
+#: po/placeholder.h:198 po/placeholder.h:325 urpme:30
+msgid "Remove them all?"
+msgstr ""
+
+#: po/placeholder.h:199 po/placeholder.h:373 urpmi:296
#, fuzzy, c-format
msgid "Please insert the medium named \"%s\" on device [%s]"
msgstr " %s %s"
-#: po/placeholder.h:179 po/placeholder.h:281 urpmi:286 urpmq:151
-msgid "unable to get source packages, aborting"
-msgstr ""
+#: po/placeholder.h:200 po/placeholder.h:304 urpm.pm:1305
+#, fuzzy, c-format
+msgid "The following packages contain %s: %s"
+msgstr " %s: %s\n"
-#: po/placeholder.h:180 urpmi:297
-msgid "Press Enter when it's done..."
-msgstr " enter, "
+#: po/placeholder.h:201 po/placeholder.h:306
+#, c-format
+msgid "examining hdlist file [%s]"
+msgstr ""
-#: po/placeholder.h:181 urpmi:131
-#, fuzzy
-msgid "Only superuser is allowed to install packages"
-msgstr " superuser- "
+#: po/placeholder.h:202 po/placeholder.h:307 urpm.pm:1191
+msgid "no entries relocated in depslist"
+msgstr ""
-#: po/placeholder.h:182 urpmi:216
-#, fuzzy, c-format
-msgid "One of the following packages is needed to install %s:"
-msgstr " :"
+#: po/placeholder.h:203 po/placeholder.h:412
+msgid " --update - create an update medium.\n"
+msgstr ""
-#: po/placeholder.h:183 urpmi.addmedia:70
-#, c-format
+#: po/placeholder.h:205 po/placeholder.h:445
msgid ""
-"%s\n"
-"no need to give <relative path of hdlist> with --distrib"
+" -d - force complete computation of depslist.ordered file.\n"
msgstr ""
-#: po/placeholder.h:187
-msgid ""
-"usage: urpmi.addmedia [options] <name> <url> [with <relative_path>]\n"
-"where <url> is one of\n"
-" file://<path>\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"
-"and [options] are from\n"
+#: po/placeholder.h:206 po/placeholder.h:375 po/placeholder.h:477 urpmi:286
+#: urpmq:151
+msgid "unable to get source packages, aborting"
msgstr ""
-#: po/placeholder.h:197 urpmi.addmedia:92
-#, c-format
-msgid "unable to create medium \"%s\"\n"
+#: po/placeholder.h:207 po/placeholder.h:308 urpm.pm:1896
+msgid "...retrieving done"
msgstr ""
-#: po/placeholder.h:198 urpmi.addmedia:76 urpmi.addmedia:93
+#: po/placeholder.h:208 po/placeholder.h:309 urpm.pm:2006
#, c-format
-msgid "unable to update medium \"%s\"\n"
+msgid "selecting %s using obsoletes"
msgstr ""
-#: po/placeholder.h:199 po/placeholder.h:222 po/placeholder.h:238
-#: urpmi.addmedia:57
+#: po/placeholder.h:209 po/placeholder.h:310 urpm.pm:151
#, c-format
-msgid ""
-"\n"
-"unknown options '%s'\n"
+msgid "curl failed: exited with %d or signal %d\n"
msgstr ""
-#: po/placeholder.h:204 po/placeholder.h:231 po/placeholder.h:246
-msgid " -c - clean headers cache directory.\n"
+#: po/placeholder.h:210 po/placeholder.h:311 urpm.pm:2122
+#, c-format
+msgid "selecting %s by selection on files"
msgstr ""
-#: po/placeholder.h:205 urpmi.addmedia:82
+#: po/placeholder.h:211 po/placeholder.h:313
#, c-format
-msgid ""
-"%s\n"
-"<relative path of hdlist> missing\n"
+msgid "copying source list of \"%s\"..."
msgstr ""
-#: po/placeholder.h:209 po/placeholder.h:232
-msgid " -f - force generation of hdlist files.\n"
+#: po/placeholder.h:212 po/placeholder.h:377 urpmi:131
+#, fuzzy
+msgid "Only superuser is allowed to install packages"
+msgstr " superuser- "
+
+#: po/placeholder.h:213 po/placeholder.h:314 urpm.pm:96
+msgid "wget is missing\n"
msgstr ""
-#: po/placeholder.h:211
-msgid " -h - try to find and use synthesis or hdlist file.\n"
+#: po/placeholder.h:240
+#, c-format
+msgid ""
+"removing %s to upgrade to %s ...\n"
+" since it will not be updated otherwise"
msgstr ""
-#: po/placeholder.h:212 urpmi.addmedia:84
+#: po/placeholder.h:296
#, c-format
msgid ""
-"%s\n"
-"`with' missing for ftp media\n"
+"removing %s to upgrade to %s ...\n"
+" since it will not upgrade correctly!"
msgstr ""
-#: po/placeholder.h:216
-msgid " --update - create an update medium.\n"
+#: po/placeholder.h:334 urpmi:321
+msgid ""
+"Installation failed, some files are missing.\n"
+"You may want to update your urpmi database"
msgstr ""
-#: po/placeholder.h:217
+#: po/placeholder.h:348
msgid ""
-" --distrib - automatically create all media from an installation "
-"medium.\n"
+" --best-output - choose best interface according to the environment:\n"
+" X or text mode.\n"
msgstr ""
-#: po/placeholder.h:218
+#: po/placeholder.h:359
+#, c-format
msgid ""
-"usage: urpmi.update [options] <name> ...\n"
-"where <name> is a medium name to update.\n"
+"urpmi version %s\n"
+"Copyright (C) 1999, 2000, 2001 MandrakeSoft.\n"
+"This is free software and may be redistributed under the terms of the GNU "
+"GPL.\n"
+"usage:\n"
msgstr ""
-#: po/placeholder.h:227 urpmi.update:59
+#: po/placeholder.h:379 urpmi.addmedia:70
#, c-format
msgid ""
-"the entry to update is missing\n"
-"(one of %s)\n"
+"%s\n"
+"no need to give <relative path of hdlist> with --distrib"
msgstr ""
-#: po/placeholder.h:234
+#: po/placeholder.h:383
msgid ""
-" -d - force complete computation of depslist.ordered file.\n"
+"usage: urpmi.addmedia [options] <name> <url> [with <relative_path>]\n"
+"where <url> is one of\n"
+" file://<path>\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"
+"and [options] are from\n"
msgstr ""
-#: po/placeholder.h:235 urpmi.update:57
-msgid "nothing to update (use urpmi.addmedia to add a media)\n"
+#: po/placeholder.h:395 po/placeholder.h:415 po/placeholder.h:433
+#: urpmi.addmedia:57
+#, c-format
+msgid ""
+"\n"
+"unknown options '%s'\n"
msgstr ""
-#: po/placeholder.h:236
-msgid " -a - select all non-removable media.\n"
+#: po/placeholder.h:401 urpmi.addmedia:82
+#, c-format
+msgid ""
+"%s\n"
+"<relative path of hdlist> missing\n"
msgstr ""
-#: po/placeholder.h:237 urpmi.removemedia:47
-msgid "nothing to remove (use urpmi.addmedia to add a media)\n"
+#: po/placeholder.h:408 urpmi.addmedia:84
+#, c-format
+msgid ""
+"%s\n"
+"`with' missing for ftp media\n"
msgstr ""
-#: po/placeholder.h:242 urpmi.removemedia:49
+#: po/placeholder.h:419 urpmi.removemedia:49
#, c-format
msgid ""
"the entry to remove is missing\n"
"(one of %s)\n"
msgstr ""
-#: po/placeholder.h:247
-msgid " -a - select all media.\n"
-msgstr ""
-
-#: po/placeholder.h:248
+#: po/placeholder.h:425
msgid ""
"usage: urpmi.removemedia [-a] <name> ...\n"
"where <name> is a medium name to remove.\n"
msgstr ""
-#: po/placeholder.h:252
-msgid " -h - print this help message.\n"
-msgstr ""
-
-#: po/placeholder.h:254
-msgid " -g - print groups too with name.\n"
+#: po/placeholder.h:429
+msgid ""
+"usage: urpmi.update [options] <name> ...\n"
+"where <name> is a medium name to update.\n"
msgstr ""
-#: po/placeholder.h:255 urpmq:90
+#: po/placeholder.h:438 urpmi.update:59
#, c-format
-msgid "urpmq: cannot read rpm file \"%s\"\n"
-msgstr ""
-
-#: po/placeholder.h:256
-msgid " names or rpm files given on command line are queried.\n"
-msgstr ""
-
-#: po/placeholder.h:258
-msgid " -r - print version and release too with name.\n"
-msgstr ""
-
-#: po/placeholder.h:259
-msgid " -f - print version, release and arch with name.\n"
+msgid ""
+"the entry to update is missing\n"
+"(one of %s)\n"
msgstr ""
-#: po/placeholder.h:260
+#: po/placeholder.h:456
#, c-format
msgid ""
"urpmq version %s\n"
@@ -935,42 +1013,12 @@ msgid ""
"usage:\n"
msgstr ""
-#: po/placeholder.h:266
-msgid " -d - extend query to package dependencies.\n"
-msgstr ""
-
-#: po/placeholder.h:267
-msgid ""
-" --sources - give all source packages before downloading (root only).\n"
-msgstr ""
-
-#: po/placeholder.h:268
-msgid ""
-" -c - choose complete method for resolving requires closure.\n"
-msgstr ""
-
-#: po/placeholder.h:271 urpmq:137
-msgid ""
-"some packages have to be removed for being upgraded, this is not supported "
-"yet\n"
-msgstr ""
-
-#: po/placeholder.h:272 urpmq:87
-#, c-format
-msgid "urpmq: unknown option \"-%s\", check usage with --help\n"
-msgstr ""
-
-#: po/placeholder.h:274
+#: po/placeholder.h:470
msgid ""
" --headers - extract headers for package listed from urpmi db to\n"
" stdout (root only).\n"
msgstr ""
-#: po/placeholder.h:282
-msgid ""
-" -u - remove package if a better version is already installed.\n"
-msgstr ""
-
#: urpm.pm:2030 urpm.pm:2039
#, c-format
msgid "removing %s to upgrade to %s ..."
@@ -1014,18 +1062,18 @@ msgstr ""
msgid ");"
msgstr ");"
-#: urpmi.update:41
-#, fuzzy
-msgid "usage: urpmi.update [options] <name> ..."
-msgstr " : urpmi.addmedia [-a] <> ..."
+#: urpmi.removemedia:34
+msgid "usage: urpmi.removemedia [-a] <name> ..."
+msgstr ""
#: urpmi.removemedia:38 urpmi.update:49
msgid ", $_);"
msgstr ", $_);"
-#: urpmi.removemedia:34
-msgid "usage: urpmi.removemedia [-a] <name> ..."
-msgstr ""
+#: urpmi.update:41
+#, fuzzy
+msgid "usage: urpmi.update [options] <name> ..."
+msgstr " : urpmi.addmedia [-a] <> ..."
#: urpmq:34
#, c-format
@@ -1086,13 +1134,6 @@ msgstr ""
#~ " -q - .\n"
#~ " -v - .\n"
-#~ msgid ""
-#~ "usage: urpmi [-h] [--auto] [--force] [-a] package_name "
-#~ "[package_names...]\n"
-#~ msgstr ""
-#~ ": urpmi [-h] [--auto] [--force] [-a] __ "
-#~ "[__...]\n"
-
#~ msgid "Sorry can't find file %s, exiting"
#~ msgstr ", %s, "
diff --git a/po/bs.po b/po/bs.po
index 7e432bdb..e27e7d72 100644
--- a/po/bs.po
+++ b/po/bs.po
@@ -4,7 +4,7 @@
msgid ""
msgstr ""
"Project-Id-Version: urpmi 1.7\n"
-"POT-Creation-Date: 2002-01-30 14:07+0100\n"
+"POT-Creation-Date: 2002-02-06 14:21+0100\n"
"PO-Revision-Date: 2001-09-19 13:34GMT\n"
"Last-Translator: Amila Akagi <bono@lugbih.org>\n"
"Language-Team: Bosnian <lokal-subscribe@lugbih.org>\n"
@@ -25,27 +25,31 @@ msgstr ""
"Automatska instalacija paketa..\n"
"Zahtjevali ste instalaciju paketa $rpm\n"
-#: _irpm:31 po/placeholder.h:178 urpmi:268
+#: _irpm:31 po/placeholder.h:204 po/placeholder.h:322 po/placeholder.h:374
+#: urpme:29 urpmi:268
msgid "Is it OK?"
msgstr "Je li u redu?"
-#: _irpm:33 po/placeholder.h:170 urpmi:271 urpmi:299
+#: _irpm:33 po/placeholder.h:193 po/placeholder.h:366 urpmi:271 urpmi:299
msgid "Ok"
msgstr "U redu"
-#: _irpm:34 po/placeholder.h:131 urpmi:272 urpmi:300
+#: _irpm:34 po/placeholder.h:162 po/placeholder.h:327 urpmi:272 urpmi:300
msgid "Cancel"
msgstr "Odustani"
-#: _irpm:40 po/placeholder.h:143 urpmi:276 urpmi:340 urpmi:364
+#: _irpm:40 po/placeholder.h:176 po/placeholder.h:326 po/placeholder.h:339
+#: urpme:32 urpmi:276 urpmi:340 urpmi:364
msgid "Nn"
msgstr "Nn"
-#: _irpm:41 po/placeholder.h:146 urpmi:277 urpmi:341 urpmi:365
+#: _irpm:41 po/placeholder.h:89 po/placeholder.h:321 po/placeholder.h:342
+#: urpme:34 urpmi:277 urpmi:341 urpmi:365
msgid "Yy"
msgstr "DdYy"
-#: _irpm:42 po/placeholder.h:173 urpmi:278
+#: _irpm:42 po/placeholder.h:195 po/placeholder.h:318 po/placeholder.h:369
+#: urpme:94 urpmi:278
msgid " (Y/n) "
msgstr " (D/n) "
@@ -53,624 +57,709 @@ msgstr " (D/n) "
msgid "$rpm: command not found\n"
msgstr "$rpm: komanda nije pronaena\n"
-#: po/placeholder.h:6
+#: po/placeholder.h:6 po/placeholder.h:154
#, c-format
msgid "urpmf version %s"
msgstr "urpmf verzija %s"
-#: po/placeholder.h:7
+#: po/placeholder.h:7 po/placeholder.h:192
msgid "Copyright (C) 1999,2000,2001 MandrakeSoft."
msgstr "Autorska prava (C) 1999,2000,2001 MandrakeSoft."
-#: po/placeholder.h:8
+#: po/placeholder.h:8 po/placeholder.h:152
msgid ""
"This is free software and may be redistributed under the terms of the GNU "
"GPL."
msgstr ""
"Ovo je slobodan software i moe biti distribuiran pod uslovima GNU GPL-e."
-#: po/placeholder.h:9 po/placeholder.h:26
+#: po/placeholder.h:9 po/placeholder.h:26 po/placeholder.h:130
msgid "usage: urpmf [options] <file>"
msgstr "upotreba: urpmf [opcije] <datoteka>"
-#: po/placeholder.h:10
+#: po/placeholder.h:10 po/placeholder.h:109
msgid ""
" --quiet - do not print tag name (default if no tag given on command"
msgstr ""
-#: po/placeholder.h:11
+#: po/placeholder.h:11 po/placeholder.h:153
msgid " line, incompatible with interactive mode)."
msgstr ""
-#: po/placeholder.h:12
+#: po/placeholder.h:12 po/placeholder.h:127
msgid " --all - print all tags."
msgstr ""
-#: po/placeholder.h:13
+#: po/placeholder.h:13 po/placeholder.h:157
msgid ""
" --name - print tag name: rpm filename (assumed if no tag given on"
msgstr ""
-#: po/placeholder.h:14
+#: po/placeholder.h:14 po/placeholder.h:159
msgid " command line but without package name)."
msgstr ""
-#: po/placeholder.h:15
+#: po/placeholder.h:15 po/placeholder.h:102
msgid " --group - print tag group: group."
msgstr ""
-#: po/placeholder.h:16
+#: po/placeholder.h:16 po/placeholder.h:87
msgid " --size - print tag size: size."
msgstr ""
-#: po/placeholder.h:17
+#: po/placeholder.h:17 po/placeholder.h:134
msgid " --serial - print tag serial: serial."
msgstr ""
-#: po/placeholder.h:18
+#: po/placeholder.h:18 po/placeholder.h:146
msgid " --summary - print tag summary: summary."
msgstr ""
-#: po/placeholder.h:19
+#: po/placeholder.h:19 po/placeholder.h:120
msgid " --description - print tag description: description."
msgstr ""
-#: po/placeholder.h:20
+#: po/placeholder.h:20 po/placeholder.h:138
msgid " --provides - print tag provides: all provides (multiple lines)."
msgstr ""
-#: po/placeholder.h:21
+#: po/placeholder.h:21 po/placeholder.h:186
msgid " --requires - print tag requires: all requires (multiple lines)."
msgstr ""
-#: po/placeholder.h:22
+#: po/placeholder.h:22 po/placeholder.h:41
msgid " --files - print tag files: all files (multiple lines)."
msgstr ""
-#: po/placeholder.h:23
+#: po/placeholder.h:23 po/placeholder.h:34
msgid ""
" --conflicts - print tag conflicts: all conflicts (multiple lines)."
msgstr ""
-#: po/placeholder.h:24
+#: po/placeholder.h:24 po/placeholder.h:106
msgid ""
" --obsoletes - print tag obsoletes: all obsoletes (multiple lines)."
msgstr ""
-#: po/placeholder.h:25
+#: po/placeholder.h:25 po/placeholder.h:128
msgid " --prereqs - print tag prereqs: all prereqs (multiple lines)."
msgstr ""
-#: po/placeholder.h:27
+#: po/placeholder.h:27 po/placeholder.h:62
msgid "try urpmf --help for more options"
msgstr "pokuajte urpmf --help za vie opcija"
-#: po/placeholder.h:28
+#: po/placeholder.h:28 po/placeholder.h:49
msgid "no full media list was found"
msgstr ""
-#: po/placeholder.h:29
+#: po/placeholder.h:29 po/placeholder.h:214
#, c-format
msgid "unable to write config file [%s]"
msgstr "nisam u mogunosti da zapiem konf. datoteku [%s]"
-#: po/placeholder.h:30 urpm.pm:1892
-msgid "retrieving rpms files..."
+#: po/placeholder.h:30 po/placeholder.h:216
+msgid "examining whole urpmi database"
msgstr ""
-#: po/placeholder.h:31
-msgid "examining whole urpmi database"
+#: po/placeholder.h:31 po/placeholder.h:331 po/placeholder.h:449
+msgid " -y - impose fuzzy search.\n"
msgstr ""
-#: po/placeholder.h:32
+#: po/placeholder.h:32 po/placeholder.h:220 urpm.pm:280
#, c-format
-msgid "using different removable device [%s] for \"%s\""
+msgid "unable to find list file for \"%s\", medium ignored"
msgstr ""
-#: po/placeholder.h:33
+#: po/placeholder.h:33 po/placeholder.h:218
#, fuzzy, c-format
msgid "nothing to write in list file for \"%s\""
msgstr "ne mogu kreirati medij \"%s\"\n"
-#: po/placeholder.h:34
-msgid ""
-"unable to access first installation medium (no Mandrake/base/hdlists file "
-"found)"
-msgstr ""
-
-#: po/placeholder.h:35 urpm.pm:280
-#, c-format
-msgid "unable to find list file for \"%s\", medium ignored"
-msgstr ""
-
-#: po/placeholder.h:36
+#: po/placeholder.h:35 po/placeholder.h:221
#, fuzzy, c-format
msgid "unable to parse hdlist file of \"%s\""
msgstr "ne mogu update-irati medij \"%s\"\n"
-#: po/placeholder.h:37
+#: po/placeholder.h:36 po/placeholder.h:222
#, fuzzy, c-format
msgid "nothing written in list file for \"%s\""
msgstr "ne mogu kreirati medij \"%s\"\n"
-#: po/placeholder.h:38
-#, c-format
-msgid "retrieving description file of \"%s\"..."
-msgstr ""
-
-#: po/placeholder.h:39
-#, fuzzy
-msgid "unable to access first installation medium"
-msgstr "ne mogu update-irati medij \"%s\"\n"
-
-#: po/placeholder.h:40 urpm.pm:1768
-#, c-format
-msgid "package %s is not found."
+#: po/placeholder.h:37 po/placeholder.h:463
+msgid ""
+" --sources - give all source packages before downloading (root only).\n"
msgstr ""
-#: po/placeholder.h:41 urpm.pm:1129
-#, c-format
-msgid "unmounting %s"
+#: po/placeholder.h:38 po/placeholder.h:341 po/placeholder.h:466
+msgid ""
+" --auto-select - automatically select packages for upgrading the system.\n"
msgstr ""
-#: po/placeholder.h:42
+#: po/placeholder.h:39 po/placeholder.h:223
#, c-format
-msgid "removing %d obsolete headers in cache"
+msgid "retrieving description file of \"%s\"..."
msgstr ""
-#: po/placeholder.h:43
+#: po/placeholder.h:40 po/placeholder.h:225 urpm.pm:1769
#, c-format
-msgid "no hdlist file found for medium \"%s\""
+msgid "package %s is not found."
msgstr ""
-#: po/placeholder.h:44 urpm.pm:209
+#: po/placeholder.h:42 po/placeholder.h:229 urpm.pm:209
#, c-format
msgid "medium \"%s\" tries to use an already used hdlist, medium ignored"
msgstr ""
-#: po/placeholder.h:45 urpm.pm:1413
-msgid "<non printable chars>"
+#: po/placeholder.h:43 po/placeholder.h:317 urpme:52
+msgid "unknown package(s) "
msgstr ""
-#: po/placeholder.h:46
-#, fuzzy
-msgid "problem reading hdlist file, trying again"
-msgstr "ne mogu kreirati medij \"%s\"\n"
-
-#: po/placeholder.h:47 urpm.pm:233
+#: po/placeholder.h:44 po/placeholder.h:232 urpm.pm:233
#, c-format
msgid "unable to use name \"%s\" for unnamed medium because it is already used"
msgstr ""
-#: po/placeholder.h:48
-#, fuzzy, c-format
-msgid "removing medium \"%s\""
+#: po/placeholder.h:45 po/placeholder.h:231
+#, fuzzy
+msgid "problem reading hdlist file, trying again"
msgstr "ne mogu kreirati medij \"%s\"\n"
-#: po/placeholder.h:49 urpm.pm:240
+#: po/placeholder.h:46 po/placeholder.h:234 urpm.pm:240
#, c-format
msgid "unable to take medium \"%s\" into account as no list file [%s] exists"
msgstr ""
-#: po/placeholder.h:50
+#: po/placeholder.h:47 po/placeholder.h:235
msgid "keeping only files referenced in provides"
msgstr ""
-#: po/placeholder.h:51
-#, fuzzy, c-format
-msgid "unable to build synthesis file for medium \"%s\""
-msgstr "ne mogu update-irati medij \"%s\"\n"
-
-#: po/placeholder.h:52
+#: po/placeholder.h:48 po/placeholder.h:237
#, c-format
msgid "found %d headers in cache"
msgstr ""
-#: po/placeholder.h:53
-#, fuzzy, c-format
-msgid "trying to select multiple medium: %s"
-msgstr "ne mogu kreirati medij \"%s\"\n"
-
-#: po/placeholder.h:54 urpm.pm:2125
+#: po/placeholder.h:50 po/placeholder.h:394 urpmi.addmedia:76
+#: urpmi.addmedia:93
#, c-format
-msgid "avoid selecting %s as its locales language is not already selected"
-msgstr ""
+msgid "unable to update medium \"%s\"\n"
+msgstr "ne mogu update-irati medij \"%s\"\n"
-#: po/placeholder.h:55
-#, c-format
-msgid ""
-"removing %s to upgrade to %s ...\n"
-" since it will not be updated otherwise"
+#: po/placeholder.h:51 po/placeholder.h:400 po/placeholder.h:423
+#: po/placeholder.h:442
+msgid " -c - clean headers cache directory.\n"
msgstr ""
-#: po/placeholder.h:59
+#: po/placeholder.h:52 po/placeholder.h:244
#, c-format
msgid "medium \"%s\" already exists"
msgstr ""
-#: po/placeholder.h:60
+#: po/placeholder.h:53 po/placeholder.h:245
#, fuzzy, c-format
msgid "unable to write list file of \"%s\""
msgstr "ne mogu kreirati medij \"%s\"\n"
-#: po/placeholder.h:61
-#, c-format
-msgid "write config file [%s]"
+#: po/placeholder.h:54 po/placeholder.h:452
+msgid " names or rpm files given on command line are queried.\n"
msgstr ""
-#: po/placeholder.h:62 urpm.pm:1302
+#: po/placeholder.h:55 po/placeholder.h:247 urpm.pm:1302
#, c-format
msgid "no package named %s"
msgstr ""
-#: po/placeholder.h:63
+#: po/placeholder.h:56 po/placeholder.h:365 urpmi:350 urpmi:374
+msgid "Try installation even more strongly (--force)? (y/N) "
+msgstr "Pokuaj instalaciju jo jae (--force opcija)? (d/N) "
+
+#: po/placeholder.h:57 po/placeholder.h:250 urpm.pm:275
+#, c-format
+msgid "unable to find hdlist file for \"%s\", medium ignored"
+msgstr ""
+
+#: po/placeholder.h:58 po/placeholder.h:248
#, fuzzy, c-format
msgid "built hdlist synthesis file for medium \"%s\""
msgstr "ne mogu update-irati medij \"%s\"\n"
-#: po/placeholder.h:64
+#: po/placeholder.h:59 po/placeholder.h:251
+msgid "urpmi database locked"
+msgstr ""
+
+#: po/placeholder.h:60 po/placeholder.h:319 urpme:63
#, fuzzy
-msgid "unable to build hdlist synthesis, using parsehdlist method"
-msgstr "ne mogu update-irati medij \"%s\"\n"
+msgid " (y/N) "
+msgstr " (D/n) "
-#: po/placeholder.h:65 urpm.pm:275
-#, c-format
-msgid "unable to find hdlist file for \"%s\", medium ignored"
+#: po/placeholder.h:61 po/placeholder.h:370
+msgid " -a - select all matches on command line.\n"
msgstr ""
-#: po/placeholder.h:66
-msgid "urpmi database locked"
+#: po/placeholder.h:63 po/placeholder.h:467 urpmq:137
+msgid ""
+"some packages have to be removed for being upgraded, this is not supported "
+"yet\n"
msgstr ""
+"neki paketi trebaju biti uklonjeni da bi mogli biti nadograeni, ovo jo "
+"nije podrano\n"
-#: po/placeholder.h:67 urpm.pm:1118
+#: po/placeholder.h:64 po/placeholder.h:252 urpm.pm:1118
#, fuzzy, c-format
msgid "mounting %s"
msgstr "instaliram %s\n"
-#: po/placeholder.h:68 urpm.pm:227
-#, c-format
-msgid ""
-"unable to take care of medium \"%s\" as list file is already used by another "
-"medium"
+#: po/placeholder.h:65 po/placeholder.h:405 po/placeholder.h:443
+msgid " -f - force generation of hdlist files.\n"
msgstr ""
-#: po/placeholder.h:69
-#, fuzzy, c-format
-msgid "examining synthesis file [%s]"
-msgstr "ne mogu kreirati medij \"%s\"\n"
-
-#: po/placeholder.h:70 urpm.pm:98
+#: po/placeholder.h:66 po/placeholder.h:255 urpm.pm:98
#, c-format
msgid "wget failed: exited with %d or signal %d\n"
msgstr ""
-#: po/placeholder.h:71
-#, fuzzy, c-format
-msgid "unable to retrieve pathname for removable medium \"%s\""
-msgstr "ne mogu kreirati medij \"%s\"\n"
+#: po/placeholder.h:67 po/placeholder.h:414 urpmi.removemedia:47
+msgid "nothing to remove (use urpmi.addmedia to add a media)\n"
+msgstr "nita za uklanjanje (koristi urpmi.addmedia da doda medij)\n"
-#: po/placeholder.h:72 urpm.pm:1887
+#: po/placeholder.h:68 po/placeholder.h:257 urpm.pm:1886
#, c-format
msgid "malformed input: [%s]"
msgstr ""
-#: po/placeholder.h:73 urpm.pm:1721 urpm.pm:1747
-#, c-format
-msgid "there are multiple packages with the same rpm filename \"%s\""
+#: po/placeholder.h:69 po/placeholder.h:478
+msgid ""
+" -u - remove package if a better version is already installed.\n"
msgstr ""
-#: po/placeholder.h:74
+#: po/placeholder.h:70 po/placeholder.h:378 urpmi:216
+#, fuzzy, c-format
+msgid "One of the following packages is needed to install %s:"
+msgstr "Jedan od sljedeih paketa je potreban:"
+
+#: po/placeholder.h:71 po/placeholder.h:376 urpmi:297
+msgid "Press Enter when it's done..."
+msgstr "Pritisnite enter kada zavri..."
+
+#: po/placeholder.h:72 po/placeholder.h:259
msgid "...copying failed"
msgstr ""
-#: po/placeholder.h:75 urpm.pm:212
+#: po/placeholder.h:73 po/placeholder.h:260 urpm.pm:212
#, c-format
msgid "medium \"%s\" tries to use an already used list, medium ignored"
msgstr ""
-#: po/placeholder.h:76
-#, fuzzy
-msgid "retrieving hdlists file..."
-msgstr "ne mogu kreirati medij \"%s\"\n"
-
-#: po/placeholder.h:77 urpm.pm:253
-#, c-format
-msgid "unable to access hdlist file of \"%s\", medium ignored"
+#: po/placeholder.h:74 po/placeholder.h:448
+msgid " -h - print this help message.\n"
msgstr ""
-#: po/placeholder.h:78 urpm.pm:1208
-#, fuzzy
-msgid "unable to register rpm file"
-msgstr "ne mogu kreirati medij \"%s\"\n"
+#: po/placeholder.h:75 po/placeholder.h:450
+msgid " -g - print groups too with name.\n"
+msgstr ""
-#: po/placeholder.h:79
-#, c-format
-msgid "\"%s\""
+#: po/placeholder.h:76 po/placeholder.h:424
+msgid " -a - select all media.\n"
msgstr ""
-#: po/placeholder.h:80 urpm.pm:307
+#: po/placeholder.h:77 po/placeholder.h:267
#, c-format
-msgid "unable to inspect list file for \"%s\", medium ignored"
+msgid "invalid hdlist description \"%s\" in hdlists file"
msgstr ""
-#: po/placeholder.h:81
-#, c-format
-msgid "too many mount points for removable medium \"%s\""
+#: po/placeholder.h:78 po/placeholder.h:407
+msgid " -h - try to find and use synthesis or hdlist file.\n"
msgstr ""
-#: po/placeholder.h:82
-#, c-format
-msgid "invalid hdlist description \"%s\" in hdlists file"
+#: po/placeholder.h:79 po/placeholder.h:454
+msgid " -r - print version and release too with name.\n"
msgstr ""
-#: po/placeholder.h:83 urpm.pm:299
-#, c-format
-msgid "incoherent list file for \"%s\", medium ignored"
+#: po/placeholder.h:80 po/placeholder.h:455
+msgid " -f - print version, release and arch with name.\n"
msgstr ""
-#: po/placeholder.h:84
-#, c-format
-msgid "copy of [%s] failed"
+#: po/placeholder.h:81 po/placeholder.h:338
+msgid " --auto - automatically select a good package in choices.\n"
msgstr ""
-#: po/placeholder.h:85 urpm.pm:1420
+#: po/placeholder.h:82 po/placeholder.h:270 urpm.pm:1420
#, fuzzy, c-format
msgid "unable to parse correctly [%s]"
msgstr "ne mogu update-irati medij \"%s\"\n"
-#: po/placeholder.h:86 urpm.pm:1421
+#: po/placeholder.h:83 po/placeholder.h:446 urpmi.update:57
+msgid "nothing to update (use urpmi.addmedia to add a media)\n"
+msgstr "nita za update (koriti urpmi.addmedia da doda medij)\n"
+
+#: po/placeholder.h:84 po/placeholder.h:271 urpm.pm:1421
#, fuzzy, c-format
msgid "read synthesis file [%s]"
msgstr "ne mogu kreirati medij \"%s\"\n"
-#: po/placeholder.h:87 urpm.pm:1412 urpm.pm:1419
-#, fuzzy, c-format
-msgid "unable to analyse synthesis data of %s"
-msgstr "ne mogu update-irati medij \"%s\"\n"
-
-#: po/placeholder.h:88 urpm.pm:93
+#: po/placeholder.h:85 po/placeholder.h:273 urpm.pm:93
msgid "no webfetch (curl or wget currently) found\n"
msgstr ""
-#: po/placeholder.h:89
-#, c-format
-msgid "retrieving source hdlist (or synthesis) of \"%s\"..."
+#: po/placeholder.h:86 po/placeholder.h:464
+msgid ""
+" -c - choose complete method for resolving requires closure.\n"
msgstr ""
-#: po/placeholder.h:90
-msgid "...copying done"
-msgstr ""
+#: po/placeholder.h:88 po/placeholder.h:393 urpmi.addmedia:92
+#, c-format
+msgid "unable to create medium \"%s\"\n"
+msgstr "ne mogu kreirati medij \"%s\"\n"
-#: po/placeholder.h:91
+#: po/placeholder.h:90 po/placeholder.h:276
#, c-format
msgid "copying source hdlist (or synthesis) of \"%s\"..."
msgstr ""
-#: po/placeholder.h:92
-#, fuzzy
-msgid "copying hdlists file..."
-msgstr "ne mogu kreirati medij \"%s\"\n"
+#: po/placeholder.h:91 po/placeholder.h:468 urpmq:87
+#, fuzzy, c-format
+msgid "urpmq: unknown option \"-%s\", check usage with --help\n"
+msgstr "urpmq: nepoznata opcija \"-$1\", provjeri upotrebu sa --help\n"
-#: po/placeholder.h:93 urpm.pm:188 urpm.pm:200
-#, c-format
-msgid "syntax error in config file at line %s"
-msgstr ""
+#: po/placeholder.h:92 po/placeholder.h:324 urpme:39
+#, fuzzy
+msgid "usage: urpme [-a] [--auto] <packages...>\n"
+msgstr "koristi: urpmi.removemedia [-a] <ime> ..."
-#: po/placeholder.h:94
+#: po/placeholder.h:93 po/placeholder.h:279
#, fuzzy, c-format
msgid "building hdlist [%s]"
msgstr "ne mogu update-irati medij \"%s\"\n"
-#: po/placeholder.h:95 urpm.pm:1822
+#: po/placeholder.h:94 po/placeholder.h:347 po/placeholder.h:474
+msgid " --media - use only the media listed by comma.\n"
+msgstr ""
+
+#: po/placeholder.h:95 po/placeholder.h:281
+#, c-format
+msgid "added medium %s"
+msgstr ""
+
+#: po/placeholder.h:96 po/placeholder.h:280 urpm.pm:1821
#, fuzzy, c-format
msgid "unable to read rpm file [%s] from medium \"%s\""
msgstr "ne mogu kreirati medij \"%s\"\n"
-#: po/placeholder.h:96
+#: po/placeholder.h:97 po/placeholder.h:282
+msgid "retrieve of source hdlist (or synthesis) failed"
+msgstr ""
+
+#: po/placeholder.h:98 po/placeholder.h:285 urpm.pm:1898
#, c-format
-msgid "added medium %s"
+msgid "...retrieving failed: %s"
msgstr ""
-#: po/placeholder.h:97
-msgid "retrieve of source hdlist (or synthesis) failed"
+#: po/placeholder.h:99 po/placeholder.h:286 urpm.pm:1837
+#, c-format
+msgid "incoherent medium \"%s\" marked removable but not really"
msgstr ""
-#: po/placeholder.h:98 urpm.pm:1212
-msgid "error registering local packages"
+#: po/placeholder.h:100 po/placeholder.h:290 urpm.pm:1203
+#, c-format
+msgid "invalid rpm file name [%s]"
msgstr ""
-#: po/placeholder.h:99
+#: po/placeholder.h:101 po/placeholder.h:291 urpm.pm:1398
#, c-format
-msgid "taking removable device as \"%s\""
+msgid "unknown data associated with %s"
msgstr ""
-#: po/placeholder.h:100 urpm.pm:1899
+#: po/placeholder.h:103 po/placeholder.h:357 urpmi:225
#, c-format
-msgid "...retrieving failed: %s"
+msgid "What is your choice? (1-%d) "
+msgstr "Va izbor je? (1-%d) "
+
+#: po/placeholder.h:104 po/placeholder.h:293 urpm.pm:255
+#, c-format
+msgid "unable to access list file of \"%s\", medium ignored"
msgstr ""
-#: po/placeholder.h:101 urpm.pm:1838
+#: po/placeholder.h:105 po/placeholder.h:358 po/placeholder.h:406
+#: po/placeholder.h:444
+msgid " --wget - use wget to retrieve distant files.\n"
+msgstr ""
+
+#: po/placeholder.h:107 po/placeholder.h:294 urpm.pm:2113
#, c-format
-msgid "incoherent medium \"%s\" marked removable but not really"
+msgid "avoid selecting %s as not enough files will be updated"
msgstr ""
-#: po/placeholder.h:102
+#: po/placeholder.h:108 po/placeholder.h:295 urpm.pm:1204
#, fuzzy, c-format
-msgid "copying description file of \"%s\"..."
+msgid "unable to access rpm file [%s]"
msgstr "ne mogu kreirati medij \"%s\"\n"
-#: po/placeholder.h:103
+#: po/placeholder.h:110 po/placeholder.h:368 urpmi:228
+msgid "Sorry, bad choice, try again\n"
+msgstr "ao mi je, lo izbor, probaj kasnije\n"
+
+#: po/placeholder.h:111 po/placeholder.h:301 urpm.pm:1848
#, fuzzy, c-format
-msgid "unable to build hdlist: %s"
+msgid "unable to access medium \"%s\""
msgstr "ne mogu update-irati medij \"%s\"\n"
-#: po/placeholder.h:104 urpm.pm:1812 urpm.pm:1815 urpm.pm:1834
+#: po/placeholder.h:112 po/placeholder.h:300 urpm.pm:1190
#, c-format
-msgid "medium \"%s\" is not selected"
+msgid "relocated %s entries in depslist"
msgstr ""
-#: po/placeholder.h:105 urpm.pm:1203
-#, c-format
-msgid "invalid rpm file name [%s]"
+#: po/placeholder.h:113 po/placeholder.h:371 po/placeholder.h:399
+#: po/placeholder.h:437
+msgid " --curl - use curl to retrieve distant files.\n"
msgstr ""
-#: po/placeholder.h:106 urpm.pm:1398
+#: po/placeholder.h:114 po/placeholder.h:303
+#, fuzzy, c-format
+msgid "trying to select inexistent medium \"%s\""
+msgstr "ne mogu kreirati medij \"%s\"\n"
+
+#: po/placeholder.h:115 po/placeholder.h:302 urpm.pm:1757
#, c-format
-msgid "unknown data associated with %s"
+msgid "unable to parse correctly [%s] on value \"%s\""
msgstr ""
-#: po/placeholder.h:107 urpm.pm:269
+#: po/placeholder.h:116 po/placeholder.h:305
#, c-format
-msgid "trying to bypass existing medium \"%s\", avoiding"
+msgid "no rpm files found from [%s]"
msgstr ""
-#: po/placeholder.h:108 urpm.pm:255
-#, c-format
-msgid "unable to access list file of \"%s\", medium ignored"
+#: po/placeholder.h:117 po/placeholder.h:312 urpm.pm:101
+msgid "curl is missing\n"
msgstr ""
-#: po/placeholder.h:109 urpm.pm:2113
+#: po/placeholder.h:118 po/placeholder.h:315 urpm.pm:244
#, c-format
-msgid "avoid selecting %s as not enough files will be updated"
+msgid "unable to determine medium of this hdlist file [%s]"
msgstr ""
-#: po/placeholder.h:110 urpm.pm:1204
-#, fuzzy, c-format
-msgid "unable to access rpm file [%s]"
-msgstr "ne mogu kreirati medij \"%s\"\n"
+#: po/placeholder.h:119 po/placeholder.h:328
+msgid " --help - print this help message.\n"
+msgstr ""
-#: po/placeholder.h:111
-#, c-format
-msgid ""
-"removing %s to upgrade to %s ...\n"
-" since it will not upgrade correctly!"
+#: po/placeholder.h:121 po/placeholder.h:329 urpmi:383
+msgid "everything already installed"
+msgstr "sve je ve instalirano"
+
+#: po/placeholder.h:122 po/placeholder.h:215 urpm.pm:1891
+msgid "retrieving rpms files..."
msgstr ""
-#: po/placeholder.h:115 urpm.pm:1190
+#: po/placeholder.h:123 po/placeholder.h:217
#, c-format
-msgid "relocated %s entries in depslist"
+msgid "using different removable device [%s] for \"%s\""
+msgstr ""
+
+#: po/placeholder.h:124 po/placeholder.h:332 urpmi:217
+msgid "One of the following packages is needed:"
+msgstr "Jedan od sljedeih paketa je potreban:"
+
+#: po/placeholder.h:125 po/placeholder.h:219
+msgid ""
+"unable to access first installation medium (no Mandrake/base/hdlists file "
+"found)"
msgstr ""
-#: po/placeholder.h:116 urpm.pm:1849
+#: po/placeholder.h:126 po/placeholder.h:451 urpmq:90
#, fuzzy, c-format
-msgid "unable to access medium \"%s\""
+msgid "urpmq: cannot read rpm file \"%s\"\n"
+msgstr "urpmq: ne mogu proitati rpm datoteku \"$_\"\n"
+
+#: po/placeholder.h:129 po/placeholder.h:323 urpme:87
+msgid "Nothing to remove.\n"
+msgstr ""
+
+#: po/placeholder.h:131 po/placeholder.h:340 urpmi:329 urpmi:336 urpmi:349
+#: urpmi:360 urpmi:373
+msgid "Installation failed"
+msgstr "Instalacija nije uspjela"
+
+#: po/placeholder.h:132 po/placeholder.h:224
+#, fuzzy
+msgid "unable to access first installation medium"
msgstr "ne mogu update-irati medij \"%s\"\n"
-#: po/placeholder.h:117 urpm.pm:1756
+#: po/placeholder.h:133 po/placeholder.h:345 po/placeholder.h:469
+msgid " -P - do not search in provides to find package.\n"
+msgstr ""
+
+#: po/placeholder.h:135 po/placeholder.h:226 urpm.pm:1129
#, c-format
-msgid "unable to parse correctly [%s] on value \"%s\""
+msgid "unmounting %s"
+msgstr ""
+
+#: po/placeholder.h:136 po/placeholder.h:227
+#, c-format
+msgid "removing %d obsolete headers in cache"
+msgstr ""
+
+#: po/placeholder.h:137 po/placeholder.h:228
+#, c-format
+msgid "no hdlist file found for medium \"%s\""
+msgstr ""
+
+#: po/placeholder.h:139 po/placeholder.h:230 urpm.pm:1413
+msgid "<non printable chars>"
+msgstr ""
+
+#: po/placeholder.h:140 po/placeholder.h:352 po/placeholder.h:476
+msgid " -v - verbose mode.\n"
msgstr ""
-#: po/placeholder.h:118
+#: po/placeholder.h:141 po/placeholder.h:233
#, fuzzy, c-format
-msgid "trying to select inexistent medium \"%s\""
+msgid "removing medium \"%s\""
msgstr "ne mogu kreirati medij \"%s\"\n"
-#: po/placeholder.h:119 urpm.pm:1305
+#: po/placeholder.h:142 po/placeholder.h:236
#, fuzzy, c-format
-msgid "The following packages contain %s: %s"
-msgstr "Jedan od sljedeih paketa je potreban:"
-
-#: po/placeholder.h:120
-#, c-format
-msgid "no rpm files found from [%s]"
-msgstr ""
+msgid "unable to build synthesis file for medium \"%s\""
+msgstr "ne mogu update-irati medij \"%s\"\n"
-#: po/placeholder.h:121
+#: po/placeholder.h:143 po/placeholder.h:238
#, fuzzy, c-format
-msgid "examining hdlist file [%s]"
+msgid "trying to select multiple medium: %s"
msgstr "ne mogu kreirati medij \"%s\"\n"
-#: po/placeholder.h:122 urpm.pm:1191
-msgid "no entries relocated in depslist"
+#: po/placeholder.h:144 po/placeholder.h:447
+msgid " -a - select all non-removable media.\n"
msgstr ""
-#: po/placeholder.h:123 urpm.pm:1897
-msgid "...retrieving done"
+#: po/placeholder.h:145 po/placeholder.h:354
+msgid " names or rpm files given on command line are installed.\n"
msgstr ""
-#: po/placeholder.h:124 urpm.pm:2006
+#: po/placeholder.h:147 po/placeholder.h:239 urpm.pm:2125
#, c-format
-msgid "selecting %s using obsoletes"
+msgid "avoid selecting %s as its locales language is not already selected"
msgstr ""
-#: po/placeholder.h:125 urpm.pm:151
-#, c-format
-msgid "curl failed: exited with %d or signal %d\n"
+#: po/placeholder.h:148 po/placeholder.h:356
+msgid " --complete - use parsehdlist server to complete selection.\n"
msgstr ""
-#: po/placeholder.h:126 urpm.pm:2122
+#: po/placeholder.h:149 po/placeholder.h:246
#, c-format
-msgid "selecting %s by selection on files"
+msgid "write config file [%s]"
msgstr ""
-#: po/placeholder.h:127 urpm.pm:101
-msgid "curl is missing\n"
+#: po/placeholder.h:150 po/placeholder.h:249
+#, fuzzy
+msgid "unable to build hdlist synthesis, using parsehdlist method"
+msgstr "ne mogu update-irati medij \"%s\"\n"
+
+#: po/placeholder.h:151 po/placeholder.h:413
+msgid ""
+" --distrib - automatically create all media from an installation "
+"medium.\n"
msgstr ""
-#: po/placeholder.h:128
+#: po/placeholder.h:155 po/placeholder.h:253 urpm.pm:227
+#, c-format
+msgid ""
+"unable to take care of medium \"%s\" as list file is already used by another "
+"medium"
+msgstr ""
+
+#: po/placeholder.h:156 po/placeholder.h:254
#, fuzzy, c-format
-msgid "copying source list of \"%s\"..."
+msgid "examining synthesis file [%s]"
msgstr "ne mogu kreirati medij \"%s\"\n"
-#: po/placeholder.h:129 urpm.pm:96
-msgid "wget is missing\n"
-msgstr ""
+#: po/placeholder.h:158 po/placeholder.h:256
+#, fuzzy, c-format
+msgid "unable to retrieve pathname for removable medium \"%s\""
+msgstr "ne mogu kreirati medij \"%s\"\n"
-#: po/placeholder.h:130 urpm.pm:244
+#: po/placeholder.h:160 po/placeholder.h:258 urpm.pm:1722 urpm.pm:1748
#, c-format
-msgid "unable to determine medium of this hdlist file [%s]"
+msgid "there are multiple packages with the same rpm filename \"%s\""
msgstr ""
-#: po/placeholder.h:132
-msgid " --help - print this help message.\n"
+#: po/placeholder.h:161 po/placeholder.h:316 urpme:93
+#, fuzzy, c-format
+msgid ""
+"To satisfy dependencies, the following packages are going to be removed (%d "
+"MB)"
msgstr ""
+"Da bi zadovoljili dependencies, sljedei paketi e biti instalirani (%d MB)"
-#: po/placeholder.h:133 urpmi:383
-msgid "everything already installed"
-msgstr "sve je ve instalirano"
+#: po/placeholder.h:163 po/placeholder.h:261
+#, fuzzy
+msgid "retrieving hdlists file..."
+msgstr "ne mogu kreirati medij \"%s\"\n"
-#: po/placeholder.h:134 urpmi:113
+#: po/placeholder.h:164 po/placeholder.h:330 urpmi:113
#, fuzzy, c-format
msgid "urpmi: unknown option \"-%s\", check usage with --help\n"
msgstr "urpmq: nepoznata opcija \"-$1\", provjeri upotrebu sa --help\n"
-#: po/placeholder.h:135 po/placeholder.h:253
-msgid " -y - impose fuzzy search.\n"
+#: po/placeholder.h:165 po/placeholder.h:262 urpm.pm:253
+#, c-format
+msgid "unable to access hdlist file of \"%s\", medium ignored"
msgstr ""
-#: po/placeholder.h:136 urpmi:217
-msgid "One of the following packages is needed:"
-msgstr "Jedan od sljedeih paketa je potreban:"
+#: po/placeholder.h:166 po/placeholder.h:263 urpm.pm:1208
+#, fuzzy
+msgid "unable to register rpm file"
+msgstr "ne mogu kreirati medij \"%s\"\n"
+
+#: po/placeholder.h:167 po/placeholder.h:264
+#, c-format
+msgid "\"%s\""
+msgstr ""
+
+#: po/placeholder.h:168 po/placeholder.h:265 urpm.pm:307
+#, c-format
+msgid "unable to inspect list file for \"%s\", medium ignored"
+msgstr ""
+
+#: po/placeholder.h:169 po/placeholder.h:266
+#, c-format
+msgid "too many mount points for removable medium \"%s\""
+msgstr ""
-#: po/placeholder.h:137 po/placeholder.h:257
+#: po/placeholder.h:170 po/placeholder.h:268 urpm.pm:299
+#, c-format
+msgid "incoherent list file for \"%s\", medium ignored"
+msgstr ""
+
+#: po/placeholder.h:171 po/placeholder.h:333 po/placeholder.h:453
msgid " --update - use only update media.\n"
msgstr ""
-#: po/placeholder.h:138 urpmi:321
-msgid ""
-"Installation failed, some files are missing.\n"
-"You may want to update your urpmi database"
+#: po/placeholder.h:172 po/placeholder.h:269
+#, c-format
+msgid "copy of [%s] failed"
msgstr ""
-#: po/placeholder.h:142
-msgid " --auto - automatically select a good package in choices.\n"
+#: po/placeholder.h:173 po/placeholder.h:462
+msgid " -d - extend query to package dependencies.\n"
msgstr ""
-#: po/placeholder.h:144 urpmi:329 urpmi:336 urpmi:349 urpmi:360 urpmi:373
-msgid "Installation failed"
-msgstr "Instalacija nije uspjela"
+#: po/placeholder.h:174 po/placeholder.h:272 urpm.pm:1412 urpm.pm:1419
+#, fuzzy, c-format
+msgid "unable to analyse synthesis data of %s"
+msgstr "ne mogu update-irati medij \"%s\"\n"
-#: po/placeholder.h:145 po/placeholder.h:270
-msgid ""
-" --auto-select - automatically select packages for upgrading the system.\n"
+#: po/placeholder.h:175 po/placeholder.h:274
+#, c-format
+msgid "retrieving source hdlist (or synthesis) of \"%s\"..."
msgstr ""
-#: po/placeholder.h:147
+#: po/placeholder.h:177 po/placeholder.h:343
msgid " --X - use X interface.\n"
msgstr ""
-#: po/placeholder.h:148 urpmi:267
+#: po/placeholder.h:178 po/placeholder.h:275
+msgid "...copying done"
+msgstr ""
+
+#: po/placeholder.h:179 po/placeholder.h:344 urpmi:267
#, c-format
msgid ""
"To satisfy dependencies, the following packages are going to be installed (%"
@@ -678,114 +767,181 @@ msgid ""
msgstr ""
"Da bi zadovoljili dependencies, sljedei paketi e biti instalirani (%d MB)"
-#: po/placeholder.h:149 po/placeholder.h:273
-msgid " -P - do not search in provides to find package.\n"
+#: po/placeholder.h:180 po/placeholder.h:277
+#, fuzzy
+msgid "copying hdlists file..."
+msgstr "ne mogu kreirati medij \"%s\"\n"
+
+#: po/placeholder.h:181 po/placeholder.h:278 urpm.pm:188 urpm.pm:200
+#, c-format
+msgid "syntax error in config file at line %s"
msgstr ""
-#: po/placeholder.h:150 urpmi:342 urpmi:366
+#: po/placeholder.h:182 po/placeholder.h:346 urpmi:342 urpmi:366
msgid "Try installation without checking dependencies? (y/N) "
msgstr "Pokuaj instalaciju bez provjere dependencies? (d/N)"
-#: po/placeholder.h:151 po/placeholder.h:278
-msgid " --media - use only the media listed by comma.\n"
+#: po/placeholder.h:183 po/placeholder.h:283 urpm.pm:1212
+msgid "error registering local packages"
msgstr ""
-#: po/placeholder.h:152
-msgid ""
-" --best-output - choose best interface according to the environment:\n"
-" X or text mode.\n"
+#: po/placeholder.h:184 po/placeholder.h:284
+#, c-format
+msgid "taking removable device as \"%s\""
msgstr ""
-#: po/placeholder.h:156 po/placeholder.h:280
-msgid " -v - verbose mode.\n"
+#: po/placeholder.h:185 po/placeholder.h:353 po/placeholder.h:475
+msgid " -p - allow search in provides to find package.\n"
msgstr ""
-#: po/placeholder.h:157 po/placeholder.h:279
-msgid " -p - allow search in provides to find package.\n"
+#: po/placeholder.h:187 po/placeholder.h:287
+#, fuzzy, c-format
+msgid "copying description file of \"%s\"..."
+msgstr "ne mogu kreirati medij \"%s\"\n"
+
+#: po/placeholder.h:188 po/placeholder.h:288
+#, fuzzy, c-format
+msgid "unable to build hdlist: %s"
+msgstr "ne mogu update-irati medij \"%s\"\n"
+
+#: po/placeholder.h:189 po/placeholder.h:289 urpm.pm:1811 urpm.pm:1814
+#: urpm.pm:1833
+#, c-format
+msgid "medium \"%s\" is not selected"
msgstr ""
-#: po/placeholder.h:158
-msgid " names or rpm files given on command line are installed.\n"
+#: po/placeholder.h:190 po/placeholder.h:292 urpm.pm:269
+#, c-format
+msgid "trying to bypass existing medium \"%s\", avoiding"
msgstr ""
-#: po/placeholder.h:159
+#: po/placeholder.h:191 po/placeholder.h:355
msgid " -q - quiet mode.\n"
msgstr ""
-#: po/placeholder.h:160
-msgid " --complete - use parsehdlist server to complete selection.\n"
+#: po/placeholder.h:194 po/placeholder.h:367 po/placeholder.h:465
+msgid ""
+" --force - force invocation even if some packages do not exist.\n"
msgstr ""
-#: po/placeholder.h:161 urpmi:225
+#: po/placeholder.h:196 po/placeholder.h:320 urpme:62
#, c-format
-msgid "What is your choice? (1-%d) "
-msgstr "Va izbor je? (1-%d) "
+msgid "Using \"%s\" as a substring, I found"
+msgstr ""
-#: po/placeholder.h:162 po/placeholder.h:210 po/placeholder.h:233
-msgid " --wget - use wget to retrieve distant files.\n"
+#: po/placeholder.h:197 po/placeholder.h:372 urpmi:316
+#, c-format
+msgid "installing %s\n"
+msgstr "instaliram %s\n"
+
+#: po/placeholder.h:198 po/placeholder.h:325 urpme:30
+msgid "Remove them all?"
msgstr ""
-#: po/placeholder.h:163
+#: po/placeholder.h:199 po/placeholder.h:373 urpmi:296
+#, c-format
+msgid "Please insert the medium named \"%s\" on device [%s]"
+msgstr "Molim ubacite medij sa imenom \"%s\" u ureaj [%s]"
+
+#: po/placeholder.h:200 po/placeholder.h:304 urpm.pm:1305
#, fuzzy, c-format
-msgid ""
-"urpmi version %s\n"
-"Copyright (C) 1999, 2000, 2001 MandrakeSoft.\n"
-"This is free software and may be redistributed under the terms of the GNU "
-"GPL.\n"
-"usage:\n"
+msgid "The following packages contain %s: %s"
+msgstr "Jedan od sljedeih paketa je potreban:"
+
+#: po/placeholder.h:201 po/placeholder.h:306
+#, fuzzy, c-format
+msgid "examining hdlist file [%s]"
+msgstr "ne mogu kreirati medij \"%s\"\n"
+
+#: po/placeholder.h:202 po/placeholder.h:307 urpm.pm:1191
+msgid "no entries relocated in depslist"
msgstr ""
-"Ovo je slobodan software i moe biti distribuiran pod uslovima GNU GPL-e."
-#: po/placeholder.h:169 urpmi:350 urpmi:374
-msgid "Try installation even more strongly (--force)? (y/N) "
-msgstr "Pokuaj instalaciju jo jae (--force opcija)? (d/N) "
+#: po/placeholder.h:203 po/placeholder.h:412
+msgid " --update - create an update medium.\n"
+msgstr ""
-#: po/placeholder.h:171 po/placeholder.h:269
+#: po/placeholder.h:205 po/placeholder.h:445
msgid ""
-" --force - force invocation even if some packages do not exist.\n"
+" -d - force complete computation of depslist.ordered file.\n"
msgstr ""
-#: po/placeholder.h:172 urpmi:228
-msgid "Sorry, bad choice, try again\n"
-msgstr "ao mi je, lo izbor, probaj kasnije\n"
+#: po/placeholder.h:206 po/placeholder.h:375 po/placeholder.h:477 urpmi:286
+#: urpmq:151
+msgid "unable to get source packages, aborting"
+msgstr "ne mogu dobiti izvorni paket, prekidam"
-#: po/placeholder.h:174
-msgid " -a - select all matches on command line.\n"
+#: po/placeholder.h:207 po/placeholder.h:308 urpm.pm:1896
+msgid "...retrieving done"
msgstr ""
-#: po/placeholder.h:175 po/placeholder.h:203 po/placeholder.h:226
-msgid " --curl - use curl to retrieve distant files.\n"
+#: po/placeholder.h:208 po/placeholder.h:309 urpm.pm:2006
+#, c-format
+msgid "selecting %s using obsoletes"
msgstr ""
-#: po/placeholder.h:176 urpmi:316
+#: po/placeholder.h:209 po/placeholder.h:310 urpm.pm:151
#, c-format
-msgid "installing %s\n"
-msgstr "instaliram %s\n"
+msgid "curl failed: exited with %d or signal %d\n"
+msgstr ""
-#: po/placeholder.h:177 urpmi:296
+#: po/placeholder.h:210 po/placeholder.h:311 urpm.pm:2122
#, c-format
-msgid "Please insert the medium named \"%s\" on device [%s]"
-msgstr "Molim ubacite medij sa imenom \"%s\" u ureaj [%s]"
-
-#: po/placeholder.h:179 po/placeholder.h:281 urpmi:286 urpmq:151
-msgid "unable to get source packages, aborting"
-msgstr "ne mogu dobiti izvorni paket, prekidam"
+msgid "selecting %s by selection on files"
+msgstr ""
-#: po/placeholder.h:180 urpmi:297
-msgid "Press Enter when it's done..."
-msgstr "Pritisnite enter kada zavri..."
+#: po/placeholder.h:211 po/placeholder.h:313
+#, fuzzy, c-format
+msgid "copying source list of \"%s\"..."
+msgstr "ne mogu kreirati medij \"%s\"\n"
-#: po/placeholder.h:181 urpmi:131
+#: po/placeholder.h:212 po/placeholder.h:377 urpmi:131
#, fuzzy
msgid "Only superuser is allowed to install packages"
msgstr "Jedino super korisnik (root) moe instalirati lokalne pakete"
-#: po/placeholder.h:182 urpmi:216
+#: po/placeholder.h:213 po/placeholder.h:314 urpm.pm:96
+msgid "wget is missing\n"
+msgstr ""
+
+#: po/placeholder.h:240
+#, c-format
+msgid ""
+"removing %s to upgrade to %s ...\n"
+" since it will not be updated otherwise"
+msgstr ""
+
+#: po/placeholder.h:296
+#, c-format
+msgid ""
+"removing %s to upgrade to %s ...\n"
+" since it will not upgrade correctly!"
+msgstr ""
+
+#: po/placeholder.h:334 urpmi:321
+msgid ""
+"Installation failed, some files are missing.\n"
+"You may want to update your urpmi database"
+msgstr ""
+
+#: po/placeholder.h:348
+msgid ""
+" --best-output - choose best interface according to the environment:\n"
+" X or text mode.\n"
+msgstr ""
+
+#: po/placeholder.h:359
#, fuzzy, c-format
-msgid "One of the following packages is needed to install %s:"
-msgstr "Jedan od sljedeih paketa je potreban:"
+msgid ""
+"urpmi version %s\n"
+"Copyright (C) 1999, 2000, 2001 MandrakeSoft.\n"
+"This is free software and may be redistributed under the terms of the GNU "
+"GPL.\n"
+"usage:\n"
+msgstr ""
+"Ovo je slobodan software i moe biti distribuiran pod uslovima GNU GPL-e."
-#: po/placeholder.h:183 urpmi.addmedia:70
+#: po/placeholder.h:379 urpmi.addmedia:70
#, fuzzy, c-format
msgid ""
"%s\n"
@@ -794,7 +950,7 @@ msgstr ""
"%s\n"
"<relativna putanja do datoteke hdlist> nedostaje\n"
-#: po/placeholder.h:187
+#: po/placeholder.h:383
#, fuzzy
msgid ""
"usage: urpmi.addmedia [options] <name> <url> [with <relative_path>]\n"
@@ -816,17 +972,7 @@ msgstr ""
" http://<host>/<path> with <relativnim nazivom datoteke hdlist>\n"
" removable_<ureaj>://<putanja>\n"
-#: po/placeholder.h:197 urpmi.addmedia:92
-#, c-format
-msgid "unable to create medium \"%s\"\n"
-msgstr "ne mogu kreirati medij \"%s\"\n"
-
-#: po/placeholder.h:198 urpmi.addmedia:76 urpmi.addmedia:93
-#, c-format
-msgid "unable to update medium \"%s\"\n"
-msgstr "ne mogu update-irati medij \"%s\"\n"
-
-#: po/placeholder.h:199 po/placeholder.h:222 po/placeholder.h:238
+#: po/placeholder.h:395 po/placeholder.h:415 po/placeholder.h:433
#: urpmi.addmedia:57
#, c-format
msgid ""
@@ -834,11 +980,7 @@ msgid ""
"unknown options '%s'\n"
msgstr ""
-#: po/placeholder.h:204 po/placeholder.h:231 po/placeholder.h:246
-msgid " -c - clean headers cache directory.\n"
-msgstr ""
-
-#: po/placeholder.h:205 urpmi.addmedia:82
+#: po/placeholder.h:401 urpmi.addmedia:82
#, c-format
msgid ""
"%s\n"
@@ -847,15 +989,7 @@ msgstr ""
"%s\n"
"<relativna putanja do datoteke hdlist> nedostaje\n"
-#: po/placeholder.h:209 po/placeholder.h:232
-msgid " -f - force generation of hdlist files.\n"
-msgstr ""
-
-#: po/placeholder.h:211
-msgid " -h - try to find and use synthesis or hdlist file.\n"
-msgstr ""
-
-#: po/placeholder.h:212 urpmi.addmedia:84
+#: po/placeholder.h:408 urpmi.addmedia:84
#, c-format
msgid ""
"%s\n"
@@ -864,17 +998,28 @@ msgstr ""
"%s\n"
"`with' nedostaje za ftp medij\n"
-#: po/placeholder.h:216
-msgid " --update - create an update medium.\n"
+#: po/placeholder.h:419 urpmi.removemedia:49
+#, c-format
+msgid ""
+"the entry to remove is missing\n"
+"(one of %s)\n"
msgstr ""
+"stavka za brisanje nedostaje\n"
+"(jedan od %s)\n"
-#: po/placeholder.h:217
+#: po/placeholder.h:425
+#, fuzzy
msgid ""
-" --distrib - automatically create all media from an installation "
-"medium.\n"
+"usage: urpmi.removemedia [-a] <name> ...\n"
+"where <name> is a medium name to remove.\n"
msgstr ""
+"koristi: urpmi.removemedia [-a] <ime> ...\n"
+"gdje je <ime> naziv medija za uklanjanje.\n"
+" -a izabrat e sve medije.\n"
+"\n"
+"nepoznate opcije '%s'\n"
-#: po/placeholder.h:218
+#: po/placeholder.h:429
#, fuzzy
msgid ""
"usage: urpmi.update [options] <name> ...\n"
@@ -886,7 +1031,7 @@ msgstr ""
"\n"
"nepoznate opcije '%s'\n"
-#: po/placeholder.h:227 urpmi.update:59
+#: po/placeholder.h:438 urpmi.update:59
#, c-format
msgid ""
"the entry to update is missing\n"
@@ -895,74 +1040,7 @@ msgstr ""
"stavka za update nedostaje\n"
"(jedan od %s)\n"
-#: po/placeholder.h:234
-msgid ""
-" -d - force complete computation of depslist.ordered file.\n"
-msgstr ""
-
-#: po/placeholder.h:235 urpmi.update:57
-msgid "nothing to update (use urpmi.addmedia to add a media)\n"
-msgstr "nita za update (koriti urpmi.addmedia da doda medij)\n"
-
-#: po/placeholder.h:236
-msgid " -a - select all non-removable media.\n"
-msgstr ""
-
-#: po/placeholder.h:237 urpmi.removemedia:47
-msgid "nothing to remove (use urpmi.addmedia to add a media)\n"
-msgstr "nita za uklanjanje (koristi urpmi.addmedia da doda medij)\n"
-
-#: po/placeholder.h:242 urpmi.removemedia:49
-#, c-format
-msgid ""
-"the entry to remove is missing\n"
-"(one of %s)\n"
-msgstr ""
-"stavka za brisanje nedostaje\n"
-"(jedan od %s)\n"
-
-#: po/placeholder.h:247
-msgid " -a - select all media.\n"
-msgstr ""
-
-#: po/placeholder.h:248
-#, fuzzy
-msgid ""
-"usage: urpmi.removemedia [-a] <name> ...\n"
-"where <name> is a medium name to remove.\n"
-msgstr ""
-"koristi: urpmi.removemedia [-a] <ime> ...\n"
-"gdje je <ime> naziv medija za uklanjanje.\n"
-" -a izabrat e sve medije.\n"
-"\n"
-"nepoznate opcije '%s'\n"
-
-#: po/placeholder.h:252
-msgid " -h - print this help message.\n"
-msgstr ""
-
-#: po/placeholder.h:254
-msgid " -g - print groups too with name.\n"
-msgstr ""
-
-#: po/placeholder.h:255 urpmq:90
-#, fuzzy, c-format
-msgid "urpmq: cannot read rpm file \"%s\"\n"
-msgstr "urpmq: ne mogu proitati rpm datoteku \"$_\"\n"
-
-#: po/placeholder.h:256
-msgid " names or rpm files given on command line are queried.\n"
-msgstr ""
-
-#: po/placeholder.h:258
-msgid " -r - print version and release too with name.\n"
-msgstr ""
-
-#: po/placeholder.h:259
-msgid " -f - print version, release and arch with name.\n"
-msgstr ""
-
-#: po/placeholder.h:260
+#: po/placeholder.h:456
#, fuzzy, c-format
msgid ""
"urpmq version %s\n"
@@ -973,44 +1051,12 @@ msgid ""
msgstr ""
"Ovo je slobodan software i moe biti distribuiran pod uslovima GNU GPL-e."
-#: po/placeholder.h:266
-msgid " -d - extend query to package dependencies.\n"
-msgstr ""
-
-#: po/placeholder.h:267
-msgid ""
-" --sources - give all source packages before downloading (root only).\n"
-msgstr ""
-
-#: po/placeholder.h:268
-msgid ""
-" -c - choose complete method for resolving requires closure.\n"
-msgstr ""
-
-#: po/placeholder.h:271 urpmq:137
-msgid ""
-"some packages have to be removed for being upgraded, this is not supported "
-"yet\n"
-msgstr ""
-"neki paketi trebaju biti uklonjeni da bi mogli biti nadograeni, ovo jo "
-"nije podrano\n"
-
-#: po/placeholder.h:272 urpmq:87
-#, fuzzy, c-format
-msgid "urpmq: unknown option \"-%s\", check usage with --help\n"
-msgstr "urpmq: nepoznata opcija \"-$1\", provjeri upotrebu sa --help\n"
-
-#: po/placeholder.h:274
+#: po/placeholder.h:470
msgid ""
" --headers - extract headers for package listed from urpmi db to\n"
" stdout (root only).\n"
msgstr ""
-#: po/placeholder.h:282
-msgid ""
-" -u - remove package if a better version is already installed.\n"
-msgstr ""
-
#: urpm.pm:2030 urpm.pm:2039
#, c-format
msgid "removing %s to upgrade to %s ..."
@@ -1055,19 +1101,19 @@ msgstr ""
msgid ");"
msgstr "));"
-#: urpmi.update:41
-#, fuzzy
-msgid "usage: urpmi.update [options] <name> ..."
-msgstr "koristi: urpmi.update [-a] <ime> ..."
+#: urpmi.removemedia:34
+msgid "usage: urpmi.removemedia [-a] <name> ..."
+msgstr "koristi: urpmi.removemedia [-a] <ime> ..."
#: urpmi.removemedia:38 urpmi.update:49
#, fuzzy
msgid ", $_);"
msgstr "), $_);"
-#: urpmi.removemedia:34
-msgid "usage: urpmi.removemedia [-a] <name> ..."
-msgstr "koristi: urpmi.removemedia [-a] <ime> ..."
+#: urpmi.update:41
+#, fuzzy
+msgid "usage: urpmi.update [options] <name> ..."
+msgstr "koristi: urpmi.update [-a] <ime> ..."
#: urpmq:34
#, c-format
diff --git a/po/ca.po b/po/ca.po
index 7de8b8fe..34ade29b 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: urpmi 1.7\n"
-"POT-Creation-Date: 2002-01-30 14:07+0100\n"
+"POT-Creation-Date: 2002-02-06 14:21+0100\n"
"PO-Revision-Date: 2001-05-07 22:25+0200\n"
"Last-Translator: Softcatal <tradgnome@softcatala.org>\n"
"Language-Team: Catalan <info@softcatala.org>\n"
@@ -25,27 +25,31 @@ msgstr ""
"Installaci automtica dels paquets...\n"
"Heu demanat la installaci del paquet $rpm\n"
-#: _irpm:31 po/placeholder.h:178 urpmi:268
+#: _irpm:31 po/placeholder.h:204 po/placeholder.h:322 po/placeholder.h:374
+#: urpme:29 urpmi:268
msgid "Is it OK?"
msgstr "s correcte?"
-#: _irpm:33 po/placeholder.h:170 urpmi:271 urpmi:299
+#: _irpm:33 po/placeholder.h:193 po/placeholder.h:366 urpmi:271 urpmi:299
msgid "Ok"
msgstr "D'acord"
-#: _irpm:34 po/placeholder.h:131 urpmi:272 urpmi:300
+#: _irpm:34 po/placeholder.h:162 po/placeholder.h:327 urpmi:272 urpmi:300
msgid "Cancel"
msgstr "Cancella"
-#: _irpm:40 po/placeholder.h:143 urpmi:276 urpmi:340 urpmi:364
+#: _irpm:40 po/placeholder.h:176 po/placeholder.h:326 po/placeholder.h:339
+#: urpme:32 urpmi:276 urpmi:340 urpmi:364
msgid "Nn"
msgstr "Nn"
-#: _irpm:41 po/placeholder.h:146 urpmi:277 urpmi:341 urpmi:365
+#: _irpm:41 po/placeholder.h:89 po/placeholder.h:321 po/placeholder.h:342
+#: urpme:34 urpmi:277 urpmi:341 urpmi:365
msgid "Yy"
msgstr "SsYy"
-#: _irpm:42 po/placeholder.h:173 urpmi:278
+#: _irpm:42 po/placeholder.h:195 po/placeholder.h:318 po/placeholder.h:369
+#: urpme:94 urpmi:278
msgid " (Y/n) "
msgstr " (S/n) "
@@ -53,622 +57,712 @@ msgstr " (S/n) "
msgid "$rpm: command not found\n"
msgstr "$rpm: no s'ha trobat l'ordre\n"
-#: po/placeholder.h:6
+#: po/placeholder.h:6 po/placeholder.h:154
#, fuzzy, c-format
msgid "urpmf version %s"
msgstr "urpmi versi %s"
-#: po/placeholder.h:7
+#: po/placeholder.h:7 po/placeholder.h:192
msgid "Copyright (C) 1999,2000,2001 MandrakeSoft."
msgstr ""
-#: po/placeholder.h:8
+#: po/placeholder.h:8 po/placeholder.h:152
msgid ""
"This is free software and may be redistributed under the terms of the GNU "
"GPL."
msgstr ""
-#: po/placeholder.h:9 po/placeholder.h:26
+#: po/placeholder.h:9 po/placeholder.h:26 po/placeholder.h:130
#, fuzzy
msgid "usage: urpmf [options] <file>"
msgstr "sintaxi: rpmf [<fitxer>]"
-#: po/placeholder.h:10
+#: po/placeholder.h:10 po/placeholder.h:109
msgid ""
" --quiet - do not print tag name (default if no tag given on command"
msgstr ""
-#: po/placeholder.h:11
+#: po/placeholder.h:11 po/placeholder.h:153
msgid " line, incompatible with interactive mode)."
msgstr ""
-#: po/placeholder.h:12
+#: po/placeholder.h:12 po/placeholder.h:127
msgid " --all - print all tags."
msgstr ""
-#: po/placeholder.h:13
+#: po/placeholder.h:13 po/placeholder.h:157
msgid ""
" --name - print tag name: rpm filename (assumed if no tag given on"
msgstr ""
-#: po/placeholder.h:14
+#: po/placeholder.h:14 po/placeholder.h:159
msgid " command line but without package name)."
msgstr ""
-#: po/placeholder.h:15
+#: po/placeholder.h:15 po/placeholder.h:102
msgid " --group - print tag group: group."
msgstr ""
-#: po/placeholder.h:16
+#: po/placeholder.h:16 po/placeholder.h:87
msgid " --size - print tag size: size."
msgstr ""
-#: po/placeholder.h:17
+#: po/placeholder.h:17 po/placeholder.h:134
msgid " --serial - print tag serial: serial."
msgstr ""
-#: po/placeholder.h:18
+#: po/placeholder.h:18 po/placeholder.h:146
msgid " --summary - print tag summary: summary."
msgstr ""
-#: po/placeholder.h:19
+#: po/placeholder.h:19 po/placeholder.h:120
msgid " --description - print tag description: description."
msgstr ""
-#: po/placeholder.h:20
+#: po/placeholder.h:20 po/placeholder.h:138
msgid " --provides - print tag provides: all provides (multiple lines)."
msgstr ""
-#: po/placeholder.h:21
+#: po/placeholder.h:21 po/placeholder.h:186
msgid " --requires - print tag requires: all requires (multiple lines)."
msgstr ""
-#: po/placeholder.h:22
+#: po/placeholder.h:22 po/placeholder.h:41
msgid " --files - print tag files: all files (multiple lines)."
msgstr ""
-#: po/placeholder.h:23
+#: po/placeholder.h:23 po/placeholder.h:34
msgid ""
" --conflicts - print tag conflicts: all conflicts (multiple lines)."
msgstr ""
-#: po/placeholder.h:24
+#: po/placeholder.h:24 po/placeholder.h:106
msgid ""
" --obsoletes - print tag obsoletes: all obsoletes (multiple lines)."
msgstr ""
-#: po/placeholder.h:25
+#: po/placeholder.h:25 po/placeholder.h:128
msgid " --prereqs - print tag prereqs: all prereqs (multiple lines)."
msgstr ""
-#: po/placeholder.h:27
+#: po/placeholder.h:27 po/placeholder.h:62
msgid "try urpmf --help for more options"
msgstr ""
-#: po/placeholder.h:28
+#: po/placeholder.h:28 po/placeholder.h:49
msgid "no full media list was found"
msgstr ""
-#: po/placeholder.h:29
+#: po/placeholder.h:29 po/placeholder.h:214
#, c-format
msgid "unable to write config file [%s]"
msgstr ""
-#: po/placeholder.h:30 urpm.pm:1892
-msgid "retrieving rpms files..."
-msgstr ""
-
-#: po/placeholder.h:31
+#: po/placeholder.h:30 po/placeholder.h:216
msgid "examining whole urpmi database"
msgstr ""
-#: po/placeholder.h:32
-#, c-format
-msgid "using different removable device [%s] for \"%s\""
+#: po/placeholder.h:31 po/placeholder.h:331 po/placeholder.h:449
+msgid " -y - impose fuzzy search.\n"
msgstr ""
-#: po/placeholder.h:33
+#: po/placeholder.h:32 po/placeholder.h:220 urpm.pm:280
#, c-format
-msgid "nothing to write in list file for \"%s\""
-msgstr ""
-
-#: po/placeholder.h:34
-msgid ""
-"unable to access first installation medium (no Mandrake/base/hdlists file "
-"found)"
+msgid "unable to find list file for \"%s\", medium ignored"
msgstr ""
-#: po/placeholder.h:35 urpm.pm:280
+#: po/placeholder.h:33 po/placeholder.h:218
#, c-format
-msgid "unable to find list file for \"%s\", medium ignored"
+msgid "nothing to write in list file for \"%s\""
msgstr ""
-#: po/placeholder.h:36
+#: po/placeholder.h:35 po/placeholder.h:221
#, fuzzy, c-format
msgid "unable to parse hdlist file of \"%s\""
msgstr "no es pot actualitzar el suport \"%s\"\n"
-#: po/placeholder.h:37
+#: po/placeholder.h:36 po/placeholder.h:222
#, c-format
msgid "nothing written in list file for \"%s\""
msgstr ""
-#: po/placeholder.h:38
-#, c-format
-msgid "retrieving description file of \"%s\"..."
-msgstr ""
-
-#: po/placeholder.h:39
-#, fuzzy
-msgid "unable to access first installation medium"
-msgstr "no es pot actualitzar el suport \"%s\"\n"
-
-#: po/placeholder.h:40 urpm.pm:1768
-#, c-format
-msgid "package %s is not found."
+#: po/placeholder.h:37 po/placeholder.h:463
+msgid ""
+" --sources - give all source packages before downloading (root only).\n"
msgstr ""
-#: po/placeholder.h:41 urpm.pm:1129
-#, c-format
-msgid "unmounting %s"
+#: po/placeholder.h:38 po/placeholder.h:341 po/placeholder.h:466
+msgid ""
+" --auto-select - automatically select packages for upgrading the system.\n"
msgstr ""
-#: po/placeholder.h:42
+#: po/placeholder.h:39 po/placeholder.h:223
#, c-format
-msgid "removing %d obsolete headers in cache"
+msgid "retrieving description file of \"%s\"..."
msgstr ""
-#: po/placeholder.h:43
+#: po/placeholder.h:40 po/placeholder.h:225 urpm.pm:1769
#, c-format
-msgid "no hdlist file found for medium \"%s\""
+msgid "package %s is not found."
msgstr ""
-#: po/placeholder.h:44 urpm.pm:209
+#: po/placeholder.h:42 po/placeholder.h:229 urpm.pm:209
#, c-format
msgid "medium \"%s\" tries to use an already used hdlist, medium ignored"
msgstr ""
-#: po/placeholder.h:45 urpm.pm:1413
-msgid "<non printable chars>"
+#: po/placeholder.h:43 po/placeholder.h:317 urpme:52
+msgid "unknown package(s) "
msgstr ""
-#: po/placeholder.h:46
-msgid "problem reading hdlist file, trying again"
-msgstr ""
-
-#: po/placeholder.h:47 urpm.pm:233
+#: po/placeholder.h:44 po/placeholder.h:232 urpm.pm:233
#, c-format
msgid "unable to use name \"%s\" for unnamed medium because it is already used"
msgstr ""
-#: po/placeholder.h:48
-#, fuzzy, c-format
-msgid "removing medium \"%s\""
-msgstr "no es pot crear el suport \"%s\"\n"
+#: po/placeholder.h:45 po/placeholder.h:231
+msgid "problem reading hdlist file, trying again"
+msgstr ""
-#: po/placeholder.h:49 urpm.pm:240
+#: po/placeholder.h:46 po/placeholder.h:234 urpm.pm:240
#, c-format
msgid "unable to take medium \"%s\" into account as no list file [%s] exists"
msgstr ""
-#: po/placeholder.h:50
+#: po/placeholder.h:47 po/placeholder.h:235
msgid "keeping only files referenced in provides"
msgstr ""
-#: po/placeholder.h:51
-#, fuzzy, c-format
-msgid "unable to build synthesis file for medium \"%s\""
-msgstr "no es pot actualitzar el suport \"%s\"\n"
-
-#: po/placeholder.h:52
+#: po/placeholder.h:48 po/placeholder.h:237
#, c-format
msgid "found %d headers in cache"
msgstr ""
-#: po/placeholder.h:53
-#, fuzzy, c-format
-msgid "trying to select multiple medium: %s"
-msgstr "no es pot crear el suport \"%s\"\n"
-
-#: po/placeholder.h:54 urpm.pm:2125
+#: po/placeholder.h:50 po/placeholder.h:394 urpmi.addmedia:76
+#: urpmi.addmedia:93
#, c-format
-msgid "avoid selecting %s as its locales language is not already selected"
-msgstr ""
+msgid "unable to update medium \"%s\"\n"
+msgstr "no es pot actualitzar el suport \"%s\"\n"
-#: po/placeholder.h:55
-#, c-format
-msgid ""
-"removing %s to upgrade to %s ...\n"
-" since it will not be updated otherwise"
+#: po/placeholder.h:51 po/placeholder.h:400 po/placeholder.h:423
+#: po/placeholder.h:442
+msgid " -c - clean headers cache directory.\n"
msgstr ""
-#: po/placeholder.h:59
+#: po/placeholder.h:52 po/placeholder.h:244
#, c-format
msgid "medium \"%s\" already exists"
msgstr ""
-#: po/placeholder.h:60
+#: po/placeholder.h:53 po/placeholder.h:245
#, fuzzy, c-format
msgid "unable to write list file of \"%s\""
msgstr "no es pot crear el suport \"%s\"\n"
-#: po/placeholder.h:61
-#, c-format
-msgid "write config file [%s]"
+#: po/placeholder.h:54 po/placeholder.h:452
+msgid " names or rpm files given on command line are queried.\n"
msgstr ""
-#: po/placeholder.h:62 urpm.pm:1302
+#: po/placeholder.h:55 po/placeholder.h:247 urpm.pm:1302
#, fuzzy, c-format
msgid "no package named %s"
msgstr "no hi cap paquet anomenat %s\n"
-#: po/placeholder.h:63
+#: po/placeholder.h:56 po/placeholder.h:365 urpmi:350 urpmi:374
+msgid "Try installation even more strongly (--force)? (y/N) "
+msgstr "Voleu intentar la instalaci encara amb ms fora (--force)? (s/N) "
+
+#: po/placeholder.h:57 po/placeholder.h:250 urpm.pm:275
#, c-format
-msgid "built hdlist synthesis file for medium \"%s\""
+msgid "unable to find hdlist file for \"%s\", medium ignored"
msgstr ""
-#: po/placeholder.h:64
-#, fuzzy
-msgid "unable to build hdlist synthesis, using parsehdlist method"
-msgstr "no es pot actualitzar el suport \"%s\"\n"
-
-#: po/placeholder.h:65 urpm.pm:275
+#: po/placeholder.h:58 po/placeholder.h:248
#, c-format
-msgid "unable to find hdlist file for \"%s\", medium ignored"
+msgid "built hdlist synthesis file for medium \"%s\""
msgstr ""
-#: po/placeholder.h:66
+#: po/placeholder.h:59 po/placeholder.h:251
#, fuzzy
msgid "urpmi database locked"
msgstr "La consulta de la base de dades de l'rpm ha fallat\n"
-#: po/placeholder.h:67 urpm.pm:1118
-#, fuzzy, c-format
-msgid "mounting %s"
-msgstr "s'est installant %s\n"
+#: po/placeholder.h:60 po/placeholder.h:319 urpme:63
+#, fuzzy
+msgid " (y/N) "
+msgstr " (S/n) "
-#: po/placeholder.h:68 urpm.pm:227
-#, c-format
+#: po/placeholder.h:61 po/placeholder.h:370
+msgid " -a - select all matches on command line.\n"
+msgstr ""
+
+#: po/placeholder.h:63 po/placeholder.h:467 urpmq:137
msgid ""
-"unable to take care of medium \"%s\" as list file is already used by another "
-"medium"
+"some packages have to be removed for being upgraded, this is not supported "
+"yet\n"
msgstr ""
+"s'han d'eliminar alguns paquets per poder actualitzar-los, aix encara no es "
+"pot fer\n"
-#: po/placeholder.h:69
+#: po/placeholder.h:64 po/placeholder.h:252 urpm.pm:1118
#, fuzzy, c-format
-msgid "examining synthesis file [%s]"
-msgstr "no es pot crear el suport \"%s\"\n"
+msgid "mounting %s"
+msgstr "s'est installant %s\n"
-#: po/placeholder.h:70 urpm.pm:98
+#: po/placeholder.h:65 po/placeholder.h:405 po/placeholder.h:443
+msgid " -f - force generation of hdlist files.\n"
+msgstr ""
+
+#: po/placeholder.h:66 po/placeholder.h:255 urpm.pm:98
#, c-format
msgid "wget failed: exited with %d or signal %d\n"
msgstr ""
-#: po/placeholder.h:71
-#, fuzzy, c-format
-msgid "unable to retrieve pathname for removable medium \"%s\""
-msgstr "no es pot crear el suport \"%s\"\n"
+#: po/placeholder.h:67 po/placeholder.h:414 urpmi.removemedia:47
+msgid "nothing to remove (use urpmi.addmedia to add a media)\n"
+msgstr ""
+"no hi ha res per eliminar (utilitzeu urpmi.addmedia per afegir un suport)\n"
-#: po/placeholder.h:72 urpm.pm:1887
+#: po/placeholder.h:68 po/placeholder.h:257 urpm.pm:1886
#, c-format
msgid "malformed input: [%s]"
msgstr ""
-#: po/placeholder.h:73 urpm.pm:1721 urpm.pm:1747
-#, c-format
-msgid "there are multiple packages with the same rpm filename \"%s\""
+#: po/placeholder.h:69 po/placeholder.h:478
+msgid ""
+" -u - remove package if a better version is already installed.\n"
msgstr ""
-#: po/placeholder.h:74
+#: po/placeholder.h:70 po/placeholder.h:378 urpmi:216
+#, fuzzy, c-format
+msgid "One of the following packages is needed to install %s:"
+msgstr "Cal un dels paquets segents:"
+
+#: po/placeholder.h:71 po/placeholder.h:376 urpmi:297
+msgid "Press Enter when it's done..."
+msgstr "Premeu Intro quan estigui fet..."
+
+#: po/placeholder.h:72 po/placeholder.h:259
msgid "...copying failed"
msgstr ""
-#: po/placeholder.h:75 urpm.pm:212
+#: po/placeholder.h:73 po/placeholder.h:260 urpm.pm:212
#, c-format
msgid "medium \"%s\" tries to use an already used list, medium ignored"
msgstr ""
-#: po/placeholder.h:76
-msgid "retrieving hdlists file..."
+#: po/placeholder.h:74 po/placeholder.h:448
+msgid " -h - print this help message.\n"
msgstr ""
-#: po/placeholder.h:77 urpm.pm:253
-#, c-format
-msgid "unable to access hdlist file of \"%s\", medium ignored"
+#: po/placeholder.h:75 po/placeholder.h:450
+msgid " -g - print groups too with name.\n"
msgstr ""
-#: po/placeholder.h:78 urpm.pm:1208
-#, fuzzy
-msgid "unable to register rpm file"
-msgstr "no es pot crear el suport \"%s\"\n"
-
-#: po/placeholder.h:79
-#, c-format
-msgid "\"%s\""
+#: po/placeholder.h:76 po/placeholder.h:424
+msgid " -a - select all media.\n"
msgstr ""
-#: po/placeholder.h:80 urpm.pm:307
+#: po/placeholder.h:77 po/placeholder.h:267
#, c-format
-msgid "unable to inspect list file for \"%s\", medium ignored"
+msgid "invalid hdlist description \"%s\" in hdlists file"
msgstr ""
-#: po/placeholder.h:81
-#, c-format
-msgid "too many mount points for removable medium \"%s\""
+#: po/placeholder.h:78 po/placeholder.h:407
+msgid " -h - try to find and use synthesis or hdlist file.\n"
msgstr ""
-#: po/placeholder.h:82
-#, c-format
-msgid "invalid hdlist description \"%s\" in hdlists file"
+#: po/placeholder.h:79 po/placeholder.h:454
+msgid " -r - print version and release too with name.\n"
msgstr ""
-#: po/placeholder.h:83 urpm.pm:299
-#, c-format
-msgid "incoherent list file for \"%s\", medium ignored"
+#: po/placeholder.h:80 po/placeholder.h:455
+msgid " -f - print version, release and arch with name.\n"
msgstr ""
-#: po/placeholder.h:84
-#, c-format
-msgid "copy of [%s] failed"
+#: po/placeholder.h:81 po/placeholder.h:338
+msgid " --auto - automatically select a good package in choices.\n"
msgstr ""
-#: po/placeholder.h:85 urpm.pm:1420
+#: po/placeholder.h:82 po/placeholder.h:270 urpm.pm:1420
#, fuzzy, c-format
msgid "unable to parse correctly [%s]"
msgstr "no es pot actualitzar el suport \"%s\"\n"
-#: po/placeholder.h:86 urpm.pm:1421
+#: po/placeholder.h:83 po/placeholder.h:446 urpmi.update:57
+msgid "nothing to update (use urpmi.addmedia to add a media)\n"
+msgstr ""
+"no hi ha res per actualitzar (utilitzeu urpmi.addmedia per afegir un "
+"suport)\n"
+
+#: po/placeholder.h:84 po/placeholder.h:271 urpm.pm:1421
#, fuzzy, c-format
msgid "read synthesis file [%s]"
msgstr "no es pot crear el suport \"%s\"\n"
-#: po/placeholder.h:87 urpm.pm:1412 urpm.pm:1419
-#, fuzzy, c-format
-msgid "unable to analyse synthesis data of %s"
-msgstr "no es pot actualitzar el suport \"%s\"\n"
-
-#: po/placeholder.h:88 urpm.pm:93
+#: po/placeholder.h:85 po/placeholder.h:273 urpm.pm:93
msgid "no webfetch (curl or wget currently) found\n"
msgstr ""
-#: po/placeholder.h:89
-#, c-format
-msgid "retrieving source hdlist (or synthesis) of \"%s\"..."
+#: po/placeholder.h:86 po/placeholder.h:464
+msgid ""
+" -c - choose complete method for resolving requires closure.\n"
msgstr ""
-#: po/placeholder.h:90
-msgid "...copying done"
-msgstr ""
+#: po/placeholder.h:88 po/placeholder.h:393 urpmi.addmedia:92
+#, c-format
+msgid "unable to create medium \"%s\"\n"
+msgstr "no es pot crear el suport \"%s\"\n"
-#: po/placeholder.h:91
+#: po/placeholder.h:90 po/placeholder.h:276
#, c-format
msgid "copying source hdlist (or synthesis) of \"%s\"..."
msgstr ""
-#: po/placeholder.h:92
-msgid "copying hdlists file..."
+#: po/placeholder.h:91 po/placeholder.h:468 urpmq:87
+#, fuzzy, c-format
+msgid "urpmq: unknown option \"-%s\", check usage with --help\n"
+msgstr "urpmq: opci desconeguda \"-$1\", comproveu-ne la sintaxi amb --help\n"
+
+#: po/placeholder.h:92 po/placeholder.h:324 urpme:39
+#, fuzzy
+msgid "usage: urpme [-a] [--auto] <packages...>\n"
msgstr ""
+"sintaxi: urpmi [-h] [--auto] [--force] [-a] nom_paquet [noms_paquets...]\n"
-#: po/placeholder.h:93 urpm.pm:188 urpm.pm:200
+#: po/placeholder.h:93 po/placeholder.h:279
#, c-format
-msgid "syntax error in config file at line %s"
+msgid "building hdlist [%s]"
+msgstr ""
+
+#: po/placeholder.h:94 po/placeholder.h:347 po/placeholder.h:474
+msgid " --media - use only the media listed by comma.\n"
msgstr ""
-#: po/placeholder.h:94
+#: po/placeholder.h:95 po/placeholder.h:281
#, c-format
-msgid "building hdlist [%s]"
+msgid "added medium %s"
msgstr ""
-#: po/placeholder.h:95 urpm.pm:1822
+#: po/placeholder.h:96 po/placeholder.h:280 urpm.pm:1821
#, fuzzy, c-format
msgid "unable to read rpm file [%s] from medium \"%s\""
msgstr "no es pot crear el suport \"%s\"\n"
-#: po/placeholder.h:96
-#, c-format
-msgid "added medium %s"
+#: po/placeholder.h:97 po/placeholder.h:282
+msgid "retrieve of source hdlist (or synthesis) failed"
msgstr ""
-#: po/placeholder.h:97
-msgid "retrieve of source hdlist (or synthesis) failed"
+#: po/placeholder.h:98 po/placeholder.h:285 urpm.pm:1898
+#, c-format
+msgid "...retrieving failed: %s"
msgstr ""
-#: po/placeholder.h:98 urpm.pm:1212
-msgid "error registering local packages"
+#: po/placeholder.h:99 po/placeholder.h:286 urpm.pm:1837
+#, c-format
+msgid "incoherent medium \"%s\" marked removable but not really"
msgstr ""
-#: po/placeholder.h:99
+#: po/placeholder.h:100 po/placeholder.h:290 urpm.pm:1203
#, c-format
-msgid "taking removable device as \"%s\""
+msgid "invalid rpm file name [%s]"
msgstr ""
-#: po/placeholder.h:100 urpm.pm:1899
+#: po/placeholder.h:101 po/placeholder.h:291 urpm.pm:1398
#, c-format
-msgid "...retrieving failed: %s"
+msgid "unknown data associated with %s"
msgstr ""
-#: po/placeholder.h:101 urpm.pm:1838
+#: po/placeholder.h:103 po/placeholder.h:357 urpmi:225
#, c-format
-msgid "incoherent medium \"%s\" marked removable but not really"
+msgid "What is your choice? (1-%d) "
+msgstr "Quina s la vostra elecci? (1-%d) "
+
+#: po/placeholder.h:104 po/placeholder.h:293 urpm.pm:255
+#, c-format
+msgid "unable to access list file of \"%s\", medium ignored"
+msgstr ""
+
+#: po/placeholder.h:105 po/placeholder.h:358 po/placeholder.h:406
+#: po/placeholder.h:444
+msgid " --wget - use wget to retrieve distant files.\n"
msgstr ""
-#: po/placeholder.h:102
+#: po/placeholder.h:107 po/placeholder.h:294 urpm.pm:2113
#, c-format
-msgid "copying description file of \"%s\"..."
+msgid "avoid selecting %s as not enough files will be updated"
msgstr ""
-#: po/placeholder.h:103
+#: po/placeholder.h:108 po/placeholder.h:295 urpm.pm:1204
#, fuzzy, c-format
-msgid "unable to build hdlist: %s"
+msgid "unable to access rpm file [%s]"
+msgstr "no es pot crear el suport \"%s\"\n"
+
+#: po/placeholder.h:110 po/placeholder.h:368 urpmi:228
+msgid "Sorry, bad choice, try again\n"
+msgstr "Elecci incorrecta, torneu-ho a provar\n"
+
+#: po/placeholder.h:111 po/placeholder.h:301 urpm.pm:1848
+#, fuzzy, c-format
+msgid "unable to access medium \"%s\""
msgstr "no es pot actualitzar el suport \"%s\"\n"
-#: po/placeholder.h:104 urpm.pm:1812 urpm.pm:1815 urpm.pm:1834
+#: po/placeholder.h:112 po/placeholder.h:300 urpm.pm:1190
#, c-format
-msgid "medium \"%s\" is not selected"
+msgid "relocated %s entries in depslist"
msgstr ""
-#: po/placeholder.h:105 urpm.pm:1203
-#, c-format
-msgid "invalid rpm file name [%s]"
+#: po/placeholder.h:113 po/placeholder.h:371 po/placeholder.h:399
+#: po/placeholder.h:437
+msgid " --curl - use curl to retrieve distant files.\n"
msgstr ""
-#: po/placeholder.h:106 urpm.pm:1398
+#: po/placeholder.h:114 po/placeholder.h:303
+#, fuzzy, c-format
+msgid "trying to select inexistent medium \"%s\""
+msgstr "no es pot crear el suport \"%s\"\n"
+
+#: po/placeholder.h:115 po/placeholder.h:302 urpm.pm:1757
#, c-format
-msgid "unknown data associated with %s"
+msgid "unable to parse correctly [%s] on value \"%s\""
msgstr ""
-#: po/placeholder.h:107 urpm.pm:269
+#: po/placeholder.h:116 po/placeholder.h:305
#, c-format
-msgid "trying to bypass existing medium \"%s\", avoiding"
+msgid "no rpm files found from [%s]"
msgstr ""
-#: po/placeholder.h:108 urpm.pm:255
-#, c-format
-msgid "unable to access list file of \"%s\", medium ignored"
+#: po/placeholder.h:117 po/placeholder.h:312 urpm.pm:101
+msgid "curl is missing\n"
msgstr ""
-#: po/placeholder.h:109 urpm.pm:2113
+#: po/placeholder.h:118 po/placeholder.h:315 urpm.pm:244
#, c-format
-msgid "avoid selecting %s as not enough files will be updated"
+msgid "unable to determine medium of this hdlist file [%s]"
msgstr ""
-#: po/placeholder.h:110 urpm.pm:1204
-#, fuzzy, c-format
-msgid "unable to access rpm file [%s]"
-msgstr "no es pot crear el suport \"%s\"\n"
+#: po/placeholder.h:119 po/placeholder.h:328
+msgid " --help - print this help message.\n"
+msgstr ""
-#: po/placeholder.h:111
-#, c-format
-msgid ""
-"removing %s to upgrade to %s ...\n"
-" since it will not upgrade correctly!"
+#: po/placeholder.h:121 po/placeholder.h:329 urpmi:383
+msgid "everything already installed"
+msgstr "ja est tot installat"
+
+#: po/placeholder.h:122 po/placeholder.h:215 urpm.pm:1891
+msgid "retrieving rpms files..."
msgstr ""
-#: po/placeholder.h:115 urpm.pm:1190
+#: po/placeholder.h:123 po/placeholder.h:217
#, c-format
-msgid "relocated %s entries in depslist"
+msgid "using different removable device [%s] for \"%s\""
msgstr ""
-#: po/placeholder.h:116 urpm.pm:1849
+#: po/placeholder.h:124 po/placeholder.h:332 urpmi:217
+msgid "One of the following packages is needed:"
+msgstr "Cal un dels paquets segents:"
+
+#: po/placeholder.h:125 po/placeholder.h:219
+msgid ""
+"unable to access first installation medium (no Mandrake/base/hdlists file "
+"found)"
+msgstr ""
+
+#: po/placeholder.h:126 po/placeholder.h:451 urpmq:90
#, fuzzy, c-format
-msgid "unable to access medium \"%s\""
+msgid "urpmq: cannot read rpm file \"%s\"\n"
+msgstr "urpmq: no es pot llegir el fitxer rpm \"$_\"\n"
+
+#: po/placeholder.h:129 po/placeholder.h:323 urpme:87
+msgid "Nothing to remove.\n"
+msgstr ""
+
+#: po/placeholder.h:131 po/placeholder.h:340 urpmi:329 urpmi:336 urpmi:349
+#: urpmi:360 urpmi:373
+msgid "Installation failed"
+msgstr "La installaci ha fallat"
+
+#: po/placeholder.h:132 po/placeholder.h:224
+#, fuzzy
+msgid "unable to access first installation medium"
msgstr "no es pot actualitzar el suport \"%s\"\n"
-#: po/placeholder.h:117 urpm.pm:1756
+#: po/placeholder.h:133 po/placeholder.h:345 po/placeholder.h:469
+msgid " -P - do not search in provides to find package.\n"
+msgstr ""
+
+#: po/placeholder.h:135 po/placeholder.h:226 urpm.pm:1129
#, c-format
-msgid "unable to parse correctly [%s] on value \"%s\""
+msgid "unmounting %s"
+msgstr ""
+
+#: po/placeholder.h:136 po/placeholder.h:227
+#, c-format
+msgid "removing %d obsolete headers in cache"
+msgstr ""
+
+#: po/placeholder.h:137 po/placeholder.h:228
+#, c-format
+msgid "no hdlist file found for medium \"%s\""
+msgstr ""
+
+#: po/placeholder.h:139 po/placeholder.h:230 urpm.pm:1413
+msgid "<non printable chars>"
msgstr ""
-#: po/placeholder.h:118
+#: po/placeholder.h:140 po/placeholder.h:352 po/placeholder.h:476
+msgid " -v - verbose mode.\n"
+msgstr ""
+
+#: po/placeholder.h:141 po/placeholder.h:233
#, fuzzy, c-format
-msgid "trying to select inexistent medium \"%s\""
+msgid "removing medium \"%s\""
msgstr "no es pot crear el suport \"%s\"\n"
-#: po/placeholder.h:119 urpm.pm:1305
+#: po/placeholder.h:142 po/placeholder.h:236
#, fuzzy, c-format
-msgid "The following packages contain %s: %s"
-msgstr "Els paquets segents contenen %s: %s\n"
-
-#: po/placeholder.h:120
-#, c-format
-msgid "no rpm files found from [%s]"
-msgstr ""
+msgid "unable to build synthesis file for medium \"%s\""
+msgstr "no es pot actualitzar el suport \"%s\"\n"
-#: po/placeholder.h:121
+#: po/placeholder.h:143 po/placeholder.h:238
#, fuzzy, c-format
-msgid "examining hdlist file [%s]"
+msgid "trying to select multiple medium: %s"
msgstr "no es pot crear el suport \"%s\"\n"
-#: po/placeholder.h:122 urpm.pm:1191
-msgid "no entries relocated in depslist"
+#: po/placeholder.h:144 po/placeholder.h:447
+msgid " -a - select all non-removable media.\n"
msgstr ""
-#: po/placeholder.h:123 urpm.pm:1897
-msgid "...retrieving done"
+#: po/placeholder.h:145 po/placeholder.h:354
+msgid " names or rpm files given on command line are installed.\n"
msgstr ""
-#: po/placeholder.h:124 urpm.pm:2006
+#: po/placeholder.h:147 po/placeholder.h:239 urpm.pm:2125
#, c-format
-msgid "selecting %s using obsoletes"
+msgid "avoid selecting %s as its locales language is not already selected"
msgstr ""
-#: po/placeholder.h:125 urpm.pm:151
-#, c-format
-msgid "curl failed: exited with %d or signal %d\n"
+#: po/placeholder.h:148 po/placeholder.h:356
+msgid " --complete - use parsehdlist server to complete selection.\n"
msgstr ""
-#: po/placeholder.h:126 urpm.pm:2122
+#: po/placeholder.h:149 po/placeholder.h:246
#, c-format
-msgid "selecting %s by selection on files"
+msgid "write config file [%s]"
msgstr ""
-#: po/placeholder.h:127 urpm.pm:101
-msgid "curl is missing\n"
+#: po/placeholder.h:150 po/placeholder.h:249
+#, fuzzy
+msgid "unable to build hdlist synthesis, using parsehdlist method"
+msgstr "no es pot actualitzar el suport \"%s\"\n"
+
+#: po/placeholder.h:151 po/placeholder.h:413
+msgid ""
+" --distrib - automatically create all media from an installation "
+"medium.\n"
msgstr ""
-#: po/placeholder.h:128
+#: po/placeholder.h:155 po/placeholder.h:253 urpm.pm:227
#, c-format
-msgid "copying source list of \"%s\"..."
+msgid ""
+"unable to take care of medium \"%s\" as list file is already used by another "
+"medium"
msgstr ""
-#: po/placeholder.h:129 urpm.pm:96
-msgid "wget is missing\n"
-msgstr ""
+#: po/placeholder.h:156 po/placeholder.h:254
+#, fuzzy, c-format
+msgid "examining synthesis file [%s]"
+msgstr "no es pot crear el suport \"%s\"\n"
-#: po/placeholder.h:130 urpm.pm:244
+#: po/placeholder.h:158 po/placeholder.h:256
+#, fuzzy, c-format
+msgid "unable to retrieve pathname for removable medium \"%s\""
+msgstr "no es pot crear el suport \"%s\"\n"
+
+#: po/placeholder.h:160 po/placeholder.h:258 urpm.pm:1722 urpm.pm:1748
#, c-format
-msgid "unable to determine medium of this hdlist file [%s]"
+msgid "there are multiple packages with the same rpm filename \"%s\""
msgstr ""
-#: po/placeholder.h:132
-msgid " --help - print this help message.\n"
+#: po/placeholder.h:161 po/placeholder.h:316 urpme:93
+#, fuzzy, c-format
+msgid ""
+"To satisfy dependencies, the following packages are going to be removed (%d "
+"MB)"
msgstr ""
+"Per complir les dependncies, s'installaran els paquets segents (%d MB)"
-#: po/placeholder.h:133 urpmi:383
-msgid "everything already installed"
-msgstr "ja est tot installat"
+#: po/placeholder.h:163 po/placeholder.h:261
+msgid "retrieving hdlists file..."
+msgstr ""
-#: po/placeholder.h:134 urpmi:113
+#: po/placeholder.h:164 po/placeholder.h:330 urpmi:113
#, fuzzy, c-format
msgid "urpmi: unknown option \"-%s\", check usage with --help\n"
msgstr "urpmq: opci desconeguda \"-$1\", comproveu-ne la sintaxi amb --help\n"
-#: po/placeholder.h:135 po/placeholder.h:253
-msgid " -y - impose fuzzy search.\n"
+#: po/placeholder.h:165 po/placeholder.h:262 urpm.pm:253
+#, c-format
+msgid "unable to access hdlist file of \"%s\", medium ignored"
msgstr ""
-#: po/placeholder.h:136 urpmi:217
-msgid "One of the following packages is needed:"
-msgstr "Cal un dels paquets segents:"
+#: po/placeholder.h:166 po/placeholder.h:263 urpm.pm:1208
+#, fuzzy
+msgid "unable to register rpm file"
+msgstr "no es pot crear el suport \"%s\"\n"
+
+#: po/placeholder.h:167 po/placeholder.h:264
+#, c-format
+msgid "\"%s\""
+msgstr ""
+
+#: po/placeholder.h:168 po/placeholder.h:265 urpm.pm:307
+#, c-format
+msgid "unable to inspect list file for \"%s\", medium ignored"
+msgstr ""
+
+#: po/placeholder.h:169 po/placeholder.h:266
+#, c-format
+msgid "too many mount points for removable medium \"%s\""
+msgstr ""
+
+#: po/placeholder.h:170 po/placeholder.h:268 urpm.pm:299
+#, c-format
+msgid "incoherent list file for \"%s\", medium ignored"
+msgstr ""
-#: po/placeholder.h:137 po/placeholder.h:257
+#: po/placeholder.h:171 po/placeholder.h:333 po/placeholder.h:453
msgid " --update - use only update media.\n"
msgstr ""
-#: po/placeholder.h:138 urpmi:321
-msgid ""
-"Installation failed, some files are missing.\n"
-"You may want to update your urpmi database"
+#: po/placeholder.h:172 po/placeholder.h:269
+#, c-format
+msgid "copy of [%s] failed"
msgstr ""
-#: po/placeholder.h:142
-msgid " --auto - automatically select a good package in choices.\n"
+#: po/placeholder.h:173 po/placeholder.h:462
+msgid " -d - extend query to package dependencies.\n"
msgstr ""
-#: po/placeholder.h:144 urpmi:329 urpmi:336 urpmi:349 urpmi:360 urpmi:373
-msgid "Installation failed"
-msgstr "La installaci ha fallat"
+#: po/placeholder.h:174 po/placeholder.h:272 urpm.pm:1412 urpm.pm:1419
+#, fuzzy, c-format
+msgid "unable to analyse synthesis data of %s"
+msgstr "no es pot actualitzar el suport \"%s\"\n"
-#: po/placeholder.h:145 po/placeholder.h:270
-msgid ""
-" --auto-select - automatically select packages for upgrading the system.\n"
+#: po/placeholder.h:175 po/placeholder.h:274
+#, c-format
+msgid "retrieving source hdlist (or synthesis) of \"%s\"..."
msgstr ""
-#: po/placeholder.h:147
+#: po/placeholder.h:177 po/placeholder.h:343
msgid " --X - use X interface.\n"
msgstr ""
-#: po/placeholder.h:148 urpmi:267
+#: po/placeholder.h:178 po/placeholder.h:275
+msgid "...copying done"
+msgstr ""
+
+#: po/placeholder.h:179 po/placeholder.h:344 urpmi:267
#, c-format
msgid ""
"To satisfy dependencies, the following packages are going to be installed (%"
@@ -676,114 +770,180 @@ msgid ""
msgstr ""
"Per complir les dependncies, s'installaran els paquets segents (%d MB)"
-#: po/placeholder.h:149 po/placeholder.h:273
-msgid " -P - do not search in provides to find package.\n"
+#: po/placeholder.h:180 po/placeholder.h:277
+msgid "copying hdlists file..."
msgstr ""
-#: po/placeholder.h:150 urpmi:342 urpmi:366
+#: po/placeholder.h:181 po/placeholder.h:278 urpm.pm:188 urpm.pm:200
+#, c-format
+msgid "syntax error in config file at line %s"
+msgstr ""
+
+#: po/placeholder.h:182 po/placeholder.h:346 urpmi:342 urpmi:366
msgid "Try installation without checking dependencies? (y/N) "
msgstr ""
"Voleu intentar la installaci sense comprovar les dependncies? (s/N) "
-#: po/placeholder.h:151 po/placeholder.h:278
-msgid " --media - use only the media listed by comma.\n"
+#: po/placeholder.h:183 po/placeholder.h:283 urpm.pm:1212
+msgid "error registering local packages"
msgstr ""
-#: po/placeholder.h:152
-msgid ""
-" --best-output - choose best interface according to the environment:\n"
-" X or text mode.\n"
+#: po/placeholder.h:184 po/placeholder.h:284
+#, c-format
+msgid "taking removable device as \"%s\""
msgstr ""
-#: po/placeholder.h:156 po/placeholder.h:280
-msgid " -v - verbose mode.\n"
+#: po/placeholder.h:185 po/placeholder.h:353 po/placeholder.h:475
+msgid " -p - allow search in provides to find package.\n"
msgstr ""
-#: po/placeholder.h:157 po/placeholder.h:279
-msgid " -p - allow search in provides to find package.\n"
+#: po/placeholder.h:187 po/placeholder.h:287
+#, c-format
+msgid "copying description file of \"%s\"..."
msgstr ""
-#: po/placeholder.h:158
-msgid " names or rpm files given on command line are installed.\n"
+#: po/placeholder.h:188 po/placeholder.h:288
+#, fuzzy, c-format
+msgid "unable to build hdlist: %s"
+msgstr "no es pot actualitzar el suport \"%s\"\n"
+
+#: po/placeholder.h:189 po/placeholder.h:289 urpm.pm:1811 urpm.pm:1814
+#: urpm.pm:1833
+#, c-format
+msgid "medium \"%s\" is not selected"
+msgstr ""
+
+#: po/placeholder.h:190 po/placeholder.h:292 urpm.pm:269
+#, c-format
+msgid "trying to bypass existing medium \"%s\", avoiding"
msgstr ""
-#: po/placeholder.h:159
+#: po/placeholder.h:191 po/placeholder.h:355
msgid " -q - quiet mode.\n"
msgstr ""
-#: po/placeholder.h:160
-msgid " --complete - use parsehdlist server to complete selection.\n"
+#: po/placeholder.h:194 po/placeholder.h:367 po/placeholder.h:465
+msgid ""
+" --force - force invocation even if some packages do not exist.\n"
msgstr ""
-#: po/placeholder.h:161 urpmi:225
+#: po/placeholder.h:196 po/placeholder.h:320 urpme:62
#, c-format
-msgid "What is your choice? (1-%d) "
-msgstr "Quina s la vostra elecci? (1-%d) "
+msgid "Using \"%s\" as a substring, I found"
+msgstr ""
-#: po/placeholder.h:162 po/placeholder.h:210 po/placeholder.h:233
-msgid " --wget - use wget to retrieve distant files.\n"
+#: po/placeholder.h:197 po/placeholder.h:372 urpmi:316
+#, c-format
+msgid "installing %s\n"
+msgstr "s'est installant %s\n"
+
+#: po/placeholder.h:198 po/placeholder.h:325 urpme:30
+msgid "Remove them all?"
msgstr ""
-#: po/placeholder.h:163
+#: po/placeholder.h:199 po/placeholder.h:373 urpmi:296
#, c-format
-msgid ""
-"urpmi version %s\n"
-"Copyright (C) 1999, 2000, 2001 MandrakeSoft.\n"
-"This is free software and may be redistributed under the terms of the GNU "
-"GPL.\n"
-"usage:\n"
+msgid "Please insert the medium named \"%s\" on device [%s]"
+msgstr "Si us plau, inseriu el suport anomenat \"%s\" al dispositiu [%s]"
+
+#: po/placeholder.h:200 po/placeholder.h:304 urpm.pm:1305
+#, fuzzy, c-format
+msgid "The following packages contain %s: %s"
+msgstr "Els paquets segents contenen %s: %s\n"
+
+#: po/placeholder.h:201 po/placeholder.h:306
+#, fuzzy, c-format
+msgid "examining hdlist file [%s]"
+msgstr "no es pot crear el suport \"%s\"\n"
+
+#: po/placeholder.h:202 po/placeholder.h:307 urpm.pm:1191
+msgid "no entries relocated in depslist"
msgstr ""
-#: po/placeholder.h:169 urpmi:350 urpmi:374
-msgid "Try installation even more strongly (--force)? (y/N) "
-msgstr "Voleu intentar la instalaci encara amb ms fora (--force)? (s/N) "
+#: po/placeholder.h:203 po/placeholder.h:412
+msgid " --update - create an update medium.\n"
+msgstr ""
-#: po/placeholder.h:171 po/placeholder.h:269
+#: po/placeholder.h:205 po/placeholder.h:445
msgid ""
-" --force - force invocation even if some packages do not exist.\n"
+" -d - force complete computation of depslist.ordered file.\n"
msgstr ""
-#: po/placeholder.h:172 urpmi:228
-msgid "Sorry, bad choice, try again\n"
-msgstr "Elecci incorrecta, torneu-ho a provar\n"
+#: po/placeholder.h:206 po/placeholder.h:375 po/placeholder.h:477 urpmi:286
+#: urpmq:151
+msgid "unable to get source packages, aborting"
+msgstr "no es poden recuperar els paquets font. S'est interrompent"
-#: po/placeholder.h:174
-msgid " -a - select all matches on command line.\n"
+#: po/placeholder.h:207 po/placeholder.h:308 urpm.pm:1896
+msgid "...retrieving done"
msgstr ""
-#: po/placeholder.h:175 po/placeholder.h:203 po/placeholder.h:226
-msgid " --curl - use curl to retrieve distant files.\n"
+#: po/placeholder.h:208 po/placeholder.h:309 urpm.pm:2006
+#, c-format
+msgid "selecting %s using obsoletes"
msgstr ""
-#: po/placeholder.h:176 urpmi:316
+#: po/placeholder.h:209 po/placeholder.h:310 urpm.pm:151
#, c-format
-msgid "installing %s\n"
-msgstr "s'est installant %s\n"
+msgid "curl failed: exited with %d or signal %d\n"
+msgstr ""
-#: po/placeholder.h:177 urpmi:296
+#: po/placeholder.h:210 po/placeholder.h:311 urpm.pm:2122
#, c-format
-msgid "Please insert the medium named \"%s\" on device [%s]"
-msgstr "Si us plau, inseriu el suport anomenat \"%s\" al dispositiu [%s]"
-
-#: po/placeholder.h:179 po/placeholder.h:281 urpmi:286 urpmq:151
-msgid "unable to get source packages, aborting"
-msgstr "no es poden recuperar els paquets font. S'est interrompent"
+msgid "selecting %s by selection on files"
+msgstr ""
-#: po/placeholder.h:180 urpmi:297
-msgid "Press Enter when it's done..."
-msgstr "Premeu Intro quan estigui fet..."
+#: po/placeholder.h:211 po/placeholder.h:313
+#, c-format
+msgid "copying source list of \"%s\"..."
+msgstr ""
-#: po/placeholder.h:181 urpmi:131
+#: po/placeholder.h:212 po/placeholder.h:377 urpmi:131
#, fuzzy
msgid "Only superuser is allowed to install packages"
msgstr "El superusuari s l'nic autoritzat per installar paquets locals"
-#: po/placeholder.h:182 urpmi:216
-#, fuzzy, c-format
-msgid "One of the following packages is needed to install %s:"
-msgstr "Cal un dels paquets segents:"
+#: po/placeholder.h:213 po/placeholder.h:314 urpm.pm:96
+msgid "wget is missing\n"
+msgstr ""
-#: po/placeholder.h:183 urpmi.addmedia:70
+#: po/placeholder.h:240
+#, c-format
+msgid ""
+"removing %s to upgrade to %s ...\n"
+" since it will not be updated otherwise"
+msgstr ""
+
+#: po/placeholder.h:296
+#, c-format
+msgid ""
+"removing %s to upgrade to %s ...\n"
+" since it will not upgrade correctly!"
+msgstr ""
+
+#: po/placeholder.h:334 urpmi:321
+msgid ""
+"Installation failed, some files are missing.\n"
+"You may want to update your urpmi database"
+msgstr ""
+
+#: po/placeholder.h:348
+msgid ""
+" --best-output - choose best interface according to the environment:\n"
+" X or text mode.\n"
+msgstr ""
+
+#: po/placeholder.h:359
+#, c-format
+msgid ""
+"urpmi version %s\n"
+"Copyright (C) 1999, 2000, 2001 MandrakeSoft.\n"
+"This is free software and may be redistributed under the terms of the GNU "
+"GPL.\n"
+"usage:\n"
+msgstr ""
+
+#: po/placeholder.h:379 urpmi.addmedia:70
#, fuzzy, c-format
msgid ""
"%s\n"
@@ -792,7 +952,7 @@ msgstr ""
"%s\n"
"falta el <cam relatiu de l'hdlist>\n"
-#: po/placeholder.h:187
+#: po/placeholder.h:383
#, fuzzy
msgid ""
"usage: urpmi.addmedia [options] <name> <url> [with <relative_path>]\n"
@@ -816,17 +976,7 @@ msgstr ""
"d'hdlist>\n"
" removable_<dispositiu>://<cam>\n"
-#: po/placeholder.h:197 urpmi.addmedia:92
-#, c-format
-msgid "unable to create medium \"%s\"\n"
-msgstr "no es pot crear el suport \"%s\"\n"
-
-#: po/placeholder.h:198 urpmi.addmedia:76 urpmi.addmedia:93
-#, c-format
-msgid "unable to update medium \"%s\"\n"
-msgstr "no es pot actualitzar el suport \"%s\"\n"
-
-#: po/placeholder.h:199 po/placeholder.h:222 po/placeholder.h:238
+#: po/placeholder.h:395 po/placeholder.h:415 po/placeholder.h:433
#: urpmi.addmedia:57
#, fuzzy, c-format
msgid ""
@@ -834,11 +984,7 @@ msgid ""
"unknown options '%s'\n"
msgstr "opcions desconegudes \"%s\"\n"
-#: po/placeholder.h:204 po/placeholder.h:231 po/placeholder.h:246
-msgid " -c - clean headers cache directory.\n"
-msgstr ""
-
-#: po/placeholder.h:205 urpmi.addmedia:82
+#: po/placeholder.h:401 urpmi.addmedia:82
#, c-format
msgid ""
"%s\n"
@@ -847,15 +993,7 @@ msgstr ""
"%s\n"
"falta el <cam relatiu de l'hdlist>\n"
-#: po/placeholder.h:209 po/placeholder.h:232
-msgid " -f - force generation of hdlist files.\n"
-msgstr ""
-
-#: po/placeholder.h:211
-msgid " -h - try to find and use synthesis or hdlist file.\n"
-msgstr ""
-
-#: po/placeholder.h:212 urpmi.addmedia:84
+#: po/placeholder.h:408 urpmi.addmedia:84
#, c-format
msgid ""
"%s\n"
@@ -864,17 +1002,28 @@ msgstr ""
"%s\n"
"falta el `with' per als suports FTP\n"
-#: po/placeholder.h:216
-msgid " --update - create an update medium.\n"
+#: po/placeholder.h:419 urpmi.removemedia:49
+#, c-format
+msgid ""
+"the entry to remove is missing\n"
+"(one of %s)\n"
msgstr ""
+"falta l'entrada per eliminar\n"
+"(una de %s)\n"
-#: po/placeholder.h:217
+#: po/placeholder.h:425
+#, fuzzy
msgid ""
-" --distrib - automatically create all media from an installation "
-"medium.\n"
+"usage: urpmi.removemedia [-a] <name> ...\n"
+"where <name> is a medium name to remove.\n"
msgstr ""
+"sintaxi: urpmi.removemedia [-a] <nom> ...\n"
+"on <nom> s el nom del suport a eliminar.\n"
+" -a selecciona tots els suports.\n"
+"\n"
+"opcions desconegudes '%s'\n"
-#: po/placeholder.h:218
+#: po/placeholder.h:429
#, fuzzy
msgid ""
"usage: urpmi.update [options] <name> ...\n"
@@ -886,7 +1035,7 @@ msgstr ""
"\n"
"opcions desconegudes '%s'\n"
-#: po/placeholder.h:227 urpmi.update:59
+#: po/placeholder.h:438 urpmi.update:59
#, c-format
msgid ""
"the entry to update is missing\n"
@@ -895,77 +1044,7 @@ msgstr ""
"falta l'entrada per actualitzar\n"
"(una de %s)\n"
-#: po/placeholder.h:234
-msgid ""
-" -d - force complete computation of depslist.ordered file.\n"
-msgstr ""
-
-#: po/placeholder.h:235 urpmi.update:57
-msgid "nothing to update (use urpmi.addmedia to add a media)\n"
-msgstr ""
-"no hi ha res per actualitzar (utilitzeu urpmi.addmedia per afegir un "
-"suport)\n"
-
-#: po/placeholder.h:236
-msgid " -a - select all non-removable media.\n"
-msgstr ""
-
-#: po/placeholder.h:237 urpmi.removemedia:47
-msgid "nothing to remove (use urpmi.addmedia to add a media)\n"
-msgstr ""
-"no hi ha res per eliminar (utilitzeu urpmi.addmedia per afegir un suport)\n"
-
-#: po/placeholder.h:242 urpmi.removemedia:49
-#, c-format
-msgid ""
-"the entry to remove is missing\n"
-"(one of %s)\n"
-msgstr ""
-"falta l'entrada per eliminar\n"
-"(una de %s)\n"
-
-#: po/placeholder.h:247
-msgid " -a - select all media.\n"
-msgstr ""
-
-#: po/placeholder.h:248
-#, fuzzy
-msgid ""
-"usage: urpmi.removemedia [-a] <name> ...\n"
-"where <name> is a medium name to remove.\n"
-msgstr ""
-"sintaxi: urpmi.removemedia [-a] <nom> ...\n"
-"on <nom> s el nom del suport a eliminar.\n"
-" -a selecciona tots els suports.\n"
-"\n"
-"opcions desconegudes '%s'\n"
-
-#: po/placeholder.h:252
-msgid " -h - print this help message.\n"
-msgstr ""
-
-#: po/placeholder.h:254
-msgid " -g - print groups too with name.\n"
-msgstr ""
-
-#: po/placeholder.h:255 urpmq:90
-#, fuzzy, c-format
-msgid "urpmq: cannot read rpm file \"%s\"\n"
-msgstr "urpmq: no es pot llegir el fitxer rpm \"$_\"\n"
-
-#: po/placeholder.h:256
-msgid " names or rpm files given on command line are queried.\n"
-msgstr ""
-
-#: po/placeholder.h:258
-msgid " -r - print version and release too with name.\n"
-msgstr ""
-
-#: po/placeholder.h:259
-msgid " -f - print version, release and arch with name.\n"
-msgstr ""
-
-#: po/placeholder.h:260
+#: po/placeholder.h:456
#, c-format
msgid ""
"urpmq version %s\n"
@@ -975,44 +1054,12 @@ msgid ""
"usage:\n"
msgstr ""
-#: po/placeholder.h:266
-msgid " -d - extend query to package dependencies.\n"
-msgstr ""
-
-#: po/placeholder.h:267
-msgid ""
-" --sources - give all source packages before downloading (root only).\n"
-msgstr ""
-
-#: po/placeholder.h:268
-msgid ""
-" -c - choose complete method for resolving requires closure.\n"
-msgstr ""
-
-#: po/placeholder.h:271 urpmq:137
-msgid ""
-"some packages have to be removed for being upgraded, this is not supported "
-"yet\n"
-msgstr ""
-"s'han d'eliminar alguns paquets per poder actualitzar-los, aix encara no es "
-"pot fer\n"
-
-#: po/placeholder.h:272 urpmq:87
-#, fuzzy, c-format
-msgid "urpmq: unknown option \"-%s\", check usage with --help\n"
-msgstr "urpmq: opci desconeguda \"-$1\", comproveu-ne la sintaxi amb --help\n"
-
-#: po/placeholder.h:274
+#: po/placeholder.h:470
msgid ""
" --headers - extract headers for package listed from urpmi db to\n"
" stdout (root only).\n"
msgstr ""
-#: po/placeholder.h:282
-msgid ""
-" -u - remove package if a better version is already installed.\n"
-msgstr ""
-
#: urpm.pm:2030 urpm.pm:2039
#, c-format
msgid "removing %s to upgrade to %s ..."
@@ -1056,18 +1103,18 @@ msgstr ""
msgid ");"
msgstr ");"
-#: urpmi.update:41
-#, fuzzy
-msgid "usage: urpmi.update [options] <name> ..."
-msgstr "sintaxi: urpmi.update [-a] <nom> ..."
+#: urpmi.removemedia:34
+msgid "usage: urpmi.removemedia [-a] <name> ..."
+msgstr "sintaxi: urpmi.removemedia [-a] <nom> ..."
#: urpmi.removemedia:38 urpmi.update:49
msgid ", $_);"
msgstr ", $_);"
-#: urpmi.removemedia:34
-msgid "usage: urpmi.removemedia [-a] <name> ..."
-msgstr "sintaxi: urpmi.removemedia [-a] <nom> ..."
+#: urpmi.update:41
+#, fuzzy
+msgid "usage: urpmi.update [options] <name> ..."
+msgstr "sintaxi: urpmi.update [-a] <nom> ..."
#: urpmq:34
#, c-format
@@ -1198,12 +1245,6 @@ msgstr "urpmq versi %s"
#~ " s'installen els noms dels fitxers rpm (noms per al superusuari) que "
#~ "s'indiquen a la lnia d'ordres.\n"
-#~ msgid ""
-#~ "usage: urpmi [-h] [--auto] [--force] [-a] package_name "
-#~ "[package_names...]\n"
-#~ msgstr ""
-#~ "sintaxi: urpmi [-h] [--auto] [--force] [-a] nom_paquet [noms_paquets...]\n"
-
#~ msgid "Sorry can't find file %s, exiting"
#~ msgstr "No es pot trobar el fitxer %s, s'est sortint"
diff --git a/po/cs.po b/po/cs.po
index 9e220140..0b2f27fc 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: urpmi 1.7\n"
-"POT-Creation-Date: 2002-01-30 14:07+0100\n"
+"POT-Creation-Date: 2002-02-06 14:21+0100\n"
"PO-Revision-Date: 2002-01-23 18:56GMT+0200\n"
"Last-Translator: Radek Vybral <Radek.Vybiral@vsb.cz>\n"
"Language-Team: czech <cs@li.org>\n"
@@ -27,27 +27,31 @@ msgstr ""
"Automatick instalace balk....\n"
"Zadal jste instalaci balku $rpm\n"
-#: _irpm:31 po/placeholder.h:178 urpmi:268
+#: _irpm:31 po/placeholder.h:204 po/placeholder.h:322 po/placeholder.h:374
+#: urpme:29 urpmi:268
msgid "Is it OK?"
msgstr "Je to sprvn?"
-#: _irpm:33 po/placeholder.h:170 urpmi:271 urpmi:299
+#: _irpm:33 po/placeholder.h:193 po/placeholder.h:366 urpmi:271 urpmi:299
msgid "Ok"
msgstr "Ok"
-#: _irpm:34 po/placeholder.h:131 urpmi:272 urpmi:300
+#: _irpm:34 po/placeholder.h:162 po/placeholder.h:327 urpmi:272 urpmi:300
msgid "Cancel"
msgstr "Zruit"
-#: _irpm:40 po/placeholder.h:143 urpmi:276 urpmi:340 urpmi:364
+#: _irpm:40 po/placeholder.h:176 po/placeholder.h:326 po/placeholder.h:339
+#: urpme:32 urpmi:276 urpmi:340 urpmi:364
msgid "Nn"
msgstr "Nn"
-#: _irpm:41 po/placeholder.h:146 urpmi:277 urpmi:341 urpmi:365
+#: _irpm:41 po/placeholder.h:89 po/placeholder.h:321 po/placeholder.h:342
+#: urpme:34 urpmi:277 urpmi:341 urpmi:365
msgid "Yy"
msgstr "AaYy"
-#: _irpm:42 po/placeholder.h:173 urpmi:278
+#: _irpm:42 po/placeholder.h:195 po/placeholder.h:318 po/placeholder.h:369
+#: urpme:94 urpmi:278
msgid " (Y/n) "
msgstr " (A/n) "
@@ -55,16 +59,16 @@ msgstr " (A/n) "
msgid "$rpm: command not found\n"
msgstr "$rpm: pkaz nenalezen\n"
-#: po/placeholder.h:6
+#: po/placeholder.h:6 po/placeholder.h:154
#, c-format
msgid "urpmf version %s"
msgstr "urpmf verze %s"
-#: po/placeholder.h:7
+#: po/placeholder.h:7 po/placeholder.h:192
msgid "Copyright (C) 1999,2000,2001 MandrakeSoft."
msgstr "Copyright (C) 1999,2000,2001 MandrakeSoft."
-#: po/placeholder.h:8
+#: po/placeholder.h:8 po/placeholder.h:152
msgid ""
"This is free software and may be redistributed under the terms of the GNU "
"GPL."
@@ -72,627 +76,717 @@ msgstr ""
"Toto je svobodn software a je voln iiteln podle podmnek licence GNU "
"GPL."
-#: po/placeholder.h:9 po/placeholder.h:26
+#: po/placeholder.h:9 po/placeholder.h:26 po/placeholder.h:130
msgid "usage: urpmf [options] <file>"
msgstr "pouit: urpmf [volby] <soubor>"
-#: po/placeholder.h:10
+#: po/placeholder.h:10 po/placeholder.h:109
msgid ""
" --quiet - do not print tag name (default if no tag given on command"
msgstr ""
" --quiet - nevype jmno tagu (vchoz chovn, pokud nen jmno "
"tagu"
-#: po/placeholder.h:11
+#: po/placeholder.h:11 po/placeholder.h:153
msgid " line, incompatible with interactive mode)."
msgstr ""
" zadno na pkazov dce, opak interaktivnho reimu)."
-#: po/placeholder.h:12
+#: po/placeholder.h:12 po/placeholder.h:127
msgid " --all - print all tags."
msgstr " --all - vype vechny tagy."
-#: po/placeholder.h:13
+#: po/placeholder.h:13 po/placeholder.h:157
msgid ""
" --name - print tag name: rpm filename (assumed if no tag given on"
msgstr ""
" --name - vype tag: jmno rpm souboru (pedpokldan, pokud nen"
-#: po/placeholder.h:14
+#: po/placeholder.h:14 po/placeholder.h:159
msgid " command line but without package name)."
msgstr " zadn na pkazov dce ale bez jmna balku)."
-#: po/placeholder.h:15
+#: po/placeholder.h:15 po/placeholder.h:102
msgid " --group - print tag group: group."
msgstr " --group - vype tag skupina: group."
-#: po/placeholder.h:16
+#: po/placeholder.h:16 po/placeholder.h:87
msgid " --size - print tag size: size."
msgstr " --size - vype tag velikost: size."
-#: po/placeholder.h:17
+#: po/placeholder.h:17 po/placeholder.h:134
msgid " --serial - print tag serial: serial."
msgstr " --serial - vype tag sriov slo: serial."
-#: po/placeholder.h:18
+#: po/placeholder.h:18 po/placeholder.h:146
msgid " --summary - print tag summary: summary."
msgstr " --summary - vype tag souhrn: summary."
-#: po/placeholder.h:19
+#: po/placeholder.h:19 po/placeholder.h:120
msgid " --description - print tag description: description."
msgstr " --description - vype tag popis: description."
-#: po/placeholder.h:20
+#: po/placeholder.h:20 po/placeholder.h:138
msgid " --provides - print tag provides: all provides (multiple lines)."
msgstr ""
" --provides - vype tag poskytuje: all provides (na vce dek)."
-#: po/placeholder.h:21
+#: po/placeholder.h:21 po/placeholder.h:186
msgid " --requires - print tag requires: all requires (multiple lines)."
msgstr " --requires - vype tag vyaduje: all requires (na vce dek)."
-#: po/placeholder.h:22
+#: po/placeholder.h:22 po/placeholder.h:41
msgid " --files - print tag files: all files (multiple lines)."
msgstr " --files - vype tag soubory: all files (na vce dek)."
-#: po/placeholder.h:23
+#: po/placeholder.h:23 po/placeholder.h:34
msgid ""
" --conflicts - print tag conflicts: all conflicts (multiple lines)."
msgstr ""
" --conflicts - vype tag konflikty: all conflicts (na vce dek)."
-#: po/placeholder.h:24
+#: po/placeholder.h:24 po/placeholder.h:106
msgid ""
" --obsoletes - print tag obsoletes: all obsoletes (multiple lines)."
msgstr ""
" --obsoletes - vype tag nahrazuje: all obsoletes (na vce dek)."
-#: po/placeholder.h:25
+#: po/placeholder.h:25 po/placeholder.h:128
msgid " --prereqs - print tag prereqs: all prereqs (multiple lines)."
msgstr ""
" --prereqs - vype tag prerekvizity: all prereqs (na vce dek)."
-#: po/placeholder.h:27
+#: po/placeholder.h:27 po/placeholder.h:62
msgid "try urpmf --help for more options"
msgstr "zadejte urpmf --help pro zskn vce voleb"
-#: po/placeholder.h:28
+#: po/placeholder.h:28 po/placeholder.h:49
msgid "no full media list was found"
msgstr "nebyl nalezen dn popis zdroje"
-#: po/placeholder.h:29
+#: po/placeholder.h:29 po/placeholder.h:214
#, c-format
msgid "unable to write config file [%s]"
msgstr "nelze zapsat konfiguran soubor [%s]"
-#: po/placeholder.h:30 urpm.pm:1892
-msgid "retrieving rpms files..."
-msgstr "natm rpm soubory..."
-
-#: po/placeholder.h:31
+#: po/placeholder.h:30 po/placeholder.h:216
msgid "examining whole urpmi database"
msgstr "zpracovvm celou urpmi databzi"
-#: po/placeholder.h:32
+#: po/placeholder.h:31 po/placeholder.h:331 po/placeholder.h:449
+#, fuzzy
+msgid " -y - impose fuzzy search.\n"
+msgstr " -v - reim s vpisy.\n"
+
+#: po/placeholder.h:32 po/placeholder.h:220 urpm.pm:280
#, c-format
-msgid "using different removable device [%s] for \"%s\""
-msgstr "pro \"%s\" pouiju jin vyjmateln mdium [%s]"
+msgid "unable to find list file for \"%s\", medium ignored"
+msgstr "nelze najt seznam soubor pro \"%s\", zdroj se ignoruje"
-#: po/placeholder.h:33
+#: po/placeholder.h:33 po/placeholder.h:218
#, c-format
msgid "nothing to write in list file for \"%s\""
msgstr "nen co zapisovat do seznamu soubor pro \"%s\""
-#: po/placeholder.h:34
-msgid ""
-"unable to access first installation medium (no Mandrake/base/hdlists file "
-"found)"
-msgstr ""
-"nelze nast prvn instalan mdium (chyb soubor Mandrake/base/hdlists)"
-
-#: po/placeholder.h:35 urpm.pm:280
-#, c-format
-msgid "unable to find list file for \"%s\", medium ignored"
-msgstr "nelze najt seznam soubor pro \"%s\", zdroj se ignoruje"
-
-#: po/placeholder.h:36
+#: po/placeholder.h:35 po/placeholder.h:221
#, c-format
msgid "unable to parse hdlist file of \"%s\""
msgstr "nelze zpracovat soubor hdlist pro zdroj \"%s\""
-#: po/placeholder.h:37
+#: po/placeholder.h:36 po/placeholder.h:222
#, c-format
msgid "nothing written in list file for \"%s\""
msgstr "nen co zapisovat v seznamu soubor pro \"%s\""
-#: po/placeholder.h:38
+#: po/placeholder.h:37 po/placeholder.h:463
+msgid ""
+" --sources - give all source packages before downloading (root only).\n"
+msgstr ""
+" --source - vechny zdrojov balky ped staenm (pouze uivatel "
+"root).\n"
+
+#: po/placeholder.h:38 po/placeholder.h:341 po/placeholder.h:466
+msgid ""
+" --auto-select - automatically select packages for upgrading the system.\n"
+msgstr ""
+" --auto-select - automaticky vybere balky pro aktualizaci systmu.\n"
+
+#: po/placeholder.h:39 po/placeholder.h:223
#, c-format
msgid "retrieving description file of \"%s\"..."
msgstr "natm soubor s popisy pro \"%s\"..."
-#: po/placeholder.h:39
-msgid "unable to access first installation medium"
-msgstr "nelze pistoupit na prvn instalan mdium"
-
-#: po/placeholder.h:40 urpm.pm:1768
+#: po/placeholder.h:40 po/placeholder.h:225 urpm.pm:1769
#, c-format
msgid "package %s is not found."
msgstr "balek %s nenalezen"
-#: po/placeholder.h:41 urpm.pm:1129
-#, c-format
-msgid "unmounting %s"
-msgstr "odpojuji %s"
-
-#: po/placeholder.h:42
-#, c-format
-msgid "removing %d obsolete headers in cache"
-msgstr "odebrm %d starch hlaviek"
-
-#: po/placeholder.h:43
-#, c-format
-msgid "no hdlist file found for medium \"%s\""
-msgstr "nebyl nalezen soubor hdlist pro zdroj \"%s\""
-
-#: po/placeholder.h:44 urpm.pm:209
+#: po/placeholder.h:42 po/placeholder.h:229 urpm.pm:209
#, c-format
msgid "medium \"%s\" tries to use an already used hdlist, medium ignored"
msgstr ""
"zdroj \"%s\" bude ignorovn, protoe se pokou pout pouit soubor hdlist"
-#: po/placeholder.h:45 urpm.pm:1413
-msgid "<non printable chars>"
-msgstr "<nezobraziteln znaky>"
-
-#: po/placeholder.h:46
-msgid "problem reading hdlist file, trying again"
-msgstr "problm s natenm souboru hdlist, zkoum to znovu"
+#: po/placeholder.h:43 po/placeholder.h:317 urpme:52
+msgid "unknown package(s) "
+msgstr ""
-#: po/placeholder.h:47 urpm.pm:233
+#: po/placeholder.h:44 po/placeholder.h:232 urpm.pm:233
#, c-format
msgid "unable to use name \"%s\" for unnamed medium because it is already used"
msgstr ""
"nelze pout jmno \"%s\" pro nepojmenovan zdroj protoe to je ji pouito"
-#: po/placeholder.h:48
-#, c-format
-msgid "removing medium \"%s\""
-msgstr "odebrm zdroj \"%s\""
+#: po/placeholder.h:45 po/placeholder.h:231
+msgid "problem reading hdlist file, trying again"
+msgstr "problm s natenm souboru hdlist, zkoum to znovu"
-#: po/placeholder.h:49 urpm.pm:240
+#: po/placeholder.h:46 po/placeholder.h:234 urpm.pm:240
#, c-format
msgid "unable to take medium \"%s\" into account as no list file [%s] exists"
msgstr ""
"pokud neexistuje seznam soubor[%s], nelze zaadit zdroj \"%s\" mezi "
"pouvan"
-#: po/placeholder.h:50
+#: po/placeholder.h:47 po/placeholder.h:235
msgid "keeping only files referenced in provides"
msgstr "ponechvm pouze soubory uveden v sekci poskytujcch"
-#: po/placeholder.h:51
-#, c-format
-msgid "unable to build synthesis file for medium \"%s\""
-msgstr "nelze vytvoit soubor syntzy pro zdroj \"%s\""
-
-#: po/placeholder.h:52
+#: po/placeholder.h:48 po/placeholder.h:237
#, c-format
msgid "found %d headers in cache"
msgstr "nalezeno %d hlaviek"
-#: po/placeholder.h:53
-#, c-format
-msgid "trying to select multiple medium: %s"
-msgstr "pokoum se vybrat vce zdroj: %s"
-
-#: po/placeholder.h:54 urpm.pm:2125
+#: po/placeholder.h:50 po/placeholder.h:394 urpmi.addmedia:76
+#: urpmi.addmedia:93
#, c-format
-msgid "avoid selecting %s as its locales language is not already selected"
-msgstr ""
-"vyhnte se vbru %s, pokud tak nen vybrna podpora pro lokln jazyk"
+msgid "unable to update medium \"%s\"\n"
+msgstr "nelze aktualizovat zdroj \"%s\"\n"
-#: po/placeholder.h:55
-#, c-format
-msgid ""
-"removing %s to upgrade to %s ...\n"
-" since it will not be updated otherwise"
-msgstr ""
-"odebrm %s pro aktualizaci %s ...\n"
-" jinak nebude spn aktualizovn"
+#: po/placeholder.h:51 po/placeholder.h:400 po/placeholder.h:423
+#: po/placeholder.h:442
+msgid " -c - clean headers cache directory.\n"
+msgstr " -c - smae doasn adres.\n"
-#: po/placeholder.h:59
+#: po/placeholder.h:52 po/placeholder.h:244
#, c-format
msgid "medium \"%s\" already exists"
msgstr "zdroj \"%s\" ji existuje"
-#: po/placeholder.h:60
+#: po/placeholder.h:53 po/placeholder.h:245
#, c-format
msgid "unable to write list file of \"%s\""
msgstr "nelze zapsat seznam soubor pro zdroj \"%s\""
-#: po/placeholder.h:61
-#, c-format
-msgid "write config file [%s]"
-msgstr "zapisuji konfiguran soubor [%s]"
+#: po/placeholder.h:54 po/placeholder.h:452
+msgid " names or rpm files given on command line are queried.\n"
+msgstr ""
+" jmno nebo rpm soubory zadan na pkazov dce, kter jsou dotazovny.\n"
-#: po/placeholder.h:62 urpm.pm:1302
+#: po/placeholder.h:55 po/placeholder.h:247 urpm.pm:1302
#, c-format
msgid "no package named %s"
msgstr "dn balek nem jmno %s"
-#: po/placeholder.h:63
-#, c-format
-msgid "built hdlist synthesis file for medium \"%s\""
-msgstr "vytvm syntzu pro hdlist pro zdroj \"%s\""
-
-#: po/placeholder.h:64
-msgid "unable to build hdlist synthesis, using parsehdlist method"
-msgstr "nelze vytvoit syntzu pro hdlist, pouiju metodu parsehdlist"
+#: po/placeholder.h:56 po/placeholder.h:365 urpmi:350 urpmi:374
+msgid "Try installation even more strongly (--force)? (y/N) "
+msgstr "Mm zkusit instalaci jet razantnji (--force)? (a/N) "
-#: po/placeholder.h:65 urpm.pm:275
+#: po/placeholder.h:57 po/placeholder.h:250 urpm.pm:275
#, c-format
msgid "unable to find hdlist file for \"%s\", medium ignored"
msgstr "nelze nalzt soubor hdlist pro \"%s\", zdroj bude ignorovn"
-#: po/placeholder.h:66
+#: po/placeholder.h:58 po/placeholder.h:248
+#, c-format
+msgid "built hdlist synthesis file for medium \"%s\""
+msgstr "vytvm syntzu pro hdlist pro zdroj \"%s\""
+
+#: po/placeholder.h:59 po/placeholder.h:251
msgid "urpmi database locked"
msgstr "databze pro urpmi je zamknut"
-#: po/placeholder.h:67 urpm.pm:1118
-#, c-format
-msgid "mounting %s"
-msgstr "pipojuji %s"
+#: po/placeholder.h:60 po/placeholder.h:319 urpme:63
+#, fuzzy
+msgid " (y/N) "
+msgstr " (A/n) "
-#: po/placeholder.h:68 urpm.pm:227
-#, c-format
+#: po/placeholder.h:61 po/placeholder.h:370
+msgid " -a - select all matches on command line.\n"
+msgstr " -a - vybere vechny vyhovujc z pkazov dky.\n"
+
+#: po/placeholder.h:63 po/placeholder.h:467 urpmq:137
msgid ""
-"unable to take care of medium \"%s\" as list file is already used by another "
-"medium"
+"some packages have to be removed for being upgraded, this is not supported "
+"yet\n"
msgstr ""
-"nelze pracovat se zdrojem \"%s\", pokud je seznam soubor vyuvn jinm"
+"nkter balky pro upgrade se mus odebrat, toto je zatm nepodporovno\n"
-#: po/placeholder.h:69
+#: po/placeholder.h:64 po/placeholder.h:252 urpm.pm:1118
#, c-format
-msgid "examining synthesis file [%s]"
-msgstr "zpracovvm soubor syntzy [%s]"
+msgid "mounting %s"
+msgstr "pipojuji %s"
-#: po/placeholder.h:70 urpm.pm:98
+#: po/placeholder.h:65 po/placeholder.h:405 po/placeholder.h:443
+msgid " -f - force generation of hdlist files.\n"
+msgstr " -f - provede generovn hdlist soubor.\n"
+
+#: po/placeholder.h:66 po/placeholder.h:255 urpm.pm:98
#, c-format
msgid "wget failed: exited with %d or signal %d\n"
msgstr "pkaz wget selhal: skonil s kdem %d nebo signlem %d\n"
-#: po/placeholder.h:71
-#, c-format
-msgid "unable to retrieve pathname for removable medium \"%s\""
-msgstr "nelze nast cestu pro vmnn mdium \"%s\""
+#: po/placeholder.h:67 po/placeholder.h:414 urpmi.removemedia:47
+msgid "nothing to remove (use urpmi.addmedia to add a media)\n"
+msgstr "nic k odebrn (pouijte urpmi.addmedia pro pidn zdroje)\n"
-#: po/placeholder.h:72 urpm.pm:1887
+#: po/placeholder.h:68 po/placeholder.h:257 urpm.pm:1886
#, c-format
msgid "malformed input: [%s]"
msgstr "nesprvn vstup: [%s]"
-#: po/placeholder.h:73 urpm.pm:1721 urpm.pm:1747
+#: po/placeholder.h:69 po/placeholder.h:478
+msgid ""
+" -u - remove package if a better version is already installed.\n"
+msgstr ""
+" -u - odebere balek pokud je ji instalovna novj verze.\n"
+
+#: po/placeholder.h:70 po/placeholder.h:378 urpmi:216
#, c-format
-msgid "there are multiple packages with the same rpm filename \"%s\""
-msgstr "vce balk m stejn jmno rpm souboru \"%s\""
+msgid "One of the following packages is needed to install %s:"
+msgstr ""
+"Pro instalaci %s je zapoteb nainstalovat jeden z nsledujcch balk:"
-#: po/placeholder.h:74
+#: po/placeholder.h:71 po/placeholder.h:376 urpmi:297
+msgid "Press Enter when it's done..."
+msgstr "A potom stisknte Enter..."
+
+#: po/placeholder.h:72 po/placeholder.h:259
msgid "...copying failed"
msgstr "...koprovn selhalo"
-#: po/placeholder.h:75 urpm.pm:212
+#: po/placeholder.h:73 po/placeholder.h:260 urpm.pm:212
#, c-format
msgid "medium \"%s\" tries to use an already used list, medium ignored"
msgstr ""
"zdroj \"%s\" bude ignorovn, protoe se pokou pout ji pouit seznam"
-#: po/placeholder.h:76
-msgid "retrieving hdlists file..."
-msgstr "natm soubor hdlists..."
-
-#: po/placeholder.h:77 urpm.pm:253
-#, c-format
-msgid "unable to access hdlist file of \"%s\", medium ignored"
-msgstr ""
-"zdroj \"%s\" bude ignorovn, protoe nelze nast soubor hdlist pro zdroj"
-
-#: po/placeholder.h:78 urpm.pm:1208
-msgid "unable to register rpm file"
-msgstr "nelze zaregistrovat rpm soubor"
-
-#: po/placeholder.h:79
-#, c-format
-msgid "\"%s\""
-msgstr "\"%s\""
+#: po/placeholder.h:74 po/placeholder.h:448
+msgid " -h - print this help message.\n"
+msgstr " -h - vype tuto npovdu.\n"
-#: po/placeholder.h:80 urpm.pm:307
-#, c-format
-msgid "unable to inspect list file for \"%s\", medium ignored"
-msgstr "nelze prozkoumat seznam soubor pro \"%s\", zdroj bude ignorovn"
+#: po/placeholder.h:75 po/placeholder.h:450
+msgid " -g - print groups too with name.\n"
+msgstr " -g - vype tag skupina spolen se jmnem.\n"
-#: po/placeholder.h:81
-#, c-format
-msgid "too many mount points for removable medium \"%s\""
-msgstr "vmnn mdium \"%s\" m vce ppojnch bod"
+#: po/placeholder.h:76 po/placeholder.h:424
+msgid " -a - select all media.\n"
+msgstr " -a - vybere vechna mdia.\n"
-#: po/placeholder.h:82
+#: po/placeholder.h:77 po/placeholder.h:267
#, c-format
msgid "invalid hdlist description \"%s\" in hdlists file"
msgstr "patn popis \"%s\" v souboru hdlists"
-#: po/placeholder.h:83 urpm.pm:299
-#, c-format
-msgid "incoherent list file for \"%s\", medium ignored"
-msgstr "nesouvisl seznam soubor pro \"%s\", zdroj bude ignorovn"
+#: po/placeholder.h:78 po/placeholder.h:407
+msgid " -h - try to find and use synthesis or hdlist file.\n"
+msgstr ""
+" -h - provede pokus o nalezen souboru hdlist nebo synthesis.\n"
-#: po/placeholder.h:84
-#, c-format
-msgid "copy of [%s] failed"
-msgstr "koprovn [%s] selhalo"
+#: po/placeholder.h:79 po/placeholder.h:454
+msgid " -r - print version and release too with name.\n"
+msgstr " -r - spolen se jmnem vype verzi a vydn.\n"
-#: po/placeholder.h:85 urpm.pm:1420
+#: po/placeholder.h:80 po/placeholder.h:455
+msgid " -f - print version, release and arch with name.\n"
+msgstr ""
+" -f - spolen se jmnem vype verzi, vydn a architekturu.\n"
+
+#: po/placeholder.h:81 po/placeholder.h:338
+msgid " --auto - automatically select a good package in choices.\n"
+msgstr " --auto - automaticky vybere sprvn balek z vbru.\n"
+
+#: po/placeholder.h:82 po/placeholder.h:270 urpm.pm:1420
#, c-format
msgid "unable to parse correctly [%s]"
msgstr "nelze sprvn zpracovat [%s]"
-#: po/placeholder.h:86 urpm.pm:1421
+#: po/placeholder.h:83 po/placeholder.h:446 urpmi.update:57
+msgid "nothing to update (use urpmi.addmedia to add a media)\n"
+msgstr "nic k aktualizaci (pouijte urpmi.addmedia pro pidn zdroje)\n"
+
+#: po/placeholder.h:84 po/placeholder.h:271 urpm.pm:1421
#, c-format
msgid "read synthesis file [%s]"
msgstr "natm soubor syntzy [%s]"
-#: po/placeholder.h:87 urpm.pm:1412 urpm.pm:1419
-#, c-format
-msgid "unable to analyse synthesis data of %s"
-msgstr "nelze zpracovat data ze syntzy pro zdroj %s"
-
-#: po/placeholder.h:88 urpm.pm:93
+#: po/placeholder.h:85 po/placeholder.h:273 urpm.pm:93
msgid "no webfetch (curl or wget currently) found\n"
msgstr "nebyl nalezen program webfetch (nebo curl i wget)\n"
-#: po/placeholder.h:89
-#, c-format
-msgid "retrieving source hdlist (or synthesis) of \"%s\"..."
-msgstr "natm zdrojov hdlist (nebo synthesis) pro \"%s\"..."
+#: po/placeholder.h:86 po/placeholder.h:464
+msgid ""
+" -c - choose complete method for resolving requires closure.\n"
+msgstr " -c - vybere kompletn metodu pro vyeen zvislost.\n"
-#: po/placeholder.h:90
-msgid "...copying done"
-msgstr "...koprovn ukoneno"
+#: po/placeholder.h:88 po/placeholder.h:393 urpmi.addmedia:92
+#, c-format
+msgid "unable to create medium \"%s\"\n"
+msgstr "nelze vytvoit zdroj \"%s\"\n"
-#: po/placeholder.h:91
+#: po/placeholder.h:90 po/placeholder.h:276
#, c-format
msgid "copying source hdlist (or synthesis) of \"%s\"..."
msgstr "kopruji zdrojov hdlist (nebo systhesis) pro \"%s\"..."
-#: po/placeholder.h:92
-msgid "copying hdlists file..."
-msgstr "kopruji soubor hdlists..."
-
-#: po/placeholder.h:93 urpm.pm:188 urpm.pm:200
+#: po/placeholder.h:91 po/placeholder.h:468 urpmq:87
#, c-format
-msgid "syntax error in config file at line %s"
-msgstr "syntaktick chyba v konfiguranm souboru na dku %s"
+msgid "urpmq: unknown option \"-%s\", check usage with --help\n"
+msgstr "urpmq: neznm volba \"%s\", zpsob pouit vyvolte s --help\n"
+
+#: po/placeholder.h:92 po/placeholder.h:324 urpme:39
+#, fuzzy
+msgid "usage: urpme [-a] [--auto] <packages...>\n"
+msgstr "pouit: urpmi.removemedia [-a] <jmno> ..."
-#: po/placeholder.h:94
+#: po/placeholder.h:93 po/placeholder.h:279
#, c-format
msgid "building hdlist [%s]"
msgstr "vytvm hdlist [%s]"
-#: po/placeholder.h:95 urpm.pm:1822
-#, c-format
-msgid "unable to read rpm file [%s] from medium \"%s\""
-msgstr "nelze nast rpm soubor [%s] pro zdroj \"%s\""
+#: po/placeholder.h:94 po/placeholder.h:347 po/placeholder.h:474
+msgid " --media - use only the media listed by comma.\n"
+msgstr " --media - pout pouze zdroje oddlen rkou.\n"
-#: po/placeholder.h:96
+#: po/placeholder.h:95 po/placeholder.h:281
#, c-format
msgid "added medium %s"
msgstr "pidn zdroj %s"
-#: po/placeholder.h:97
+#: po/placeholder.h:96 po/placeholder.h:280 urpm.pm:1821
+#, c-format
+msgid "unable to read rpm file [%s] from medium \"%s\""
+msgstr "nelze nast rpm soubor [%s] pro zdroj \"%s\""
+
+#: po/placeholder.h:97 po/placeholder.h:282
msgid "retrieve of source hdlist (or synthesis) failed"
msgstr "natn zdrojovho souboru hdlist (nebo systhesis) selhalo"
-#: po/placeholder.h:98 urpm.pm:1212
-msgid "error registering local packages"
-msgstr "chyba pi registraci loklnch balk"
-
-#: po/placeholder.h:99
-#, c-format
-msgid "taking removable device as \"%s\""
-msgstr "beru vyjmateln mdium jako \"%s\""
-
-#: po/placeholder.h:100 urpm.pm:1899
+#: po/placeholder.h:98 po/placeholder.h:285 urpm.pm:1898
#, c-format
msgid "...retrieving failed: %s"
msgstr "...natn selhalo: %s"
-#: po/placeholder.h:101 urpm.pm:1838
+#: po/placeholder.h:99 po/placeholder.h:286 urpm.pm:1837
#, c-format
msgid "incoherent medium \"%s\" marked removable but not really"
msgstr "nesouvisl mdium \"%s\" je oznaeno jako vyjmateln"
-#: po/placeholder.h:102
-#, c-format
-msgid "copying description file of \"%s\"..."
-msgstr "kopruji soubor s popisy pro \"%s\"..."
-
-#: po/placeholder.h:103
-#, c-format
-msgid "unable to build hdlist: %s"
-msgstr "nelze vytvoit hdlist: %s"
-
-#: po/placeholder.h:104 urpm.pm:1812 urpm.pm:1815 urpm.pm:1834
-#, c-format
-msgid "medium \"%s\" is not selected"
-msgstr "zdroj \"%s\" nen vybrn"
-
-#: po/placeholder.h:105 urpm.pm:1203
+#: po/placeholder.h:100 po/placeholder.h:290 urpm.pm:1203
#, c-format
msgid "invalid rpm file name [%s]"
msgstr "nesprvn jmno rpm souboru [%s]"
-#: po/placeholder.h:106 urpm.pm:1398
+#: po/placeholder.h:101 po/placeholder.h:291 urpm.pm:1398
#, c-format
msgid "unknown data associated with %s"
msgstr "neznm data asociovna s %s"
-#: po/placeholder.h:107 urpm.pm:269
+#: po/placeholder.h:103 po/placeholder.h:357 urpmi:225
#, c-format
-msgid "trying to bypass existing medium \"%s\", avoiding"
-msgstr "pokus o vynechn existujcho zdroje \"%s\""
+msgid "What is your choice? (1-%d) "
+msgstr "Jak je vae volba? (1-%d) "
-#: po/placeholder.h:108 urpm.pm:255
+#: po/placeholder.h:104 po/placeholder.h:293 urpm.pm:255
#, c-format
msgid "unable to access list file of \"%s\", medium ignored"
msgstr "nelze zskat seznam soubor pro \"%s\", zdroj bude ignorovn"
-#: po/placeholder.h:109 urpm.pm:2113
+#: po/placeholder.h:105 po/placeholder.h:358 po/placeholder.h:406
+#: po/placeholder.h:444
+msgid " --wget - use wget to retrieve distant files.\n"
+msgstr " --wget - pouije program wget pro naten soubor.\n"
+
+#: po/placeholder.h:107 po/placeholder.h:294 urpm.pm:2113
#, c-format
msgid "avoid selecting %s as not enough files will be updated"
msgstr "vyvarujte se vybrat %s dokud nebude dost soubor aktualizovno"
-#: po/placeholder.h:110 urpm.pm:1204
+#: po/placeholder.h:108 po/placeholder.h:295 urpm.pm:1204
#, c-format
msgid "unable to access rpm file [%s]"
msgstr "nelze zpstupnit rpm soubor [%s]"
-#: po/placeholder.h:111
+#: po/placeholder.h:110 po/placeholder.h:368 urpmi:228
+msgid "Sorry, bad choice, try again\n"
+msgstr "Je mi lto, to je patn volba. Zkuste to znovu\n"
+
+#: po/placeholder.h:111 po/placeholder.h:301 urpm.pm:1848
#, c-format
-msgid ""
-"removing %s to upgrade to %s ...\n"
-" since it will not upgrade correctly!"
-msgstr ""
-"odebrm %s pro aktualizaci %s...\n"
-" protoe jinak by se aktualizace nezdaila!"
+msgid "unable to access medium \"%s\""
+msgstr "nelze pistoupit na zdroj \"%s\""
-#: po/placeholder.h:115 urpm.pm:1190
+#: po/placeholder.h:112 po/placeholder.h:300 urpm.pm:1190
#, c-format
msgid "relocated %s entries in depslist"
msgstr "pesunut poloky %s v souboru depslist"
-#: po/placeholder.h:116 urpm.pm:1849
+#: po/placeholder.h:113 po/placeholder.h:371 po/placeholder.h:399
+#: po/placeholder.h:437
+msgid " --curl - use curl to retrieve distant files.\n"
+msgstr " --curl - pouije program curl pro naten soubor.\n"
+
+#: po/placeholder.h:114 po/placeholder.h:303
#, c-format
-msgid "unable to access medium \"%s\""
-msgstr "nelze pistoupit na zdroj \"%s\""
+msgid "trying to select inexistent medium \"%s\""
+msgstr "nelze vybrat neexistujc zdroj \"%s\""
-#: po/placeholder.h:117 urpm.pm:1756
+#: po/placeholder.h:115 po/placeholder.h:302 urpm.pm:1757
#, c-format
msgid "unable to parse correctly [%s] on value \"%s\""
msgstr "nelze korektn zpracovat [%s] kvli hodnot \"%s\""
-#: po/placeholder.h:118
+#: po/placeholder.h:116 po/placeholder.h:305
#, c-format
-msgid "trying to select inexistent medium \"%s\""
-msgstr "nelze vybrat neexistujc zdroj \"%s\""
+msgid "no rpm files found from [%s]"
+msgstr "nebyl nalezen dn rpm soubor na [%s]"
+
+#: po/placeholder.h:117 po/placeholder.h:312 urpm.pm:101
+msgid "curl is missing\n"
+msgstr "chyb program curl\n"
-#: po/placeholder.h:119 urpm.pm:1305
+#: po/placeholder.h:118 po/placeholder.h:315 urpm.pm:244
#, c-format
-msgid "The following packages contain %s: %s"
-msgstr "Nsledujc balky obsahuj: %s: %s"
+msgid "unable to determine medium of this hdlist file [%s]"
+msgstr "nelze zjistit zdroj pro tento soubor hdlist [%s]"
-#: po/placeholder.h:120
+#: po/placeholder.h:119 po/placeholder.h:328
+msgid " --help - print this help message.\n"
+msgstr " --help - vype tuto npovdu.\n"
+
+#: po/placeholder.h:121 po/placeholder.h:329 urpmi:383
+msgid "everything already installed"
+msgstr "ve je ji nainstalovno"
+
+#: po/placeholder.h:122 po/placeholder.h:215 urpm.pm:1891
+msgid "retrieving rpms files..."
+msgstr "natm rpm soubory..."
+
+#: po/placeholder.h:123 po/placeholder.h:217
#, c-format
-msgid "no rpm files found from [%s]"
-msgstr "nebyl nalezen dn rpm soubor na [%s]"
+msgid "using different removable device [%s] for \"%s\""
+msgstr "pro \"%s\" pouiju jin vyjmateln mdium [%s]"
+
+#: po/placeholder.h:124 po/placeholder.h:332 urpmi:217
+msgid "One of the following packages is needed:"
+msgstr "Je zapoteb jeden z nsledujcch balk:"
+
+#: po/placeholder.h:125 po/placeholder.h:219
+msgid ""
+"unable to access first installation medium (no Mandrake/base/hdlists file "
+"found)"
+msgstr ""
+"nelze nast prvn instalan mdium (chyb soubor Mandrake/base/hdlists)"
-#: po/placeholder.h:121
+#: po/placeholder.h:126 po/placeholder.h:451 urpmq:90
#, c-format
-msgid "examining hdlist file [%s]"
-msgstr "zpracovvm soubor hdlist [%s]"
+msgid "urpmq: cannot read rpm file \"%s\"\n"
+msgstr "urpmq: nemohu pest rpm soubor \"%s\"\n"
-#: po/placeholder.h:122 urpm.pm:1191
-msgid "no entries relocated in depslist"
-msgstr "v souboru depslist nejsou dn pesunut poloky"
+#: po/placeholder.h:129 po/placeholder.h:323 urpme:87
+msgid "Nothing to remove.\n"
+msgstr ""
-#: po/placeholder.h:123 urpm.pm:1897
-msgid "...retrieving done"
-msgstr "...natn ukoneno"
+#: po/placeholder.h:131 po/placeholder.h:340 urpmi:329 urpmi:336 urpmi:349
+#: urpmi:360 urpmi:373
+msgid "Installation failed"
+msgstr "Chyba pi instalaci"
+
+#: po/placeholder.h:132 po/placeholder.h:224
+msgid "unable to access first installation medium"
+msgstr "nelze pistoupit na prvn instalan mdium"
+
+#: po/placeholder.h:133 po/placeholder.h:345 po/placeholder.h:469
+#, fuzzy
+msgid " -P - do not search in provides to find package.\n"
+msgstr " -p - pokus se najt balek v polokch provides.\n"
-#: po/placeholder.h:124 urpm.pm:2006
+#: po/placeholder.h:135 po/placeholder.h:226 urpm.pm:1129
#, c-format
-msgid "selecting %s using obsoletes"
-msgstr "vybrm %s za pouit vlastnosti nahrazen"
+msgid "unmounting %s"
+msgstr "odpojuji %s"
-#: po/placeholder.h:125 urpm.pm:151
+#: po/placeholder.h:136 po/placeholder.h:227
#, c-format
-msgid "curl failed: exited with %d or signal %d\n"
-msgstr "pkaz curl selhal: skonil s kdem %d nebo signlem %d\n"
+msgid "removing %d obsolete headers in cache"
+msgstr "odebrm %d starch hlaviek"
-#: po/placeholder.h:126 urpm.pm:2122
+#: po/placeholder.h:137 po/placeholder.h:228
#, c-format
-msgid "selecting %s by selection on files"
-msgstr "vybrm %s na zklad vbru soubor"
+msgid "no hdlist file found for medium \"%s\""
+msgstr "nebyl nalezen soubor hdlist pro zdroj \"%s\""
-#: po/placeholder.h:127 urpm.pm:101
-msgid "curl is missing\n"
-msgstr "chyb program curl\n"
+#: po/placeholder.h:139 po/placeholder.h:230 urpm.pm:1413
+msgid "<non printable chars>"
+msgstr "<nezobraziteln znaky>"
+
+#: po/placeholder.h:140 po/placeholder.h:352 po/placeholder.h:476
+msgid " -v - verbose mode.\n"
+msgstr " -v - reim s vpisy.\n"
-#: po/placeholder.h:128
+#: po/placeholder.h:141 po/placeholder.h:233
#, c-format
-msgid "copying source list of \"%s\"..."
-msgstr "kopruji zdrojov seznam pro \"%s\"..."
+msgid "removing medium \"%s\""
+msgstr "odebrm zdroj \"%s\""
-#: po/placeholder.h:129 urpm.pm:96
-msgid "wget is missing\n"
-msgstr "chyb program wget\n"
+#: po/placeholder.h:142 po/placeholder.h:236
+#, c-format
+msgid "unable to build synthesis file for medium \"%s\""
+msgstr "nelze vytvoit soubor syntzy pro zdroj \"%s\""
-#: po/placeholder.h:130 urpm.pm:244
+#: po/placeholder.h:143 po/placeholder.h:238
#, c-format
-msgid "unable to determine medium of this hdlist file [%s]"
-msgstr "nelze zjistit zdroj pro tento soubor hdlist [%s]"
+msgid "trying to select multiple medium: %s"
+msgstr "pokoum se vybrat vce zdroj: %s"
-#: po/placeholder.h:132
-msgid " --help - print this help message.\n"
-msgstr " --help - vype tuto npovdu.\n"
+#: po/placeholder.h:144 po/placeholder.h:447
+msgid " -a - select all non-removable media.\n"
+msgstr " -a - vybere vechna nevjimateln mdia.\n"
-#: po/placeholder.h:133 urpmi:383
-msgid "everything already installed"
-msgstr "ve je ji nainstalovno"
+#: po/placeholder.h:145 po/placeholder.h:354
+#, fuzzy
+msgid " names or rpm files given on command line are installed.\n"
+msgstr ""
+" jmno nebo rpm soubory zadan na pkazov dce, kter jsou dotazovny.\n"
-#: po/placeholder.h:134 urpmi:113
+#: po/placeholder.h:147 po/placeholder.h:239 urpm.pm:2125
#, c-format
-msgid "urpmi: unknown option \"-%s\", check usage with --help\n"
-msgstr "urpmi: neznm volba \"%s\", zpsob pouit vyvolte zadnm --help\n"
+msgid "avoid selecting %s as its locales language is not already selected"
+msgstr ""
+"vyhnte se vbru %s, pokud tak nen vybrna podpora pro lokln jazyk"
-#: po/placeholder.h:135 po/placeholder.h:253
-#, fuzzy
-msgid " -y - impose fuzzy search.\n"
-msgstr " -v - reim s vpisy.\n"
+#: po/placeholder.h:148 po/placeholder.h:356
+msgid " --complete - use parsehdlist server to complete selection.\n"
+msgstr " --comlete - pout parsehdlist server pro dokonen vbru.\n"
-#: po/placeholder.h:136 urpmi:217
-msgid "One of the following packages is needed:"
-msgstr "Je zapoteb jeden z nsledujcch balk:"
+#: po/placeholder.h:149 po/placeholder.h:246
+#, c-format
+msgid "write config file [%s]"
+msgstr "zapisuji konfiguran soubor [%s]"
-#: po/placeholder.h:137 po/placeholder.h:257
-msgid " --update - use only update media.\n"
-msgstr " --update - pout pouze aktualizaci zdroje.\n"
+#: po/placeholder.h:150 po/placeholder.h:249
+msgid "unable to build hdlist synthesis, using parsehdlist method"
+msgstr "nelze vytvoit syntzu pro hdlist, pouiju metodu parsehdlist"
-#: po/placeholder.h:138 urpmi:321
+#: po/placeholder.h:151 po/placeholder.h:413
msgid ""
-"Installation failed, some files are missing.\n"
-"You may want to update your urpmi database"
+" --distrib - automatically create all media from an installation "
+"medium.\n"
msgstr ""
-"Instalace selhala, nkter soubory chyb.\n"
-"Bude nutn aktualizovat databzi urpmi"
+" --distrib - automaticky vytvo vechny zdroje z instalanch mdi.\n"
-#: po/placeholder.h:142
-msgid " --auto - automatically select a good package in choices.\n"
-msgstr " --auto - automaticky vybere sprvn balek z vbru.\n"
+#: po/placeholder.h:155 po/placeholder.h:253 urpm.pm:227
+#, c-format
+msgid ""
+"unable to take care of medium \"%s\" as list file is already used by another "
+"medium"
+msgstr ""
+"nelze pracovat se zdrojem \"%s\", pokud je seznam soubor vyuvn jinm"
-#: po/placeholder.h:144 urpmi:329 urpmi:336 urpmi:349 urpmi:360 urpmi:373
-msgid "Installation failed"
-msgstr "Chyba pi instalaci"
+#: po/placeholder.h:156 po/placeholder.h:254
+#, c-format
+msgid "examining synthesis file [%s]"
+msgstr "zpracovvm soubor syntzy [%s]"
-#: po/placeholder.h:145 po/placeholder.h:270
+#: po/placeholder.h:158 po/placeholder.h:256
+#, c-format
+msgid "unable to retrieve pathname for removable medium \"%s\""
+msgstr "nelze nast cestu pro vmnn mdium \"%s\""
+
+#: po/placeholder.h:160 po/placeholder.h:258 urpm.pm:1722 urpm.pm:1748
+#, c-format
+msgid "there are multiple packages with the same rpm filename \"%s\""
+msgstr "vce balk m stejn jmno rpm souboru \"%s\""
+
+#: po/placeholder.h:161 po/placeholder.h:316 urpme:93
+#, fuzzy, c-format
msgid ""
-" --auto-select - automatically select packages for upgrading the system.\n"
+"To satisfy dependencies, the following packages are going to be removed (%d "
+"MB)"
msgstr ""
-" --auto-select - automaticky vybere balky pro aktualizaci systmu.\n"
+"Aby byly splnny zvislosti, budou nainstalovny nsledujc balky (%d MB)"
+
+#: po/placeholder.h:163 po/placeholder.h:261
+msgid "retrieving hdlists file..."
+msgstr "natm soubor hdlists..."
+
+#: po/placeholder.h:164 po/placeholder.h:330 urpmi:113
+#, c-format
+msgid "urpmi: unknown option \"-%s\", check usage with --help\n"
+msgstr "urpmi: neznm volba \"%s\", zpsob pouit vyvolte zadnm --help\n"
+
+#: po/placeholder.h:165 po/placeholder.h:262 urpm.pm:253
+#, c-format
+msgid "unable to access hdlist file of \"%s\", medium ignored"
+msgstr ""
+"zdroj \"%s\" bude ignorovn, protoe nelze nast soubor hdlist pro zdroj"
+
+#: po/placeholder.h:166 po/placeholder.h:263 urpm.pm:1208
+msgid "unable to register rpm file"
+msgstr "nelze zaregistrovat rpm soubor"
-#: po/placeholder.h:147
+#: po/placeholder.h:167 po/placeholder.h:264
+#, c-format
+msgid "\"%s\""
+msgstr "\"%s\""
+
+#: po/placeholder.h:168 po/placeholder.h:265 urpm.pm:307
+#, c-format
+msgid "unable to inspect list file for \"%s\", medium ignored"
+msgstr "nelze prozkoumat seznam soubor pro \"%s\", zdroj bude ignorovn"
+
+#: po/placeholder.h:169 po/placeholder.h:266
+#, c-format
+msgid "too many mount points for removable medium \"%s\""
+msgstr "vmnn mdium \"%s\" m vce ppojnch bod"
+
+#: po/placeholder.h:170 po/placeholder.h:268 urpm.pm:299
+#, c-format
+msgid "incoherent list file for \"%s\", medium ignored"
+msgstr "nesouvisl seznam soubor pro \"%s\", zdroj bude ignorovn"
+
+#: po/placeholder.h:171 po/placeholder.h:333 po/placeholder.h:453
+msgid " --update - use only update media.\n"
+msgstr " --update - pout pouze aktualizaci zdroje.\n"
+
+#: po/placeholder.h:172 po/placeholder.h:269
+#, c-format
+msgid "copy of [%s] failed"
+msgstr "koprovn [%s] selhalo"
+
+#: po/placeholder.h:173 po/placeholder.h:462
+msgid " -d - extend query to package dependencies.\n"
+msgstr " -d - rozen dotaz na zvislosti balku.\n"
+
+#: po/placeholder.h:174 po/placeholder.h:272 urpm.pm:1412 urpm.pm:1419
+#, c-format
+msgid "unable to analyse synthesis data of %s"
+msgstr "nelze zpracovat data ze syntzy pro zdroj %s"
+
+#: po/placeholder.h:175 po/placeholder.h:274
+#, c-format
+msgid "retrieving source hdlist (or synthesis) of \"%s\"..."
+msgstr "natm zdrojov hdlist (nebo synthesis) pro \"%s\"..."
+
+#: po/placeholder.h:177 po/placeholder.h:343
msgid " --X - use X interface.\n"
msgstr " --X - pouije X prosted.\n"
-#: po/placeholder.h:148 urpmi:267
+#: po/placeholder.h:178 po/placeholder.h:275
+msgid "...copying done"
+msgstr "...koprovn ukoneno"
+
+#: po/placeholder.h:179 po/placeholder.h:344 urpmi:267
#, c-format
msgid ""
"To satisfy dependencies, the following packages are going to be installed (%"
@@ -700,124 +794,193 @@ msgid ""
msgstr ""
"Aby byly splnny zvislosti, budou nainstalovny nsledujc balky (%d MB)"
-#: po/placeholder.h:149 po/placeholder.h:273
-#, fuzzy
-msgid " -P - do not search in provides to find package.\n"
-msgstr " -p - pokus se najt balek v polokch provides.\n"
+#: po/placeholder.h:180 po/placeholder.h:277
+msgid "copying hdlists file..."
+msgstr "kopruji soubor hdlists..."
-#: po/placeholder.h:150 urpmi:342 urpmi:366
+#: po/placeholder.h:181 po/placeholder.h:278 urpm.pm:188 urpm.pm:200
+#, c-format
+msgid "syntax error in config file at line %s"
+msgstr "syntaktick chyba v konfiguranm souboru na dku %s"
+
+#: po/placeholder.h:182 po/placeholder.h:346 urpmi:342 urpmi:366
msgid "Try installation without checking dependencies? (y/N) "
msgstr "Mm zkusit instalaci bez kontroly zvislost? (a/N) "
-#: po/placeholder.h:151 po/placeholder.h:278
-msgid " --media - use only the media listed by comma.\n"
-msgstr " --media - pout pouze zdroje oddlen rkou.\n"
-
-#: po/placeholder.h:152
-msgid ""
-" --best-output - choose best interface according to the environment:\n"
-" X or text mode.\n"
-msgstr ""
-" --best-output - vybere takov vstup, kter odpovd prosted:\n"
-" grafick nebo textov reim.\n"
+#: po/placeholder.h:183 po/placeholder.h:283 urpm.pm:1212
+msgid "error registering local packages"
+msgstr "chyba pi registraci loklnch balk"
-#: po/placeholder.h:156 po/placeholder.h:280
-msgid " -v - verbose mode.\n"
-msgstr " -v - reim s vpisy.\n"
+#: po/placeholder.h:184 po/placeholder.h:284
+#, c-format
+msgid "taking removable device as \"%s\""
+msgstr "beru vyjmateln mdium jako \"%s\""
-#: po/placeholder.h:157 po/placeholder.h:279
+#: po/placeholder.h:185 po/placeholder.h:353 po/placeholder.h:475
msgid " -p - allow search in provides to find package.\n"
msgstr " -p - pokus se najt balek v polokch provides.\n"
-#: po/placeholder.h:158
-#, fuzzy
-msgid " names or rpm files given on command line are installed.\n"
-msgstr ""
-" jmno nebo rpm soubory zadan na pkazov dce, kter jsou dotazovny.\n"
-
-#: po/placeholder.h:159
-msgid " -q - quiet mode.\n"
-msgstr " -q - reim bez vpis.\n"
-
-#: po/placeholder.h:160
-msgid " --complete - use parsehdlist server to complete selection.\n"
-msgstr " --comlete - pout parsehdlist server pro dokonen vbru.\n"
+#: po/placeholder.h:187 po/placeholder.h:287
+#, c-format
+msgid "copying description file of \"%s\"..."
+msgstr "kopruji soubor s popisy pro \"%s\"..."
-#: po/placeholder.h:161 urpmi:225
+#: po/placeholder.h:188 po/placeholder.h:288
#, c-format
-msgid "What is your choice? (1-%d) "
-msgstr "Jak je vae volba? (1-%d) "
+msgid "unable to build hdlist: %s"
+msgstr "nelze vytvoit hdlist: %s"
-#: po/placeholder.h:162 po/placeholder.h:210 po/placeholder.h:233
-msgid " --wget - use wget to retrieve distant files.\n"
-msgstr " --wget - pouije program wget pro naten soubor.\n"
+#: po/placeholder.h:189 po/placeholder.h:289 urpm.pm:1811 urpm.pm:1814
+#: urpm.pm:1833
+#, c-format
+msgid "medium \"%s\" is not selected"
+msgstr "zdroj \"%s\" nen vybrn"
-#: po/placeholder.h:163
+#: po/placeholder.h:190 po/placeholder.h:292 urpm.pm:269
#, c-format
-msgid ""
-"urpmi version %s\n"
-"Copyright (C) 1999, 2000, 2001 MandrakeSoft.\n"
-"This is free software and may be redistributed under the terms of the GNU "
-"GPL.\n"
-"usage:\n"
-msgstr ""
-"urpmi verze %s\n"
-"Copyright (C) 1999, 2000, 2001 MandrakeSoft.\n"
-"Toto je svobodn software a je voln iiteln podle podmnek licence GNU "
-"GPL.\n"
-"pouit:\n"
+msgid "trying to bypass existing medium \"%s\", avoiding"
+msgstr "pokus o vynechn existujcho zdroje \"%s\""
-#: po/placeholder.h:169 urpmi:350 urpmi:374
-msgid "Try installation even more strongly (--force)? (y/N) "
-msgstr "Mm zkusit instalaci jet razantnji (--force)? (a/N) "
+#: po/placeholder.h:191 po/placeholder.h:355
+msgid " -q - quiet mode.\n"
+msgstr " -q - reim bez vpis.\n"
-#: po/placeholder.h:171 po/placeholder.h:269
+#: po/placeholder.h:194 po/placeholder.h:367 po/placeholder.h:465
msgid ""
" --force - force invocation even if some packages do not exist.\n"
msgstr ""
" --force - spust program i v ppad, e nkter balky chyb.\n"
-#: po/placeholder.h:172 urpmi:228
-msgid "Sorry, bad choice, try again\n"
-msgstr "Je mi lto, to je patn volba. Zkuste to znovu\n"
-
-#: po/placeholder.h:174
-msgid " -a - select all matches on command line.\n"
-msgstr " -a - vybere vechny vyhovujc z pkazov dky.\n"
-
-#: po/placeholder.h:175 po/placeholder.h:203 po/placeholder.h:226
-msgid " --curl - use curl to retrieve distant files.\n"
-msgstr " --curl - pouije program curl pro naten soubor.\n"
+#: po/placeholder.h:196 po/placeholder.h:320 urpme:62
+#, c-format
+msgid "Using \"%s\" as a substring, I found"
+msgstr ""
-#: po/placeholder.h:176 urpmi:316
+#: po/placeholder.h:197 po/placeholder.h:372 urpmi:316
#, c-format
msgid "installing %s\n"
msgstr "instaluji %s\n"
-#: po/placeholder.h:177 urpmi:296
+#: po/placeholder.h:198 po/placeholder.h:325 urpme:30
+msgid "Remove them all?"
+msgstr ""
+
+#: po/placeholder.h:199 po/placeholder.h:373 urpmi:296
#, c-format
msgid "Please insert the medium named \"%s\" on device [%s]"
msgstr "Prosm vlote mdium nazvan \"%s\" do zazen [%s]"
-#: po/placeholder.h:179 po/placeholder.h:281 urpmi:286 urpmq:151
+#: po/placeholder.h:200 po/placeholder.h:304 urpm.pm:1305
+#, c-format
+msgid "The following packages contain %s: %s"
+msgstr "Nsledujc balky obsahuj: %s: %s"
+
+#: po/placeholder.h:201 po/placeholder.h:306
+#, c-format
+msgid "examining hdlist file [%s]"
+msgstr "zpracovvm soubor hdlist [%s]"
+
+#: po/placeholder.h:202 po/placeholder.h:307 urpm.pm:1191
+msgid "no entries relocated in depslist"
+msgstr "v souboru depslist nejsou dn pesunut poloky"
+
+#: po/placeholder.h:203 po/placeholder.h:412
+msgid " --update - create an update medium.\n"
+msgstr " --update - vytvo zdroj pro aktualizaci.\n"
+
+#: po/placeholder.h:205 po/placeholder.h:445
+msgid ""
+" -d - force complete computation of depslist.ordered file.\n"
+msgstr ""
+" -d - provede kompletn generovn souboru depslists.ordered.\n"
+
+#: po/placeholder.h:206 po/placeholder.h:375 po/placeholder.h:477 urpmi:286
+#: urpmq:151
msgid "unable to get source packages, aborting"
msgstr "nelze zskat zdrojov balek, konm"
-#: po/placeholder.h:180 urpmi:297
-msgid "Press Enter when it's done..."
-msgstr "A potom stisknte Enter..."
+#: po/placeholder.h:207 po/placeholder.h:308 urpm.pm:1896
+msgid "...retrieving done"
+msgstr "...natn ukoneno"
-#: po/placeholder.h:181 urpmi:131
+#: po/placeholder.h:208 po/placeholder.h:309 urpm.pm:2006
+#, c-format
+msgid "selecting %s using obsoletes"
+msgstr "vybrm %s za pouit vlastnosti nahrazen"
+
+#: po/placeholder.h:209 po/placeholder.h:310 urpm.pm:151
+#, c-format
+msgid "curl failed: exited with %d or signal %d\n"
+msgstr "pkaz curl selhal: skonil s kdem %d nebo signlem %d\n"
+
+#: po/placeholder.h:210 po/placeholder.h:311 urpm.pm:2122
+#, c-format
+msgid "selecting %s by selection on files"
+msgstr "vybrm %s na zklad vbru soubor"
+
+#: po/placeholder.h:211 po/placeholder.h:313
+#, c-format
+msgid "copying source list of \"%s\"..."
+msgstr "kopruji zdrojov seznam pro \"%s\"..."
+
+#: po/placeholder.h:212 po/placeholder.h:377 urpmi:131
msgid "Only superuser is allowed to install packages"
msgstr "Instalovat balky me pouze uivatel root"
-#: po/placeholder.h:182 urpmi:216
+#: po/placeholder.h:213 po/placeholder.h:314 urpm.pm:96
+msgid "wget is missing\n"
+msgstr "chyb program wget\n"
+
+#: po/placeholder.h:240
#, c-format
-msgid "One of the following packages is needed to install %s:"
+msgid ""
+"removing %s to upgrade to %s ...\n"
+" since it will not be updated otherwise"
msgstr ""
-"Pro instalaci %s je zapoteb nainstalovat jeden z nsledujcch balk:"
+"odebrm %s pro aktualizaci %s ...\n"
+" jinak nebude spn aktualizovn"
-#: po/placeholder.h:183 urpmi.addmedia:70
+#: po/placeholder.h:296
+#, c-format
+msgid ""
+"removing %s to upgrade to %s ...\n"
+" since it will not upgrade correctly!"
+msgstr ""
+"odebrm %s pro aktualizaci %s...\n"
+" protoe jinak by se aktualizace nezdaila!"
+
+#: po/placeholder.h:334 urpmi:321
+msgid ""
+"Installation failed, some files are missing.\n"
+"You may want to update your urpmi database"
+msgstr ""
+"Instalace selhala, nkter soubory chyb.\n"
+"Bude nutn aktualizovat databzi urpmi"
+
+#: po/placeholder.h:348
+msgid ""
+" --best-output - choose best interface according to the environment:\n"
+" X or text mode.\n"
+msgstr ""
+" --best-output - vybere takov vstup, kter odpovd prosted:\n"
+" grafick nebo textov reim.\n"
+
+#: po/placeholder.h:359
+#, c-format
+msgid ""
+"urpmi version %s\n"
+"Copyright (C) 1999, 2000, 2001 MandrakeSoft.\n"
+"This is free software and may be redistributed under the terms of the GNU "
+"GPL.\n"
+"usage:\n"
+msgstr ""
+"urpmi verze %s\n"
+"Copyright (C) 1999, 2000, 2001 MandrakeSoft.\n"
+"Toto je svobodn software a je voln iiteln podle podmnek licence GNU "
+"GPL.\n"
+"pouit:\n"
+
+#: po/placeholder.h:379 urpmi.addmedia:70
#, c-format
msgid ""
"%s\n"
@@ -826,7 +989,7 @@ msgstr ""
"%s\n"
"s volbou --distrib nen teba zadvat <relativn cestak hdlistu>"
-#: po/placeholder.h:187
+#: po/placeholder.h:383
msgid ""
"usage: urpmi.addmedia [options] <name> <url> [with <relative_path>]\n"
"where <url> is one of\n"
@@ -848,17 +1011,7 @@ msgstr ""
" removable_<zazen>://<cesta>\n"
"a [volby] jsou z\n"
-#: po/placeholder.h:197 urpmi.addmedia:92
-#, c-format
-msgid "unable to create medium \"%s\"\n"
-msgstr "nelze vytvoit zdroj \"%s\"\n"
-
-#: po/placeholder.h:198 urpmi.addmedia:76 urpmi.addmedia:93
-#, c-format
-msgid "unable to update medium \"%s\"\n"
-msgstr "nelze aktualizovat zdroj \"%s\"\n"
-
-#: po/placeholder.h:199 po/placeholder.h:222 po/placeholder.h:238
+#: po/placeholder.h:395 po/placeholder.h:415 po/placeholder.h:433
#: urpmi.addmedia:57
#, c-format
msgid ""
@@ -868,11 +1021,7 @@ msgstr ""
"\n"
"neznm volby '%s'\n"
-#: po/placeholder.h:204 po/placeholder.h:231 po/placeholder.h:246
-msgid " -c - clean headers cache directory.\n"
-msgstr " -c - smae doasn adres.\n"
-
-#: po/placeholder.h:205 urpmi.addmedia:82
+#: po/placeholder.h:401 urpmi.addmedia:82
#, c-format
msgid ""
"%s\n"
@@ -881,16 +1030,7 @@ msgstr ""
"%s\n"
"<relativn cestak hdlistu> chyb\n"
-#: po/placeholder.h:209 po/placeholder.h:232
-msgid " -f - force generation of hdlist files.\n"
-msgstr " -f - provede generovn hdlist soubor.\n"
-
-#: po/placeholder.h:211
-msgid " -h - try to find and use synthesis or hdlist file.\n"
-msgstr ""
-" -h - provede pokus o nalezen souboru hdlist nebo synthesis.\n"
-
-#: po/placeholder.h:212 urpmi.addmedia:84
+#: po/placeholder.h:408 urpmi.addmedia:84
#, c-format
msgid ""
"%s\n"
@@ -899,53 +1039,7 @@ msgstr ""
"%s\n"
" chyb pro FTP zdroj\n"
-#: po/placeholder.h:216
-msgid " --update - create an update medium.\n"
-msgstr " --update - vytvo zdroj pro aktualizaci.\n"
-
-#: po/placeholder.h:217
-msgid ""
-" --distrib - automatically create all media from an installation "
-"medium.\n"
-msgstr ""
-" --distrib - automaticky vytvo vechny zdroje z instalanch mdi.\n"
-
-#: po/placeholder.h:218
-msgid ""
-"usage: urpmi.update [options] <name> ...\n"
-"where <name> is a medium name to update.\n"
-msgstr ""
-"pouit: urpmi.update [volby] <jmno> ...\n"
-"kde <jmno> je nzev zdroje pro aktualizaci.\n"
-
-#: po/placeholder.h:227 urpmi.update:59
-#, c-format
-msgid ""
-"the entry to update is missing\n"
-"(one of %s)\n"
-msgstr ""
-"zznam pro update chyb\n"
-"(jeden z %s)\n"
-
-#: po/placeholder.h:234
-msgid ""
-" -d - force complete computation of depslist.ordered file.\n"
-msgstr ""
-" -d - provede kompletn generovn souboru depslists.ordered.\n"
-
-#: po/placeholder.h:235 urpmi.update:57
-msgid "nothing to update (use urpmi.addmedia to add a media)\n"
-msgstr "nic k aktualizaci (pouijte urpmi.addmedia pro pidn zdroje)\n"
-
-#: po/placeholder.h:236
-msgid " -a - select all non-removable media.\n"
-msgstr " -a - vybere vechna nevjimateln mdia.\n"
-
-#: po/placeholder.h:237 urpmi.removemedia:47
-msgid "nothing to remove (use urpmi.addmedia to add a media)\n"
-msgstr "nic k odebrn (pouijte urpmi.addmedia pro pidn zdroje)\n"
-
-#: po/placeholder.h:242 urpmi.removemedia:49
+#: po/placeholder.h:419 urpmi.removemedia:49
#, c-format
msgid ""
"the entry to remove is missing\n"
@@ -954,11 +1048,7 @@ msgstr ""
"zznam pro odebrn chyb\n"
"(jeden z %s)\n"
-#: po/placeholder.h:247
-msgid " -a - select all media.\n"
-msgstr " -a - vybere vechna mdia.\n"
-
-#: po/placeholder.h:248
+#: po/placeholder.h:425
msgid ""
"usage: urpmi.removemedia [-a] <name> ...\n"
"where <name> is a medium name to remove.\n"
@@ -966,34 +1056,24 @@ msgstr ""
"pouit: urpmi.removemedia [-a] <jmno> ...\n"
"kde <jmno> je nzev zdroje pro aktualizaci.\n"
-#: po/placeholder.h:252
-msgid " -h - print this help message.\n"
-msgstr " -h - vype tuto npovdu.\n"
-
-#: po/placeholder.h:254
-msgid " -g - print groups too with name.\n"
-msgstr " -g - vype tag skupina spolen se jmnem.\n"
-
-#: po/placeholder.h:255 urpmq:90
-#, c-format
-msgid "urpmq: cannot read rpm file \"%s\"\n"
-msgstr "urpmq: nemohu pest rpm soubor \"%s\"\n"
-
-#: po/placeholder.h:256
-msgid " names or rpm files given on command line are queried.\n"
+#: po/placeholder.h:429
+msgid ""
+"usage: urpmi.update [options] <name> ...\n"
+"where <name> is a medium name to update.\n"
msgstr ""
-" jmno nebo rpm soubory zadan na pkazov dce, kter jsou dotazovny.\n"
-
-#: po/placeholder.h:258
-msgid " -r - print version and release too with name.\n"
-msgstr " -r - spolen se jmnem vype verzi a vydn.\n"
+"pouit: urpmi.update [volby] <jmno> ...\n"
+"kde <jmno> je nzev zdroje pro aktualizaci.\n"
-#: po/placeholder.h:259
-msgid " -f - print version, release and arch with name.\n"
+#: po/placeholder.h:438 urpmi.update:59
+#, c-format
+msgid ""
+"the entry to update is missing\n"
+"(one of %s)\n"
msgstr ""
-" -f - spolen se jmnem vype verzi, vydn a architekturu.\n"
+"zznam pro update chyb\n"
+"(jeden z %s)\n"
-#: po/placeholder.h:260
+#: po/placeholder.h:456
#, c-format
msgid ""
"urpmq version %s\n"
@@ -1008,35 +1088,7 @@ msgstr ""
"GPL.\n"
"pouit:\n"
-#: po/placeholder.h:266
-msgid " -d - extend query to package dependencies.\n"
-msgstr " -d - rozen dotaz na zvislosti balku.\n"
-
-#: po/placeholder.h:267
-msgid ""
-" --sources - give all source packages before downloading (root only).\n"
-msgstr ""
-" --source - vechny zdrojov balky ped staenm (pouze uivatel "
-"root).\n"
-
-#: po/placeholder.h:268
-msgid ""
-" -c - choose complete method for resolving requires closure.\n"
-msgstr " -c - vybere kompletn metodu pro vyeen zvislost.\n"
-
-#: po/placeholder.h:271 urpmq:137
-msgid ""
-"some packages have to be removed for being upgraded, this is not supported "
-"yet\n"
-msgstr ""
-"nkter balky pro upgrade se mus odebrat, toto je zatm nepodporovno\n"
-
-#: po/placeholder.h:272 urpmq:87
-#, c-format
-msgid "urpmq: unknown option \"-%s\", check usage with --help\n"
-msgstr "urpmq: neznm volba \"%s\", zpsob pouit vyvolte s --help\n"
-
-#: po/placeholder.h:274
+#: po/placeholder.h:470
msgid ""
" --headers - extract headers for package listed from urpmi db to\n"
" stdout (root only).\n"
@@ -1044,12 +1096,6 @@ msgstr ""
" --headers - extrahuje hlaviky pro balek z urpmi db na std. "
"vstup.\n"
-#: po/placeholder.h:282
-msgid ""
-" -u - remove package if a better version is already installed.\n"
-msgstr ""
-" -u - odebere balek pokud je ji instalovna novj verze.\n"
-
#: urpm.pm:2030 urpm.pm:2039
#, c-format
msgid "removing %s to upgrade to %s ..."
@@ -1092,17 +1138,17 @@ msgstr ") . _("
msgid ");"
msgstr ");"
-#: urpmi.update:41
-msgid "usage: urpmi.update [options] <name> ..."
-msgstr "pouit: urpmi.update [volby] <jmno> ..."
+#: urpmi.removemedia:34
+msgid "usage: urpmi.removemedia [-a] <name> ..."
+msgstr "pouit: urpmi.removemedia [-a] <jmno> ..."
#: urpmi.removemedia:38 urpmi.update:49
msgid ", $_);"
msgstr ", $_);"
-#: urpmi.removemedia:34
-msgid "usage: urpmi.removemedia [-a] <name> ..."
-msgstr "pouit: urpmi.removemedia [-a] <jmno> ..."
+#: urpmi.update:41
+msgid "usage: urpmi.update [options] <name> ..."
+msgstr "pouit: urpmi.update [volby] <jmno> ..."
#: urpmq:34
#, c-format
diff --git a/po/da.po b/po/da.po
index 3a47f653..4d3e593a 100644
--- a/po/da.po
+++ b/po/da.po
@@ -9,7 +9,7 @@
msgid ""
msgstr ""
"Project-Id-Version: urpmi 1.7\n"
-"POT-Creation-Date: 2002-01-30 14:07+0100\n"
+"POT-Creation-Date: 2002-02-06 14:21+0100\n"
"PO-Revision-Date: 2001-11-23 14:45+0100\n"
"Last-Translator: Keld Simonsen <keld@dkuug.dk>\n"
"Language-Team: dansk <dansk@klid.dk>\n"
@@ -30,27 +30,31 @@ msgstr ""
"Automatisk installation af pakker...\n"
"Du bestilte installation af pakke $rpm\n"
-#: _irpm:31 po/placeholder.h:178 urpmi:268
+#: _irpm:31 po/placeholder.h:204 po/placeholder.h:322 po/placeholder.h:374
+#: urpme:29 urpmi:268
msgid "Is it OK?"
msgstr "Er det o.k.?"
-#: _irpm:33 po/placeholder.h:170 urpmi:271 urpmi:299
+#: _irpm:33 po/placeholder.h:193 po/placeholder.h:366 urpmi:271 urpmi:299
msgid "Ok"
msgstr "O.k."
-#: _irpm:34 po/placeholder.h:131 urpmi:272 urpmi:300
+#: _irpm:34 po/placeholder.h:162 po/placeholder.h:327 urpmi:272 urpmi:300
msgid "Cancel"
msgstr "Annullr"
-#: _irpm:40 po/placeholder.h:143 urpmi:276 urpmi:340 urpmi:364
+#: _irpm:40 po/placeholder.h:176 po/placeholder.h:326 po/placeholder.h:339
+#: urpme:32 urpmi:276 urpmi:340 urpmi:364
msgid "Nn"
msgstr "Nn"
-#: _irpm:41 po/placeholder.h:146 urpmi:277 urpmi:341 urpmi:365
+#: _irpm:41 po/placeholder.h:89 po/placeholder.h:321 po/placeholder.h:342
+#: urpme:34 urpmi:277 urpmi:341 urpmi:365
msgid "Yy"
msgstr "YyJj"
-#: _irpm:42 po/placeholder.h:173 urpmi:278
+#: _irpm:42 po/placeholder.h:195 po/placeholder.h:318 po/placeholder.h:369
+#: urpme:94 urpmi:278
msgid " (Y/n) "
msgstr " (J/n) "
@@ -58,646 +62,736 @@ msgstr " (J/n) "
msgid "$rpm: command not found\n"
msgstr "$rpm: kommando ikke fundet\n"
-#: po/placeholder.h:6
+#: po/placeholder.h:6 po/placeholder.h:154
#, c-format
msgid "urpmf version %s"
msgstr "urpmf version %s"
-#: po/placeholder.h:7
+#: po/placeholder.h:7 po/placeholder.h:192
msgid "Copyright (C) 1999,2000,2001 MandrakeSoft."
msgstr "Copyright (C) 1999,2000,2001 MandrakeSoft."
-#: po/placeholder.h:8
+#: po/placeholder.h:8 po/placeholder.h:152
msgid ""
"This is free software and may be redistributed under the terms of the GNU "
"GPL."
msgstr ""
"Dette er frit programmel og kan redistribueres under vilkrene til GNU GPL."
-#: po/placeholder.h:9 po/placeholder.h:26
+#: po/placeholder.h:9 po/placeholder.h:26 po/placeholder.h:130
msgid "usage: urpmf [options] <file>"
msgstr "brug: urpmf [flag] [<fil>]"
-#: po/placeholder.h:10
+#: po/placeholder.h:10 po/placeholder.h:109
msgid ""
" --quiet - do not print tag name (default if no tag given on command"
msgstr ""
" --quiet - skriv ikke mrkenavn (standard hvis intet mrke angivet "
"p kommando"
-#: po/placeholder.h:11
+#: po/placeholder.h:11 po/placeholder.h:153
msgid " line, incompatible with interactive mode)."
msgstr " linje, ikke kompatibel med interaktivt modus)."
-#: po/placeholder.h:12
+#: po/placeholder.h:12 po/placeholder.h:127
msgid " --all - print all tags."
msgstr " --all - skriv alle mrker."
-#: po/placeholder.h:13
+#: po/placeholder.h:13 po/placeholder.h:157
msgid ""
" --name - print tag name: rpm filename (assumed if no tag given on"
msgstr ""
" --name - skriv mrkenavn: rpm filnavn (antaget hvis intet mrke "
"givet p"
-#: po/placeholder.h:14
+#: po/placeholder.h:14 po/placeholder.h:159
msgid " command line but without package name)."
msgstr " kommandolinje, men uden pakkenavn)."
-#: po/placeholder.h:15
+#: po/placeholder.h:15 po/placeholder.h:102
msgid " --group - print tag group: group."
msgstr " --group - skriv mrkegruppe: gruppe."
-#: po/placeholder.h:16
+#: po/placeholder.h:16 po/placeholder.h:87
msgid " --size - print tag size: size."
msgstr " --size - skriv mrke-strrelse: strrelse."
-#: po/placeholder.h:17
+#: po/placeholder.h:17 po/placeholder.h:134
msgid " --serial - print tag serial: serial."
msgstr " --serial - skriv mrke-serienummer: serienummer."
-#: po/placeholder.h:18
+#: po/placeholder.h:18 po/placeholder.h:146
msgid " --summary - print tag summary: summary."
msgstr " --summary - skriv mrke-resum: resum."
-#: po/placeholder.h:19
+#: po/placeholder.h:19 po/placeholder.h:120
msgid " --description - print tag description: description."
msgstr " --description - skriv mrke-beskrivelse: beskrivelse."
-#: po/placeholder.h:20
+#: po/placeholder.h:20 po/placeholder.h:138
msgid " --provides - print tag provides: all provides (multiple lines)."
msgstr " --provides - skriv mrke-tilbud: alle tilbud (flere linjer)."
-#: po/placeholder.h:21
+#: po/placeholder.h:21 po/placeholder.h:186
msgid " --requires - print tag requires: all requires (multiple lines)."
msgstr " --requires - skriv mrke-krav: alle krav (flere linjer)."
-#: po/placeholder.h:22
+#: po/placeholder.h:22 po/placeholder.h:41
msgid " --files - print tag files: all files (multiple lines)."
msgstr " --files - skriv mrke-filer: alle filer (flere linjer)."
-#: po/placeholder.h:23
+#: po/placeholder.h:23 po/placeholder.h:34
msgid ""
" --conflicts - print tag conflicts: all conflicts (multiple lines)."
msgstr ""
" --conflicts - skriv mrke-konflikter: alle konflikter (flere linjer)."
-#: po/placeholder.h:24
+#: po/placeholder.h:24 po/placeholder.h:106
msgid ""
" --obsoletes - print tag obsoletes: all obsoletes (multiple lines)."
msgstr ""
" --obsoletes - skriv mrke-forldede: alle forldede (flere linjer)."
-#: po/placeholder.h:25
+#: po/placeholder.h:25 po/placeholder.h:128
msgid " --prereqs - print tag prereqs: all prereqs (multiple lines)."
msgstr ""
" --prereqs - skriv mrke-forudstninger: alle forudstninger (flere "
"linjer)."
-#: po/placeholder.h:27
+#: po/placeholder.h:27 po/placeholder.h:62
msgid "try urpmf --help for more options"
msgstr "prv urpmf --help for flere valgmuligheder"
-#: po/placeholder.h:28
+#: po/placeholder.h:28 po/placeholder.h:49
msgid "no full media list was found"
msgstr ""
-#: po/placeholder.h:29
+#: po/placeholder.h:29 po/placeholder.h:214
#, c-format
msgid "unable to write config file [%s]"
msgstr "kunne ikke skrive config-fil [%s]"
-#: po/placeholder.h:30 urpm.pm:1892
-#, fuzzy
-msgid "retrieving rpms files..."
-msgstr "modtager [%s]"
-
-#: po/placeholder.h:31
+#: po/placeholder.h:30 po/placeholder.h:216
msgid "examining whole urpmi database"
msgstr ""
-#: po/placeholder.h:32
+#: po/placeholder.h:31 po/placeholder.h:331 po/placeholder.h:449
+#, fuzzy
+msgid " -y - impose fuzzy search.\n"
+msgstr " --all - skriv alle mrker."
+
+#: po/placeholder.h:32 po/placeholder.h:220 urpm.pm:280
#, c-format
-msgid "using different removable device [%s] for \"%s\""
-msgstr "bruger en anden udskiftelig enhed [%s] for \"%s\""
+msgid "unable to find list file for \"%s\", medium ignored"
+msgstr "kunne ikke finde listefil for \"%s\", media ignoreret"
-#: po/placeholder.h:33
+#: po/placeholder.h:33 po/placeholder.h:218
#, c-format
msgid "nothing to write in list file for \"%s\""
msgstr "ingenting at skrive i listefil for \"%s\""
-#: po/placeholder.h:34
-msgid ""
-"unable to access first installation medium (no Mandrake/base/hdlists file "
-"found)"
-msgstr ""
-
-#: po/placeholder.h:35 urpm.pm:280
-#, c-format
-msgid "unable to find list file for \"%s\", medium ignored"
-msgstr "kunne ikke finde listefil for \"%s\", media ignoreret"
-
-#: po/placeholder.h:36
+#: po/placeholder.h:35 po/placeholder.h:221
#, c-format
msgid "unable to parse hdlist file of \"%s\""
msgstr "kunne ikke fortolke hdlist-filen \"%s\""
-#: po/placeholder.h:37
+#: po/placeholder.h:36 po/placeholder.h:222
#, c-format
msgid "nothing written in list file for \"%s\""
msgstr "ingenting skrevet i listefil for \"%s\""
-#: po/placeholder.h:38
+#: po/placeholder.h:37 po/placeholder.h:463
+msgid ""
+" --sources - give all source packages before downloading (root only).\n"
+msgstr ""
+
+#: po/placeholder.h:38 po/placeholder.h:341 po/placeholder.h:466
+msgid ""
+" --auto-select - automatically select packages for upgrading the system.\n"
+msgstr ""
+
+#: po/placeholder.h:39 po/placeholder.h:223
#, fuzzy, c-format
msgid "retrieving description file of \"%s\"..."
msgstr "modtager [%s]"
-#: po/placeholder.h:39
-#, fuzzy
-msgid "unable to access first installation medium"
-msgstr "kan ikke f adgang til filen \"%s\", media ignoreret"
-
-#: po/placeholder.h:40 urpm.pm:1768
+#: po/placeholder.h:40 po/placeholder.h:225 urpm.pm:1769
#, c-format
msgid "package %s is not found."
msgstr "pakke %s er ikke fundet."
-#: po/placeholder.h:41 urpm.pm:1129
-#, c-format
-msgid "unmounting %s"
-msgstr "afmonterer %s"
-
-#: po/placeholder.h:42
-#, c-format
-msgid "removing %d obsolete headers in cache"
-msgstr "fjerner %d forldede hoveder i hurtiglager"
-
-#: po/placeholder.h:43
-#, c-format
-msgid "no hdlist file found for medium \"%s\""
-msgstr "ingen hdlist-fil fundet for media \"%s\""
-
-#: po/placeholder.h:44 urpm.pm:209
+#: po/placeholder.h:42 po/placeholder.h:229 urpm.pm:209
#, c-format
msgid "medium \"%s\" tries to use an already used hdlist, medium ignored"
msgstr "media \"%s\" prver at bruge en allerede brugt hdlist, media ignoreret"
-#: po/placeholder.h:45 urpm.pm:1413
-msgid "<non printable chars>"
+#: po/placeholder.h:43 po/placeholder.h:317 urpme:52
+msgid "unknown package(s) "
msgstr ""
-#: po/placeholder.h:46
-#, fuzzy
-msgid "problem reading hdlist file, trying again"
-msgstr "lser hdlist-fil [%s]"
-
-#: po/placeholder.h:47 urpm.pm:233
+#: po/placeholder.h:44 po/placeholder.h:232 urpm.pm:233
#, c-format
msgid "unable to use name \"%s\" for unnamed medium because it is already used"
msgstr ""
"kunne ikke bruge navn \"%s\" for media uden navn da navnet allerede er brugt"
-#: po/placeholder.h:48
-#, fuzzy, c-format
-msgid "removing medium \"%s\""
-msgstr "prver at fjerne media \"%s\" som ikke eksisterer"
+#: po/placeholder.h:45 po/placeholder.h:231
+#, fuzzy
+msgid "problem reading hdlist file, trying again"
+msgstr "lser hdlist-fil [%s]"
-#: po/placeholder.h:49 urpm.pm:240
+#: po/placeholder.h:46 po/placeholder.h:234 urpm.pm:240
#, c-format
msgid "unable to take medium \"%s\" into account as no list file [%s] exists"
msgstr ""
"kunne ikke tage media \"%s\" i beregning da ingen listefil [%s] eksisterer"
-#: po/placeholder.h:50
+#: po/placeholder.h:47 po/placeholder.h:235
msgid "keeping only files referenced in provides"
msgstr "behold kun filer nvnt i tilbud"
-#: po/placeholder.h:51
-#, c-format
-msgid "unable to build synthesis file for medium \"%s\""
-msgstr "kunne ikke bygge synthesis fil for media \"%s\""
-
-#: po/placeholder.h:52
+#: po/placeholder.h:48 po/placeholder.h:237
#, c-format
msgid "found %d headers in cache"
msgstr "fandt %d hoveder i hurtiglager"
-#: po/placeholder.h:53
-#, fuzzy, c-format
-msgid "trying to select multiple medium: %s"
-msgstr "prver at vlge ikke-eksisterende media \"%s\""
-
-#: po/placeholder.h:54 urpm.pm:2125
+#: po/placeholder.h:50 po/placeholder.h:394 urpmi.addmedia:76
+#: urpmi.addmedia:93
#, c-format
-msgid "avoid selecting %s as its locales language is not already selected"
-msgstr "undg valg af %s da dens lokale sprog ikke er valgt allerede"
+msgid "unable to update medium \"%s\"\n"
+msgstr "kan ikke opdatere medie \"%s\"\n"
-#: po/placeholder.h:55
-#, fuzzy, c-format
-msgid ""
-"removing %s to upgrade to %s ...\n"
-" since it will not be updated otherwise"
-msgstr ""
-"fjerner %s for at opgradere ...\n"
-" til %s da den ikke vil blive opdateret ellers"
+#: po/placeholder.h:51 po/placeholder.h:400 po/placeholder.h:423
+#: po/placeholder.h:442
+#, fuzzy
+msgid " -c - clean headers cache directory.\n"
+msgstr " --all - skriv alle mrker."
-#: po/placeholder.h:59
+#: po/placeholder.h:52 po/placeholder.h:244
#, c-format
msgid "medium \"%s\" already exists"
msgstr "media \"%s\" eksisterer allerede"
-#: po/placeholder.h:60
+#: po/placeholder.h:53 po/placeholder.h:245
#, c-format
msgid "unable to write list file of \"%s\""
msgstr "kunne ikke skrive listefil for \"%s\""
-#: po/placeholder.h:61
-#, c-format
-msgid "write config file [%s]"
-msgstr "skriv config fil [%s]"
+#: po/placeholder.h:54 po/placeholder.h:452
+msgid " names or rpm files given on command line are queried.\n"
+msgstr ""
-#: po/placeholder.h:62 urpm.pm:1302
+#: po/placeholder.h:55 po/placeholder.h:247 urpm.pm:1302
#, c-format
msgid "no package named %s"
msgstr "ingen pakke kaldet %s"
-#: po/placeholder.h:63
+#: po/placeholder.h:56 po/placeholder.h:365 urpmi:350 urpmi:374
+msgid "Try installation even more strongly (--force)? (y/N) "
+msgstr "Prv installation med endnu strre kraft (--force)? (j/N) "
+
+#: po/placeholder.h:57 po/placeholder.h:250 urpm.pm:275
+#, c-format
+msgid "unable to find hdlist file for \"%s\", medium ignored"
+msgstr "kunne ikke finde hdlist-fil for \"%s\", media ignoreret"
+
+#: po/placeholder.h:58 po/placeholder.h:248
#, c-format
msgid "built hdlist synthesis file for medium \"%s\""
msgstr "byggede hdlist synthesis fil for media \"%s\""
-#: po/placeholder.h:64
+#: po/placeholder.h:59 po/placeholder.h:251
+msgid "urpmi database locked"
+msgstr ""
+
+#: po/placeholder.h:60 po/placeholder.h:319 urpme:63
#, fuzzy
-msgid "unable to build hdlist synthesis, using parsehdlist method"
-msgstr "kunne ikke finde alle synthesis file, bruger parsehdlist tjener"
+msgid " (y/N) "
+msgstr " (J/n) "
-#: po/placeholder.h:65 urpm.pm:275
-#, c-format
-msgid "unable to find hdlist file for \"%s\", medium ignored"
-msgstr "kunne ikke finde hdlist-fil for \"%s\", media ignoreret"
+#: po/placeholder.h:61 po/placeholder.h:370
+msgid " -a - select all matches on command line.\n"
+msgstr ""
-#: po/placeholder.h:66
-msgid "urpmi database locked"
+#: po/placeholder.h:63 po/placeholder.h:467 urpmq:137
+msgid ""
+"some packages have to be removed for being upgraded, this is not supported "
+"yet\n"
msgstr ""
+"en pakke skal fjernes fr den kan opgraderes, dette er ikke understttet "
+"endnu.\n"
-#: po/placeholder.h:67 urpm.pm:1118
+#: po/placeholder.h:64 po/placeholder.h:252 urpm.pm:1118
#, c-format
msgid "mounting %s"
msgstr "monterer %s"
-#: po/placeholder.h:68 urpm.pm:227
-#, c-format
-msgid ""
-"unable to take care of medium \"%s\" as list file is already used by another "
-"medium"
-msgstr ""
-"kan ikke behandle media \"%s\" da listefil allerede bliver brugt af et andet "
-"media"
-
-#: po/placeholder.h:69
-#, fuzzy, c-format
-msgid "examining synthesis file [%s]"
-msgstr "ls syntese-fil [%s]"
+#: po/placeholder.h:65 po/placeholder.h:405 po/placeholder.h:443
+#, fuzzy
+msgid " -f - force generation of hdlist files.\n"
+msgstr " --group - skriv mrkegruppe: gruppe."
-#: po/placeholder.h:70 urpm.pm:98
+#: po/placeholder.h:66 po/placeholder.h:255 urpm.pm:98
#, c-format
msgid "wget failed: exited with %d or signal %d\n"
msgstr ""
-#: po/placeholder.h:71
-#, c-format
-msgid "unable to retrieve pathname for removable medium \"%s\""
-msgstr "kan ikke finde stinavn for udskifteligt medie \"%s\""
+#: po/placeholder.h:67 po/placeholder.h:414 urpmi.removemedia:47
+msgid "nothing to remove (use urpmi.addmedia to add a media)\n"
+msgstr "ingenting at fjerne (brug urpmi.addmedia til at tilfje et medie)\n"
-#: po/placeholder.h:72 urpm.pm:1887
+#: po/placeholder.h:68 po/placeholder.h:257 urpm.pm:1886
#, c-format
msgid "malformed input: [%s]"
msgstr "malformed input: [%s]"
-#: po/placeholder.h:73 urpm.pm:1721 urpm.pm:1747
+#: po/placeholder.h:69 po/placeholder.h:478
+msgid ""
+" -u - remove package if a better version is already installed.\n"
+msgstr ""
+
+#: po/placeholder.h:70 po/placeholder.h:378 urpmi:216
#, c-format
-msgid "there are multiple packages with the same rpm filename \"%s\""
-msgstr "der er flere pakker med samme rpm-filnavn \"%s\""
+msgid "One of the following packages is needed to install %s:"
+msgstr "Der er brug for en af de flgende pakker for at installere %s:"
-#: po/placeholder.h:74
+#: po/placeholder.h:71 po/placeholder.h:376 urpmi:297
+msgid "Press Enter when it's done..."
+msgstr "Tryk p retur, nr den er frdig..."
+
+#: po/placeholder.h:72 po/placeholder.h:259
msgid "...copying failed"
msgstr ""
-#: po/placeholder.h:75 urpm.pm:212
+#: po/placeholder.h:73 po/placeholder.h:260 urpm.pm:212
#, c-format
msgid "medium \"%s\" tries to use an already used list, medium ignored"
msgstr "media \"%s\" prver at bruge en allerede brugt liste, media ignoreret"
-#: po/placeholder.h:76
+#: po/placeholder.h:74 po/placeholder.h:448
#, fuzzy
-msgid "retrieving hdlists file..."
-msgstr "modtager [%s]"
+msgid " -h - print this help message.\n"
+msgstr " --all - skriv alle mrker."
-#: po/placeholder.h:77 urpm.pm:253
-#, c-format
-msgid "unable to access hdlist file of \"%s\", medium ignored"
-msgstr "kunne ikke n hdlist-fil af \"%s\", media ignoreret"
+#: po/placeholder.h:75 po/placeholder.h:450
+#, fuzzy
+msgid " -g - print groups too with name.\n"
+msgstr " --group - skriv mrkegruppe: gruppe."
-#: po/placeholder.h:78 urpm.pm:1208
-msgid "unable to register rpm file"
-msgstr "kunne ikke registrere rpm-fil"
+#: po/placeholder.h:76 po/placeholder.h:424
+#, fuzzy
+msgid " -a - select all media.\n"
+msgstr " --all - skriv alle mrker."
-#: po/placeholder.h:79
+#: po/placeholder.h:77 po/placeholder.h:267
#, c-format
-msgid "\"%s\""
+msgid "invalid hdlist description \"%s\" in hdlists file"
msgstr ""
-#: po/placeholder.h:80 urpm.pm:307
-#, c-format
-msgid "unable to inspect list file for \"%s\", medium ignored"
-msgstr "kunne ikke inspicere listefil for \"%s\", media ignoreret"
+#: po/placeholder.h:78 po/placeholder.h:407
+#, fuzzy
+msgid " -h - try to find and use synthesis or hdlist file.\n"
+msgstr " --group - skriv mrkegruppe: gruppe."
-#: po/placeholder.h:81
-#, c-format
-msgid "too many mount points for removable medium \"%s\""
-msgstr "For mange monteringspunkter for udskifteligt medium \"%s\""
+#: po/placeholder.h:79 po/placeholder.h:454
+#, fuzzy
+msgid " -r - print version and release too with name.\n"
+msgstr " kommandolinje, men uden pakkenavn)."
-#: po/placeholder.h:82
-#, c-format
-msgid "invalid hdlist description \"%s\" in hdlists file"
+#: po/placeholder.h:80 po/placeholder.h:455
+msgid " -f - print version, release and arch with name.\n"
msgstr ""
-#: po/placeholder.h:83 urpm.pm:299
-#, c-format
-msgid "incoherent list file for \"%s\", medium ignored"
-msgstr "inkonsistent listefil for \"%s\", media ignoreret"
-
-#: po/placeholder.h:84
-#, c-format
-msgid "copy of [%s] failed"
-msgstr "kopi af [%s] mislykkedes"
+#: po/placeholder.h:81 po/placeholder.h:338
+msgid " --auto - automatically select a good package in choices.\n"
+msgstr ""
-#: po/placeholder.h:85 urpm.pm:1420
+#: po/placeholder.h:82 po/placeholder.h:270 urpm.pm:1420
#, c-format
msgid "unable to parse correctly [%s]"
msgstr "kunne ikke fortolke [%s] korrekt"
-#: po/placeholder.h:86 urpm.pm:1421
+#: po/placeholder.h:83 po/placeholder.h:446 urpmi.update:57
+msgid "nothing to update (use urpmi.addmedia to add a media)\n"
+msgstr "ingenting at opdatere (brug urpmi.addmedia til at tilfje et medie)\n"
+
+#: po/placeholder.h:84 po/placeholder.h:271 urpm.pm:1421
#, c-format
msgid "read synthesis file [%s]"
msgstr "ls syntese-fil [%s]"
-#: po/placeholder.h:87 urpm.pm:1412 urpm.pm:1419
-#, fuzzy, c-format
-msgid "unable to analyse synthesis data of %s"
-msgstr "kunne ikke fortolke hdlist-filen \"%s\""
-
-#: po/placeholder.h:88 urpm.pm:93
+#: po/placeholder.h:85 po/placeholder.h:273 urpm.pm:93
msgid "no webfetch (curl or wget currently) found\n"
msgstr ""
-#: po/placeholder.h:89
-#, c-format
-msgid "retrieving source hdlist (or synthesis) of \"%s\"..."
+#: po/placeholder.h:86 po/placeholder.h:464
+msgid ""
+" -c - choose complete method for resolving requires closure.\n"
msgstr ""
-#: po/placeholder.h:90
-#, fuzzy
-msgid "...copying done"
-msgstr "modtager [%s]"
+#: po/placeholder.h:88 po/placeholder.h:393 urpmi.addmedia:92
+#, c-format
+msgid "unable to create medium \"%s\"\n"
+msgstr "kan ikke oprette medie \"%s\"\n"
-#: po/placeholder.h:91
+#: po/placeholder.h:90 po/placeholder.h:276
#, c-format
msgid "copying source hdlist (or synthesis) of \"%s\"..."
msgstr ""
-#: po/placeholder.h:92
-#, fuzzy
-msgid "copying hdlists file..."
-msgstr "lser hdlist-fil [%s]"
-
-#: po/placeholder.h:93 urpm.pm:188 urpm.pm:200
+#: po/placeholder.h:91 po/placeholder.h:468 urpmq:87
#, c-format
-msgid "syntax error in config file at line %s"
-msgstr "syntaksfejl i config fil ved linje %s"
+msgid "urpmq: unknown option \"-%s\", check usage with --help\n"
+msgstr "urpmq: ukendt parameter \"-%s\", tjek brug med --help\n"
-#: po/placeholder.h:94
+#: po/placeholder.h:92 po/placeholder.h:324 urpme:39
+#, fuzzy
+msgid "usage: urpme [-a] [--auto] <packages...>\n"
+msgstr "brug: urpmi.removemedia [-a] <name> ..."
+
+#: po/placeholder.h:93 po/placeholder.h:279
#, c-format
msgid "building hdlist [%s]"
msgstr "bygger hdlist [%s]"
-#: po/placeholder.h:95 urpm.pm:1822
-#, c-format
-msgid "unable to read rpm file [%s] from medium \"%s\""
-msgstr "kunne ikke lse rpm-fil [%s] fra media \"%s\""
+#: po/placeholder.h:94 po/placeholder.h:347 po/placeholder.h:474
+msgid " --media - use only the media listed by comma.\n"
+msgstr ""
-#: po/placeholder.h:96
+#: po/placeholder.h:95 po/placeholder.h:281
#, c-format
msgid "added medium %s"
msgstr ""
-#: po/placeholder.h:97
+#: po/placeholder.h:96 po/placeholder.h:280 urpm.pm:1821
+#, c-format
+msgid "unable to read rpm file [%s] from medium \"%s\""
+msgstr "kunne ikke lse rpm-fil [%s] fra media \"%s\""
+
+#: po/placeholder.h:97 po/placeholder.h:282
msgid "retrieve of source hdlist (or synthesis) failed"
msgstr ""
-#: po/placeholder.h:98 urpm.pm:1212
-msgid "error registering local packages"
-msgstr "fejl ved registrering af lokale pakker"
-
-#: po/placeholder.h:99
-#, c-format
-msgid "taking removable device as \"%s\""
-msgstr "tager udskifteligt medium som \"%s\""
-
-#: po/placeholder.h:100 urpm.pm:1899
+#: po/placeholder.h:98 po/placeholder.h:285 urpm.pm:1898
#, fuzzy, c-format
msgid "...retrieving failed: %s"
msgstr "modtager [%s]"
-#: po/placeholder.h:101 urpm.pm:1838
+#: po/placeholder.h:99 po/placeholder.h:286 urpm.pm:1837
#, c-format
msgid "incoherent medium \"%s\" marked removable but not really"
msgstr "inkonsistent media \"%s\" mrket fjernbart, men er det ikke"
-#: po/placeholder.h:102
-#, fuzzy, c-format
-msgid "copying description file of \"%s\"..."
-msgstr "ingenting skrevet i listefil for \"%s\""
-
-#: po/placeholder.h:103
-#, c-format
-msgid "unable to build hdlist: %s"
-msgstr "kunne ikke bygge hdlist: %s"
-
-#: po/placeholder.h:104 urpm.pm:1812 urpm.pm:1815 urpm.pm:1834
-#, c-format
-msgid "medium \"%s\" is not selected"
-msgstr "media \"%s\" er ikke valgt"
-
-#: po/placeholder.h:105 urpm.pm:1203
+#: po/placeholder.h:100 po/placeholder.h:290 urpm.pm:1203
#, c-format
msgid "invalid rpm file name [%s]"
msgstr "ugyldigt rpm-filnavn [%s]"
-#: po/placeholder.h:106 urpm.pm:1398
+#: po/placeholder.h:101 po/placeholder.h:291 urpm.pm:1398
#, c-format
msgid "unknown data associated with %s"
msgstr "ukendt data associeret med %s"
-#: po/placeholder.h:107 urpm.pm:269
+#: po/placeholder.h:103 po/placeholder.h:357 urpmi:225
#, c-format
-msgid "trying to bypass existing medium \"%s\", avoiding"
-msgstr "prver at forbig eksisterende media \"%s\", undgr"
+msgid "What is your choice? (1-%d) "
+msgstr "Hvad er dit valg? (1-%d) "
-#: po/placeholder.h:108 urpm.pm:255
+#: po/placeholder.h:104 po/placeholder.h:293 urpm.pm:255
#, c-format
msgid "unable to access list file of \"%s\", medium ignored"
msgstr "kan ikke f adgang til filen \"%s\", media ignoreret"
-#: po/placeholder.h:109 urpm.pm:2113
+#: po/placeholder.h:105 po/placeholder.h:358 po/placeholder.h:406
+#: po/placeholder.h:444
+msgid " --wget - use wget to retrieve distant files.\n"
+msgstr ""
+
+#: po/placeholder.h:107 po/placeholder.h:294 urpm.pm:2113
#, c-format
msgid "avoid selecting %s as not enough files will be updated"
msgstr "undgr at vlge %s da ikke nok filer vil blive opdateret"
-#: po/placeholder.h:110 urpm.pm:1204
+#: po/placeholder.h:108 po/placeholder.h:295 urpm.pm:1204
#, c-format
msgid "unable to access rpm file [%s]"
msgstr "kunne ikke n rpm fil [%s]"
-#: po/placeholder.h:111
-#, fuzzy, c-format
-msgid ""
-"removing %s to upgrade to %s ...\n"
-" since it will not upgrade correctly!"
-msgstr ""
-"fjerner %s for at opgradere ...\n"
-" til %s da den ikke vil opgradere korrekt!"
-
-#: po/placeholder.h:115 urpm.pm:1190
-#, c-format
-msgid "relocated %s entries in depslist"
-msgstr "omflyttede %s indgange i depsliste"
+#: po/placeholder.h:110 po/placeholder.h:368 urpmi:228
+msgid "Sorry, bad choice, try again\n"
+msgstr "Undskyld, drligt valg, prv igen\n"
-#: po/placeholder.h:116 urpm.pm:1849
+#: po/placeholder.h:111 po/placeholder.h:301 urpm.pm:1848
#, c-format
msgid "unable to access medium \"%s\""
msgstr "kunne ikke n media \"%s\""
-#: po/placeholder.h:117 urpm.pm:1756
+#: po/placeholder.h:112 po/placeholder.h:300 urpm.pm:1190
#, c-format
-msgid "unable to parse correctly [%s] on value \"%s\""
-msgstr "kunne ikke fortolke [%s] korrekt bed vrdi \"%s\""
+msgid "relocated %s entries in depslist"
+msgstr "omflyttede %s indgange i depsliste"
+
+#: po/placeholder.h:113 po/placeholder.h:371 po/placeholder.h:399
+#: po/placeholder.h:437
+msgid " --curl - use curl to retrieve distant files.\n"
+msgstr ""
-#: po/placeholder.h:118
+#: po/placeholder.h:114 po/placeholder.h:303
#, c-format
msgid "trying to select inexistent medium \"%s\""
msgstr "prver at vlge ikke-eksisterende media \"%s\""
-#: po/placeholder.h:119 urpm.pm:1305
+#: po/placeholder.h:115 po/placeholder.h:302 urpm.pm:1757
#, c-format
-msgid "The following packages contain %s: %s"
-msgstr "Flgende pakker indeholder %s: %s"
+msgid "unable to parse correctly [%s] on value \"%s\""
+msgstr "kunne ikke fortolke [%s] korrekt bed vrdi \"%s\""
-#: po/placeholder.h:120
+#: po/placeholder.h:116 po/placeholder.h:305
#, c-format
msgid "no rpm files found from [%s]"
msgstr "ingen rpm filer fundet fra [%s]"
-#: po/placeholder.h:121
-#, fuzzy, c-format
-msgid "examining hdlist file [%s]"
-msgstr "lser hdlist-fil [%s]"
+#: po/placeholder.h:117 po/placeholder.h:312 urpm.pm:101
+msgid "curl is missing\n"
+msgstr ""
-#: po/placeholder.h:122 urpm.pm:1191
+#: po/placeholder.h:118 po/placeholder.h:315 urpm.pm:244
+#, c-format
+msgid "unable to determine medium of this hdlist file [%s]"
+msgstr "kunne ikke bedstemme media for denne hdlist-fil [%s]"
+
+#: po/placeholder.h:119 po/placeholder.h:328
#, fuzzy
-msgid "no entries relocated in depslist"
-msgstr "omflyttede %s indgange i depsliste"
+msgid " --help - print this help message.\n"
+msgstr " --all - skriv alle mrker."
+
+#: po/placeholder.h:121 po/placeholder.h:329 urpmi:383
+msgid "everything already installed"
+msgstr "alting er allerede installeret"
-#: po/placeholder.h:123 urpm.pm:1897
+#: po/placeholder.h:122 po/placeholder.h:215 urpm.pm:1891
#, fuzzy
-msgid "...retrieving done"
+msgid "retrieving rpms files..."
msgstr "modtager [%s]"
-#: po/placeholder.h:124 urpm.pm:2006
+#: po/placeholder.h:123 po/placeholder.h:217
#, c-format
-msgid "selecting %s using obsoletes"
-msgstr "vlger %s ved at bruge obsolete"
+msgid "using different removable device [%s] for \"%s\""
+msgstr "bruger en anden udskiftelig enhed [%s] for \"%s\""
-#: po/placeholder.h:125 urpm.pm:151
-#, c-format
-msgid "curl failed: exited with %d or signal %d\n"
+#: po/placeholder.h:124 po/placeholder.h:332 urpmi:217
+msgid "One of the following packages is needed:"
+msgstr "Der er brug for en af de flgende pakker:"
+
+#: po/placeholder.h:125 po/placeholder.h:219
+msgid ""
+"unable to access first installation medium (no Mandrake/base/hdlists file "
+"found)"
msgstr ""
-#: po/placeholder.h:126 urpm.pm:2122
+#: po/placeholder.h:126 po/placeholder.h:451 urpmq:90
#, c-format
-msgid "selecting %s by selection on files"
-msgstr "vlger %s ved valg af filer"
+msgid "urpmq: cannot read rpm file \"%s\"\n"
+msgstr "urpmq: kan ikke lse rpm-fil \"%s\"\n"
-#: po/placeholder.h:127 urpm.pm:101
-msgid "curl is missing\n"
+#: po/placeholder.h:129 po/placeholder.h:323 urpme:87
+msgid "Nothing to remove.\n"
msgstr ""
-#: po/placeholder.h:128
-#, fuzzy, c-format
-msgid "copying source list of \"%s\"..."
-msgstr "ingenting skrevet i listefil for \"%s\""
+#: po/placeholder.h:131 po/placeholder.h:340 urpmi:329 urpmi:336 urpmi:349
+#: urpmi:360 urpmi:373
+msgid "Installation failed"
+msgstr "Installationen fejlede"
-#: po/placeholder.h:129 urpm.pm:96
-msgid "wget is missing\n"
+#: po/placeholder.h:132 po/placeholder.h:224
+#, fuzzy
+msgid "unable to access first installation medium"
+msgstr "kan ikke f adgang til filen \"%s\", media ignoreret"
+
+#: po/placeholder.h:133 po/placeholder.h:345 po/placeholder.h:469
+#, fuzzy
+msgid " -P - do not search in provides to find package.\n"
+msgstr " --group - skriv mrkegruppe: gruppe."
+
+#: po/placeholder.h:135 po/placeholder.h:226 urpm.pm:1129
+#, c-format
+msgid "unmounting %s"
+msgstr "afmonterer %s"
+
+#: po/placeholder.h:136 po/placeholder.h:227
+#, c-format
+msgid "removing %d obsolete headers in cache"
+msgstr "fjerner %d forldede hoveder i hurtiglager"
+
+#: po/placeholder.h:137 po/placeholder.h:228
+#, c-format
+msgid "no hdlist file found for medium \"%s\""
+msgstr "ingen hdlist-fil fundet for media \"%s\""
+
+#: po/placeholder.h:139 po/placeholder.h:230 urpm.pm:1413
+msgid "<non printable chars>"
+msgstr ""
+
+#: po/placeholder.h:140 po/placeholder.h:352 po/placeholder.h:476
+msgid " -v - verbose mode.\n"
msgstr ""
-#: po/placeholder.h:130 urpm.pm:244
+#: po/placeholder.h:141 po/placeholder.h:233
+#, fuzzy, c-format
+msgid "removing medium \"%s\""
+msgstr "prver at fjerne media \"%s\" som ikke eksisterer"
+
+#: po/placeholder.h:142 po/placeholder.h:236
#, c-format
-msgid "unable to determine medium of this hdlist file [%s]"
-msgstr "kunne ikke bedstemme media for denne hdlist-fil [%s]"
+msgid "unable to build synthesis file for medium \"%s\""
+msgstr "kunne ikke bygge synthesis fil for media \"%s\""
-#: po/placeholder.h:132
+#: po/placeholder.h:143 po/placeholder.h:238
+#, fuzzy, c-format
+msgid "trying to select multiple medium: %s"
+msgstr "prver at vlge ikke-eksisterende media \"%s\""
+
+#: po/placeholder.h:144 po/placeholder.h:447
#, fuzzy
-msgid " --help - print this help message.\n"
+msgid " -a - select all non-removable media.\n"
msgstr " --all - skriv alle mrker."
-#: po/placeholder.h:133 urpmi:383
-msgid "everything already installed"
-msgstr "alting er allerede installeret"
+#: po/placeholder.h:145 po/placeholder.h:354
+msgid " names or rpm files given on command line are installed.\n"
+msgstr ""
-#: po/placeholder.h:134 urpmi:113
+#: po/placeholder.h:147 po/placeholder.h:239 urpm.pm:2125
#, c-format
-msgid "urpmi: unknown option \"-%s\", check usage with --help\n"
-msgstr "urpmi: ukendt parameter \"-%s\", tjek brug med --help\n"
+msgid "avoid selecting %s as its locales language is not already selected"
+msgstr "undg valg af %s da dens lokale sprog ikke er valgt allerede"
+
+#: po/placeholder.h:148 po/placeholder.h:356
+msgid " --complete - use parsehdlist server to complete selection.\n"
+msgstr ""
-#: po/placeholder.h:135 po/placeholder.h:253
+#: po/placeholder.h:149 po/placeholder.h:246
+#, c-format
+msgid "write config file [%s]"
+msgstr "skriv config fil [%s]"
+
+#: po/placeholder.h:150 po/placeholder.h:249
#, fuzzy
-msgid " -y - impose fuzzy search.\n"
-msgstr " --all - skriv alle mrker."
+msgid "unable to build hdlist synthesis, using parsehdlist method"
+msgstr "kunne ikke finde alle synthesis file, bruger parsehdlist tjener"
-#: po/placeholder.h:136 urpmi:217
-msgid "One of the following packages is needed:"
-msgstr "Der er brug for en af de flgende pakker:"
+#: po/placeholder.h:151 po/placeholder.h:413
+msgid ""
+" --distrib - automatically create all media from an installation "
+"medium.\n"
+msgstr ""
-#: po/placeholder.h:137 po/placeholder.h:257
-msgid " --update - use only update media.\n"
+#: po/placeholder.h:155 po/placeholder.h:253 urpm.pm:227
+#, c-format
+msgid ""
+"unable to take care of medium \"%s\" as list file is already used by another "
+"medium"
msgstr ""
+"kan ikke behandle media \"%s\" da listefil allerede bliver brugt af et andet "
+"media"
+
+#: po/placeholder.h:156 po/placeholder.h:254
+#, fuzzy, c-format
+msgid "examining synthesis file [%s]"
+msgstr "ls syntese-fil [%s]"
-#: po/placeholder.h:138 urpmi:321
+#: po/placeholder.h:158 po/placeholder.h:256
+#, c-format
+msgid "unable to retrieve pathname for removable medium \"%s\""
+msgstr "kan ikke finde stinavn for udskifteligt medie \"%s\""
+
+#: po/placeholder.h:160 po/placeholder.h:258 urpm.pm:1722 urpm.pm:1748
+#, c-format
+msgid "there are multiple packages with the same rpm filename \"%s\""
+msgstr "der er flere pakker med samme rpm-filnavn \"%s\""
+
+#: po/placeholder.h:161 po/placeholder.h:316 urpme:93
+#, fuzzy, c-format
msgid ""
-"Installation failed, some files are missing.\n"
-"You may want to update your urpmi database"
+"To satisfy dependencies, the following packages are going to be removed (%d "
+"MB)"
msgstr ""
+"For at tilfredsstille afhngigheder vil de flgende pakker blive installeret "
+"(%d Mb)"
-#: po/placeholder.h:142
-msgid " --auto - automatically select a good package in choices.\n"
+#: po/placeholder.h:163 po/placeholder.h:261
+#, fuzzy
+msgid "retrieving hdlists file..."
+msgstr "modtager [%s]"
+
+#: po/placeholder.h:164 po/placeholder.h:330 urpmi:113
+#, c-format
+msgid "urpmi: unknown option \"-%s\", check usage with --help\n"
+msgstr "urpmi: ukendt parameter \"-%s\", tjek brug med --help\n"
+
+#: po/placeholder.h:165 po/placeholder.h:262 urpm.pm:253
+#, c-format
+msgid "unable to access hdlist file of \"%s\", medium ignored"
+msgstr "kunne ikke n hdlist-fil af \"%s\", media ignoreret"
+
+#: po/placeholder.h:166 po/placeholder.h:263 urpm.pm:1208
+msgid "unable to register rpm file"
+msgstr "kunne ikke registrere rpm-fil"
+
+#: po/placeholder.h:167 po/placeholder.h:264
+#, c-format
+msgid "\"%s\""
msgstr ""
-#: po/placeholder.h:144 urpmi:329 urpmi:336 urpmi:349 urpmi:360 urpmi:373
-msgid "Installation failed"
-msgstr "Installationen fejlede"
+#: po/placeholder.h:168 po/placeholder.h:265 urpm.pm:307
+#, c-format
+msgid "unable to inspect list file for \"%s\", medium ignored"
+msgstr "kunne ikke inspicere listefil for \"%s\", media ignoreret"
-#: po/placeholder.h:145 po/placeholder.h:270
-msgid ""
-" --auto-select - automatically select packages for upgrading the system.\n"
+#: po/placeholder.h:169 po/placeholder.h:266
+#, c-format
+msgid "too many mount points for removable medium \"%s\""
+msgstr "For mange monteringspunkter for udskifteligt medium \"%s\""
+
+#: po/placeholder.h:170 po/placeholder.h:268 urpm.pm:299
+#, c-format
+msgid "incoherent list file for \"%s\", medium ignored"
+msgstr "inkonsistent listefil for \"%s\", media ignoreret"
+
+#: po/placeholder.h:171 po/placeholder.h:333 po/placeholder.h:453
+msgid " --update - use only update media.\n"
+msgstr ""
+
+#: po/placeholder.h:172 po/placeholder.h:269
+#, c-format
+msgid "copy of [%s] failed"
+msgstr "kopi af [%s] mislykkedes"
+
+#: po/placeholder.h:173 po/placeholder.h:462
+#, fuzzy
+msgid " -d - extend query to package dependencies.\n"
+msgstr " kommandolinje, men uden pakkenavn)."
+
+#: po/placeholder.h:174 po/placeholder.h:272 urpm.pm:1412 urpm.pm:1419
+#, fuzzy, c-format
+msgid "unable to analyse synthesis data of %s"
+msgstr "kunne ikke fortolke hdlist-filen \"%s\""
+
+#: po/placeholder.h:175 po/placeholder.h:274
+#, c-format
+msgid "retrieving source hdlist (or synthesis) of \"%s\"..."
msgstr ""
-#: po/placeholder.h:147
+#: po/placeholder.h:177 po/placeholder.h:343
#, fuzzy
msgid " --X - use X interface.\n"
msgstr " --all - skriv alle mrker."
-#: po/placeholder.h:148 urpmi:267
+#: po/placeholder.h:178 po/placeholder.h:275
+#, fuzzy
+msgid "...copying done"
+msgstr "modtager [%s]"
+
+#: po/placeholder.h:179 po/placeholder.h:344 urpmi:267
#, c-format
msgid ""
"To satisfy dependencies, the following packages are going to be installed (%"
@@ -706,115 +800,188 @@ msgstr ""
"For at tilfredsstille afhngigheder vil de flgende pakker blive installeret "
"(%d Mb)"
-#: po/placeholder.h:149 po/placeholder.h:273
+#: po/placeholder.h:180 po/placeholder.h:277
#, fuzzy
-msgid " -P - do not search in provides to find package.\n"
-msgstr " --group - skriv mrkegruppe: gruppe."
+msgid "copying hdlists file..."
+msgstr "lser hdlist-fil [%s]"
+
+#: po/placeholder.h:181 po/placeholder.h:278 urpm.pm:188 urpm.pm:200
+#, c-format
+msgid "syntax error in config file at line %s"
+msgstr "syntaksfejl i config fil ved linje %s"
-#: po/placeholder.h:150 urpmi:342 urpmi:366
+#: po/placeholder.h:182 po/placeholder.h:346 urpmi:342 urpmi:366
msgid "Try installation without checking dependencies? (y/N) "
msgstr "Prv installation uden at tjekke afhngigheder? (j/N) "
-#: po/placeholder.h:151 po/placeholder.h:278
-msgid " --media - use only the media listed by comma.\n"
-msgstr ""
-
-#: po/placeholder.h:152
-msgid ""
-" --best-output - choose best interface according to the environment:\n"
-" X or text mode.\n"
-msgstr ""
+#: po/placeholder.h:183 po/placeholder.h:283 urpm.pm:1212
+msgid "error registering local packages"
+msgstr "fejl ved registrering af lokale pakker"
-#: po/placeholder.h:156 po/placeholder.h:280
-msgid " -v - verbose mode.\n"
-msgstr ""
+#: po/placeholder.h:184 po/placeholder.h:284
+#, c-format
+msgid "taking removable device as \"%s\""
+msgstr "tager udskifteligt medium som \"%s\""
-#: po/placeholder.h:157 po/placeholder.h:279
+#: po/placeholder.h:185 po/placeholder.h:353 po/placeholder.h:475
msgid " -p - allow search in provides to find package.\n"
msgstr ""
-#: po/placeholder.h:158
-msgid " names or rpm files given on command line are installed.\n"
-msgstr ""
+#: po/placeholder.h:187 po/placeholder.h:287
+#, fuzzy, c-format
+msgid "copying description file of \"%s\"..."
+msgstr "ingenting skrevet i listefil for \"%s\""
+
+#: po/placeholder.h:188 po/placeholder.h:288
+#, c-format
+msgid "unable to build hdlist: %s"
+msgstr "kunne ikke bygge hdlist: %s"
+
+#: po/placeholder.h:189 po/placeholder.h:289 urpm.pm:1811 urpm.pm:1814
+#: urpm.pm:1833
+#, c-format
+msgid "medium \"%s\" is not selected"
+msgstr "media \"%s\" er ikke valgt"
+
+#: po/placeholder.h:190 po/placeholder.h:292 urpm.pm:269
+#, c-format
+msgid "trying to bypass existing medium \"%s\", avoiding"
+msgstr "prver at forbig eksisterende media \"%s\", undgr"
-#: po/placeholder.h:159
+#: po/placeholder.h:191 po/placeholder.h:355
#, fuzzy
msgid " -q - quiet mode.\n"
msgstr " --all - skriv alle mrker."
-#: po/placeholder.h:160
-msgid " --complete - use parsehdlist server to complete selection.\n"
+#: po/placeholder.h:194 po/placeholder.h:367 po/placeholder.h:465
+msgid ""
+" --force - force invocation even if some packages do not exist.\n"
msgstr ""
-#: po/placeholder.h:161 urpmi:225
+#: po/placeholder.h:196 po/placeholder.h:320 urpme:62
#, c-format
-msgid "What is your choice? (1-%d) "
-msgstr "Hvad er dit valg? (1-%d) "
+msgid "Using \"%s\" as a substring, I found"
+msgstr ""
-#: po/placeholder.h:162 po/placeholder.h:210 po/placeholder.h:233
-msgid " --wget - use wget to retrieve distant files.\n"
+#: po/placeholder.h:197 po/placeholder.h:372 urpmi:316
+#, c-format
+msgid "installing %s\n"
+msgstr "installerer %s\n"
+
+#: po/placeholder.h:198 po/placeholder.h:325 urpme:30
+msgid "Remove them all?"
msgstr ""
-#: po/placeholder.h:163
+#: po/placeholder.h:199 po/placeholder.h:373 urpmi:296
+#, c-format
+msgid "Please insert the medium named \"%s\" on device [%s]"
+msgstr "Vr venlig at indstte mediet med navnet %s i enhed [%s]"
+
+#: po/placeholder.h:200 po/placeholder.h:304 urpm.pm:1305
+#, c-format
+msgid "The following packages contain %s: %s"
+msgstr "Flgende pakker indeholder %s: %s"
+
+#: po/placeholder.h:201 po/placeholder.h:306
#, fuzzy, c-format
-msgid ""
-"urpmi version %s\n"
-"Copyright (C) 1999, 2000, 2001 MandrakeSoft.\n"
-"This is free software and may be redistributed under the terms of the GNU "
-"GPL.\n"
-"usage:\n"
-msgstr ""
-"Dette er frit programmel og kan redistribueres under vilkrene til GNU GPL."
+msgid "examining hdlist file [%s]"
+msgstr "lser hdlist-fil [%s]"
-#: po/placeholder.h:169 urpmi:350 urpmi:374
-msgid "Try installation even more strongly (--force)? (y/N) "
-msgstr "Prv installation med endnu strre kraft (--force)? (j/N) "
+#: po/placeholder.h:202 po/placeholder.h:307 urpm.pm:1191
+#, fuzzy
+msgid "no entries relocated in depslist"
+msgstr "omflyttede %s indgange i depsliste"
-#: po/placeholder.h:171 po/placeholder.h:269
-msgid ""
-" --force - force invocation even if some packages do not exist.\n"
+#: po/placeholder.h:203 po/placeholder.h:412
+msgid " --update - create an update medium.\n"
msgstr ""
-#: po/placeholder.h:172 urpmi:228
-msgid "Sorry, bad choice, try again\n"
-msgstr "Undskyld, drligt valg, prv igen\n"
+#: po/placeholder.h:205 po/placeholder.h:445
+#, fuzzy
+msgid ""
+" -d - force complete computation of depslist.ordered file.\n"
+msgstr " --group - skriv mrkegruppe: gruppe."
-#: po/placeholder.h:174
-msgid " -a - select all matches on command line.\n"
-msgstr ""
+#: po/placeholder.h:206 po/placeholder.h:375 po/placeholder.h:477 urpmi:286
+#: urpmq:151
+msgid "unable to get source packages, aborting"
+msgstr "kan ikke hente kilde-pakker, afslutter med fejl"
-#: po/placeholder.h:175 po/placeholder.h:203 po/placeholder.h:226
-msgid " --curl - use curl to retrieve distant files.\n"
-msgstr ""
+#: po/placeholder.h:207 po/placeholder.h:308 urpm.pm:1896
+#, fuzzy
+msgid "...retrieving done"
+msgstr "modtager [%s]"
-#: po/placeholder.h:176 urpmi:316
+#: po/placeholder.h:208 po/placeholder.h:309 urpm.pm:2006
#, c-format
-msgid "installing %s\n"
-msgstr "installerer %s\n"
+msgid "selecting %s using obsoletes"
+msgstr "vlger %s ved at bruge obsolete"
-#: po/placeholder.h:177 urpmi:296
+#: po/placeholder.h:209 po/placeholder.h:310 urpm.pm:151
#, c-format
-msgid "Please insert the medium named \"%s\" on device [%s]"
-msgstr "Vr venlig at indstte mediet med navnet %s i enhed [%s]"
+msgid "curl failed: exited with %d or signal %d\n"
+msgstr ""
-#: po/placeholder.h:179 po/placeholder.h:281 urpmi:286 urpmq:151
-msgid "unable to get source packages, aborting"
-msgstr "kan ikke hente kilde-pakker, afslutter med fejl"
+#: po/placeholder.h:210 po/placeholder.h:311 urpm.pm:2122
+#, c-format
+msgid "selecting %s by selection on files"
+msgstr "vlger %s ved valg af filer"
-#: po/placeholder.h:180 urpmi:297
-msgid "Press Enter when it's done..."
-msgstr "Tryk p retur, nr den er frdig..."
+#: po/placeholder.h:211 po/placeholder.h:313
+#, fuzzy, c-format
+msgid "copying source list of \"%s\"..."
+msgstr "ingenting skrevet i listefil for \"%s\""
-#: po/placeholder.h:181 urpmi:131
+#: po/placeholder.h:212 po/placeholder.h:377 urpmi:131
msgid "Only superuser is allowed to install packages"
msgstr "Kun superbrugeren har lov til at installere pakker"
-#: po/placeholder.h:182 urpmi:216
-#, c-format
-msgid "One of the following packages is needed to install %s:"
-msgstr "Der er brug for en af de flgende pakker for at installere %s:"
+#: po/placeholder.h:213 po/placeholder.h:314 urpm.pm:96
+msgid "wget is missing\n"
+msgstr ""
+
+#: po/placeholder.h:240
+#, fuzzy, c-format
+msgid ""
+"removing %s to upgrade to %s ...\n"
+" since it will not be updated otherwise"
+msgstr ""
+"fjerner %s for at opgradere ...\n"
+" til %s da den ikke vil blive opdateret ellers"
+
+#: po/placeholder.h:296
+#, fuzzy, c-format
+msgid ""
+"removing %s to upgrade to %s ...\n"
+" since it will not upgrade correctly!"
+msgstr ""
+"fjerner %s for at opgradere ...\n"
+" til %s da den ikke vil opgradere korrekt!"
+
+#: po/placeholder.h:334 urpmi:321
+msgid ""
+"Installation failed, some files are missing.\n"
+"You may want to update your urpmi database"
+msgstr ""
+
+#: po/placeholder.h:348
+msgid ""
+" --best-output - choose best interface according to the environment:\n"
+" X or text mode.\n"
+msgstr ""
-#: po/placeholder.h:183 urpmi.addmedia:70
+#: po/placeholder.h:359
+#, fuzzy, c-format
+msgid ""
+"urpmi version %s\n"
+"Copyright (C) 1999, 2000, 2001 MandrakeSoft.\n"
+"This is free software and may be redistributed under the terms of the GNU "
+"GPL.\n"
+"usage:\n"
+msgstr ""
+"Dette er frit programmel og kan redistribueres under vilkrene til GNU GPL."
+
+#: po/placeholder.h:379 urpmi.addmedia:70
#, fuzzy, c-format
msgid ""
"%s\n"
@@ -823,7 +990,7 @@ msgstr ""
"%s\n"
"<relativ sti for hdlist> mangler\n"
-#: po/placeholder.h:187
+#: po/placeholder.h:383
#, fuzzy
msgid ""
"usage: urpmi.addmedia [options] <name> <url> [with <relative_path>]\n"
@@ -845,17 +1012,7 @@ msgstr ""
" http://<vrt>/<sti> with <relativt filnavn for hdlist>\n"
" removable_<enhed>://<sti>\n"
-#: po/placeholder.h:197 urpmi.addmedia:92
-#, c-format
-msgid "unable to create medium \"%s\"\n"
-msgstr "kan ikke oprette medie \"%s\"\n"
-
-#: po/placeholder.h:198 urpmi.addmedia:76 urpmi.addmedia:93
-#, c-format
-msgid "unable to update medium \"%s\"\n"
-msgstr "kan ikke opdatere medie \"%s\"\n"
-
-#: po/placeholder.h:199 po/placeholder.h:222 po/placeholder.h:238
+#: po/placeholder.h:395 po/placeholder.h:415 po/placeholder.h:433
#: urpmi.addmedia:57
#, fuzzy, c-format
msgid ""
@@ -863,12 +1020,7 @@ msgid ""
"unknown options '%s'\n"
msgstr "ukendte valg \"%s\"\n"
-#: po/placeholder.h:204 po/placeholder.h:231 po/placeholder.h:246
-#, fuzzy
-msgid " -c - clean headers cache directory.\n"
-msgstr " --all - skriv alle mrker."
-
-#: po/placeholder.h:205 urpmi.addmedia:82
+#: po/placeholder.h:401 urpmi.addmedia:82
#, c-format
msgid ""
"%s\n"
@@ -877,17 +1029,7 @@ msgstr ""
"%s\n"
"<relativ sti for hdlist> mangler\n"
-#: po/placeholder.h:209 po/placeholder.h:232
-#, fuzzy
-msgid " -f - force generation of hdlist files.\n"
-msgstr " --group - skriv mrkegruppe: gruppe."
-
-#: po/placeholder.h:211
-#, fuzzy
-msgid " -h - try to find and use synthesis or hdlist file.\n"
-msgstr " --group - skriv mrkegruppe: gruppe."
-
-#: po/placeholder.h:212 urpmi.addmedia:84
+#: po/placeholder.h:408 urpmi.addmedia:84
#, c-format
msgid ""
"%s\n"
@@ -896,57 +1038,7 @@ msgstr ""
"%s\n"
"'with' mangler for ftp-medie\n"
-#: po/placeholder.h:216
-msgid " --update - create an update medium.\n"
-msgstr ""
-
-#: po/placeholder.h:217
-msgid ""
-" --distrib - automatically create all media from an installation "
-"medium.\n"
-msgstr ""
-
-#: po/placeholder.h:218
-#, fuzzy
-msgid ""
-"usage: urpmi.update [options] <name> ...\n"
-"where <name> is a medium name to update.\n"
-msgstr ""
-"brug: urpmi.removemedia [-a] <navn> ...\n"
-"hvor <navn> er et medie navn der skal fjernes.\n"
-" -a vlg alle medier.\n"
-"\n"
-"ukendte valg '%s'\n"
-
-#: po/placeholder.h:227 urpmi.update:59
-#, c-format
-msgid ""
-"the entry to update is missing\n"
-"(one of %s)\n"
-msgstr ""
-"mangler det element der skal opdateres\n"
-"(n af %s)\n"
-
-#: po/placeholder.h:234
-#, fuzzy
-msgid ""
-" -d - force complete computation of depslist.ordered file.\n"
-msgstr " --group - skriv mrkegruppe: gruppe."
-
-#: po/placeholder.h:235 urpmi.update:57
-msgid "nothing to update (use urpmi.addmedia to add a media)\n"
-msgstr "ingenting at opdatere (brug urpmi.addmedia til at tilfje et medie)\n"
-
-#: po/placeholder.h:236
-#, fuzzy
-msgid " -a - select all non-removable media.\n"
-msgstr " --all - skriv alle mrker."
-
-#: po/placeholder.h:237 urpmi.removemedia:47
-msgid "nothing to remove (use urpmi.addmedia to add a media)\n"
-msgstr "ingenting at fjerne (brug urpmi.addmedia til at tilfje et medie)\n"
-
-#: po/placeholder.h:242 urpmi.removemedia:49
+#: po/placeholder.h:419 urpmi.removemedia:49
#, c-format
msgid ""
"the entry to remove is missing\n"
@@ -955,12 +1047,7 @@ msgstr ""
"mangler det element der skal fjernes\n"
"(n af %s)\n"
-#: po/placeholder.h:247
-#, fuzzy
-msgid " -a - select all media.\n"
-msgstr " --all - skriv alle mrker."
-
-#: po/placeholder.h:248
+#: po/placeholder.h:425
#, fuzzy
msgid ""
"usage: urpmi.removemedia [-a] <name> ...\n"
@@ -972,35 +1059,28 @@ msgstr ""
"\n"
"ukendte valg '%s'\n"
-#: po/placeholder.h:252
-#, fuzzy
-msgid " -h - print this help message.\n"
-msgstr " --all - skriv alle mrker."
-
-#: po/placeholder.h:254
+#: po/placeholder.h:429
#, fuzzy
-msgid " -g - print groups too with name.\n"
-msgstr " --group - skriv mrkegruppe: gruppe."
-
-#: po/placeholder.h:255 urpmq:90
-#, c-format
-msgid "urpmq: cannot read rpm file \"%s\"\n"
-msgstr "urpmq: kan ikke lse rpm-fil \"%s\"\n"
-
-#: po/placeholder.h:256
-msgid " names or rpm files given on command line are queried.\n"
+msgid ""
+"usage: urpmi.update [options] <name> ...\n"
+"where <name> is a medium name to update.\n"
msgstr ""
+"brug: urpmi.removemedia [-a] <navn> ...\n"
+"hvor <navn> er et medie navn der skal fjernes.\n"
+" -a vlg alle medier.\n"
+"\n"
+"ukendte valg '%s'\n"
-#: po/placeholder.h:258
-#, fuzzy
-msgid " -r - print version and release too with name.\n"
-msgstr " kommandolinje, men uden pakkenavn)."
-
-#: po/placeholder.h:259
-msgid " -f - print version, release and arch with name.\n"
+#: po/placeholder.h:438 urpmi.update:59
+#, c-format
+msgid ""
+"the entry to update is missing\n"
+"(one of %s)\n"
msgstr ""
+"mangler det element der skal opdateres\n"
+"(n af %s)\n"
-#: po/placeholder.h:260
+#: po/placeholder.h:456
#, fuzzy, c-format
msgid ""
"urpmq version %s\n"
@@ -1011,45 +1091,12 @@ msgid ""
msgstr ""
"Dette er frit programmel og kan redistribueres under vilkrene til GNU GPL."
-#: po/placeholder.h:266
-#, fuzzy
-msgid " -d - extend query to package dependencies.\n"
-msgstr " kommandolinje, men uden pakkenavn)."
-
-#: po/placeholder.h:267
-msgid ""
-" --sources - give all source packages before downloading (root only).\n"
-msgstr ""
-
-#: po/placeholder.h:268
-msgid ""
-" -c - choose complete method for resolving requires closure.\n"
-msgstr ""
-
-#: po/placeholder.h:271 urpmq:137
-msgid ""
-"some packages have to be removed for being upgraded, this is not supported "
-"yet\n"
-msgstr ""
-"en pakke skal fjernes fr den kan opgraderes, dette er ikke understttet "
-"endnu.\n"
-
-#: po/placeholder.h:272 urpmq:87
-#, c-format
-msgid "urpmq: unknown option \"-%s\", check usage with --help\n"
-msgstr "urpmq: ukendt parameter \"-%s\", tjek brug med --help\n"
-
-#: po/placeholder.h:274
+#: po/placeholder.h:470
msgid ""
" --headers - extract headers for package listed from urpmi db to\n"
" stdout (root only).\n"
msgstr ""
-#: po/placeholder.h:282
-msgid ""
-" -u - remove package if a better version is already installed.\n"
-msgstr ""
-
#: urpm.pm:2030 urpm.pm:2039
#, c-format
msgid "removing %s to upgrade to %s ..."
@@ -1093,18 +1140,18 @@ msgstr ""
msgid ");"
msgstr ");"
-#: urpmi.update:41
-#, fuzzy
-msgid "usage: urpmi.update [options] <name> ..."
-msgstr "brug: urpmi.update [-a] <name> ..."
+#: urpmi.removemedia:34
+msgid "usage: urpmi.removemedia [-a] <name> ..."
+msgstr "brug: urpmi.removemedia [-a] <name> ..."
#: urpmi.removemedia:38 urpmi.update:49
msgid ", $_);"
msgstr ", $_);"
-#: urpmi.removemedia:34
-msgid "usage: urpmi.removemedia [-a] <name> ..."
-msgstr "brug: urpmi.removemedia [-a] <name> ..."
+#: urpmi.update:41
+#, fuzzy
+msgid "usage: urpmi.update [options] <name> ..."
+msgstr "brug: urpmi.update [-a] <name> ..."
#: urpmq:34
#, c-format
diff --git a/po/de.po b/po/de.po
index 3c167e75..ad10a56b 100644
--- a/po/de.po
+++ b/po/de.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: urpmi 1.7\n"
-"POT-Creation-Date: 2002-01-30 14:07+0100\n"
+"POT-Creation-Date: 2002-02-06 14:21+0100\n"
"PO-Revision-Date: 2002-01-30 18:54+0100\n"
"Last-Translator: Stefan Siegel <siegel@linux-mandrake.com>\n"
"Language-Team: German <cooker-i18n@linux-mandrake.com>\n"
@@ -26,27 +26,31 @@ msgstr ""
"Automatische Installation von Paketen ...\n"
"Sie wünschen die Installation von Paket „$rpm“\n"
-#: _irpm:31 po/placeholder.h:178 urpmi:268
+#: _irpm:31 po/placeholder.h:204 po/placeholder.h:322 po/placeholder.h:374
+#: urpme:29 urpmi:268
msgid "Is it OK?"
msgstr "Ist das in Ordnung?"
-#: _irpm:33 po/placeholder.h:170 urpmi:271 urpmi:299
+#: _irpm:33 po/placeholder.h:193 po/placeholder.h:366 urpmi:271 urpmi:299
msgid "Ok"
msgstr "Ok"
-#: _irpm:34 po/placeholder.h:131 urpmi:272 urpmi:300
+#: _irpm:34 po/placeholder.h:162 po/placeholder.h:327 urpmi:272 urpmi:300
msgid "Cancel"
msgstr "Abbruch"
-#: _irpm:40 po/placeholder.h:143 urpmi:276 urpmi:340 urpmi:364
+#: _irpm:40 po/placeholder.h:176 po/placeholder.h:326 po/placeholder.h:339
+#: urpme:32 urpmi:276 urpmi:340 urpmi:364
msgid "Nn"
msgstr "Nn"
-#: _irpm:41 po/placeholder.h:146 urpmi:277 urpmi:341 urpmi:365
+#: _irpm:41 po/placeholder.h:89 po/placeholder.h:321 po/placeholder.h:342
+#: urpme:34 urpmi:277 urpmi:341 urpmi:365
msgid "Yy"
msgstr "JjYy"
-#: _irpm:42 po/placeholder.h:173 urpmi:278
+#: _irpm:42 po/placeholder.h:195 po/placeholder.h:318 po/placeholder.h:369
+#: urpme:94 urpmi:278
msgid " (Y/n) "
msgstr " (J/n) "
@@ -54,16 +58,16 @@ msgstr " (J/n) "
msgid "$rpm: command not found\n"
msgstr "$rpm: Befehl nicht gefunden\n"
-#: po/placeholder.h:6
+#: po/placeholder.h:6 po/placeholder.h:154
#, c-format
msgid "urpmf version %s"
msgstr "urpmf Version %s"
-#: po/placeholder.h:7
+#: po/placeholder.h:7 po/placeholder.h:192
msgid "Copyright (C) 1999,2000,2001 MandrakeSoft."
msgstr "Urheberrecht (C) 1999,2000,2001 MandrakeSoft."
-#: po/placeholder.h:8
+#: po/placeholder.h:8 po/placeholder.h:152
msgid ""
"This is free software and may be redistributed under the terms of the GNU "
"GPL."
@@ -71,80 +75,80 @@ msgstr ""
"Dies ist freie Software und kann unter den Bedingungen der GNU GPL weiter "
"Vertrieben werden."
-#: po/placeholder.h:9 po/placeholder.h:26
+#: po/placeholder.h:9 po/placeholder.h:26 po/placeholder.h:130
msgid "usage: urpmf [options] <file>"
msgstr "Verwendung: rpmf [Optionen] <Datei>"
-#: po/placeholder.h:10
+#: po/placeholder.h:10 po/placeholder.h:109
msgid ""
" --quiet - do not print tag name (default if no tag given on command"
msgstr ""
" --quiet - Keine Parameter ausgeben (Standard, wenn kein Parameter"
-#: po/placeholder.h:11
+#: po/placeholder.h:11 po/placeholder.h:153
msgid " line, incompatible with interactive mode)."
msgstr " in der Kommandozeile vorgegeben wurde)."
-#: po/placeholder.h:12
+#: po/placeholder.h:12 po/placeholder.h:127
msgid " --all - print all tags."
msgstr " --all - Alle Parameter ausgeben."
-#: po/placeholder.h:13
+#: po/placeholder.h:13 po/placeholder.h:157
msgid ""
" --name - print tag name: rpm filename (assumed if no tag given on"
msgstr ""
" --name - Ausgabe des Attributs „Name des RPMs“ (Dieses Attribut"
-#: po/placeholder.h:14
+#: po/placeholder.h:14 po/placeholder.h:159
msgid " command line but without package name)."
msgstr ""
" wird angenommen, wenn kein Parameter angegeben wird)"
-#: po/placeholder.h:15
+#: po/placeholder.h:15 po/placeholder.h:102
msgid " --group - print tag group: group."
msgstr " --group - Ausgabe des Attributs „Gruppe“."
-#: po/placeholder.h:16
+#: po/placeholder.h:16 po/placeholder.h:87
msgid " --size - print tag size: size."
msgstr " --size - Ausgabe des Attributs „Größe“."
-#: po/placeholder.h:17
+#: po/placeholder.h:17 po/placeholder.h:134
msgid " --serial - print tag serial: serial."
msgstr " --serial - Ausgabe des Attributs „Seriennummer“."
-#: po/placeholder.h:18
+#: po/placeholder.h:18 po/placeholder.h:146
msgid " --summary - print tag summary: summary."
msgstr " --summary - Ausgabe des Attributs „Zusammenfassung“."
-#: po/placeholder.h:19
+#: po/placeholder.h:19 po/placeholder.h:120
msgid " --description - print tag description: description."
msgstr " --description - Ausgabe des Attributs „Beschreibung“."
-#: po/placeholder.h:20
+#: po/placeholder.h:20 po/placeholder.h:138
msgid " --provides - print tag provides: all provides (multiple lines)."
msgstr ""
" --provides - Ausgabe des Attributs „Stellt zur Verfügung“ (mehrere\n"
" Zeilen möglich)."
-#: po/placeholder.h:21
+#: po/placeholder.h:21 po/placeholder.h:186
msgid " --requires - print tag requires: all requires (multiple lines)."
msgstr ""
" --requires - Ausgabe des Attributs „Benötigt“ (mehrere Zeilen "
"möglich)."
-#: po/placeholder.h:22
+#: po/placeholder.h:22 po/placeholder.h:41
msgid " --files - print tag files: all files (multiple lines)."
msgstr ""
" --files - Ausgabe des Attribus „Dateien“ (mehrere Zeilen möglich)."
-#: po/placeholder.h:23
+#: po/placeholder.h:23 po/placeholder.h:34
msgid ""
" --conflicts - print tag conflicts: all conflicts (multiple lines)."
msgstr ""
" --conflicts - Ausgabe des Attributs „Steht in Konflikt mit“ (mehrere\n"
" Zeilen möglich)."
-#: po/placeholder.h:24
+#: po/placeholder.h:24 po/placeholder.h:106
msgid ""
" --obsoletes - print tag obsoletes: all obsoletes (multiple lines)."
msgstr ""
@@ -152,563 +156,666 @@ msgstr ""
"Zeilen\n"
" möglich)."
-#: po/placeholder.h:25
+#: po/placeholder.h:25 po/placeholder.h:128
msgid " --prereqs - print tag prereqs: all prereqs (multiple lines)."
msgstr ""
" --prereqs - Ausgabe des Attributs „Benötigt zur Installation“\n"
" (mehrere Zeilen möglich)"
-#: po/placeholder.h:27
+#: po/placeholder.h:27 po/placeholder.h:62
msgid "try urpmf --help for more options"
msgstr "Mit „urmpf --help“ erhatlen Sie weitere Optionen"
-#: po/placeholder.h:28
+#: po/placeholder.h:28 po/placeholder.h:49
msgid "no full media list was found"
msgstr "Es wurde keine komplette Medienliste gefunden"
-#: po/placeholder.h:29
+#: po/placeholder.h:29 po/placeholder.h:214
#, c-format
msgid "unable to write config file [%s]"
msgstr "Die Konfigurationsdatei [%s] kann nicht geschrieben werden."
-#: po/placeholder.h:30 urpm.pm:1892
-msgid "retrieving rpms files..."
-msgstr "Holen der RPMs ..."
-
-#: po/placeholder.h:31
+#: po/placeholder.h:30 po/placeholder.h:216
msgid "examining whole urpmi database"
msgstr "Untersuchung der gesamten urpmi-Datenbank"
-#: po/placeholder.h:32
-#, c-format
-msgid "using different removable device [%s] for \"%s\""
-msgstr "Verwendung verschiedener Wechselmedien [%s] für „%s“"
-
-#: po/placeholder.h:33
-#, c-format
-msgid "nothing to write in list file for \"%s\""
-msgstr "Für die Dateiliste von „%s“ muss nichts geschrieben werden."
-
-#: po/placeholder.h:34
-msgid ""
-"unable to access first installation medium (no Mandrake/base/hdlists file "
-"found)"
-msgstr ""
-"Kein Zugriff auf das erste Installationsmedium (die Datei „Mandrake/base/hdlists“ wurde nicht gefunden)"
+#: po/placeholder.h:31 po/placeholder.h:331 po/placeholder.h:449
+#, fuzzy
+msgid " -y - impose fuzzy search.\n"
+msgstr " --all - Alle Parameter ausgeben."
-#: po/placeholder.h:35 urpm.pm:280
+#: po/placeholder.h:32 po/placeholder.h:220 urpm.pm:280
#, c-format
msgid "unable to find list file for \"%s\", medium ignored"
msgstr ""
"Die Dateiliste für das Medium „%s“ wurde nicht gefunden, es wird ignoriert."
-#: po/placeholder.h:36
+#: po/placeholder.h:33 po/placeholder.h:218
+#, c-format
+msgid "nothing to write in list file for \"%s\""
+msgstr "Für die Dateiliste von „%s“ muss nichts geschrieben werden."
+
+#: po/placeholder.h:35 po/placeholder.h:221
#, c-format
msgid "unable to parse hdlist file of \"%s\""
msgstr "Die Struktur der HD-Liste von „%s“ ist nicht korrekt."
-#: po/placeholder.h:37
+#: po/placeholder.h:36 po/placeholder.h:222
#, c-format
msgid "nothing written in list file for \"%s\""
msgstr "Es wurde nichts in die Dateiliste von „%s“ geschrieben."
-#: po/placeholder.h:38
+#: po/placeholder.h:37 po/placeholder.h:463
+msgid ""
+" --sources - give all source packages before downloading (root only).\n"
+msgstr ""
+
+#: po/placeholder.h:38 po/placeholder.h:341 po/placeholder.h:466
+msgid ""
+" --auto-select - automatically select packages for upgrading the system.\n"
+msgstr ""
+
+#: po/placeholder.h:39 po/placeholder.h:223
#, c-format
msgid "retrieving description file of \"%s\"..."
msgstr "Holen der Beschreibungsdatei für „%s“ ..."
-#: po/placeholder.h:39
-msgid "unable to access first installation medium"
-msgstr "Es kann nicht auf das erste Installationsmedium zugegriffen werden."
-
-#: po/placeholder.h:40 urpm.pm:1768
+#: po/placeholder.h:40 po/placeholder.h:225 urpm.pm:1769
#, c-format
msgid "package %s is not found."
msgstr "Paket %s wurde nicht gefunden."
-#: po/placeholder.h:41 urpm.pm:1129
-#, c-format
-msgid "unmounting %s"
-msgstr "Aushängen von „%s“"
-
-#: po/placeholder.h:42
-#, c-format
-msgid "removing %d obsolete headers in cache"
-msgstr "Entferne %d veraltete Informationen aus dem Cache."
-
-#: po/placeholder.h:43
-#, c-format
-msgid "no hdlist file found for medium \"%s\""
-msgstr "Keine HD-Liste für das Medium „%s“ gefunden."
-
-#: po/placeholder.h:44 urpm.pm:209
+#: po/placeholder.h:42 po/placeholder.h:229 urpm.pm:209
#, c-format
msgid "medium \"%s\" tries to use an already used hdlist, medium ignored"
msgstr ""
"Das Medium „%s“ versucht eine bereits verwendete HD-Liste ebenfalls zu "
"verwenden, es wird daher ignoriert."
-#: po/placeholder.h:45 urpm.pm:1413
-msgid "<non printable chars>"
-msgstr "<nichtdruckbare Zeichen>"
-
-#: po/placeholder.h:46
-msgid "problem reading hdlist file, trying again"
-msgstr "Probleme beim Lesen der HD-Liste, versuche es erneut ..."
+#: po/placeholder.h:43 po/placeholder.h:317 urpme:52
+msgid "unknown package(s) "
+msgstr ""
-#: po/placeholder.h:47 urpm.pm:233
+#: po/placeholder.h:44 po/placeholder.h:232 urpm.pm:233
#, c-format
msgid "unable to use name \"%s\" for unnamed medium because it is already used"
msgstr ""
"Sie können „%s“ nicht als Name für dieses Medium verwenden, da er bereits "
"verwendet wird."
-#: po/placeholder.h:48
-#, c-format
-msgid "removing medium \"%s\""
-msgstr "Entfernen des Mediums „%s“."
+#: po/placeholder.h:45 po/placeholder.h:231
+msgid "problem reading hdlist file, trying again"
+msgstr "Probleme beim Lesen der HD-Liste, versuche es erneut ..."
-#: po/placeholder.h:49 urpm.pm:240
+#: po/placeholder.h:46 po/placeholder.h:234 urpm.pm:240
#, c-format
msgid "unable to take medium \"%s\" into account as no list file [%s] exists"
msgstr ""
"Es ist nicht möglich, das Medium „%s“ zu verwenden, da keine Dateilise [%s] "
"existiert."
-#: po/placeholder.h:50
+#: po/placeholder.h:47 po/placeholder.h:235
msgid "keeping only files referenced in provides"
msgstr "Nur Behalten der Dateien, die als Anbieter referenziert werden."
-#: po/placeholder.h:51
-#, c-format
-msgid "unable to build synthesis file for medium \"%s\""
-msgstr "Ich kann die Synthese-Datei für das Medium „%s“ nicht aktualisieren."
-
-#: po/placeholder.h:52
+#: po/placeholder.h:48 po/placeholder.h:237
#, c-format
msgid "found %d headers in cache"
msgstr "%d Informationen im Cache gefunden."
-#: po/placeholder.h:53
-#, c-format
-msgid "trying to select multiple medium: %s"
-msgstr "Versuch, das Mehrfachmedium „%s“ auszuwählen."
-
-#: po/placeholder.h:54 urpm.pm:2125
+#: po/placeholder.h:50 po/placeholder.h:394 urpmi.addmedia:76
+#: urpmi.addmedia:93
#, c-format
-msgid "avoid selecting %s as its locales language is not already selected"
-msgstr ""
-"Vermeide die Auswahl von „%s“, das die entsprechenden Spracheinstellungen "
-"nicht installiert sind."
+msgid "unable to update medium \"%s\"\n"
+msgstr "Ich kann das Medium „%s“ nicht aktualisieren.\n"
-#: po/placeholder.h:55
-#, c-format
-msgid ""
-"removing %s to upgrade to %s ...\n"
-" since it will not be updated otherwise"
-msgstr ""
-"Entfernen von %s für die Aktualisierung auf %s ...\n"
-"Andernfalls funktioniert die Aktualisierung nicht korrekt."
+#: po/placeholder.h:51 po/placeholder.h:400 po/placeholder.h:423
+#: po/placeholder.h:442
+msgid " -c - clean headers cache directory.\n"
+msgstr " -c - Löschen des Header-Verzeichnisses.\n"
-#: po/placeholder.h:59
+#: po/placeholder.h:52 po/placeholder.h:244
#, c-format
msgid "medium \"%s\" already exists"
msgstr "Das Medium „%s“ existiert bereits."
-#: po/placeholder.h:60
+#: po/placeholder.h:53 po/placeholder.h:245
#, c-format
msgid "unable to write list file of \"%s\""
msgstr "Ich kann die Dateiliste für „%s“ nicht schreiben."
-#: po/placeholder.h:61
-#, c-format
-msgid "write config file [%s]"
-msgstr "Schreiben der Konfigurationsdatei [%s]."
+#: po/placeholder.h:54 po/placeholder.h:452
+msgid " names or rpm files given on command line are queried.\n"
+msgstr ""
-#: po/placeholder.h:62 urpm.pm:1302
+#: po/placeholder.h:55 po/placeholder.h:247 urpm.pm:1302
#, c-format
msgid "no package named %s"
msgstr "Kein Paket namens %s"
-#: po/placeholder.h:63
-#, c-format
-msgid "built hdlist synthesis file for medium \"%s\""
-msgstr "Erstellen der HD-Liste für das Medium „%s“"
-
-#: po/placeholder.h:64
-msgid "unable to build hdlist synthesis, using parsehdlist method"
-msgstr "Ich kann keine Synthese-Dateien erstellen - verwende die Parsedhdlist-Variante"
+#: po/placeholder.h:56 po/placeholder.h:365 urpmi:350 urpmi:374
+msgid "Try installation even more strongly (--force)? (y/N) "
+msgstr "Soll ich eine Installation mit Gewalt (--force) versuchen? (j/N) "
-#: po/placeholder.h:65 urpm.pm:275
+#: po/placeholder.h:57 po/placeholder.h:250 urpm.pm:275
#, c-format
msgid "unable to find hdlist file for \"%s\", medium ignored"
-msgstr "Die HD-Liste für das Medium „%s“ wurde nicht gefunden, es wird ignoriert."
+msgstr ""
+"Die HD-Liste für das Medium „%s“ wurde nicht gefunden, es wird ignoriert."
-#: po/placeholder.h:66
+#: po/placeholder.h:58 po/placeholder.h:248
+#, c-format
+msgid "built hdlist synthesis file for medium \"%s\""
+msgstr "Erstellen der HD-Liste für das Medium „%s“"
+
+#: po/placeholder.h:59 po/placeholder.h:251
msgid "urpmi database locked"
msgstr "Die urpmi-Datenbank wird von einem anderen Prozess blockiert!"
-#: po/placeholder.h:67 urpm.pm:1118
-#, c-format
-msgid "mounting %s"
-msgstr "Einhängen von „%s“"
+#: po/placeholder.h:60 po/placeholder.h:319 urpme:63
+#, fuzzy
+msgid " (y/N) "
+msgstr " (J/n) "
-#: po/placeholder.h:68 urpm.pm:227
-#, c-format
+#: po/placeholder.h:61 po/placeholder.h:370
+msgid " -a - select all matches on command line.\n"
+msgstr ""
+
+#: po/placeholder.h:63 po/placeholder.h:467 urpmq:137
msgid ""
-"unable to take care of medium \"%s\" as list file is already used by another "
-"medium"
+"some packages have to be removed for being upgraded, this is not supported "
+"yet\n"
msgstr ""
-"Das Medium „%s“ kann nicht verwendet werden, da die Dateiliste bereits von "
-"einem anderen Medium verwendet wird."
+"Einige Pakete müssen entfernt werden, bevor die diese Aktualisierungen \n"
+"durchführen können. Diese Funktionalität wird noch nicht angeboten.\n"
-#: po/placeholder.h:69
+#: po/placeholder.h:64 po/placeholder.h:252 urpm.pm:1118
#, c-format
-msgid "examining synthesis file [%s]"
-msgstr "Lesen der Synthese-Datei [%s]"
+msgid "mounting %s"
+msgstr "Einhängen von „%s“"
+
+#: po/placeholder.h:65 po/placeholder.h:405 po/placeholder.h:443
+msgid " -f - force generation of hdlist files.\n"
+msgstr " -f - Forciere das Erstellen einer HD-Liste.\n"
-#: po/placeholder.h:70 urpm.pm:98
+#: po/placeholder.h:66 po/placeholder.h:255 urpm.pm:98
#, c-format
msgid "wget failed: exited with %d or signal %d\n"
msgstr "wget-Fehler: Rückgabewert ist ‚%d‘ oder ‚%d‘\n"
-#: po/placeholder.h:71
-#, c-format
-msgid "unable to retrieve pathname for removable medium \"%s\""
-msgstr "Ich kann den Pfadnamen für das Wechselmedium „%s“ nicht finden."
+#: po/placeholder.h:67 po/placeholder.h:414 urpmi.removemedia:47
+msgid "nothing to remove (use urpmi.addmedia to add a media)\n"
+msgstr ""
+"Es gibt nichts zu entfernen (verwenden Sie „urpmi.addmedia“, \n"
+"um neue Medien hinzuzufügen)\n"
-#: po/placeholder.h:72 urpm.pm:1887
+#: po/placeholder.h:68 po/placeholder.h:257 urpm.pm:1886
#, c-format
msgid "malformed input: [%s]"
msgstr "Inkorrekte Eingabe: [%s]"
-#: po/placeholder.h:73 urpm.pm:1721 urpm.pm:1747
-#, c-format
-msgid "there are multiple packages with the same rpm filename \"%s\""
-msgstr "Es existieren mehrere Pakete mit dem selben RPM-Dateinamen „%s“"
+#: po/placeholder.h:69 po/placeholder.h:478
+msgid ""
+" -u - remove package if a better version is already installed.\n"
+msgstr ""
+
+#: po/placeholder.h:70 po/placeholder.h:378 urpmi:216
+#, fuzzy, c-format
+msgid "One of the following packages is needed to install %s:"
+msgstr "Eines der folgenden Pakete wird benötigt:"
+
+#: po/placeholder.h:71 po/placeholder.h:376 urpmi:297
+msgid "Press Enter when it's done..."
+msgstr "Bestätigen Sie dies durch drücken der Return Taste ..."
-#: po/placeholder.h:74
+#: po/placeholder.h:72 po/placeholder.h:259
msgid "...copying failed"
msgstr "... das Kopieren schlug fehl!"
-#: po/placeholder.h:75 urpm.pm:212
+#: po/placeholder.h:73 po/placeholder.h:260 urpm.pm:212
#, c-format
msgid "medium \"%s\" tries to use an already used list, medium ignored"
msgstr ""
"Das Medium „%s“ versucht eine bereits verwendete Liste ebenfalls zu "
"verwenden, es wird daher ignoriert."
-#: po/placeholder.h:76
-msgid "retrieving hdlists file..."
-msgstr "Holen der HD-Liste ..."
-
-#: po/placeholder.h:77 urpm.pm:253
-#, c-format
-msgid "unable to access hdlist file of \"%s\", medium ignored"
-msgstr ""
-"Es ist nicht möglich, auf die HD-Liste „%s“ zuzugreifen,\n"
-"das Medium wird daher ignoriert."
-
-#: po/placeholder.h:78 urpm.pm:1208
-msgid "unable to register rpm file"
-msgstr "Die RPM-Datei kann nicht registriert werden."
-
-#: po/placeholder.h:79
-#, c-format
-msgid "\"%s\""
-msgstr "„%s“"
+#: po/placeholder.h:74 po/placeholder.h:448
+msgid " -h - print this help message.\n"
+msgstr " -h - Ausgabe dieser Hilfe.\n"
-#: po/placeholder.h:80 urpm.pm:307
-#, c-format
-msgid "unable to inspect list file for \"%s\", medium ignored"
-msgstr ""
-"Die Dateiliste für „%s“ kann nicht kontrolliert werden, es wird ignoriert."
+#: po/placeholder.h:75 po/placeholder.h:450
+#, fuzzy
+msgid " -g - print groups too with name.\n"
+msgstr " --group - Ausgabe des Attributs „Gruppe“."
-#: po/placeholder.h:81
-#, c-format
-msgid "too many mount points for removable medium \"%s\""
-msgstr "Es existieren zu viele Einhängpunkte für das Wechselmedium „%s“"
+#: po/placeholder.h:76 po/placeholder.h:424
+#, fuzzy
+msgid " -a - select all media.\n"
+msgstr " --all - Alle Parameter ausgeben."
-#: po/placeholder.h:82
+#: po/placeholder.h:77 po/placeholder.h:267
#, c-format
msgid "invalid hdlist description \"%s\" in hdlists file"
msgstr "Fehlerhafte HD-Liste in Datei „%s“"
-#: po/placeholder.h:83 urpm.pm:299
-#, c-format
-msgid "incoherent list file for \"%s\", medium ignored"
-msgstr "Die Dateiliste für „%s“ ist inkonsistent, das Medium wird ignoriert."
+#: po/placeholder.h:78 po/placeholder.h:407
+#, fuzzy
+msgid " -h - try to find and use synthesis or hdlist file.\n"
+msgstr " --group - Ausgabe des Attributs „Gruppe“."
-#: po/placeholder.h:84
-#, c-format
-msgid "copy of [%s] failed"
-msgstr "Kopieren von [%s] schlug fehl."
+#: po/placeholder.h:79 po/placeholder.h:454
+#, fuzzy
+msgid " -r - print version and release too with name.\n"
+msgstr ""
+" wird angenommen, wenn kein Parameter angegeben wird)"
-#: po/placeholder.h:85 urpm.pm:1420
+#: po/placeholder.h:80 po/placeholder.h:455
+msgid " -f - print version, release and arch with name.\n"
+msgstr ""
+
+#: po/placeholder.h:81 po/placeholder.h:338
+msgid " --auto - automatically select a good package in choices.\n"
+msgstr ""
+
+#: po/placeholder.h:82 po/placeholder.h:270 urpm.pm:1420
#, c-format
msgid "unable to parse correctly [%s]"
msgstr "Die Struktur von [%s] ist nicht korrekt."
-#: po/placeholder.h:86 urpm.pm:1421
+#: po/placeholder.h:83 po/placeholder.h:446 urpmi.update:57
+msgid "nothing to update (use urpmi.addmedia to add a media)\n"
+msgstr ""
+"Es gibt nichts zu aktualisieren (verwenden Sie „urpmi.addmedia“, \n"
+"um neue Medien hinzuzufügen)\n"
+
+#: po/placeholder.h:84 po/placeholder.h:271 urpm.pm:1421
#, c-format
msgid "read synthesis file [%s]"
msgstr "Lesen der Synthese-Datei [%s]"
-#: po/placeholder.h:87 urpm.pm:1412 urpm.pm:1419
-#, c-format
-msgid "unable to analyse synthesis data of %s"
-msgstr "Ich kann die Struktur der Synthese-Liste von „%s“ nicht analysieren."
-
-#: po/placeholder.h:88 urpm.pm:93
+#: po/placeholder.h:85 po/placeholder.h:273 urpm.pm:93
msgid "no webfetch (curl or wget currently) found\n"
-msgstr "Es ist kein WebFetch-Paket (momentan unterstützt werden „curl“ und „wget“) installiert.\n"
+msgstr ""
+"Es ist kein WebFetch-Paket (momentan unterstützt werden „curl“ und „wget“) "
+"installiert.\n"
-#: po/placeholder.h:89
-#, c-format
-msgid "retrieving source hdlist (or synthesis) of \"%s\"..."
+#: po/placeholder.h:86 po/placeholder.h:464
+msgid ""
+" -c - choose complete method for resolving requires closure.\n"
msgstr ""
-#: po/placeholder.h:90
-msgid "...copying done"
-msgstr "... das Kopieren ist beendet!"
+#: po/placeholder.h:88 po/placeholder.h:393 urpmi.addmedia:92
+#, c-format
+msgid "unable to create medium \"%s\"\n"
+msgstr "Ich kann das Medium „%s“ nicht anlegen.\n"
-#: po/placeholder.h:91
+#: po/placeholder.h:90 po/placeholder.h:276
#, c-format
msgid "copying source hdlist (or synthesis) of \"%s\"..."
msgstr ""
-#: po/placeholder.h:92
-msgid "copying hdlists file..."
-msgstr "Lesen der HD-Liste ..."
+#: po/placeholder.h:91 po/placeholder.h:468 urpmq:87
+#, fuzzy, c-format
+msgid "urpmq: unknown option \"-%s\", check usage with --help\n"
+msgstr ""
+"urpmq: unbekannte Option „-$1“. Weitere Infos erhalten Sie \n"
+"mittels „urpmq --help“\n"
-#: po/placeholder.h:93 urpm.pm:188 urpm.pm:200
-#, c-format
-msgid "syntax error in config file at line %s"
-msgstr "Syntax-Fehler in Konfigurationsdatei auf Linie %s"
+#: po/placeholder.h:92 po/placeholder.h:324 urpme:39
+#, fuzzy
+msgid "usage: urpme [-a] [--auto] <packages...>\n"
+msgstr "Verwendung: urpmi.removemedia [-a] <Name> ..."
-#: po/placeholder.h:94
+#: po/placeholder.h:93 po/placeholder.h:279
#, c-format
msgid "building hdlist [%s]"
msgstr "Erstellen der HD-Liste [%s]."
-#: po/placeholder.h:95 urpm.pm:1822
-#, c-format
-msgid "unable to read rpm file [%s] from medium \"%s\""
-msgstr "Ich kann das RPM-Paket „%s“ von Medium „%s“ nicht lesen."
+#: po/placeholder.h:94 po/placeholder.h:347 po/placeholder.h:474
+msgid " --media - use only the media listed by comma.\n"
+msgstr ""
-#: po/placeholder.h:96
+#: po/placeholder.h:95 po/placeholder.h:281
#, c-format
msgid "added medium %s"
msgstr ""
-#: po/placeholder.h:97
+#: po/placeholder.h:96 po/placeholder.h:280 urpm.pm:1821
+#, c-format
+msgid "unable to read rpm file [%s] from medium \"%s\""
+msgstr "Ich kann das RPM-Paket „%s“ von Medium „%s“ nicht lesen."
+
+#: po/placeholder.h:97 po/placeholder.h:282
msgid "retrieve of source hdlist (or synthesis) failed"
msgstr ""
-#: po/placeholder.h:98 urpm.pm:1212
-msgid "error registering local packages"
-msgstr "Fehler bei der Registrierung lokaler Pakete"
-
-#: po/placeholder.h:99
-#, c-format
-msgid "taking removable device as \"%s\""
-msgstr "Verwende Wechselmedium als „%s“"
-
-#: po/placeholder.h:100 urpm.pm:1899
+#: po/placeholder.h:98 po/placeholder.h:285 urpm.pm:1898
#, fuzzy, c-format
msgid "...retrieving failed: %s"
msgstr "Holen von [%s]"
-#: po/placeholder.h:101 urpm.pm:1838
+#: po/placeholder.h:99 po/placeholder.h:286 urpm.pm:1837
#, c-format
msgid "incoherent medium \"%s\" marked removable but not really"
msgstr "„%s“ wurde als Wechselmedium angegeben, ist es aber nicht."
-#: po/placeholder.h:102
-#, fuzzy, c-format
-msgid "copying description file of \"%s\"..."
-msgstr "Es wurde nichts in die Dateiliste von „%s“ geschrieben."
-
-#: po/placeholder.h:103
-#, c-format
-msgid "unable to build hdlist: %s"
-msgstr "Ich kann die HD-Liste „%s“ nicht erzeugen."
-
-#: po/placeholder.h:104 urpm.pm:1812 urpm.pm:1815 urpm.pm:1834
-#, c-format
-msgid "medium \"%s\" is not selected"
-msgstr "Das Medium „%s“ wurde nicht ausgewählt."
-
-#: po/placeholder.h:105 urpm.pm:1203
+#: po/placeholder.h:100 po/placeholder.h:290 urpm.pm:1203
#, c-format
msgid "invalid rpm file name [%s]"
msgstr "Ungültiger RPM Name [%s]."
-#: po/placeholder.h:106 urpm.pm:1398
+#: po/placeholder.h:101 po/placeholder.h:291 urpm.pm:1398
#, c-format
msgid "unknown data associated with %s"
msgstr ""
-#: po/placeholder.h:107 urpm.pm:269
+#: po/placeholder.h:103 po/placeholder.h:357 urpmi:225
#, c-format
-msgid "trying to bypass existing medium \"%s\", avoiding"
-msgstr ""
+msgid "What is your choice? (1-%d) "
+msgstr "Ihre Wahl? (1-%d) "
-#: po/placeholder.h:108 urpm.pm:255
+#: po/placeholder.h:104 po/placeholder.h:293 urpm.pm:255
#, c-format
msgid "unable to access list file of \"%s\", medium ignored"
msgstr ""
-#: po/placeholder.h:109 urpm.pm:2113
+#: po/placeholder.h:105 po/placeholder.h:358 po/placeholder.h:406
+#: po/placeholder.h:444
+msgid " --wget - use wget to retrieve distant files.\n"
+msgstr ""
+
+#: po/placeholder.h:107 po/placeholder.h:294 urpm.pm:2113
#, c-format
msgid "avoid selecting %s as not enough files will be updated"
msgstr ""
-#: po/placeholder.h:110 urpm.pm:1204
+#: po/placeholder.h:108 po/placeholder.h:295 urpm.pm:1204
#, c-format
msgid "unable to access rpm file [%s]"
msgstr "Ich habe keinen Zugriff auf die RPM-Datei [%s]."
-#: po/placeholder.h:111
-#, fuzzy, c-format
-msgid ""
-"removing %s to upgrade to %s ...\n"
-" since it will not upgrade correctly!"
-msgstr ""
-"Entfernen von %s für die Aktualisierung ...\n"
-"auf %s da die Aktualisierung sont nicht korrekt funktioniert!"
-
-#: po/placeholder.h:115 urpm.pm:1190
-#, c-format
-msgid "relocated %s entries in depslist"
-msgstr ""
+#: po/placeholder.h:110 po/placeholder.h:368 urpmi:228
+msgid "Sorry, bad choice, try again\n"
+msgstr "Eine schlechte Wahl, versuchen Sie es erneut\n"
-#: po/placeholder.h:116 urpm.pm:1849
+#: po/placeholder.h:111 po/placeholder.h:301 urpm.pm:1848
#, c-format
msgid "unable to access medium \"%s\""
msgstr "Ich kann auf das Medium „%s“ nicht zugreifen."
-#: po/placeholder.h:117 urpm.pm:1756
+#: po/placeholder.h:112 po/placeholder.h:300 urpm.pm:1190
#, c-format
-msgid "unable to parse correctly [%s] on value \"%s\""
+msgid "relocated %s entries in depslist"
msgstr ""
-#: po/placeholder.h:118
+#: po/placeholder.h:113 po/placeholder.h:371 po/placeholder.h:399
+#: po/placeholder.h:437
+msgid " --curl - use curl to retrieve distant files.\n"
+msgstr ""
+
+#: po/placeholder.h:114 po/placeholder.h:303
#, c-format
msgid "trying to select inexistent medium \"%s\""
msgstr "Versuch, das nicht existierende Medium „%s“ auszuwählen."
-#: po/placeholder.h:119 urpm.pm:1305
+#: po/placeholder.h:115 po/placeholder.h:302 urpm.pm:1757
#, c-format
-msgid "The following packages contain %s: %s"
-msgstr "Die folgenden Pakete enthalten „%s“: %s"
+msgid "unable to parse correctly [%s] on value \"%s\""
+msgstr ""
-#: po/placeholder.h:120
+#: po/placeholder.h:116 po/placeholder.h:305
#, fuzzy, c-format
msgid "no rpm files found from [%s]"
msgstr "Ungültiger RPM Name „%s“"
-#: po/placeholder.h:121
-#, fuzzy, c-format
-msgid "examining hdlist file [%s]"
-msgstr "Lesen der HD-Liste [%s]"
+#: po/placeholder.h:117 po/placeholder.h:312 urpm.pm:101
+msgid "curl is missing\n"
+msgstr ""
-#: po/placeholder.h:122 urpm.pm:1191
-msgid "no entries relocated in depslist"
+#: po/placeholder.h:118 po/placeholder.h:315 urpm.pm:244
+#, c-format
+msgid "unable to determine medium of this hdlist file [%s]"
msgstr ""
-#: po/placeholder.h:123 urpm.pm:1897
+#: po/placeholder.h:119 po/placeholder.h:328
#, fuzzy
-msgid "...retrieving done"
-msgstr "Holen von [%s]"
+msgid " --help - print this help message.\n"
+msgstr " --all - Alle Parameter ausgeben."
-#: po/placeholder.h:124 urpm.pm:2006
+#: po/placeholder.h:121 po/placeholder.h:329 urpmi:383
+msgid "everything already installed"
+msgstr "Alles bereits installiert"
+
+#: po/placeholder.h:122 po/placeholder.h:215 urpm.pm:1891
+msgid "retrieving rpms files..."
+msgstr "Holen der RPMs ..."
+
+#: po/placeholder.h:123 po/placeholder.h:217
#, c-format
-msgid "selecting %s using obsoletes"
+msgid "using different removable device [%s] for \"%s\""
+msgstr "Verwendung verschiedener Wechselmedien [%s] für „%s“"
+
+#: po/placeholder.h:124 po/placeholder.h:332 urpmi:217
+msgid "One of the following packages is needed:"
+msgstr "Eines der folgenden Pakete wird benötigt:"
+
+#: po/placeholder.h:125 po/placeholder.h:219
+msgid ""
+"unable to access first installation medium (no Mandrake/base/hdlists file "
+"found)"
msgstr ""
+"Kein Zugriff auf das erste Installationsmedium (die Datei „Mandrake/base/"
+"hdlists“ wurde nicht gefunden)"
-#: po/placeholder.h:125 urpm.pm:151
+#: po/placeholder.h:126 po/placeholder.h:451 urpmq:90
#, c-format
-msgid "curl failed: exited with %d or signal %d\n"
+msgid "urpmq: cannot read rpm file \"%s\"\n"
+msgstr "urpmq: Ich kann das RPM „%s“ nicht lesen.\n"
+
+#: po/placeholder.h:129 po/placeholder.h:323 urpme:87
+msgid "Nothing to remove.\n"
msgstr ""
-#: po/placeholder.h:126 urpm.pm:2122
+#: po/placeholder.h:131 po/placeholder.h:340 urpmi:329 urpmi:336 urpmi:349
+#: urpmi:360 urpmi:373
+msgid "Installation failed"
+msgstr "Die Installation schlug Fehl"
+
+#: po/placeholder.h:132 po/placeholder.h:224
+msgid "unable to access first installation medium"
+msgstr "Es kann nicht auf das erste Installationsmedium zugegriffen werden."
+
+#: po/placeholder.h:133 po/placeholder.h:345 po/placeholder.h:469
+#, fuzzy
+msgid " -P - do not search in provides to find package.\n"
+msgstr " --group - Ausgabe des Attributs „Gruppe“."
+
+#: po/placeholder.h:135 po/placeholder.h:226 urpm.pm:1129
#, c-format
-msgid "selecting %s by selection on files"
+msgid "unmounting %s"
+msgstr "Aushängen von „%s“"
+
+#: po/placeholder.h:136 po/placeholder.h:227
+#, c-format
+msgid "removing %d obsolete headers in cache"
+msgstr "Entferne %d veraltete Informationen aus dem Cache."
+
+#: po/placeholder.h:137 po/placeholder.h:228
+#, c-format
+msgid "no hdlist file found for medium \"%s\""
+msgstr "Keine HD-Liste für das Medium „%s“ gefunden."
+
+#: po/placeholder.h:139 po/placeholder.h:230 urpm.pm:1413
+msgid "<non printable chars>"
+msgstr "<nichtdruckbare Zeichen>"
+
+#: po/placeholder.h:140 po/placeholder.h:352 po/placeholder.h:476
+msgid " -v - verbose mode.\n"
msgstr ""
-#: po/placeholder.h:127 urpm.pm:101
-msgid "curl is missing\n"
+#: po/placeholder.h:141 po/placeholder.h:233
+#, c-format
+msgid "removing medium \"%s\""
+msgstr "Entfernen des Mediums „%s“."
+
+#: po/placeholder.h:142 po/placeholder.h:236
+#, c-format
+msgid "unable to build synthesis file for medium \"%s\""
+msgstr "Ich kann die Synthese-Datei für das Medium „%s“ nicht aktualisieren."
+
+#: po/placeholder.h:143 po/placeholder.h:238
+#, c-format
+msgid "trying to select multiple medium: %s"
+msgstr "Versuch, das Mehrfachmedium „%s“ auszuwählen."
+
+#: po/placeholder.h:144 po/placeholder.h:447
+#, fuzzy
+msgid " -a - select all non-removable media.\n"
+msgstr " --all - Alle Parameter ausgeben."
+
+#: po/placeholder.h:145 po/placeholder.h:354
+msgid " names or rpm files given on command line are installed.\n"
msgstr ""
-#: po/placeholder.h:128
-#, fuzzy, c-format
-msgid "copying source list of \"%s\"..."
-msgstr "Es wurde nichts in die Dateiliste von „%s“ geschrieben."
+#: po/placeholder.h:147 po/placeholder.h:239 urpm.pm:2125
+#, c-format
+msgid "avoid selecting %s as its locales language is not already selected"
+msgstr ""
+"Vermeide die Auswahl von „%s“, das die entsprechenden Spracheinstellungen "
+"nicht installiert sind."
-#: po/placeholder.h:129 urpm.pm:96
-msgid "wget is missing\n"
+#: po/placeholder.h:148 po/placeholder.h:356
+msgid " --complete - use parsehdlist server to complete selection.\n"
msgstr ""
-#: po/placeholder.h:130 urpm.pm:244
+#: po/placeholder.h:149 po/placeholder.h:246
#, c-format
-msgid "unable to determine medium of this hdlist file [%s]"
+msgid "write config file [%s]"
+msgstr "Schreiben der Konfigurationsdatei [%s]."
+
+#: po/placeholder.h:150 po/placeholder.h:249
+msgid "unable to build hdlist synthesis, using parsehdlist method"
msgstr ""
+"Ich kann keine Synthese-Dateien erstellen - verwende die Parsedhdlist-"
+"Variante"
-#: po/placeholder.h:132
-#, fuzzy
-msgid " --help - print this help message.\n"
-msgstr " --all - Alle Parameter ausgeben."
+#: po/placeholder.h:151 po/placeholder.h:413
+msgid ""
+" --distrib - automatically create all media from an installation "
+"medium.\n"
+msgstr ""
-#: po/placeholder.h:133 urpmi:383
-msgid "everything already installed"
-msgstr "Alles bereits installiert"
+#: po/placeholder.h:155 po/placeholder.h:253 urpm.pm:227
+#, c-format
+msgid ""
+"unable to take care of medium \"%s\" as list file is already used by another "
+"medium"
+msgstr ""
+"Das Medium „%s“ kann nicht verwendet werden, da die Dateiliste bereits von "
+"einem anderen Medium verwendet wird."
+
+#: po/placeholder.h:156 po/placeholder.h:254
+#, c-format
+msgid "examining synthesis file [%s]"
+msgstr "Lesen der Synthese-Datei [%s]"
+
+#: po/placeholder.h:158 po/placeholder.h:256
+#, c-format
+msgid "unable to retrieve pathname for removable medium \"%s\""
+msgstr "Ich kann den Pfadnamen für das Wechselmedium „%s“ nicht finden."
-#: po/placeholder.h:134 urpmi:113
+#: po/placeholder.h:160 po/placeholder.h:258 urpm.pm:1722 urpm.pm:1748
+#, c-format
+msgid "there are multiple packages with the same rpm filename \"%s\""
+msgstr "Es existieren mehrere Pakete mit dem selben RPM-Dateinamen „%s“"
+
+#: po/placeholder.h:161 po/placeholder.h:316 urpme:93
+#, fuzzy, c-format
+msgid ""
+"To satisfy dependencies, the following packages are going to be removed (%d "
+"MB)"
+msgstr ""
+"Um die Abhängigkeiten zu erfüllen, werden die folgenden Pakete installiert (%"
+"d MB)"
+
+#: po/placeholder.h:163 po/placeholder.h:261
+msgid "retrieving hdlists file..."
+msgstr "Holen der HD-Liste ..."
+
+#: po/placeholder.h:164 po/placeholder.h:330 urpmi:113
#, fuzzy, c-format
msgid "urpmi: unknown option \"-%s\", check usage with --help\n"
msgstr ""
"urpmq: unbekannte Option „-$1“. Weitere Infos erhalten Sie \n"
"mittels „urpmq --help“\n"
-#: po/placeholder.h:135 po/placeholder.h:253
-#, fuzzy
-msgid " -y - impose fuzzy search.\n"
-msgstr " --all - Alle Parameter ausgeben."
+#: po/placeholder.h:165 po/placeholder.h:262 urpm.pm:253
+#, c-format
+msgid "unable to access hdlist file of \"%s\", medium ignored"
+msgstr ""
+"Es ist nicht möglich, auf die HD-Liste „%s“ zuzugreifen,\n"
+"das Medium wird daher ignoriert."
-#: po/placeholder.h:136 urpmi:217
-msgid "One of the following packages is needed:"
-msgstr "Eines der folgenden Pakete wird benötigt:"
+#: po/placeholder.h:166 po/placeholder.h:263 urpm.pm:1208
+msgid "unable to register rpm file"
+msgstr "Die RPM-Datei kann nicht registriert werden."
-#: po/placeholder.h:137 po/placeholder.h:257
-msgid " --update - use only update media.\n"
+#: po/placeholder.h:167 po/placeholder.h:264
+#, c-format
+msgid "\"%s\""
+msgstr "„%s“"
+
+#: po/placeholder.h:168 po/placeholder.h:265 urpm.pm:307
+#, c-format
+msgid "unable to inspect list file for \"%s\", medium ignored"
msgstr ""
+"Die Dateiliste für „%s“ kann nicht kontrolliert werden, es wird ignoriert."
-#: po/placeholder.h:138 urpmi:321
-msgid ""
-"Installation failed, some files are missing.\n"
-"You may want to update your urpmi database"
+#: po/placeholder.h:169 po/placeholder.h:266
+#, c-format
+msgid "too many mount points for removable medium \"%s\""
+msgstr "Es existieren zu viele Einhängpunkte für das Wechselmedium „%s“"
+
+#: po/placeholder.h:170 po/placeholder.h:268 urpm.pm:299
+#, c-format
+msgid "incoherent list file for \"%s\", medium ignored"
+msgstr "Die Dateiliste für „%s“ ist inkonsistent, das Medium wird ignoriert."
+
+#: po/placeholder.h:171 po/placeholder.h:333 po/placeholder.h:453
+msgid " --update - use only update media.\n"
msgstr ""
-#: po/placeholder.h:142
-msgid " --auto - automatically select a good package in choices.\n"
+#: po/placeholder.h:172 po/placeholder.h:269
+#, c-format
+msgid "copy of [%s] failed"
+msgstr "Kopieren von [%s] schlug fehl."
+
+#: po/placeholder.h:173 po/placeholder.h:462
+#, fuzzy
+msgid " -d - extend query to package dependencies.\n"
msgstr ""
+" wird angenommen, wenn kein Parameter angegeben wird)"
-#: po/placeholder.h:144 urpmi:329 urpmi:336 urpmi:349 urpmi:360 urpmi:373
-msgid "Installation failed"
-msgstr "Die Installation schlug Fehl"
+#: po/placeholder.h:174 po/placeholder.h:272 urpm.pm:1412 urpm.pm:1419
+#, c-format
+msgid "unable to analyse synthesis data of %s"
+msgstr "Ich kann die Struktur der Synthese-Liste von „%s“ nicht analysieren."
-#: po/placeholder.h:145 po/placeholder.h:270
-msgid ""
-" --auto-select - automatically select packages for upgrading the system.\n"
+#: po/placeholder.h:175 po/placeholder.h:274
+#, c-format
+msgid "retrieving source hdlist (or synthesis) of \"%s\"..."
msgstr ""
-#: po/placeholder.h:147
+#: po/placeholder.h:177 po/placeholder.h:343
#, fuzzy
msgid " --X - use X interface.\n"
msgstr " --all - Alle Parameter ausgeben."
-#: po/placeholder.h:148 urpmi:267
+#: po/placeholder.h:178 po/placeholder.h:275
+msgid "...copying done"
+msgstr "... das Kopieren ist beendet!"
+
+#: po/placeholder.h:179 po/placeholder.h:344 urpmi:267
#, c-format
msgid ""
"To satisfy dependencies, the following packages are going to be installed (%"
@@ -717,119 +824,190 @@ msgstr ""
"Um die Abhängigkeiten zu erfüllen, werden die folgenden Pakete installiert (%"
"d MB)"
-#: po/placeholder.h:149 po/placeholder.h:273
-#, fuzzy
-msgid " -P - do not search in provides to find package.\n"
-msgstr " --group - Ausgabe des Attributs „Gruppe“."
+#: po/placeholder.h:180 po/placeholder.h:277
+msgid "copying hdlists file..."
+msgstr "Lesen der HD-Liste ..."
-#: po/placeholder.h:150 urpmi:342 urpmi:366
+#: po/placeholder.h:181 po/placeholder.h:278 urpm.pm:188 urpm.pm:200
+#, c-format
+msgid "syntax error in config file at line %s"
+msgstr "Syntax-Fehler in Konfigurationsdatei auf Linie %s"
+
+#: po/placeholder.h:182 po/placeholder.h:346 urpmi:342 urpmi:366
msgid "Try installation without checking dependencies? (y/N) "
msgstr "Soll ich eine Installation ohne Abhängigkeitstest versuchen? (j/N) "
-#: po/placeholder.h:151 po/placeholder.h:278
-msgid " --media - use only the media listed by comma.\n"
-msgstr ""
-
-#: po/placeholder.h:152
-msgid ""
-" --best-output - choose best interface according to the environment:\n"
-" X or text mode.\n"
-msgstr ""
+#: po/placeholder.h:183 po/placeholder.h:283 urpm.pm:1212
+msgid "error registering local packages"
+msgstr "Fehler bei der Registrierung lokaler Pakete"
-#: po/placeholder.h:156 po/placeholder.h:280
-msgid " -v - verbose mode.\n"
-msgstr ""
+#: po/placeholder.h:184 po/placeholder.h:284
+#, c-format
+msgid "taking removable device as \"%s\""
+msgstr "Verwende Wechselmedium als „%s“"
-#: po/placeholder.h:157 po/placeholder.h:279
+#: po/placeholder.h:185 po/placeholder.h:353 po/placeholder.h:475
msgid " -p - allow search in provides to find package.\n"
msgstr ""
-#: po/placeholder.h:158
-msgid " names or rpm files given on command line are installed.\n"
+#: po/placeholder.h:187 po/placeholder.h:287
+#, fuzzy, c-format
+msgid "copying description file of \"%s\"..."
+msgstr "Es wurde nichts in die Dateiliste von „%s“ geschrieben."
+
+#: po/placeholder.h:188 po/placeholder.h:288
+#, c-format
+msgid "unable to build hdlist: %s"
+msgstr "Ich kann die HD-Liste „%s“ nicht erzeugen."
+
+#: po/placeholder.h:189 po/placeholder.h:289 urpm.pm:1811 urpm.pm:1814
+#: urpm.pm:1833
+#, c-format
+msgid "medium \"%s\" is not selected"
+msgstr "Das Medium „%s“ wurde nicht ausgewählt."
+
+#: po/placeholder.h:190 po/placeholder.h:292 urpm.pm:269
+#, c-format
+msgid "trying to bypass existing medium \"%s\", avoiding"
msgstr ""
-#: po/placeholder.h:159
+#: po/placeholder.h:191 po/placeholder.h:355
#, fuzzy
msgid " -q - quiet mode.\n"
msgstr " --all - Alle Parameter ausgeben."
-#: po/placeholder.h:160
-msgid " --complete - use parsehdlist server to complete selection.\n"
+#: po/placeholder.h:194 po/placeholder.h:367 po/placeholder.h:465
+msgid ""
+" --force - force invocation even if some packages do not exist.\n"
msgstr ""
-#: po/placeholder.h:161 urpmi:225
+#: po/placeholder.h:196 po/placeholder.h:320 urpme:62
#, c-format
-msgid "What is your choice? (1-%d) "
-msgstr "Ihre Wahl? (1-%d) "
+msgid "Using \"%s\" as a substring, I found"
+msgstr ""
-#: po/placeholder.h:162 po/placeholder.h:210 po/placeholder.h:233
-msgid " --wget - use wget to retrieve distant files.\n"
+#: po/placeholder.h:197 po/placeholder.h:372 urpmi:316
+#, c-format
+msgid "installing %s\n"
+msgstr "Installiere %s\n"
+
+#: po/placeholder.h:198 po/placeholder.h:325 urpme:30
+msgid "Remove them all?"
msgstr ""
-#: po/placeholder.h:163
+#: po/placeholder.h:199 po/placeholder.h:373 urpmi:296
+#, c-format
+msgid "Please insert the medium named \"%s\" on device [%s]"
+msgstr "Bitte legen Sie das Medium mit Namen „%s“ in Gerät „%s“."
+
+#: po/placeholder.h:200 po/placeholder.h:304 urpm.pm:1305
+#, c-format
+msgid "The following packages contain %s: %s"
+msgstr "Die folgenden Pakete enthalten „%s“: %s"
+
+#: po/placeholder.h:201 po/placeholder.h:306
#, fuzzy, c-format
-msgid ""
-"urpmi version %s\n"
-"Copyright (C) 1999, 2000, 2001 MandrakeSoft.\n"
-"This is free software and may be redistributed under the terms of the GNU "
-"GPL.\n"
-"usage:\n"
+msgid "examining hdlist file [%s]"
+msgstr "Lesen der HD-Liste [%s]"
+
+#: po/placeholder.h:202 po/placeholder.h:307 urpm.pm:1191
+msgid "no entries relocated in depslist"
msgstr ""
-"Dies ist freie Software und kann unter den Bedingungen der GNU GPL weiter "
-"Vertrieben werden."
-#: po/placeholder.h:169 urpmi:350 urpmi:374
-msgid "Try installation even more strongly (--force)? (y/N) "
-msgstr "Soll ich eine Installation mit Gewalt (--force) versuchen? (j/N) "
+#: po/placeholder.h:203 po/placeholder.h:412
+msgid " --update - create an update medium.\n"
+msgstr " --update - erstellen eines Aktualisierungsmediums.\n"
-#: po/placeholder.h:171 po/placeholder.h:269
+#: po/placeholder.h:205 po/placeholder.h:445
+#, fuzzy
msgid ""
-" --force - force invocation even if some packages do not exist.\n"
-msgstr ""
+" -d - force complete computation of depslist.ordered file.\n"
+msgstr " --group - Ausgabe des Attributs „Gruppe“."
-#: po/placeholder.h:172 urpmi:228
-msgid "Sorry, bad choice, try again\n"
-msgstr "Eine schlechte Wahl, versuchen Sie es erneut\n"
+#: po/placeholder.h:206 po/placeholder.h:375 po/placeholder.h:477 urpmi:286
+#: urpmq:151
+msgid "unable to get source packages, aborting"
+msgstr "Ich kann die Quellpakete nicht finden, Abbruch."
-#: po/placeholder.h:174
-msgid " -a - select all matches on command line.\n"
-msgstr ""
+#: po/placeholder.h:207 po/placeholder.h:308 urpm.pm:1896
+#, fuzzy
+msgid "...retrieving done"
+msgstr "Holen von [%s]"
-#: po/placeholder.h:175 po/placeholder.h:203 po/placeholder.h:226
-msgid " --curl - use curl to retrieve distant files.\n"
+#: po/placeholder.h:208 po/placeholder.h:309 urpm.pm:2006
+#, c-format
+msgid "selecting %s using obsoletes"
msgstr ""
-#: po/placeholder.h:176 urpmi:316
+#: po/placeholder.h:209 po/placeholder.h:310 urpm.pm:151
#, c-format
-msgid "installing %s\n"
-msgstr "Installiere %s\n"
+msgid "curl failed: exited with %d or signal %d\n"
+msgstr ""
-#: po/placeholder.h:177 urpmi:296
+#: po/placeholder.h:210 po/placeholder.h:311 urpm.pm:2122
#, c-format
-msgid "Please insert the medium named \"%s\" on device [%s]"
-msgstr "Bitte legen Sie das Medium mit Namen „%s“ in Gerät „%s“."
-
-#: po/placeholder.h:179 po/placeholder.h:281 urpmi:286 urpmq:151
-msgid "unable to get source packages, aborting"
-msgstr "Ich kann die Quellpakete nicht finden, Abbruch."
+msgid "selecting %s by selection on files"
+msgstr ""
-#: po/placeholder.h:180 urpmi:297
-msgid "Press Enter when it's done..."
-msgstr "Bestätigen Sie dies durch drücken der Return Taste ..."
+#: po/placeholder.h:211 po/placeholder.h:313
+#, fuzzy, c-format
+msgid "copying source list of \"%s\"..."
+msgstr "Es wurde nichts in die Dateiliste von „%s“ geschrieben."
-#: po/placeholder.h:181 urpmi:131
+#: po/placeholder.h:212 po/placeholder.h:377 urpmi:131
#, fuzzy
msgid "Only superuser is allowed to install packages"
msgstr ""
"Nur der Systemadministrator mit dem privilegierten \n"
"Benutzerkennzeichen darf Pakete installieren."
-#: po/placeholder.h:182 urpmi:216
+#: po/placeholder.h:213 po/placeholder.h:314 urpm.pm:96
+msgid "wget is missing\n"
+msgstr ""
+
+#: po/placeholder.h:240
+#, c-format
+msgid ""
+"removing %s to upgrade to %s ...\n"
+" since it will not be updated otherwise"
+msgstr ""
+"Entfernen von %s für die Aktualisierung auf %s ...\n"
+"Andernfalls funktioniert die Aktualisierung nicht korrekt."
+
+#: po/placeholder.h:296
#, fuzzy, c-format
-msgid "One of the following packages is needed to install %s:"
-msgstr "Eines der folgenden Pakete wird benötigt:"
+msgid ""
+"removing %s to upgrade to %s ...\n"
+" since it will not upgrade correctly!"
+msgstr ""
+"Entfernen von %s für die Aktualisierung ...\n"
+"auf %s da die Aktualisierung sont nicht korrekt funktioniert!"
+
+#: po/placeholder.h:334 urpmi:321
+msgid ""
+"Installation failed, some files are missing.\n"
+"You may want to update your urpmi database"
+msgstr ""
+
+#: po/placeholder.h:348
+msgid ""
+" --best-output - choose best interface according to the environment:\n"
+" X or text mode.\n"
+msgstr ""
+
+#: po/placeholder.h:359
+#, fuzzy, c-format
+msgid ""
+"urpmi version %s\n"
+"Copyright (C) 1999, 2000, 2001 MandrakeSoft.\n"
+"This is free software and may be redistributed under the terms of the GNU "
+"GPL.\n"
+"usage:\n"
+msgstr ""
+"Dies ist freie Software und kann unter den Bedingungen der GNU GPL weiter "
+"Vertrieben werden."
-#: po/placeholder.h:183 urpmi.addmedia:70
+#: po/placeholder.h:379 urpmi.addmedia:70
#, fuzzy, c-format
msgid ""
"%s\n"
@@ -838,7 +1016,7 @@ msgstr ""
"%s\n"
"<relativer Pfad zur HD-Liste> fehlt.\n"
-#: po/placeholder.h:187
+#: po/placeholder.h:383
#, fuzzy
msgid ""
"usage: urpmi.addmedia [options] <name> <url> [with <relative_path>]\n"
@@ -860,17 +1038,7 @@ msgstr ""
" http://<Rechner>/<Pfad> with <relativer Pfad zur HD-Liste>\n"
" removable_<Gerät>://<Pfad>\n"
-#: po/placeholder.h:197 urpmi.addmedia:92
-#, c-format
-msgid "unable to create medium \"%s\"\n"
-msgstr "Ich kann das Medium „%s“ nicht anlegen.\n"
-
-#: po/placeholder.h:198 urpmi.addmedia:76 urpmi.addmedia:93
-#, c-format
-msgid "unable to update medium \"%s\"\n"
-msgstr "Ich kann das Medium „%s“ nicht aktualisieren.\n"
-
-#: po/placeholder.h:199 po/placeholder.h:222 po/placeholder.h:238
+#: po/placeholder.h:395 po/placeholder.h:415 po/placeholder.h:433
#: urpmi.addmedia:57
#, c-format
msgid ""
@@ -880,11 +1048,7 @@ msgstr ""
"\n"
"Unbekannte Optionen „%s“\n"
-#: po/placeholder.h:204 po/placeholder.h:231 po/placeholder.h:246
-msgid " -c - clean headers cache directory.\n"
-msgstr " -c - Löschen des Header-Verzeichnisses.\n"
-
-#: po/placeholder.h:205 urpmi.addmedia:82
+#: po/placeholder.h:401 urpmi.addmedia:82
#, c-format
msgid ""
"%s\n"
@@ -893,16 +1057,7 @@ msgstr ""
"%s\n"
"<relativer Pfad zur HD-Liste> fehlt.\n"
-#: po/placeholder.h:209 po/placeholder.h:232
-msgid " -f - force generation of hdlist files.\n"
-msgstr " -f - Forciere das Erstellen einer HD-Liste.\n"
-
-#: po/placeholder.h:211
-#, fuzzy
-msgid " -h - try to find and use synthesis or hdlist file.\n"
-msgstr " --group - Ausgabe des Attributs „Gruppe“."
-
-#: po/placeholder.h:212 urpmi.addmedia:84
+#: po/placeholder.h:408 urpmi.addmedia:84
#, c-format
msgid ""
"%s\n"
@@ -911,57 +1066,7 @@ msgstr ""
"%s\n"
"„with“ fehlt für FTP-Medien.\n"
-#: po/placeholder.h:216
-msgid " --update - create an update medium.\n"
-msgstr " --update - erstellen eines Aktualisierungsmediums.\n"
-
-#: po/placeholder.h:217
-msgid ""
-" --distrib - automatically create all media from an installation "
-"medium.\n"
-msgstr ""
-
-#: po/placeholder.h:218
-msgid ""
-"usage: urpmi.update [options] <name> ...\n"
-"where <name> is a medium name to update.\n"
-msgstr ""
-"Verwendung: urpmi.update [Optionen] <Name> ...\n"
-"Wobei <Name> das zu aktualisierende Medium ist.\n"
-
-#: po/placeholder.h:227 urpmi.update:59
-#, c-format
-msgid ""
-"the entry to update is missing\n"
-"(one of %s)\n"
-msgstr ""
-"Was soll aktualisiert werden?\n"
-"(eins aus %s)\n"
-
-#: po/placeholder.h:234
-#, fuzzy
-msgid ""
-" -d - force complete computation of depslist.ordered file.\n"
-msgstr " --group - Ausgabe des Attributs „Gruppe“."
-
-#: po/placeholder.h:235 urpmi.update:57
-msgid "nothing to update (use urpmi.addmedia to add a media)\n"
-msgstr ""
-"Es gibt nichts zu aktualisieren (verwenden Sie „urpmi.addmedia“, \n"
-"um neue Medien hinzuzufügen)\n"
-
-#: po/placeholder.h:236
-#, fuzzy
-msgid " -a - select all non-removable media.\n"
-msgstr " --all - Alle Parameter ausgeben."
-
-#: po/placeholder.h:237 urpmi.removemedia:47
-msgid "nothing to remove (use urpmi.addmedia to add a media)\n"
-msgstr ""
-"Es gibt nichts zu entfernen (verwenden Sie „urpmi.addmedia“, \n"
-"um neue Medien hinzuzufügen)\n"
-
-#: po/placeholder.h:242 urpmi.removemedia:49
+#: po/placeholder.h:419 urpmi.removemedia:49
#, c-format
msgid ""
"the entry to remove is missing\n"
@@ -970,12 +1075,7 @@ msgstr ""
"Was soll entfernt werden?\n"
"(eins aus %s)\n"
-#: po/placeholder.h:247
-#, fuzzy
-msgid " -a - select all media.\n"
-msgstr " --all - Alle Parameter ausgeben."
-
-#: po/placeholder.h:248
+#: po/placeholder.h:425
msgid ""
"usage: urpmi.removemedia [-a] <name> ...\n"
"where <name> is a medium name to remove.\n"
@@ -983,35 +1083,24 @@ msgstr ""
"Verwendung: urpmi.removemedia [-a] <Name> ...\n"
"Wobei <Name> das zu entfernende Medium ist.\n"
-#: po/placeholder.h:252
-msgid " -h - print this help message.\n"
-msgstr " -h - Ausgabe dieser Hilfe.\n"
-
-#: po/placeholder.h:254
-#, fuzzy
-msgid " -g - print groups too with name.\n"
-msgstr " --group - Ausgabe des Attributs „Gruppe“."
-
-#: po/placeholder.h:255 urpmq:90
-#, c-format
-msgid "urpmq: cannot read rpm file \"%s\"\n"
-msgstr "urpmq: Ich kann das RPM „%s“ nicht lesen.\n"
-
-#: po/placeholder.h:256
-msgid " names or rpm files given on command line are queried.\n"
-msgstr ""
-
-#: po/placeholder.h:258
-#, fuzzy
-msgid " -r - print version and release too with name.\n"
+#: po/placeholder.h:429
+msgid ""
+"usage: urpmi.update [options] <name> ...\n"
+"where <name> is a medium name to update.\n"
msgstr ""
-" wird angenommen, wenn kein Parameter angegeben wird)"
+"Verwendung: urpmi.update [Optionen] <Name> ...\n"
+"Wobei <Name> das zu aktualisierende Medium ist.\n"
-#: po/placeholder.h:259
-msgid " -f - print version, release and arch with name.\n"
+#: po/placeholder.h:438 urpmi.update:59
+#, c-format
+msgid ""
+"the entry to update is missing\n"
+"(one of %s)\n"
msgstr ""
+"Was soll aktualisiert werden?\n"
+"(eins aus %s)\n"
-#: po/placeholder.h:260
+#: po/placeholder.h:456
#, fuzzy, c-format
msgid ""
"urpmq version %s\n"
@@ -1023,48 +1112,12 @@ msgstr ""
"Dies ist freie Software und kann unter den Bedingungen der GNU GPL weiter "
"Vertrieben werden."
-#: po/placeholder.h:266
-#, fuzzy
-msgid " -d - extend query to package dependencies.\n"
-msgstr ""
-" wird angenommen, wenn kein Parameter angegeben wird)"
-
-#: po/placeholder.h:267
-msgid ""
-" --sources - give all source packages before downloading (root only).\n"
-msgstr ""
-
-#: po/placeholder.h:268
-msgid ""
-" -c - choose complete method for resolving requires closure.\n"
-msgstr ""
-
-#: po/placeholder.h:271 urpmq:137
-msgid ""
-"some packages have to be removed for being upgraded, this is not supported "
-"yet\n"
-msgstr ""
-"Einige Pakete müssen entfernt werden, bevor die diese Aktualisierungen \n"
-"durchführen können. Diese Funktionalität wird noch nicht angeboten.\n"
-
-#: po/placeholder.h:272 urpmq:87
-#, fuzzy, c-format
-msgid "urpmq: unknown option \"-%s\", check usage with --help\n"
-msgstr ""
-"urpmq: unbekannte Option „-$1“. Weitere Infos erhalten Sie \n"
-"mittels „urpmq --help“\n"
-
-#: po/placeholder.h:274
+#: po/placeholder.h:470
msgid ""
" --headers - extract headers for package listed from urpmi db to\n"
" stdout (root only).\n"
msgstr ""
-#: po/placeholder.h:282
-msgid ""
-" -u - remove package if a better version is already installed.\n"
-msgstr ""
-
#: urpm.pm:2030 urpm.pm:2039
#, c-format
msgid "removing %s to upgrade to %s ..."
@@ -1108,17 +1161,17 @@ msgstr ") . _("
msgid ");"
msgstr ");"
-#: urpmi.update:41
-msgid "usage: urpmi.update [options] <name> ..."
-msgstr "Verwendung: urpmi.update [Optionen] <Name> ..."
+#: urpmi.removemedia:34
+msgid "usage: urpmi.removemedia [-a] <name> ..."
+msgstr "Verwendung: urpmi.removemedia [-a] <Name> ..."
#: urpmi.removemedia:38 urpmi.update:49
msgid ", $_);"
msgstr ", $_);"
-#: urpmi.removemedia:34
-msgid "usage: urpmi.removemedia [-a] <name> ..."
-msgstr "Verwendung: urpmi.removemedia [-a] <Name> ..."
+#: urpmi.update:41
+msgid "usage: urpmi.update [options] <name> ..."
+msgstr "Verwendung: urpmi.update [Optionen] <Name> ..."
#: urpmq:34
#, c-format
diff --git a/po/el.po b/po/el.po
index 2d4be1d4..80ddc2f4 100644
--- a/po/el.po
+++ b/po/el.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: urpmi 1.7\n"
-"POT-Creation-Date: 2002-01-30 14:07+0100\n"
+"POT-Creation-Date: 2002-02-06 14:21+0100\n"
"PO-Revision-Date: 2001-08-22 22:42+0300\n"
"Last-Translator: Thanos Kyritsis <djart@hellug.gr>\n"
"Language-Team: Greek <nls@tux.hellug.gr>\n"
@@ -26,27 +26,31 @@ msgstr ""
" ...\n"
" $rpm\n"
-#: _irpm:31 po/placeholder.h:178 urpmi:268
+#: _irpm:31 po/placeholder.h:204 po/placeholder.h:322 po/placeholder.h:374
+#: urpme:29 urpmi:268
msgid "Is it OK?"
msgstr " ;"
-#: _irpm:33 po/placeholder.h:170 urpmi:271 urpmi:299
+#: _irpm:33 po/placeholder.h:193 po/placeholder.h:366 urpmi:271 urpmi:299
msgid "Ok"
msgstr ""
-#: _irpm:34 po/placeholder.h:131 urpmi:272 urpmi:300
+#: _irpm:34 po/placeholder.h:162 po/placeholder.h:327 urpmi:272 urpmi:300
msgid "Cancel"
msgstr ""
-#: _irpm:40 po/placeholder.h:143 urpmi:276 urpmi:340 urpmi:364
+#: _irpm:40 po/placeholder.h:176 po/placeholder.h:326 po/placeholder.h:339
+#: urpme:32 urpmi:276 urpmi:340 urpmi:364
msgid "Nn"
msgstr ""
-#: _irpm:41 po/placeholder.h:146 urpmi:277 urpmi:341 urpmi:365
+#: _irpm:41 po/placeholder.h:89 po/placeholder.h:321 po/placeholder.h:342
+#: urpme:34 urpmi:277 urpmi:341 urpmi:365
msgid "Yy"
msgstr ""
-#: _irpm:42 po/placeholder.h:173 urpmi:278
+#: _irpm:42 po/placeholder.h:195 po/placeholder.h:318 po/placeholder.h:369
+#: urpme:94 urpmi:278
msgid " (Y/n) "
msgstr " (/) "
@@ -54,16 +58,16 @@ msgstr " (/) "
msgid "$rpm: command not found\n"
msgstr "$rpm: \n"
-#: po/placeholder.h:6
+#: po/placeholder.h:6 po/placeholder.h:154
#, c-format
msgid "urpmf version %s"
msgstr "urpmq %s"
-#: po/placeholder.h:7
+#: po/placeholder.h:7 po/placeholder.h:192
msgid "Copyright (C) 1999,2000,2001 MandrakeSoft."
msgstr "Copyright (C) 1999,2000,2001 MandrakeSoft."
-#: po/placeholder.h:8
+#: po/placeholder.h:8 po/placeholder.h:152
msgid ""
"This is free software and may be redistributed under the terms of the GNU "
"GPL."
@@ -71,646 +75,738 @@ msgstr ""
" "
"GNU GPL."
-#: po/placeholder.h:9 po/placeholder.h:26
+#: po/placeholder.h:9 po/placeholder.h:26 po/placeholder.h:130
msgid "usage: urpmf [options] <file>"
msgstr ": rpmf [] <>"
-#: po/placeholder.h:10
+#: po/placeholder.h:10 po/placeholder.h:109
msgid ""
" --quiet - do not print tag name (default if no tag given on command"
msgstr ""
" --quiet - tag (' tag "
" "
-#: po/placeholder.h:11
+#: po/placeholder.h:11 po/placeholder.h:153
msgid " line, incompatible with interactive mode)."
msgstr " , interactive)."
-#: po/placeholder.h:12
+#: po/placeholder.h:12 po/placeholder.h:127
msgid " --all - print all tags."
msgstr " --all - tags."
-#: po/placeholder.h:13
+#: po/placeholder.h:13 po/placeholder.h:157
msgid ""
" --name - print tag name: rpm filename (assumed if no tag given on"
msgstr ""
" --name - tag: rpm ( "
" tag "
-#: po/placeholder.h:14
+#: po/placeholder.h:14 po/placeholder.h:159
msgid " command line but without package name)."
msgstr " )."
-#: po/placeholder.h:15
+#: po/placeholder.h:15 po/placeholder.h:102
msgid " --group - print tag group: group."
msgstr " --group - tag group: group."
-#: po/placeholder.h:16
+#: po/placeholder.h:16 po/placeholder.h:87
msgid " --size - print tag size: size."
msgstr " --size - tag: ."
-#: po/placeholder.h:17
+#: po/placeholder.h:17 po/placeholder.h:134
msgid " --serial - print tag serial: serial."
msgstr " --serial - tag serial: serial."
-#: po/placeholder.h:18
+#: po/placeholder.h:18 po/placeholder.h:146
msgid " --summary - print tag summary: summary."
msgstr " --summary - tag: ."
-#: po/placeholder.h:19
+#: po/placeholder.h:19 po/placeholder.h:120
msgid " --description - print tag description: description."
msgstr " --description - tag: ."
-#: po/placeholder.h:20
+#: po/placeholder.h:20 po/placeholder.h:138
msgid " --provides - print tag provides: all provides (multiple lines)."
msgstr ""
" --provides - tag: ( "
")."
-#: po/placeholder.h:21
+#: po/placeholder.h:21 po/placeholder.h:186
msgid " --requires - print tag requires: all requires (multiple lines)."
msgstr ""
" --requires - tag: "
"( )."
-#: po/placeholder.h:22
+#: po/placeholder.h:22 po/placeholder.h:41
msgid " --files - print tag files: all files (multiple lines)."
msgstr ""
" --files - tag: ( "
")."
-#: po/placeholder.h:23
+#: po/placeholder.h:23 po/placeholder.h:34
msgid ""
" --conflicts - print tag conflicts: all conflicts (multiple lines)."
msgstr ""
" --conflicts - tag: "
"( )."
-#: po/placeholder.h:24
+#: po/placeholder.h:24 po/placeholder.h:106
msgid ""
" --obsoletes - print tag obsoletes: all obsoletes (multiple lines)."
msgstr ""
" --obsoletes - tag obsoletes: obsoletes ( "
")."
-#: po/placeholder.h:25
+#: po/placeholder.h:25 po/placeholder.h:128
msgid " --prereqs - print tag prereqs: all prereqs (multiple lines)."
msgstr ""
" --prereqs - tag prereqs: prereqs ( "
")."
-#: po/placeholder.h:27
+#: po/placeholder.h:27 po/placeholder.h:62
msgid "try urpmf --help for more options"
msgstr " urpmf --help "
-#: po/placeholder.h:28
+#: po/placeholder.h:28 po/placeholder.h:49
msgid "no full media list was found"
msgstr ""
-#: po/placeholder.h:29
+#: po/placeholder.h:29 po/placeholder.h:214
#, c-format
msgid "unable to write config file [%s]"
msgstr " [%s]"
-#: po/placeholder.h:30 urpm.pm:1892
-#, fuzzy
-msgid "retrieving rpms files..."
-msgstr " [%s]"
-
-#: po/placeholder.h:31
+#: po/placeholder.h:30 po/placeholder.h:216
msgid "examining whole urpmi database"
msgstr ""
-#: po/placeholder.h:32
+#: po/placeholder.h:31 po/placeholder.h:331 po/placeholder.h:449
+#, fuzzy
+msgid " -y - impose fuzzy search.\n"
+msgstr " --all - tags."
+
+#: po/placeholder.h:32 po/placeholder.h:220 urpm.pm:280
#, c-format
-msgid "using different removable device [%s] for \"%s\""
-msgstr ""
+msgid "unable to find list file for \"%s\", medium ignored"
+msgstr " \"%s\", "
-#: po/placeholder.h:33
+#: po/placeholder.h:33 po/placeholder.h:218
#, c-format
msgid "nothing to write in list file for \"%s\""
msgstr " \"%s\""
-#: po/placeholder.h:34
-msgid ""
-"unable to access first installation medium (no Mandrake/base/hdlists file "
-"found)"
-msgstr ""
-
-#: po/placeholder.h:35 urpm.pm:280
-#, c-format
-msgid "unable to find list file for \"%s\", medium ignored"
-msgstr " \"%s\", "
-
-#: po/placeholder.h:36
+#: po/placeholder.h:35 po/placeholder.h:221
#, c-format
msgid "unable to parse hdlist file of \"%s\""
msgstr " hdlist \"%s\""
-#: po/placeholder.h:37
+#: po/placeholder.h:36 po/placeholder.h:222
#, c-format
msgid "nothing written in list file for \"%s\""
msgstr " \"%s\""
-#: po/placeholder.h:38
+#: po/placeholder.h:37 po/placeholder.h:463
+msgid ""
+" --sources - give all source packages before downloading (root only).\n"
+msgstr ""
+
+#: po/placeholder.h:38 po/placeholder.h:341 po/placeholder.h:466
+msgid ""
+" --auto-select - automatically select packages for upgrading the system.\n"
+msgstr ""
+
+#: po/placeholder.h:39 po/placeholder.h:223
#, fuzzy, c-format
msgid "retrieving description file of \"%s\"..."
msgstr " [%s]"
-#: po/placeholder.h:39
-#, fuzzy
-msgid "unable to access first installation medium"
-msgstr " \"%s\", "
-
-#: po/placeholder.h:40 urpm.pm:1768
+#: po/placeholder.h:40 po/placeholder.h:225 urpm.pm:1769
#, c-format
msgid "package %s is not found."
msgstr " %s ."
-#: po/placeholder.h:41 urpm.pm:1129
-#, c-format
-msgid "unmounting %s"
-msgstr " %s"
-
-#: po/placeholder.h:42
-#, c-format
-msgid "removing %d obsolete headers in cache"
-msgstr " %d cache"
-
-#: po/placeholder.h:43
-#, c-format
-msgid "no hdlist file found for medium \"%s\""
-msgstr " hdlist \"%s\""
-
-#: po/placeholder.h:44 urpm.pm:209
+#: po/placeholder.h:42 po/placeholder.h:229 urpm.pm:209
#, c-format
msgid "medium \"%s\" tries to use an already used hdlist, medium ignored"
msgstr ""
" \"%s\" hdlist, "
" "
-#: po/placeholder.h:45 urpm.pm:1413
-msgid "<non printable chars>"
+#: po/placeholder.h:43 po/placeholder.h:317 urpme:52
+msgid "unknown package(s) "
msgstr ""
-#: po/placeholder.h:46
-#, fuzzy
-msgid "problem reading hdlist file, trying again"
-msgstr " hdlist [%s]"
-
-#: po/placeholder.h:47 urpm.pm:233
+#: po/placeholder.h:44 po/placeholder.h:232 urpm.pm:233
#, c-format
msgid "unable to use name \"%s\" for unnamed medium because it is already used"
msgstr ""
" \"%s\" "
-#: po/placeholder.h:48
-#, fuzzy, c-format
-msgid "removing medium \"%s\""
-msgstr " \"%s\""
+#: po/placeholder.h:45 po/placeholder.h:231
+#, fuzzy
+msgid "problem reading hdlist file, trying again"
+msgstr " hdlist [%s]"
-#: po/placeholder.h:49 urpm.pm:240
+#: po/placeholder.h:46 po/placeholder.h:234 urpm.pm:240
#, c-format
msgid "unable to take medium \"%s\" into account as no list file [%s] exists"
msgstr ""
" \"%s\" [%"
"s]"
-#: po/placeholder.h:50
+#: po/placeholder.h:47 po/placeholder.h:235
msgid "keeping only files referenced in provides"
msgstr " provides"
-#: po/placeholder.h:51
-#, c-format
-msgid "unable to build synthesis file for medium \"%s\""
-msgstr " \"%s\""
-
-#: po/placeholder.h:52
+#: po/placeholder.h:48 po/placeholder.h:237
#, c-format
msgid "found %d headers in cache"
msgstr " %d cache"
-#: po/placeholder.h:53
-#, fuzzy, c-format
-msgid "trying to select multiple medium: %s"
-msgstr " \"%s\""
-
-#: po/placeholder.h:54 urpm.pm:2125
+#: po/placeholder.h:50 po/placeholder.h:394 urpmi.addmedia:76
+#: urpmi.addmedia:93
#, c-format
-msgid "avoid selecting %s as its locales language is not already selected"
-msgstr ""
-" %s locales "
-""
+msgid "unable to update medium \"%s\"\n"
+msgstr " \"%s\"\n"
-#: po/placeholder.h:55
-#, fuzzy, c-format
-msgid ""
-"removing %s to upgrade to %s ...\n"
-" since it will not be updated otherwise"
-msgstr ""
-" %s ......\n"
-" %s "
+#: po/placeholder.h:51 po/placeholder.h:400 po/placeholder.h:423
+#: po/placeholder.h:442
+#, fuzzy
+msgid " -c - clean headers cache directory.\n"
+msgstr " --all - tags."
-#: po/placeholder.h:59
+#: po/placeholder.h:52 po/placeholder.h:244
#, c-format
msgid "medium \"%s\" already exists"
msgstr " \"%s\" "
-#: po/placeholder.h:60
+#: po/placeholder.h:53 po/placeholder.h:245
#, c-format
msgid "unable to write list file of \"%s\""
msgstr " \"%s\""
-#: po/placeholder.h:61
-#, c-format
-msgid "write config file [%s]"
-msgstr " [%s]"
+#: po/placeholder.h:54 po/placeholder.h:452
+msgid " names or rpm files given on command line are queried.\n"
+msgstr ""
-#: po/placeholder.h:62 urpm.pm:1302
+#: po/placeholder.h:55 po/placeholder.h:247 urpm.pm:1302
#, c-format
msgid "no package named %s"
msgstr " %s"
-#: po/placeholder.h:63
+#: po/placeholder.h:56 po/placeholder.h:365 urpmi:350 urpmi:374
+msgid "Try installation even more strongly (--force)? (y/N) "
+msgstr " (--force); (/) "
+
+#: po/placeholder.h:57 po/placeholder.h:250 urpm.pm:275
+#, c-format
+msgid "unable to find hdlist file for \"%s\", medium ignored"
+msgstr " hdlist \"%s\", "
+
+#: po/placeholder.h:58 po/placeholder.h:248
#, c-format
msgid "built hdlist synthesis file for medium \"%s\""
msgstr " hdlist \"%s\""
-#: po/placeholder.h:64
-#, fuzzy
-msgid "unable to build hdlist synthesis, using parsehdlist method"
+#: po/placeholder.h:59 po/placeholder.h:251
+msgid "urpmi database locked"
msgstr ""
-" , parsehdlist"
-#: po/placeholder.h:65 urpm.pm:275
-#, c-format
-msgid "unable to find hdlist file for \"%s\", medium ignored"
-msgstr " hdlist \"%s\", "
+#: po/placeholder.h:60 po/placeholder.h:319 urpme:63
+#, fuzzy
+msgid " (y/N) "
+msgstr " (/) "
-#: po/placeholder.h:66
-msgid "urpmi database locked"
+#: po/placeholder.h:61 po/placeholder.h:370
+msgid " -a - select all matches on command line.\n"
+msgstr ""
+
+#: po/placeholder.h:63 po/placeholder.h:467 urpmq:137
+msgid ""
+"some packages have to be removed for being upgraded, this is not supported "
+"yet\n"
msgstr ""
+" , "
+" \n"
-#: po/placeholder.h:67 urpm.pm:1118
+#: po/placeholder.h:64 po/placeholder.h:252 urpm.pm:1118
#, c-format
msgid "mounting %s"
msgstr " %s"
-#: po/placeholder.h:68 urpm.pm:227
-#, c-format
-msgid ""
-"unable to take care of medium \"%s\" as list file is already used by another "
-"medium"
-msgstr ""
-" \"%s\" "
-" "
-
-#: po/placeholder.h:69
-#, fuzzy, c-format
-msgid "examining synthesis file [%s]"
-msgstr " depslist [%s]"
+#: po/placeholder.h:65 po/placeholder.h:405 po/placeholder.h:443
+#, fuzzy
+msgid " -f - force generation of hdlist files.\n"
+msgstr " --group - tag group: group."
-#: po/placeholder.h:70 urpm.pm:98
+#: po/placeholder.h:66 po/placeholder.h:255 urpm.pm:98
#, c-format
msgid "wget failed: exited with %d or signal %d\n"
msgstr ""
-#: po/placeholder.h:71
-#, fuzzy, c-format
-msgid "unable to retrieve pathname for removable medium \"%s\""
-msgstr " \"%s\"\n"
+#: po/placeholder.h:67 po/placeholder.h:414 urpmi.removemedia:47
+msgid "nothing to remove (use urpmi.addmedia to add a media)\n"
+msgstr ""
+" ( urpmi.addmedia )\n"
-#: po/placeholder.h:72 urpm.pm:1887
+#: po/placeholder.h:68 po/placeholder.h:257 urpm.pm:1886
#, c-format
msgid "malformed input: [%s]"
msgstr " : [%s]"
-#: po/placeholder.h:73 urpm.pm:1721 urpm.pm:1747
-#, c-format
-msgid "there are multiple packages with the same rpm filename \"%s\""
-msgstr " rpm \"%s\""
+#: po/placeholder.h:69 po/placeholder.h:478
+msgid ""
+" -u - remove package if a better version is already installed.\n"
+msgstr ""
+
+#: po/placeholder.h:70 po/placeholder.h:378 urpmi:216
+#, fuzzy, c-format
+msgid "One of the following packages is needed to install %s:"
+msgstr " :"
-#: po/placeholder.h:74
+#: po/placeholder.h:71 po/placeholder.h:376 urpmi:297
+msgid "Press Enter when it's done..."
+msgstr " enter ..."
+
+#: po/placeholder.h:72 po/placeholder.h:259
msgid "...copying failed"
msgstr ""
-#: po/placeholder.h:75 urpm.pm:212
+#: po/placeholder.h:73 po/placeholder.h:260 urpm.pm:212
#, c-format
msgid "medium \"%s\" tries to use an already used list, medium ignored"
msgstr ""
" \"%s\" , "
" "
-#: po/placeholder.h:76
+#: po/placeholder.h:74 po/placeholder.h:448
#, fuzzy
-msgid "retrieving hdlists file..."
-msgstr " [%s]"
+msgid " -h - print this help message.\n"
+msgstr " --all - tags."
-#: po/placeholder.h:77 urpm.pm:253
-#, c-format
-msgid "unable to access hdlist file of \"%s\", medium ignored"
-msgstr " \"%s\", "
+#: po/placeholder.h:75 po/placeholder.h:450
+#, fuzzy
+msgid " -g - print groups too with name.\n"
+msgstr " --group - tag group: group."
-#: po/placeholder.h:78 urpm.pm:1208
-msgid "unable to register rpm file"
-msgstr " rpm "
+#: po/placeholder.h:76 po/placeholder.h:424
+#, fuzzy
+msgid " -a - select all media.\n"
+msgstr " --all - tags."
-#: po/placeholder.h:79
+#: po/placeholder.h:77 po/placeholder.h:267
#, c-format
-msgid "\"%s\""
+msgid "invalid hdlist description \"%s\" in hdlists file"
msgstr ""
-#: po/placeholder.h:80 urpm.pm:307
-#, c-format
-msgid "unable to inspect list file for \"%s\", medium ignored"
-msgstr " \"%s\", "
+#: po/placeholder.h:78 po/placeholder.h:407
+#, fuzzy
+msgid " -h - try to find and use synthesis or hdlist file.\n"
+msgstr " --group - tag group: group."
-#: po/placeholder.h:81
-#, c-format
-msgid "too many mount points for removable medium \"%s\""
-msgstr ""
+#: po/placeholder.h:79 po/placeholder.h:454
+#, fuzzy
+msgid " -r - print version and release too with name.\n"
+msgstr " )."
-#: po/placeholder.h:82
-#, c-format
-msgid "invalid hdlist description \"%s\" in hdlists file"
+#: po/placeholder.h:80 po/placeholder.h:455
+msgid " -f - print version, release and arch with name.\n"
msgstr ""
-#: po/placeholder.h:83 urpm.pm:299
-#, c-format
-msgid "incoherent list file for \"%s\", medium ignored"
-msgstr " \"%s\", "
-
-#: po/placeholder.h:84
-#, c-format
-msgid "copy of [%s] failed"
-msgstr " [%s] "
+#: po/placeholder.h:81 po/placeholder.h:338
+msgid " --auto - automatically select a good package in choices.\n"
+msgstr ""
-#: po/placeholder.h:85 urpm.pm:1420
+#: po/placeholder.h:82 po/placeholder.h:270 urpm.pm:1420
#, c-format
msgid "unable to parse correctly [%s]"
msgstr " [%s]"
-#: po/placeholder.h:86 urpm.pm:1421
+#: po/placeholder.h:83 po/placeholder.h:446 urpmi.update:57
+msgid "nothing to update (use urpmi.addmedia to add a media)\n"
+msgstr ""
+" ( urpmi.addmedia )\n"
+
+#: po/placeholder.h:84 po/placeholder.h:271 urpm.pm:1421
#, fuzzy, c-format
msgid "read synthesis file [%s]"
msgstr " depslist [%s]"
-#: po/placeholder.h:87 urpm.pm:1412 urpm.pm:1419
-#, fuzzy, c-format
-msgid "unable to analyse synthesis data of %s"
-msgstr " hdlist \"%s\""
-
-#: po/placeholder.h:88 urpm.pm:93
+#: po/placeholder.h:85 po/placeholder.h:273 urpm.pm:93
msgid "no webfetch (curl or wget currently) found\n"
msgstr ""
-#: po/placeholder.h:89
-#, c-format
-msgid "retrieving source hdlist (or synthesis) of \"%s\"..."
+#: po/placeholder.h:86 po/placeholder.h:464
+msgid ""
+" -c - choose complete method for resolving requires closure.\n"
msgstr ""
-#: po/placeholder.h:90
-#, fuzzy
-msgid "...copying done"
-msgstr " [%s]"
+#: po/placeholder.h:88 po/placeholder.h:393 urpmi.addmedia:92
+#, c-format
+msgid "unable to create medium \"%s\"\n"
+msgstr " \"%s\"\n"
-#: po/placeholder.h:91
+#: po/placeholder.h:90 po/placeholder.h:276
#, c-format
msgid "copying source hdlist (or synthesis) of \"%s\"..."
msgstr ""
-#: po/placeholder.h:92
-#, fuzzy
-msgid "copying hdlists file..."
-msgstr " hdlist [%s]"
-
-#: po/placeholder.h:93 urpm.pm:188 urpm.pm:200
+#: po/placeholder.h:91 po/placeholder.h:468 urpmq:87
#, c-format
-msgid "syntax error in config file at line %s"
-msgstr " %s"
+msgid "urpmq: unknown option \"-%s\", check usage with --help\n"
+msgstr "urpmq: \"-%s\", --help\n"
-#: po/placeholder.h:94
+#: po/placeholder.h:92 po/placeholder.h:324 urpme:39
+#, fuzzy
+msgid "usage: urpme [-a] [--auto] <packages...>\n"
+msgstr ": urpmi.removemedia [-a] <> ..."
+
+#: po/placeholder.h:93 po/placeholder.h:279
#, c-format
msgid "building hdlist [%s]"
msgstr " hdlist [%s]"
-#: po/placeholder.h:95 urpm.pm:1822
-#, c-format
-msgid "unable to read rpm file [%s] from medium \"%s\""
-msgstr " rpm [%s] \"%s\""
+#: po/placeholder.h:94 po/placeholder.h:347 po/placeholder.h:474
+msgid " --media - use only the media listed by comma.\n"
+msgstr ""
-#: po/placeholder.h:96
+#: po/placeholder.h:95 po/placeholder.h:281
#, c-format
msgid "added medium %s"
msgstr ""
-#: po/placeholder.h:97
-msgid "retrieve of source hdlist (or synthesis) failed"
-msgstr ""
-
-#: po/placeholder.h:98 urpm.pm:1212
-msgid "error registering local packages"
-msgstr " "
-
-#: po/placeholder.h:99
+#: po/placeholder.h:96 po/placeholder.h:280 urpm.pm:1821
#, c-format
-msgid "taking removable device as \"%s\""
+msgid "unable to read rpm file [%s] from medium \"%s\""
+msgstr " rpm [%s] \"%s\""
+
+#: po/placeholder.h:97 po/placeholder.h:282
+msgid "retrieve of source hdlist (or synthesis) failed"
msgstr ""
-#: po/placeholder.h:100 urpm.pm:1899
+#: po/placeholder.h:98 po/placeholder.h:285 urpm.pm:1898
#, fuzzy, c-format
msgid "...retrieving failed: %s"
msgstr " [%s]"
-#: po/placeholder.h:101 urpm.pm:1838
+#: po/placeholder.h:99 po/placeholder.h:286 urpm.pm:1837
#, c-format
msgid "incoherent medium \"%s\" marked removable but not really"
msgstr " \"%s\" "
-#: po/placeholder.h:102
-#, fuzzy, c-format
-msgid "copying description file of \"%s\"..."
-msgstr " \"%s\""
-
-#: po/placeholder.h:103
-#, c-format
-msgid "unable to build hdlist: %s"
-msgstr " hdlist: %s"
-
-#: po/placeholder.h:104 urpm.pm:1812 urpm.pm:1815 urpm.pm:1834
-#, c-format
-msgid "medium \"%s\" is not selected"
-msgstr " \"%s\" "
-
-#: po/placeholder.h:105 urpm.pm:1203
+#: po/placeholder.h:100 po/placeholder.h:290 urpm.pm:1203
#, c-format
msgid "invalid rpm file name [%s]"
msgstr " rpm [%s]"
-#: po/placeholder.h:106 urpm.pm:1398
+#: po/placeholder.h:101 po/placeholder.h:291 urpm.pm:1398
#, c-format
msgid "unknown data associated with %s"
msgstr " %s"
-#: po/placeholder.h:107 urpm.pm:269
+#: po/placeholder.h:103 po/placeholder.h:357 urpmi:225
#, c-format
-msgid "trying to bypass existing medium \"%s\", avoiding"
-msgstr " \"%s\""
+msgid "What is your choice? (1-%d) "
+msgstr " ; (1-%d) "
-#: po/placeholder.h:108 urpm.pm:255
+#: po/placeholder.h:104 po/placeholder.h:293 urpm.pm:255
#, c-format
msgid "unable to access list file of \"%s\", medium ignored"
msgstr " \"%s\", "
-#: po/placeholder.h:109 urpm.pm:2113
+#: po/placeholder.h:105 po/placeholder.h:358 po/placeholder.h:406
+#: po/placeholder.h:444
+msgid " --wget - use wget to retrieve distant files.\n"
+msgstr ""
+
+#: po/placeholder.h:107 po/placeholder.h:294 urpm.pm:2113
#, c-format
msgid "avoid selecting %s as not enough files will be updated"
msgstr " %s "
-#: po/placeholder.h:110 urpm.pm:1204
+#: po/placeholder.h:108 po/placeholder.h:295 urpm.pm:1204
#, c-format
msgid "unable to access rpm file [%s]"
msgstr " rpm [%s]"
-#: po/placeholder.h:111
-#, fuzzy, c-format
-msgid ""
-"removing %s to upgrade to %s ...\n"
-" since it will not upgrade correctly!"
-msgstr ""
-" %s ...\n"
-" %s !"
-
-#: po/placeholder.h:115 urpm.pm:1190
-#, c-format
-msgid "relocated %s entries in depslist"
-msgstr " %s depslist"
+#: po/placeholder.h:110 po/placeholder.h:368 urpmi:228
+msgid "Sorry, bad choice, try again\n"
+msgstr ", , \n"
-#: po/placeholder.h:116 urpm.pm:1849
+#: po/placeholder.h:111 po/placeholder.h:301 urpm.pm:1848
#, c-format
msgid "unable to access medium \"%s\""
msgstr " \"%s\""
-#: po/placeholder.h:117 urpm.pm:1756
+#: po/placeholder.h:112 po/placeholder.h:300 urpm.pm:1190
#, c-format
-msgid "unable to parse correctly [%s] on value \"%s\""
-msgstr " [%s] \"%s\""
+msgid "relocated %s entries in depslist"
+msgstr " %s depslist"
+
+#: po/placeholder.h:113 po/placeholder.h:371 po/placeholder.h:399
+#: po/placeholder.h:437
+msgid " --curl - use curl to retrieve distant files.\n"
+msgstr ""
-#: po/placeholder.h:118
+#: po/placeholder.h:114 po/placeholder.h:303
#, c-format
msgid "trying to select inexistent medium \"%s\""
msgstr " \"%s\""
-#: po/placeholder.h:119 urpm.pm:1305
+#: po/placeholder.h:115 po/placeholder.h:302 urpm.pm:1757
#, c-format
-msgid "The following packages contain %s: %s"
-msgstr " %s: %s"
+msgid "unable to parse correctly [%s] on value \"%s\""
+msgstr " [%s] \"%s\""
-#: po/placeholder.h:120
+#: po/placeholder.h:116 po/placeholder.h:305
#, c-format
msgid "no rpm files found from [%s]"
msgstr " rpm [%s]"
-#: po/placeholder.h:121
-#, fuzzy, c-format
-msgid "examining hdlist file [%s]"
-msgstr " hdlist [%s]"
+#: po/placeholder.h:117 po/placeholder.h:312 urpm.pm:101
+msgid "curl is missing\n"
+msgstr ""
+
+#: po/placeholder.h:118 po/placeholder.h:315 urpm.pm:244
+#, c-format
+msgid "unable to determine medium of this hdlist file [%s]"
+msgstr " hdlist [%s]"
-#: po/placeholder.h:122 urpm.pm:1191
+#: po/placeholder.h:119 po/placeholder.h:328
#, fuzzy
-msgid "no entries relocated in depslist"
-msgstr " %s depslist"
+msgid " --help - print this help message.\n"
+msgstr " --all - tags."
-#: po/placeholder.h:123 urpm.pm:1897
+#: po/placeholder.h:121 po/placeholder.h:329 urpmi:383
+msgid "everything already installed"
+msgstr " "
+
+#: po/placeholder.h:122 po/placeholder.h:215 urpm.pm:1891
#, fuzzy
-msgid "...retrieving done"
+msgid "retrieving rpms files..."
msgstr " [%s]"
-#: po/placeholder.h:124 urpm.pm:2006
+#: po/placeholder.h:123 po/placeholder.h:217
#, c-format
-msgid "selecting %s using obsoletes"
-msgstr " %s "
+msgid "using different removable device [%s] for \"%s\""
+msgstr ""
+
+#: po/placeholder.h:124 po/placeholder.h:332 urpmi:217
+msgid "One of the following packages is needed:"
+msgstr " :"
-#: po/placeholder.h:125 urpm.pm:151
+#: po/placeholder.h:125 po/placeholder.h:219
+msgid ""
+"unable to access first installation medium (no Mandrake/base/hdlists file "
+"found)"
+msgstr ""
+
+#: po/placeholder.h:126 po/placeholder.h:451 urpmq:90
#, c-format
-msgid "curl failed: exited with %d or signal %d\n"
+msgid "urpmq: cannot read rpm file \"%s\"\n"
+msgstr "urpmq: rpm \"%s\"\n"
+
+#: po/placeholder.h:129 po/placeholder.h:323 urpme:87
+msgid "Nothing to remove.\n"
msgstr ""
-#: po/placeholder.h:126 urpm.pm:2122
+#: po/placeholder.h:131 po/placeholder.h:340 urpmi:329 urpmi:336 urpmi:349
+#: urpmi:360 urpmi:373
+msgid "Installation failed"
+msgstr " "
+
+#: po/placeholder.h:132 po/placeholder.h:224
+#, fuzzy
+msgid "unable to access first installation medium"
+msgstr " \"%s\", "
+
+#: po/placeholder.h:133 po/placeholder.h:345 po/placeholder.h:469
+#, fuzzy
+msgid " -P - do not search in provides to find package.\n"
+msgstr " --group - tag group: group."
+
+#: po/placeholder.h:135 po/placeholder.h:226 urpm.pm:1129
#, c-format
-msgid "selecting %s by selection on files"
-msgstr "selecting %s by selection on files"
+msgid "unmounting %s"
+msgstr " %s"
-#: po/placeholder.h:127 urpm.pm:101
-msgid "curl is missing\n"
+#: po/placeholder.h:136 po/placeholder.h:227
+#, c-format
+msgid "removing %d obsolete headers in cache"
+msgstr " %d cache"
+
+#: po/placeholder.h:137 po/placeholder.h:228
+#, c-format
+msgid "no hdlist file found for medium \"%s\""
+msgstr " hdlist \"%s\""
+
+#: po/placeholder.h:139 po/placeholder.h:230 urpm.pm:1413
+msgid "<non printable chars>"
+msgstr ""
+
+#: po/placeholder.h:140 po/placeholder.h:352 po/placeholder.h:476
+msgid " -v - verbose mode.\n"
msgstr ""
-#: po/placeholder.h:128
+#: po/placeholder.h:141 po/placeholder.h:233
#, fuzzy, c-format
-msgid "copying source list of \"%s\"..."
-msgstr " \"%s\""