summaryrefslogtreecommitdiffstats
path: root/perl-install/install_steps.pm
blob: 0159e1e3aa57888b5773e8f1b6e4ccc10ea43e9d (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
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
package install_steps; # $Id$

use diagnostics;
use strict;
use vars qw(@filesToSaveForUpgrade @filesNewerToUseAfterUpgrade @ISA);

#-######################################################################################
#- misc imports
#-######################################################################################
use common;
use install_any qw(:all);
use partition_table qw(:types);
use detect_devices;
use modules;
use run_program;
use lang;
use keyboard;
use fsedit;
use loopback;
use pkgs;
use any;
use log;
use fs;

@filesToSaveForUpgrade = qw(
/etc/ld.so.conf /etc/fstab /etc/hosts /etc/conf.modules /etc/modules.conf
);

@filesNewerToUseAfterUpgrade = qw(
/etc/profile
);

#-######################################################################################
#- OO Stuff
#-######################################################################################
sub new($$) {
    my ($type, $o) = @_;

    bless $o, ref $type || $type;
    return $o;
}

#-######################################################################################
#- In/Out Steps Functions
#-######################################################################################
sub enteringStep {
    my ($o, $step) = @_;
    log::l("starting step `$step'");
}
sub leavingStep {
    my ($o, $step) = @_;
    log::l("step `$step' finished");

    if (-d "$o->{prefix}/root/drakx") {
	eval { cp_af("/tmp/ddebug.log", "$o->{prefix}/root/drakx") };
	output(install_any::auto_inst_file(), install_any::g_auto_install(1));
    }

    for (my $s = $o->{steps}{first}; $s; $s = $o->{steps}{$s}{next}) {
	#- the reachability property must be recomputed each time to take
	#- into account failed step.
	next if $o->{steps}{$s}{done} && !$o->{steps}{$s}{redoable};

	my $reachable = 1;
	if (my $needs = $o->{steps}{$s}{needs}) {
	    my @l = ref $needs ? @$needs : $needs;
	    $reachable = min(map { $o->{steps}{$_}{done} || 0 } @l);
	}
	$o->{steps}{$s}{reachable} = 1 if $reachable;
    }
    $o->{steps}{$step}{reachable} = $o->{steps}{$step}{redoable};

    while (my $f = shift @{$o->{steps}{$step}{toBeDone} || []}) {
	eval { &$f() };
	$o->ask_warn(_("Error"), [
_("An error occurred, but I don't know how to handle it nicely.
Continue at your own risk."), $@ ]) if $@;
    }
}

sub errorInStep($$) { print "error :(\n"; c::_exit(1) }
sub kill_action {}
sub set_help { 1 }

#-######################################################################################
#- Steps Functions
#-######################################################################################
#------------------------------------------------------------------------------
sub selectLanguage {
    my ($o) = @_;
    lang::set($o->{lang}, !$o->isa('interactive::gtk'));
    $o->{langs} ||= { $o->{lang} => 1 };

    log::l("selectLanguage: pack_langs ", lang::pack_langs($o->{langs}));

    #- for auto_install compatibility with old $o->{keyboard} containing directly $o->{keyboard}{KEYBOARD}
    $o->{keyboard} = { KEYBOARD => $o->{keyboard} } if $o->{keyboard} && !ref($o->{keyboard});

    if (!$o->{keyboard} || $o->{keyboard}{unsafe}) {
	$o->{keyboard} = keyboard::from_usb() || keyboard::lang2keyboard($o->{lang});
	$o->{keyboard}{unsafe} = 1;
	keyboard::setup($o->{keyboard}) if !$::live;
    }

    addToBeDone {
	lang::write_langs($o->{prefix}, $o->{langs});
    } 'formatPartitions' unless $::g_auto_install;
    addToBeDone {
	lang::write($o->{prefix}, $o->{lang});
    } 'installPackages' unless $::g_auto_install;
}
#------------------------------------------------------------------------------
sub selectKeyboard {
    my ($o) = @_;
    $o->{keyboard}{KBCHARSET} = lang::lang2charset($o->{lang});
    keyboard::setup($o->{keyboard});

    addToBeDone {
	keyboard::write($o->{keyboard});
    } 'installPackages' if !$::g_auto_install && (!$o->{isUpgrade} || !$o->{keyboard}{unsafe});
}
#------------------------------------------------------------------------------
sub acceptLicence {}
sub selectPath {}
#------------------------------------------------------------------------------
sub selectInstallClass {}
#------------------------------------------------------------------------------
sub setupSCSI {
    my ($o) = @_;
    modules::configure_pcmcia($o->{pcmcia}) if $o->{pcmcia};
    modules::load_ide();
    modules::load_category('bus/firewire');
    modules::load_category('disk/scsi|hardware_raid');
}

#------------------------------------------------------------------------------
sub doPartitionDisksBefore {
    my ($o) = @_;
    eval { 
	close *pkgs::LOG;
	eval { fs::umount("$o->{prefix}/proc") };
	eval {          fs::umount_all($o->{fstab}, $o->{prefix}) };
	eval { sleep 1; fs::umount_all($o->{fstab}, $o->{prefix}) } if $@; #- HACK
    } if $o->{fstab} && !$::testing && !$::live;
}

#------------------------------------------------------------------------------
sub doPartitionDisksAfter {
    my ($o) = @_;

    if (!$::testing) {
	my $hds = $o->{all_hds}{hds};
	partition_table::write($_) foreach @$hds;
	$_->{rebootNeeded} and $o->rebootNeeded foreach @$hds;
    }

    fs::set_removable_mntpoints($o->{all_hds});
    fs::set_all_default_options($o->{all_hds}, $o->{useSupermount}, $o->{security}, lang::fs_options($o->{lang}))
	if !$o->{isUpgrade};

    $o->{fstab} = [ fsedit::get_all_fstab($o->{all_hds}) ];
    fsedit::get_root_($o->{fstab}) or die "Oops, no root partition";

    if (arch() =~ /ppc/ && detect_devices::get_mac_generation =~ /NewWorld/) {
	die "Need bootstrap partition to boot system!" if !(defined $partition_table::mac::bootstrap_part);
    }
    
    if (arch() =~ /ia64/ && !fsedit::has_mntpoint("/boot/efi", $o->{all_hds})) {
	die _("You must have a FAT partition mounted in /boot/efi");
    }

    if ($o->{partitioning}{use_existing_root}) {
	#- ensure those partitions are mounted so that they are not proposed in choosePartitionsToFormat
	fs::mount_part($_, $o->{prefix}) foreach (sort { $a->{mntpoint} cmp $b->{mntpoint} }
						  grep { $_->{mntpoint} && maybeFormatted($_) } @{$o->{fstab}});
    }

    cat_("/proc/mounts") =~ m|(\S+)\s+/tmp/image nfs| &&
      !grep { $_->{mntpoint} eq "/mnt/nfs" } @{$o->{all_hds}{nfss}} and
	push @{$o->{all_hds}{nfss}}, { type => 'nfs', mntpoint => "/mnt/nfs", device => $1, options => "noauto,ro,nosuid,soft,rsize=8192,wsize=8192" };
}

#------------------------------------------------------------------------------
sub doPartitionDisks {
    my ($o) = @_;

    install_any::getHds($o);

    if ($o->{partitioning}{use_existing_root} || $o->{isUpgrade}) {
	# either one root is defined (and all is ok), or we take the first one we find
	my $p = fsedit::get_root_($o->{fstab}) || first(install_any::find_root_parts($o->{fstab}, $o->{prefix})) or die;
	install_any::use_root_part($o->{all_hds}, $p, $o->{prefix});
    } 
    if ($o->{partitioning}{auto_allocate}) {
	fsedit::auto_allocate($o->{all_hds}, $o->{partitions});
    }
}

#------------------------------------------------------------------------------

sub ask_mntpoint_s {
    my ($o, $fstab) = @_;

    #- TODO: set the mntpoints

    my %m; foreach (@$fstab) {
	my $m = $_->{mntpoint};

	next unless $m && $m ne 'swap'; #- there may be a lot of swap.

	$m{$m} and die _("Duplicate mount point %s", $m);
	$m{$m} = 1;

	#- in case the type does not correspond, force it to ext2
	$_->{type} = 0x83 if $m =~ m|^/| && !isFat($_) && !isTrueFS($_);
    }
    1;
}


sub rebootNeeded($) {
    my ($o) = @_;
    log::l("Rebooting...");
    c::_exit(0);
}

sub choosePartitionsToFormat($$) {
    my ($o, $fstab) = @_;

    foreach (@$fstab) {
	$_->{mntpoint} = "swap" if isSwap($_);
	$_->{mntpoint} or next;
	
	add2hash_($_, { toFormat => $_->{notFormatted} });
        $_->{toFormatUnsure} = member($_->{mntpoint}, '/', '/usr');

	if (!$_->{toFormat}) {
	    my $t = fsedit::typeOfPart($_->{device});
	    $_->{toFormatUnsure} ||=
	      #- if detected dos/win, it's not precise enough to just compare the types (too many of them)
	      (!$t || isOtherAvailableFS({ type => $t }) ? !isOtherAvailableFS($_) : $t != $_->{type});
	}
    }
}

sub formatMountPartitions {
    my ($o) = @_;
    fs::formatMount_all($o->{all_hds}{raids}, $o->{fstab}, $o->{prefix});
}

#------------------------------------------------------------------------------
sub setPackages {
    my ($o, $rebuild_needed) = @_;

    install_any::setPackages($o, $rebuild_needed);
    pkgs::selectPackagesAlreadyInstalled($o->{packages}, $o->{prefix});
    $rebuild_needed and pkgs::selectPackagesToUpgrade($o->{packages}, $o->{prefix});
}

sub choosePackages {
    my ($o, $packages, $compssUsers, $first_time) = @_;

    #- now for upgrade, package that must be upgraded are
    #- selected first, after is used the same scheme as install.

    #- make sure we kept some space left for available else the system may
    #- not be able to start (xfs at least).
    my $available = install_any::getAvailableSpace($o);
    my $availableCorrected = pkgs::invCorrectSize($available / sqr(1024)) * sqr(1024);
    log::l(sprintf "available size %s (corrected %s)", formatXiB($available), formatXiB($availableCorrected));

    add2hash_($o, { compssListLevel => 5 }) if !$::auto_install;

    #- avoid destroying user selection of packages but only
    #- for expert, as they may have done individual selection before.
    if ($first_time || !$::expert) {
	exists $o->{compssListLevel}
	  and pkgs::setSelectedFromCompssList($packages, $o->{compssUsersChoice}, $o->{compssListLevel}, $availableCorrected);
    }
    $availableCorrected;
}

sub beforeInstallPackages {
    my ($o) = @_;

    #- save these files in case of upgrade failure.
    if ($o->{isUpgrade}) {
	foreach (@filesToSaveForUpgrade) {
	    unlink "$o->{prefix}/$_.mdkgisave";
	    if (-e "$o->{prefix}/$_") {
		eval { cp_af("$o->{prefix}/$_", "$o->{prefix}/$_.mdkgisave") };
	    }
	}
	foreach (@filesNewerToUseAfterUpgrade) {
	    unlink "$o->{prefix}/$_.rpmnew";
	}
    }

    #- some packages need such files for proper installation.
    install_any::write_fstab($o);

    require network;
    network::add2hosts("$o->{prefix}/etc/hosts", "localhost.localdomain", "127.0.0.1");

    log::l("setting excludedocs to $o->{excludedocs}");
    substInFile { s/%_excludedocs.*//; $_ .= "%_excludedocs yes\n" if eof && $o->{excludedocs} } "$o->{prefix}/etc/rpm/macros";

    #- add oem lilo theme and background if the files exists.
    mkdir "$o->{prefix}$_" foreach qw(/boot /usr /usr/share /usr/share/mdk);
    install_any::getAndSaveFile("Mandrake/base/oem-message-graphic", "$o->{prefix}/boot/oem-message-graphic");
    install_any::getAndSaveFile("Mandrake/base/oem-background.png", "$o->{prefix}/usr/share/mdk/oem-background.png");
}

sub pkg_install {
    my ($o, @l) = @_;
    log::l("selecting packages");
    require pkgs;
    if ($::testing) {
	log::l("selecting package \"$_\"") foreach @l;
    } else {
	$o->{packages}{rpmdb} ||= pkgs::rpmDbOpen($o->{prefix});
	pkgs::selectPackage($o->{packages}, pkgs::packageByName($o->{packages}, $_) || die "$_ rpm not found") foreach @l;
    }
    my @toInstall = pkgs::packagesToInstall($o->{packages});
    if (@toInstall) {
	log::l("installing packages");
	$o->installPackages;
    } else {
	log::l("all packages selected are already installed, nothing to do")
    }
}

sub pkg_install_if_requires_satisfied {
    my ($o, @l) = @_;
    require pkgs;
    $o->{packages}{rpmdb} ||= pkgs::rpmDbOpen($o->{prefix});
    foreach (@l) {
	my %newSelection;
	my $pkg = pkgs::packageByName($o->{packages}, $_) || die "$_ rpm not found";
	pkgs::selectPackage($o->{packages}, $pkg, 0, \%newSelection);
	if (scalar(keys %newSelection) == 1) {
	    pkgs::selectPackage($o->{packages}, $pkg);
	} else {
	    log::l("pkg_install_if_requires_satisfied: not selecting $_ because of ", join(", ", keys %newSelection));
	}
    }
    $o->installPackages;
}

sub installPackages($$) { #- complete REWORK, TODO and TOCHECK!
    my ($o) = @_;
    my $packages = $o->{packages};

    #- this method is always called, go here to close still opened rpm db.
    delete $packages->{rpmdb};

    if (%{$packages->{state}{ask_remove} || {}}) {
	log::l("removing : ", join ', ', keys %{$packages->{state}{ask_remove}});
	pkgs::remove($o->{prefix}, [ keys %{$packages->{state}{ask_remove}} ]);
    }

    #- small transaction will be built based on this selection and depslist.
    my @toInstall = pkgs::packagesToInstall($packages);

    my $time = time;
    $ENV{DURING_INSTALL} = 1;
    pkgs::install($o->{prefix}, $o->{isUpgrade}, \@toInstall, $packages);
    delete $ENV{DURING_INSTALL};
    run_program::rooted_or_die($o->{prefix}, 'ldconfig') unless $::g_auto_install;
    log::l("Install took: ", formatTimeRaw(time - $time));
    install_any::log_sizes($o);
    scalar(@toInstall); #- return number of packages installed.
}

sub afterInstallPackages($) {
    my ($o) = @_;

    return if $::g_auto_install;

    die _("Some important packages didn't get installed properly.
Either your cdrom drive or your cdrom is defective.
Check the cdrom on an installed computer using \"rpm -qpl Mandrake/RPMS/*.rpm\"
") if grep { m|read failed: Input/output error| } cat_("$o->{prefix}/root/drakx/install.log");

    if (arch() !~ /^sparc/) { #- TODO restore it as may be needed for sparc
	-x "$o->{prefix}/usr/bin/dumpkeys" or $::testing or die 
"Some important packages didn't get installed properly.

Please switch to console 2 (using ctrl-alt-f2)
and look at the log file /tmp/ddebug.log

Consoles 1,3,4,7 may also contain interesting information";
    }

    #-  why not? cuz weather is nice today :-) [pixel]
    common::sync(); common::sync();

    my $have_devfsd = do {
	my $p = pkgs::packageByName($o->{packages}, 'devfsd');
	$p && $p->flag_installed
    };
    if ($have_devfsd) {
        require bootloader;
	bootloader::may_append($o->{bootloader}, devfs => 'mount');
    }

    #- generate /etc/lvmtab needed for rc.sysinit
    run_program::rooted($o->{prefix}, 'vgscan') if -e '/etc/lvmtab';

    #- configure PCMCIA services if needed.
    modules::write_pcmcia($o->{prefix}, $o->{pcmcia});

    #- for mandrake_firstime
    touch "$o->{prefix}/var/lock/TMP_1ST";

    any::config_dvd($o->{prefix}, $have_devfsd);
    any::config_mtools($o->{prefix});

    any::writeandclean_ldsoconf($o->{prefix});

    #- make sure wins is disabled in /etc/nsswitch.conf
    #- else if eth0 is not existing, glibc segfaults.
    substInFile { s/\s*wins// if /^\s*hosts\s*:/ } "$o->{prefix}/etc/nsswitch.conf";

    #- make sure some services have been enabled (or a catastrophic restart will occur).
    #- these are normally base package post install scripts or important services to start.
    run_program::rooted($o->{prefix}, "chkconfig", "--add", $_) foreach
			qw(random netfs network rawdevices sound kheader usb keytable syslog crond portmap);

    if ($o->{mouse}{device} =~ /ttyS/) {
	log::l("disabling gpm for serial mice (doesn't get along nicely with X)");
	run_program::rooted($o->{prefix}, "chkconfig", "--del", "gpm") 
    }

    #- call update-menus at the end of package installation
    run_program::rooted($o->{prefix}, "update-menus");

    if ($o->{pcmcia}) {
	substInFile { s/.*(TaskBarShowAPMStatus).*/$1=1/ } "$o->{prefix}/usr/lib/X11/icewm/preferences";
	eval { cp_af("$o->{prefix}/usr/share/applnk/System/kapm.kdelnk",
		     "$o->{prefix}/etc/skel/Desktop/Autostart/kapm.kdelnk") };
    }

    $o->install_urpmi;

    if ($o->{lang} =~ /^(zh_TW|th|vi|be|bg)/) {
	#- skip since we don't have the right font (it badly fails at least for zh_TW)
    } elsif (my $LANG = lang::lang2LANG($o->{lang})) {
	my $kdmrc = "$o->{prefix}/usr/share/config/kdm/kdmrc";

	my $kde_charset = lang::charset2kde_charset(lang::lang2charset($o->{lang}));
	my $welcome = c::to_utf8(_("Welcome to %s", '%n'));
	substInFile { 
	    s/^(GreetString)=.*/$1=$welcome/;
	    s/^(Language)=.*/$1=$LANG/;
	    if (!member($kde_charset, 'iso8859-1', 'iso8859-15')) { 
		#- don't keep the default for those
		s/^(StdFont)=.*/$1=*,12,5,$kde_charset,50,0/;
		s/^(FailFont)=.*/$1=*,12,5,$kde_charset,75,0/;
		s/^(GreetFont)=.*/$1=*,24,5,$kde_charset,50,0/;
	    }
	} "$o->{prefix}/usr/share/config/kdm/kdmrc";

    }
    install_any::disable_user_view($o->{prefix}) if $o->{security} >= 3 || $o->{authentication}{NIS};
    run_program::rooted($o->{prefix}, "kdeDesktopCleanup");

    foreach (list_skels($o->{prefix}, '.kde/share/config/kfmrc')) {
	my $found;
	substInFile {
	    $found ||= /KFM Misc Defaults/;
	    $_ .= 
"[KFM Misc Defaults]
GridWidth=85
GridHeight=70
" if eof && !$found;
	} $_ 
    }

    #- move some file after an upgrade that may be seriously annoying.
    #- and rename saved files to .mdkgiorig.
    if ($o->{isUpgrade}) {
	my $pkg = pkgs::packageByName($o->{packages}, 'rpm');
	$pkg && ($pkg->flag_selected || $pkg->flag_installed) && $pkg->compare(">= 4.0") and pkgs::cleanOldRpmDb($o->{prefix});

	log::l("moving previous desktop files that have been updated to Trash of each user");
	install_any::kdemove_desktop_file($o->{prefix});

	foreach (@filesToSaveForUpgrade) {
	    renamef("$o->{prefix}/$_.mdkgisave", "$o->{prefix}/$_.mdkgiorig")
	      if -e "$o->{prefix}$_.mdkgisave";
	}

	foreach (@filesNewerToUseAfterUpgrade) {
	    if (-e "$o->{prefix}/$_.rpmnew" && -e "$o->{prefix}/$_") {
		renamef("$o->{prefix}/$_", "$o->{prefix}/$_.mdkgiorig");
		renamef("$o->{prefix}/$_.rpmnew", "$o->{prefix}/$_");
	    }
	}
    }

    #- update oem lilo image if it exists.
    if (-s "/boot/oem-message-graphic") {
	rename "$o->{prefix}/boot/message-graphic", "$o->{prefix}/boot/message-graphic.mdkgiorig";
	rename "$o->{prefix}/boot/oem-message-graphic", "$o->{prefix}/boot/message-graphic";
    }

    #- update background image if it exists for common environment.
    if (-s -s "/usr/share/mdk/oem-background.png") {
	#- KDE desktop background.
	if (-e "$o->{prefix}/usr/share/config/kdesktoprc") {
	    update_gnomekderc("$o->{prefix}/usr/share/config/kdesktoprc", "Desktop0",
			      MultiWallpaperMode => "NoMulti",
			      Wallpaper => "/usr/share/mdk/oem-background.png",
			      WallpaperMode => "Scaled",
			     );
	}
	#- GNOME desktop background.
	if (-e "$o->{prefix}/etc/gnome/config/Background") {
	    update_gnomekderc("$o->{prefix}/etc/gnome/config/Background", "Default",
			      wallpaper => "/usr/share/mdk/oem-background.png",
			      wallpaperAlign => "3",
			     );
	}
    }

    if ($o->{blank} || $o->{updatemodules}) {
	my @l = detect_devices::floppies_dev();

	foreach (qw(blank updatemodules)) {
	    $o->{$_} eq "1" and $o->{$_} = $l[0] || die _("No floppy drive available");
	}

	$o->{blank} and $o->copyKernelFromFloppy();
	$o->{updatemodules} and $o->updateModulesFromFloppy();
    }
}

sub copyKernelFromFloppy {
    my ($o) = @_;
    return if $::testing || !$o->{blank};

    fs::mount($o->{blank}, "/floppy", "vfat", 0);
    eval { cp_af("/floppy/vmlinuz", "$o->{prefix}/boot/vmlinuz-default") };
    if ($@) {
	log::l("copying of /floppy/vmlinuz from blank modified disk failed: $@");
    }
    fs::umount("/floppy");
}

sub install_urpmi {
    my ($o) = @_;

    my $pkg = pkgs::packageByName($o->{packages}, 'urpmi');
    if ($pkg && ($pkg->flag_selected || $pkg->flag_installed)) {
	install_any::install_urpmi($o->{prefix}, 
				   $::oem ? 'cdrom' : $o->{method}, #- HACK
				   $o->{packages},
				   $o->{packages}{mediums});
	pkgs::saveCompssUsers($o->{prefix}, $o->{packages}, $o->{compssUsers}, $o->{compssUsersSorted});
    }


}

sub updateModulesFromFloppy {
    my ($o) = @_;
    return if $::testing || !$o->{updatemodules};

    fs::mount($o->{updatemodules}, "/floppy", "ext2", 0);
    foreach (glob_("$o->{prefix}/lib/modules/*")) {
	my ($kernelVersion) = m,lib/modules/(\S*),;
	log::l("examining updated modules for kernel $kernelVersion");
	if (-d "/floppy/$kernelVersion") {
	    my @src_files = glob_("/floppy/$kernelVersion/*");
	    my @dest_files = map { chomp_($_) } run_program::rooted_get_stdout($o->{prefix}, 'find', '/lib/modules');
	    foreach my $s (@src_files) {
		log::l("found updatable module $s");
		my ($sfile, $sext) = $s =~ /([^\/\.]*\.o)(?:\.gz|\.bz2)?$/;
		my $qsfile = quotemeta $sfile;
		my $qsext = quotemeta $sext;
		foreach my $target (@dest_files) {
		    $target =~ /$qsfile/ or next;
		    eval { cp_af($s, $target) };
		    if ($@) {
			log::l("updating module $target by $s failed: $@");
		    } else {
			log::l("updating module $target by $s");
		    }
		    if ($target !~ /$qsfile$qsext$/) {
			#- extension differ, first rename target file correctly,
			#- then uncompress source file, then compress it as expected.
			my ($basetarget, $text) = $target =~ /(.*?)(\.gz|\.bz2)$/;
			rename $target, "$basetarget$sext";
			$sext eq '.gz' and run_program::run("gzip", "-d", "$basetarget$sext");
			$sext eq '.bz2' and run_program::run("bzip2", "-d", "$basetarget$sext");
			$text eq '.gz' and run_program::run("gzip", $basetarget);
			$text eq '.bz2' and run_program::run("bzip2", $basetarget);
		    }
		}
	    }
	}
    }
    fs::umount("/floppy");
}

#------------------------------------------------------------------------------
sub selectMouse($) {
    my ($o) = @_;
}

#------------------------------------------------------------------------------
sub configureNetwork {
    my ($o) = @_;
    require network;
    network::configureNetwork2($o, $o->{prefix}, $o->{netc}, $o->{intf});
    if ($o->{method} =~ /ftp|http|nfs/) {
	$o->{netcnx}{type} = 'lan';
	foreach ("up", "down") {
	    my $f = "$o->{prefix}/etc/sysconfig/network-scripts/net_cnx_$_";
	    output $f, "\nif$_ eth0\n";
	    chmod 0755, $f;
	}
	output "$o->{prefix}/etc/sysconfig/network-scripts/net_cnx_pg", "\n/usr/sbin/drakconnet\n";
    }
}

#------------------------------------------------------------------------------
sub installCrypto {
    my ($o) = @_;
    my $u = $o->{crypto} or return; $u->{mirror} && $u->{packages} or return;

    upNetwork($o);
    require crypto;
    my @crypto_packages = crypto::getPackages($o->{prefix}, $o->{packages}, $u->{mirror});
    $o->pkg_install(@{$u->{packages}});
}

sub installUpdates {
    my ($o) = @_;
    my $u = $o->{updates} or return; $u->{updates} or return;

    upNetwork($o);
    require crypto;
    crypto::getPackages($o->{prefix}, $o->{packages}, $u->{mirror}) and
	$o->pkg_install(@{$u->{packages} || []});

    #- re-install urpmi with update security medium.
    $o->install_urpmi;
}

sub summary {
    my ($o) = @_;
    configureTimezone($o);
    configurePrinter($o) if $o->{printer};
}

#------------------------------------------------------------------------------
sub configureTimezone {
    my ($o) = @_;
    install_any::preConfigureTimezone($o);

    $o->pkg_install('ntp') if $o->{timezone}{ntp};

    require timezone;
    timezone::write($o->{prefix}, $o->{timezone});
}

#------------------------------------------------------------------------------
sub configureServices {
    my ($o) = @_;
    if ($o->{services}) {
	require services;
	services::doit($o, $o->{services}, $o->{prefix});
    }
}
#------------------------------------------------------------------------------
sub configurePrinter {
    my($o) = @_;
    $o->do_pkgs->install('foomatic', 'printer-utils','printer-testpages',
			 if_($o->do_pkgs->is_installed('gimp'), 'gimpprint'));
    
    require printer;
    eval { add2hash($o->{printer} ||= {}, printer::getinfo($o->{prefix})) }; #- get existing configuration.

    require printerdrake;
    printerdrake::install_spooler($o->{printer}, $o); #- not interactive...

    foreach (values %{$o->{printer}{configured} || {}}) {
	log::l("configuring printer queue " . $_->{queuedata}{queue} || $_->{QUEUE});
	#- when copy is so adule (sorry french taste :-)
	#- and when there are some configuration in one place and in another place...
	$o->{printer}{currentqueue} = {};
	printer::copy_printer_params($_->{queuedata}, $o->{printer}{currentqueue});
	printer::copy_printer_params($_, $o->{printer});
	#- setup all configured queues, which is not the case interactively where
	#- only the working queue is setup on configuration.
	printer::configure_queue($o->{printer});
    }
}

#------------------------------------------------------------------------------
sub setRootPassword {
    my ($o) = @_;
    my $p = $o->{prefix};
    my $u = $o->{superuser} ||= {};
    $o->{superuser}{name} = 'root';
    any::write_passwd_user($o->{prefix}, $o->{superuser}, $o->{authentication}{md5});
    delete $o->{superuser}{name};
}

#------------------------------------------------------------------------------

sub addUser {
    my ($o) = @_;
    my $p = $o->{prefix};
    my $users = $o->{users} ||= [];

    my (%uids, %gids); 
    foreach (glob_("$p/home")) { my ($u, $g) = (stat($_))[4,5]; $uids{$u} = 1; $gids{$g} = 1 }

    foreach (@$users) {
	$_->{home} ||= "/home/$_->{name}";

	my $u = $_->{uid} || ($_->{oldu} = (stat("$p$_->{home}"))[4]);
	my $g = $_->{gid} || ($_->{oldg} = (stat("$p$_->{home}"))[5]);
	#- search for available uid above 501 else initscripts may fail to change language for KDE.
	if (!$u || getpwuid($u)) { for ($u = 501; getpwuid($u) || $uids{$u}; $u++) {} }
	if (!$g)                 { for ($g = 501; getgrgid($g) || $gids{$g}; $g++) {} }
	
	$_->{uid} = $u; $uids{$u} = 1;
	$_->{gid} = $g; $gids{$g} = 1;
    }

    any::write_passwd_user($p, $_, $o->{authentication}{md5}) foreach @$users;

    local *F;
    open F, ">> $p/etc/group" or die "can't append to group file: $!";
    print F "$_->{name}:x:$_->{gid}:\n" foreach grep { ! getgrgid($_->{gid}) } @$users;

    foreach my $u (@$users) {
	if (! -d "$p$u->{home}") {
	    my $mode = $o->{security} < 2 ? 0755 : 0750;
	    eval { cp_af("$p/etc/skel", "$p$u->{home}") };
	    if ($@) {
		log::l("copying of skel failed: $@"); mkdir("$p$u->{home}", $mode); 
	    } else {
		chmod $mode, "$p$u->{home}";
	    }
	}
	require commands;
	eval { commands::chown_("-r", "$u->{uid}.$u->{gid}", "$p$u->{home}") }
	    if $u->{uid} != $u->{oldu} || $u->{gid} != $u->{oldg};
    }
    any::addUsers($p, $users);

    $o->pkg_install("autologin") if $o->{autologin};
    any::set_autologin($p, $o->{autologin}, $o->{desktop});

    install_any::setAuthentication($o);

    install_any::disable_user_view($p) if @$users == ();
}

#------------------------------------------------------------------------------
sub createBootdisk($) {
    my ($o) = @_;
    my $dev = $o->{mkbootdisk} or return;

    my @l = detect_devices::floppies_dev();

    $dev = shift @l || die _("No floppy drive available")
      if $dev eq "1"; #- special case meaning autochoose

    return if $::testing;

    require bootloader;
    bootloader::mkbootdisk(install_any::kernelVersion($o), $dev, $o->{bootloader}{perImageAppend});
    $o->{mkbootdisk} = $dev;
}

#------------------------------------------------------------------------------
sub readBootloaderConfigBeforeInstall {
    my ($o) = @_;
    my ($image, $v);

    require bootloader;
    add2hash($o->{bootloader} ||= {}, bootloader::read());

    #- since kernel or kernel-smp may not be upgraded, it should be checked
    #- if there is a need to update existing lilo.conf entries by following
    #- symlinks before kernel or other packages get installed.
    #- update everything that could be a filename (for following symlink).
    foreach my $e (@{$o->{bootloader}{entries}}) {
	while (my $v = readlink "$o->{prefix}/$e->{kernel_or_dev}") {
	    $v = "/boot/$v" if $v !~ m|^/|; -e "$o->{prefix}$v" or last;
	    log::l("renaming /boot/$e->{kernel_or_dev} entry by $v");
	    $e->{kernel_or_dev} = $v;
	}
	while (my $v = readlink "$o->{prefix}/$e->{initrd}") {
	    $v = "/boot/$v" if $v !~ m|^/|; -e "$o->{prefix}$v" or last;
	    log::l("renaming /boot/$e->{initrd} entry by $v");
	    $e->{initrd} = $v;
	}
    }
}

sub setupBootloaderBefore {
    my ($o) = @_;

    require bootloader;
    if (my @l = (grep { $_->{bus} eq 'ide' } detect_devices::burners(), detect_devices::raw_zips())) {
	bootloader::add_append($o->{bootloader}, $_->{device}, 'ide-scsi') foreach @l;
    }
    if ($o->{miscellaneous}{HDPARM}) {
	bootloader::add_append($o->{bootloader}, $_, 'autotune') foreach grep { /ide.*/ } all("/proc/ide");
    }
    if (cat_("/proc/cmdline") =~ /mem=nopentium/) {
	bootloader::add_append($o->{bootloader}, 'mem', 'nopentium');
    }
    if (cat_("/proc/cmdline") =~ /\b(pci)=(\S+)/) {
	bootloader::add_append($o->{bootloader}, $1, $2);
    }

    if (arch() =~ /alpha/) {
	if (my $dev = fsedit::get_root($o->{fstab})) {
	    $o->{bootloader}{boot} ||= "/dev/$dev->{rootDevice}";
	    $o->{bootloader}{root} ||= "/dev/$dev->{device}";
	    $o->{bootloader}{part_nb} ||= first($dev->{device} =~ /(\d+)/);
	}
    } else {
	#- check for valid fb mode to enable a default boot with frame buffer.
	my $vga = $o->{allowFB} && (!detect_devices::matching_desc('3D Rage LT') &&
				    !detect_devices::matching_desc('Rage Mobility [PL]') &&
				    !detect_devices::matching_desc('i740') &&
				    !detect_devices::matching_desc('Matrox') &&
				    !detect_devices::matching_desc('Tseng.*ET6\d00') &&
				    !detect_devices::matching_desc('SiS.*SG86C2.5') &&
				    !detect_devices::matching_desc('SiS.*559[78]') &&
				    !detect_devices::matching_desc('SiS.*300') &&
				    !detect_devices::matching_desc('SiS.*540') &&
				    !detect_devices::matching_desc('SiS.*6C?326') &&
				    !detect_devices::matching_desc('SiS.*6C?236') &&
				    !detect_devices::matching_desc('Voodoo [35]|Voodoo Banshee') && #- 3d acceleration seems to bug in fb mode
				    !detect_devices::matching_desc('8281[05].* CGC') #- i810 now have FB support during install but we disable it afterwards
				   );
	my $force_vga = $o->{allowFB} && (detect_devices::matching_desc('SiS.*630') || #- SiS 630 need frame buffer.
					  detect_devices::matching_desc('GeForce.*Integrated') #- needed for fbdev driver (hack).
					 );

	#- propose the default fb mode for kernel fb, if aurora or bootsplash is installed.
	my $need_fb = grep {
	    my $p = pkgs::packageByName($o->{packages}, $_);
	    $p && $p->flag_installed;
	} 'Aurora', 'bootsplash';
        bootloader::suggest($o->{bootloader}, $o->{all_hds}{hds}, $o->{fstab},
			    vga_fb => ($force_vga || $vga && $need_fb) && $o->{vga}, 
			    quiet => $o->{meta_class} ne 'server');
	bootloader::suggest_floppy($o->{bootloader}) if $o->{security} <= 3 && arch() !~ /ppc/;

	$o->{bootloader}{keytable} ||= keyboard::keyboard2kmap($o->{keyboard});
    }
}

sub setupBootloader($) {
    my ($o) = @_;
    return if $::g_auto_install;

    if (arch() =~ /alpha/) {
	return if $::testing;
	my $b = $o->{bootloader};
	$b->{boot} or $o->ask_warn('', "Can't install aboot, not a bsd disklabel"), return;
		
	run_program::rooted($o->{prefix}, "swriteboot", $b->{boot}, "/boot/bootlx") or do {
	    cdie "swriteboot failed";
	    run_program::rooted($o->{prefix}, "swriteboot", "-f1", $b->{boot}, "/boot/bootlx");
	};
	run_program::rooted($o->{prefix}, "abootconf", $b->{boot}, $b->{part_nb});
 
        modules::load('loop');
	output "$o->{prefix}/etc/aboot.conf", 
	map_index { -e "$o->{prefix}/boot/initrd-$_->[1]" ? 
			    "$::i:$b->{part_nb}$_->[0] root=$b->{root} initrd=/boot/initrd-$_->[1] $b->{perImageAppend}\n" :
			    "$::i:$b->{part_nb}$_->[0] root=$b->{root} $b->{perImageAppend}\n" }
	map { run_program::rooted($o->{prefix}, "mkinitrd", "-f", "/boot/initrd-$_->[1]", "--ifneeded", $_->[1]);
	  $_ } grep { $_->[0] && $_->[1] }
	map { [ m|$o->{prefix}(/boot/vmlinux-(.*))| ] } glob_("$o->{prefix}/boot/vmlinux-*");
#	output "$o->{prefix}/etc/aboot.conf", 
#	  map_index { "$::i:$b->{part_nb}$_ root=$b->{root} $b->{perImageAppend}\n" }
#	    map { /$o->{prefix}(.*)/ } eval { glob_("$o->{prefix}/boot/vmlinux*") };
    } else {
	require bootloader;
	bootloader::install($o->{bootloader}, $o->{fstab}, $o->{all_hds}{hds});
    }
}

#------------------------------------------------------------------------------
sub configureXBefore {
    my ($o) = @_;

    require Xconfig::default;
    $o->{raw_X} = Xconfig::default::configure($o->{keyboard}, $o->{mouse});

    #- keep this here if the package has to be updated.
    $o->pkg_install("XFree86");
}
sub configureX {
    my ($o) = @_;
    $o->configureXBefore;

    require Xconfig::main;
    Xconfig::main::configure_everything_auto_install($o->{raw_X}, $o->do_pkgs, $o->{X},
			  { allowFB          => $o->{allowFB},
			    allowNVIDIA_rpms => install_any::allowNVIDIA_rpms($o->{packages}),
			  });
    $o->configureXAfter;
}
sub configureXAfter {
    my ($o) = @_;
    if ($o->{X}{bios_vga_mode}) {
	install_any::setupFB($o, $o->{X}{bios_vga_mode}) or do {
	    log::l("disabling automatic start-up of X11 if any as setup framebuffer failed");
	    any::runlevel($o->{prefix}, 3); #- disable automatic start-up of X11 on error.
	};
    }
    if ($o->{X}{default_depth} >= 16 && $o->{X}{resolution_wanted} >= 1024) {
	log::l("setting large icon style for kde");
	install_any::kderc_largedisplay($o->{prefix});
    }
}

#------------------------------------------------------------------------------
sub miscellaneousBefore {
    my ($o) = @_;

    my %s = getVarsFromSh("$o->{prefix}/etc/sysconfig/system");
    $o->{miscellaneous}{HDPARM} = $s{HDPARM} if exists $s{HDPARM};
    $o->{security} ||= any::get_secure_level() || ($o->{meta_class} =~ /server|firewall/ ? 3 : 2);

    log::l("security $o->{security}");

    add2hash_($o->{miscellaneous} ||= {}, { numlock => !detect_devices::isLaptop() });
}
sub miscellaneous {
    my ($o) = @_;
    #- keep some given parameters
    #-TODO
}
sub miscellaneousAfter {
    my ($o) = @_;
    add2hash_ $o, { useSupermount => 1 && $o->{security} < 4 && arch() !~ /sparc/ && !$::corporate };

    $ENV{SECURE_LEVEL} = $o->{security}; #- deprecated with chkconfig 1.3.4-2mdk, uses /etc/sysconfig/msec

    addToBeDone {
	mkdir_p("$o->{prefix}/etc/security/msec");
	symlink "server.$o->{security}", "$o->{prefix}/etc/security/msec/server" if $o->{security} > 3;
	setVarsInSh("$o->{prefix}/etc/sysconfig/msec", { SECURE_LEVEL => $o->{security} });
    } 'formatPartitions';

    addToBeDone {
	setVarsInSh("$o->{prefix}/etc/sysconfig/system", { 
            CLASS => $::expert && 'expert' || 'beginner',
            SECURITY => $o->{security},
	    META_CLASS => $o->{meta_class} || 'PowerPack',
        });
	substInFile { s/KEYBOARD_AT_BOOT=.*/KEYBOARD_AT_BOOT=yes/ } "$o->{prefix}/etc/sysconfig/usb" if detect_devices::usbKeyboards();

    } 'installPackages';
}

#------------------------------------------------------------------------------
sub exitInstall { 
    my ($o) = @_;
    eval { 
	my $report = '/root/drakx/report.bug';
	unlink "$::prefix$report", "$::prefix$report.gz";
	output "$::prefix$report", install_any::report_bug($o->{prefix});
	run_program::rooted($::prefix, 'gzip', $report);
    };
    install_any::getAndSaveAutoInstallFloppy($o, 1, "$o->{prefix}/root/drakx/replay_install.img");
    eval { output "$o->{prefix}/root/drakx/README", "This directory contains several installation-related files,
mostly log files (very useful if you ever report a bug!).

Beware that some Mandrake tools rely on the contents of some
of these files... so remove any file from here at your own
risk!
" };
    install_any::unlockCdrom;
    install_any::log_sizes($o);
}

#------------------------------------------------------------------------------
sub hasNetwork {
    my ($o) = @_;
    $o->{netcnx}{type} && $o->{netc}{NETWORKING} ne 'no' and return 1;
    log::l("no network seems to be configured for internet ($o->{netcnx}{type},$o->{netc}{NETWORKING})");
    0;
}

#------------------------------------------------------------------------------
sub upNetwork {
    my ($o, $pppAvoided) = @_;

    #- do not destroy this file if prefix is '' or even '/' (could it happens ?).
    if (length($o->{prefix}) > 1) {
	symlinkf("$o->{prefix}/etc/$_", "/etc/$_") foreach (qw(resolv.conf protocols services));
    }
    member($o->{method}, qw(ftp http nfs)) and return 1;
    modules::write_conf($o->{prefix});
    if (hasNetwork($o)) {
	if ($o->{netcnx}{type} =~ /adsl|lan|cable/) {
	    require network::netconnect;
	    network::netconnect::start_internet($o);
	    return 1;
	} elsif (!$pppAvoided) {
	    eval { modules::load(qw(serial ppp bsd_comp ppp_deflate)) };
	    run_program::rooted($o->{prefix}, "/etc/rc.d/init.d/syslog", "start");
	    require network::netconnect;
	    network::netconnect::start_internet($o);
	    return 1;
	}
    }
    $::testing;
}

#------------------------------------------------------------------------------
sub downNetwork {
    my ($o, $costlyOnly) = @_;

    $o->{method} eq "ftp" || $o->{method} eq "http" || $o->{method} eq "nfs" and return 1;
    modules::write_conf($o->{prefix});
    if (hasNetwork($o)) {
	if (!$costlyOnly) {
	    require network::netconnect;
	    network::netconnect::stop_internet($o);
	    return 1;
	} elsif ($o->{netc}{type} !~ /adsl|lan|cable/) {
	    require network::netconnect;
	    network::netconnect::stop_internet($o);
	    run_program::rooted($o->{prefix}, "/etc/rc.d/init.d/syslog", "stop");
	    eval { modules::unload(qw(ppp_deflate bsd_comp ppp serial)) };
	    return 1;
	}
    }
    $::testing;
}

#------------------------------------------------------------------------------
sub cleanIfFailedUpgrade($) {
    my ($o) = @_;

    #- if an upgrade has failed, there should be .mdkgisave files around.
    if ($o->{isUpgrade}) {
	foreach (@filesToSaveForUpgrade) {
	    if (-e "$o->{prefix}/$_" && -e "$o->{prefix}/$_.mdkgisave") {
		rename "$o->{prefix}/$_", "$o->{prefix}/$_.mdkginew"; #- keep new files around in case !
		rename "$o->{prefix}/$_.mdkgisave", "$o->{prefix}/$_";
	    }
	}
    }
}


1;
id='n5678' href='#n5678'>5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 6344 6345 6346 6347 6348 6349 6350 6351 6352 6353 6354 6355 6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367 6368 6369 6370 6371 6372 6373 6374 6375 6376 6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392 6393 6394 6395 6396 6397 6398 6399 6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6419 6420 6421 6422 6423 6424 6425 6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437 6438 6439 6440 6441 6442 6443 6444 6445 6446 6447 6448 6449 6450 6451 6452 6453 6454 6455 6456 6457 6458 6459 6460 6461 6462 6463 6464 6465 6466 6467 6468 6469 6470 6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 6481 6482 6483 6484 6485 6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 6498 6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515 6516 6517 6518 6519 6520 6521 6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534 6535 6536 6537 6538 6539 6540 6541 6542 6543 6544 6545 6546 6547 6548 6549 6550 6551 6552 6553 6554 6555 6556 6557 6558 6559 6560 6561 6562 6563 6564 6565 6566 6567 6568 6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 6587 6588 6589 6590 6591 6592 6593 6594 6595 6596 6597 6598 6599 6600 6601 6602 6603 6604 6605 6606 6607 6608 6609 6610 6611 6612 6613 6614 6615 6616 6617 6618 6619 6620 6621 6622 6623 6624 6625 6626 6627 6628 6629 6630 6631 6632 6633 6634 6635 6636 6637 6638 6639 6640 6641 6642 6643 6644 6645 6646 6647 6648 6649 6650 6651 6652 6653 6654 6655 6656 6657 6658 6659 6660 6661 6662 6663 6664 6665 6666 6667 6668 6669 6670 6671 6672 6673 6674 6675 6676 6677 6678 6679 6680 6681 6682 6683 6684 6685 6686 6687 6688 6689 6690 6691 6692 6693 6694 6695 6696 6697 6698 6699 6700 6701 6702 6703 6704 6705 6706 6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 6718 6719 6720 6721 6722 6723 6724 6725 6726 6727 6728 6729 6730 6731 6732 6733 6734 6735 6736 6737 6738 6739 6740 6741 6742 6743 6744 6745 6746 6747 6748 6749 6750 6751 6752 6753 6754 6755 6756 6757 6758 6759 6760 6761 6762 6763 6764 6765 6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 6792 6793 6794 6795 6796 6797 6798 6799 6800 6801 6802 6803 6804 6805 6806 6807 6808 6809 6810 6811 6812 6813 6814 6815 6816 6817 6818 6819 6820 6821 6822 6823 6824 6825 6826 6827 6828 6829 6830 6831 6832 6833 6834 6835 6836 6837 6838 6839 6840 6841 6842 6843 6844 6845 6846 6847 6848 6849 6850 6851 6852 6853 6854 6855 6856 6857 6858 6859 6860 6861 6862 6863 6864 6865 6866 6867 6868 6869 6870 6871 6872 6873 6874 6875 6876 6877 6878 6879 6880 6881 6882 6883 6884 6885 6886 6887 6888 6889 6890 6891 6892 6893 6894 6895 6896 6897 6898 6899 6900 6901 6902 6903 6904 6905 6906 6907 6908 6909 6910 6911 6912 6913 6914 6915 6916 6917 6918 6919 6920 6921 6922 6923 6924 6925 6926 6927 6928 6929 6930 6931 6932 6933 6934 6935 6936 6937 6938 6939 6940 6941 6942 6943 6944 6945 6946 6947 6948 6949 6950 6951 6952 6953 6954 6955 6956 6957 6958 6959 6960 6961 6962 6963 6964 6965 6966 6967 6968 6969 6970 6971 6972 6973 6974 6975 6976 6977 6978 6979 6980 6981 6982 6983 6984 6985 6986 6987 6988 6989 6990 6991 6992 6993 6994 6995 6996 6997 6998 6999 7000 7001 7002 7003 7004 7005 7006 7007 7008 7009 7010 7011 7012 7013 7014 7015 7016 7017 7018 7019 7020 7021 7022 7023 7024 7025 7026 7027 7028 7029 7030 7031 7032 7033 7034 7035 7036 7037 7038 7039 7040 7041 7042 7043 7044 7045 7046 7047 7048 7049 7050 7051 7052 7053 7054 7055 7056 7057 7058 7059 7060 7061 7062 7063 7064 7065 7066 7067 7068 7069 7070 7071 7072 7073 7074 7075 7076 7077 7078 7079 7080 7081 7082 7083 7084 7085 7086 7087 7088 7089 7090 7091 7092 7093 7094 7095 7096 7097 7098 7099 7100 7101 7102 7103 7104 7105 7106 7107 7108 7109 7110 7111 7112 7113 7114 7115 7116 7117 7118 7119 7120 7121 7122 7123 7124 7125 7126 7127 7128 7129 7130 7131 7132 7133 7134 7135 7136 7137 7138 7139 7140 7141 7142 7143 7144 7145 7146 7147 7148 7149 7150 7151 7152 7153 7154 7155 7156 7157 7158 7159 7160 7161 7162 7163 7164 7165 7166 7167 7168 7169 7170 7171 7172 7173 7174 7175 7176 7177 7178 7179 7180 7181 7182 7183 7184 7185 7186 7187 7188 7189 7190 7191 7192 7193 7194 7195 7196 7197 7198 7199 7200 7201 7202 7203 7204 7205 7206 7207 7208 7209 7210 7211 7212 7213 7214 7215 7216 7217 7218 7219 7220 7221 7222 7223 7224 7225 7226 7227 7228 7229 7230 7231 7232 7233 7234 7235 7236 7237 7238 7239 7240 7241 7242 7243 7244 7245 7246 7247 7248 7249 7250 7251 7252 7253 7254 7255 7256 7257 7258 7259 7260 7261 7262 7263 7264 7265 7266 7267 7268 7269 7270 7271 7272 7273 7274 7275 7276 7277 7278 7279 7280 7281 7282 7283 7284 7285 7286 7287 7288 7289 7290 7291 7292 7293 7294 7295 7296 7297 7298 7299 7300 7301 7302 7303 7304 7305 7306 7307 7308 7309 7310 7311 7312 7313 7314 7315 7316 7317 7318 7319 7320 7321 7322 7323 7324 7325 7326 7327 7328 7329 7330 7331 7332 7333 7334 7335 7336 7337 7338 7339 7340 7341 7342 7343 7344 7345 7346 7347 7348 7349 7350 7351
# Cirilicni prevod drakbootdisk.po fajla.
# Copyright (C) 1997-2003 MandrakeSERBIA.
# Tomislav Jankovic <tomaja@net.yu>, 2000.
#
#
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
"POT-Creation-Date: 2009-03-26 22:18-0300\n"
"PO-Revision-Date: 2004-09-15 13:34+0200\n"
"Last-Translator: Toma Jankovic_<tomaja@net.yu>\n"
"Language-Team: Serbian <i18n@mandrake.co.yu>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Generator: KBabel 0.9.6\n"

#: any.pm:252 any.pm:863 diskdrake/interactive.pm:590
#: diskdrake/interactive.pm:790 diskdrake/interactive.pm:834
#: diskdrake/interactive.pm:920 diskdrake/interactive.pm:1174
#: diskdrake/interactive.pm:1226 do_pkgs.pm:241 do_pkgs.pm:287
#: harddrake/sound.pm:300 interactive.pm:587 pkgs.pm:265
#, c-format
msgid "Please wait"
msgstr "Samo momenat..."

#: any.pm:252
#, fuzzy, c-format
msgid "Bootloader installation in progress"
msgstr "Instalacija startera"

#: any.pm:263
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s.  However, changing\n"
"the Volume ID of a Windows NT, 2000, or XP boot disk is a fatal Windows "
"error.\n"
"This caution does not apply to Windows 95 or 98, or to NT data disks.\n"
"\n"
"Assign a new Volume ID?"
msgstr ""

#: any.pm:274
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "Instalacija startera neuspela. Greška je:"

#: any.pm:280
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
" enable the bootloader.  If you do not see the bootloader prompt at\n"
" reboot, hold down Command-Option-O-F at reboot and enter:\n"
" setenv boot-device %s,\\\\:tbxi\n"
" Then type: shut-down\n"
"At your next boot you should see the bootloader prompt."
msgstr ""
"Moraćete da promenite Open Firmware boot-uređaj da \n"
" bi mogli da koristite starter.  Ukoliko ne vidite prompt\n"
" pri restartu držite Command-Option-O-F pri startanju i unesite:\n"
" setenv boot-device %s,\\\\:tbxi\n"
" Onda ukucajte: shut-down\n"
"Kada sledeći put startujete mašinu trebali bi da vidite staterov prompt."

#: any.pm:320
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
"This implies you already have a bootloader on the hard drive you boot (eg: "
"System Commander).\n"
"\n"
"On which drive are you booting?"
msgstr ""
"Vi ste odlučili da instalirate starter na particiju.\n"
"Ovo ukazujen ato da već imate instaliran starter na hard disku koji "
"butujete.\n"
"\n"
"Na koji drajv se butujete?"

#: any.pm:346
#, fuzzy, c-format
msgid "First sector (MBR) of drive %s"
msgstr "Prvi sektor diska (MBR)"

#: any.pm:348
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Prvi sektor diska (MBR)"

#: any.pm:350
#, c-format
msgid "First sector of the root partition"
msgstr "Prvi sektor root particije"

#: any.pm:352
#, c-format
msgid "On Floppy"
msgstr "Na disketu"

#: any.pm:354 pkgs.pm:261 ugtk2.pm:526
#, c-format
msgid "Skip"
msgstr "Preskoči"

#: any.pm:358
#, fuzzy, c-format
msgid "Bootloader Installation"
msgstr "Instalacija startera"

#: any.pm:362
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Gde biste da instalirate starter?"

#: any.pm:389
#, c-format
msgid "Boot Style Configuration"
msgstr "Konfiguracija stila startanja"

#: any.pm:399 any.pm:429 any.pm:430
#, c-format
msgid "Bootloader main options"
msgstr "Glavne opcije startera"

#: any.pm:403
#, c-format
msgid "Bootloader"
msgstr "Starter"

#: any.pm:404 any.pm:433
#, c-format
msgid "Bootloader to use"
msgstr "Starter koji će se koristiti"

#: any.pm:406 any.pm:435
#, c-format
msgid "Boot device"
msgstr "Startni (boot) uređaj"

#: any.pm:408
#, c-format
msgid "Main options"
msgstr ""

#: any.pm:409
#, c-format
msgid "Delay before booting default image"
msgstr "Pauza pre startanja default image-a"

#: any.pm:410
#, c-format
msgid "Enable ACPI"
msgstr "Omogući ACPI"

#: any.pm:411
#, fuzzy, c-format
msgid "Enable SMP"
msgstr "Omogući ACPI"

#: any.pm:412
#, fuzzy, c-format
msgid "Enable APIC"
msgstr "Omogući ACPI"

#: any.pm:413
#, fuzzy, c-format
msgid "Enable Local APIC"
msgstr "Omogući ACPI"

#: any.pm:415 any.pm:809 any.pm:824 authentication.pm:247
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Lozinka"

#: any.pm:417 authentication.pm:258
#, c-format
msgid "The passwords do not match"
msgstr "Nepodudarnost lozinki"

#: any.pm:417 authentication.pm:258 diskdrake/interactive.pm:1398
#, c-format
msgid "Please try again"
msgstr "Probajte ponovo"

#: any.pm:418
#, fuzzy, c-format
msgid "You can not use a password with %s"
msgstr "Ne možete koristiti enkriptovani fajl sistem za tačku montiranja %s"

#: any.pm:421 any.pm:811 any.pm:826 authentication.pm:248
#, c-format
msgid "Password (again)"
msgstr "Lozinka (ponovite)"

#: any.pm:422
#, c-format
msgid "Restrict command line options"
msgstr "Ograničena komandna linika - opcije"

#: any.pm:422
#, c-format
msgid "restrict"
msgstr "ograničeno"

#: any.pm:423
#, c-format
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"Opcija``Ograničena komandna linika - opcije'' je neupotrebljiva bez lozinke"

#: any.pm:425
#, c-format
msgid "Clean /tmp at each boot"
msgstr "Očisti /tmp pri svakom startanju"

#: any.pm:434
#, c-format
msgid "Init Message"
msgstr "Inicijalna poruka"

#: any.pm:436
#, c-format
msgid "Open Firmware Delay"
msgstr "Otpočni Firmware pauzu"

#: any.pm:437
#, c-format
msgid "Kernel Boot Timeout"
msgstr "Pauza pri startanju kernela"

#: any.pm:438
#, c-format
msgid "Enable CD Boot?"
msgstr "Omogući startanje sa CD-a?"

#: any.pm:439
#, c-format
msgid "Enable OF Boot?"
msgstr "Omogući OF startanje?"

#: any.pm:440
#, c-format
msgid "Default OS?"
msgstr "Podrazumevani OS ?"

#: any.pm:513
#, c-format
msgid "Image"
msgstr "Slika"

#: any.pm:514 any.pm:527
#, c-format
msgid "Root"
msgstr "Root"

#: any.pm:515 any.pm:540
#, c-format
msgid "Append"
msgstr "Dodatak"

#: any.pm:517
#, c-format
msgid "Xen append"
msgstr ""

#: any.pm:520
#, c-format
msgid "Video mode"
msgstr "Video mod"

#: any.pm:522
#, c-format
msgid "Initrd"
msgstr "Initrd"

#: any.pm:523
#, fuzzy, c-format
msgid "Network profile"
msgstr "Mrežni proksi"

#: any.pm:532 any.pm:537 any.pm:539 diskdrake/interactive.pm:404
#, c-format
msgid "Label"
msgstr "Oznaka"

#: any.pm:534 any.pm:542 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Podrazumevano"

#: any.pm:541
#, c-format
msgid "NoVideo"
msgstr "NoVideo"

#: any.pm:552
#, c-format
msgid "Empty label not allowed"
msgstr "Prazna oznaka nije dozvoljena"

#: any.pm:553
#, c-format
msgid "You must specify a kernel image"
msgstr "Morate specificirati kernelov image"

#: any.pm:553
#, c-format
msgid "You must specify a root partition"
msgstr "Morate odrediti root particiju"

#: any.pm:554
#, c-format
msgid "This label is already used"
msgstr "Ova oznaka je već u upotrebi"

#: any.pm:572
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Koju vrstu unosa dodajete ?"

#: any.pm:573
#, c-format
msgid "Linux"
msgstr "Linux"

#: any.pm:573
#, c-format
msgid "Other OS (SunOS...)"
msgstr "Drugi OS-ovi (SunOS,BSD,...)"

#: any.pm:574
#, c-format
msgid "Other OS (MacOS...)"
msgstr "Drugi OS-ovi (MacOS,BSD,...)"

#: any.pm:574
#, c-format
msgid "Other OS (Windows...)"
msgstr "Drugi OS-ovi (Windows,BSD,BeOS,...)"

#: any.pm:601
#, fuzzy, c-format
msgid "Bootloader Configuration"
msgstr "Konfiguracija stila startanja"

#: any.pm:602
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can create additional entries or change the existing ones."
msgstr ""
"Ovo su postavljne opcije.\n"
"Možete dodati nove ili izmeniti stare."

#: any.pm:770
#, c-format
msgid "access to X programs"
msgstr "pristup X programima"

#: any.pm:771
#, c-format
msgid "access to rpm tools"
msgstr "pristup rpm alatima"

#: any.pm:772
#, c-format
msgid "allow \"su\""
msgstr "dozvoli \"su\""

#: any.pm:773
#, c-format
msgid "access to administrative files"
msgstr "pristup administrativnim fajlovima"

#: any.pm:774
#, c-format
msgid "access to network tools"
msgstr "pristup mrežnim alatima"

#: any.pm:775
#, c-format
msgid "access to compilation tools"
msgstr "pristup alatima za kompajliranje"

#: any.pm:781
#, c-format
msgid "(already added %s)"
msgstr "(%s već postoji)"

#: any.pm:787
#, c-format
msgid "Please give a user name"
msgstr "Odredite korisničko ime"

#: any.pm:788
#, c-format
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "Korisničko ime može sadržati samo mala slova, brojeve, `-' i `_'"

#: any.pm:789
#, c-format
msgid "The user name is too long"
msgstr "Korisničko ime već je predugačko"

#: any.pm:790
#, c-format
msgid "This user name has already been added"
msgstr "Ovo korisničko ime već postoji"

#: any.pm:796 any.pm:828
#, c-format
msgid "User ID"
msgstr "Korisnikov ID"

#: any.pm:796 any.pm:829
#, c-format
msgid "Group ID"
msgstr "Grupni ID"

#: any.pm:797
#, fuzzy, c-format
msgid "%s must be a number"
msgstr "Opcija %s mora biti broj!"

#: any.pm:798
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr ""

#: any.pm:802
#, fuzzy, c-format
msgid "User management"
msgstr "Korisničko ime"

#: any.pm:808 authentication.pm:234
#, fuzzy, c-format
msgid "Set administrator (root) password"
msgstr "Unesi root lozinku"

#: any.pm:813
#, fuzzy, c-format
msgid "Enter a user"
msgstr ""
"Unesi korisnika\n"
"%s"

#: any.pm:815
#, c-format
msgid "Icon"
msgstr "Ikona"

#: any.pm:818
#, c-format
msgid "Real name"
msgstr "Pravo ime"

#: any.pm:822
#, c-format
msgid "Login name"
msgstr "Ime za prijavljivanje"

#: any.pm:827
#, c-format
msgid "Shell"
msgstr "Shell"

#: any.pm:863
#, c-format
msgid "Please wait, adding media..."
msgstr "Molim Vas sačekajte, ubacujem medijum..."

#: any.pm:892 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Auto logovanje"

#: any.pm:893
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr "Ja mogu podesti vaš računar da automatski uloguje jednog korisnika."

#: any.pm:894
#, fuzzy, c-format
msgid "Use this feature"
msgstr "Da li želite da koristite ovu opciju ?"

#: any.pm:895
#, c-format
msgid "Choose the default user:"
msgstr "Izaberite default (osnovnog) korisnika:"

#: any.pm:896
#, c-format
msgid "Choose the window manager to run:"
msgstr "Izaberite menadžer prozora koji želite da koristite:"

#: any.pm:907 any.pm:927 any.pm:988
#, fuzzy, c-format
msgid "Release Notes"
msgstr "Verzija: "

#: any.pm:934 any.pm:1280 interactive/gtk.pm:794
#, c-format
msgid "Close"
msgstr "Zatvori"

#: any.pm:974
#, c-format
msgid "License agreement"
msgstr "LIcencirani ugovor"

#: any.pm:976 diskdrake/dav.pm:26
#, c-format
msgid "Quit"
msgstr "Kraj"

#: any.pm:983
#, fuzzy, c-format
msgid "Do you accept this license ?"
msgstr "Da li imate još jedan?"

#: any.pm:984
#, c-format
msgid "Accept"
msgstr "Prihvati"

#: any.pm:984
#, c-format
msgid "Refuse"
msgstr "Odbaci"

#: any.pm:1010 any.pm:1076
#, c-format
msgid "Please choose a language to use"
msgstr "Izaberite koji jezik želite da korisitite"

#: any.pm:1039
#, c-format
msgid ""
"Mandriva Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
"when your installation is complete and you restart your system."
msgstr "Možete izabrati drugi jezik koji će biti dostupan posle instalacije "

#: any.pm:1042
#, c-format
msgid "Multi languages"
msgstr ""

#: any.pm:1053 any.pm:1085
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr ""

#: any.pm:1055
#, c-format
msgid "All languages"
msgstr "Svi jezici"

#: any.pm:1077
#, fuzzy, c-format
msgid "Language choice"
msgstr "upustvo"

#: any.pm:1131
#, c-format
msgid "Country / Region"
msgstr "Zemlja"

#: any.pm:1132
#, c-format
msgid "Please choose your country"
msgstr "Izaberite svoju zemlju"

#: any.pm:1134
#, c-format
msgid "Here is the full list of available countries"
msgstr "Ovde je predstavljena cela lista dostupnih zemalja"

#: any.pm:1135
#, fuzzy, c-format
msgid "Other Countries"
msgstr "Ostali portovi"

#: any.pm:1135 interactive.pm:488 interactive/gtk.pm:445
#, c-format
msgid "Advanced"
msgstr "Napredno"

#: any.pm:1141
#, fuzzy, c-format
msgid "Input method:"
msgstr "Mrežni metod:"

#: any.pm:1144
#, c-format
msgid "None"
msgstr "Neijedan"

#: any.pm:1225
#, c-format
msgid "No sharing"
msgstr "Nema zajedničkog deljenja"

#: any.pm:1225
#, c-format
msgid "Allow all users"
msgstr "Dozvoli sve korisnike"

#: any.pm:1225
#, c-format
msgid "Custom"
msgstr "Izbor po želji"

#: any.pm:1229
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
"Da li bi želeli da dozvolite korisnicima zajednički dele neke od svojih "
"direktorijuma?\n"
"Da bi ovo mogli da omogućite jednostavno kliknite na \"Share\" u konqueror-u "
"ili nautilus-u.\n"
"\n"
"\"Custom\" dozvoljava detaljnija per-user podešavanja.\n"

#: any.pm:1241
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
"Windows."
msgstr ""

#: any.pm:1244
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
"systems."
msgstr ""

#: any.pm:1252
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr "Možete eksportovati koristeći NFS ili SMB-u. Koji od ova dva želite"

#: any.pm:1280
#, c-format
msgid "Launch userdrake"
msgstr "Pokreni userdrake"

#: any.pm:1282
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user to this group."
msgstr ""
"per-user deljenje resursa koristi grupu \"fileshare\". \n"
"Vi pomoću userdrake-a možete dodati korisnika u ovu grupu."

#: any.pm:1383
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
"logout now."
msgstr ""

#: any.pm:1387
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""

#: any.pm:1422
#, c-format
msgid "Timezone"
msgstr "Vremenska zona"

#: any.pm:1422
#, c-format
msgid "Which is your timezone?"
msgstr "Koja je vaša vremenska zona ?"

#: any.pm:1445 any.pm:1447
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr ""

#: any.pm:1448
#, c-format
msgid "What is the best time?"
msgstr ""

#: any.pm:1452
#, fuzzy, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "Vaš sistemski (BIOS) časovnik je podešen na GMT"

#: any.pm:1453
#, fuzzy, c-format
msgid "%s (hardware clock set to local time)"
msgstr "Vaš sistemski (BIOS) časovnik je podešen na GMT"

#: any.pm:1455
#, c-format
msgid "NTP Server"
msgstr "NTP Server"

#: any.pm:1456
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Automatska sinhronizacija vremena (preko NTP-a)"

#: authentication.pm:24
#, c-format
msgid "Local file"
msgstr "Lokalna datoteka"

#: authentication.pm:25
#, c-format
msgid "LDAP"
msgstr "LDAP"

#: authentication.pm:26
#, c-format
msgid "NIS"
msgstr "NIS"

#: authentication.pm:27
#, fuzzy, c-format
msgid "Smart Card"
msgstr "Mrežna kartica"

#: authentication.pm:28 authentication.pm:213
#, c-format
msgid "Windows Domain"
msgstr "Windows Domen"

#: authentication.pm:29
#, c-format
msgid "Kerberos 5"
msgstr ""

#: authentication.pm:63
#, c-format
msgid "Local file:"
msgstr "Lokalni fajl :"

#: authentication.pm:63
#, c-format
msgid ""
"Use local for all authentication and information user tell in local file"
msgstr ""

#: authentication.pm:64
#, c-format
msgid "LDAP:"
msgstr "LDAP:"

#: authentication.pm:64
#, c-format
msgid ""
"Tells your computer to use LDAP for some or all authentication. LDAP "
"consolidates certain types of information within your organization."
msgstr ""

#: authentication.pm:65
#, c-format
msgid "NIS:"
msgstr "NIS:"

#: authentication.pm:65
#, c-format
msgid ""
"Allows you to run a group of computers in the same Network Information "
"Service domain with a common password and group file."
msgstr ""

#: authentication.pm:66
#, c-format
msgid "Windows Domain:"
msgstr "Windows Domen:"

#: authentication.pm:66
#, c-format
msgid ""
"Winbind allows the system to retrieve information and authenticate users in "
"a Windows domain."
msgstr ""

#: authentication.pm:67
#, c-format
msgid "Kerberos 5 :"
msgstr ""

#: authentication.pm:67
#, c-format
msgid "With Kerberos and Ldap for authentication in Active Directory Server "
msgstr ""

#: authentication.pm:104 authentication.pm:138 authentication.pm:157
#: authentication.pm:158 authentication.pm:184 authentication.pm:208
#: authentication.pm:888
#, c-format
msgid " "
msgstr ""

#: authentication.pm:105 authentication.pm:139 authentication.pm:185
#: authentication.pm:209
#, fuzzy, c-format
msgid "Welcome to the Authentication Wizard"
msgstr "Potrebna Autentifikacija Domena"

#: authentication.pm:107
#, c-format
msgid ""
"You have selected LDAP authentication. Please review the configuration "
"options below "
msgstr ""

#: authentication.pm:109 authentication.pm:164
#, c-format
msgid "LDAP Server"
msgstr "LDAP Server"

#: authentication.pm:110 authentication.pm:165
#, fuzzy, c-format
msgid "Base dn"
msgstr "LDAP Base dn"

#: authentication.pm:111
#, c-format
msgid "Fetch base Dn "
msgstr ""

#: authentication.pm:113 authentication.pm:168
#, c-format
msgid "Use encrypt connection with TLS "
msgstr ""

#: authentication.pm:114 authentication.pm:169
#, c-format
msgid "Download CA Certificate "
msgstr ""

#: authentication.pm:116 authentication.pm:149
#, c-format
msgid "Use Disconnect mode "
msgstr ""

#: authentication.pm:117 authentication.pm:170
#, c-format
msgid "Use anonymous BIND "
msgstr ""

#: authentication.pm:118 authentication.pm:121 authentication.pm:123
#: authentication.pm:127
#, c-format
msgid "  "
msgstr ""

#: authentication.pm:119 authentication.pm:171
#, c-format
msgid "Bind DN "
msgstr ""

#: authentication.pm:120 authentication.pm:172
#, fuzzy, c-format
msgid "Bind Password "
msgstr "Lozinka"

#: authentication.pm:122
#, c-format
msgid "Advanced path for group "
msgstr ""

#: authentication.pm:124
#, fuzzy, c-format
msgid "Password base"
msgstr "Lozinka"

#: authentication.pm:125
#, fuzzy, c-format
msgid "Group base"
msgstr "Grupni ID"

#: authentication.pm:126
#, c-format
msgid "Shadow base"
msgstr ""

#: authentication.pm:141
#, c-format
msgid ""
"You have selected Kerberos 5 authentication. Please review the configuration "
"options below "
msgstr ""

#: authentication.pm:143
#, fuzzy, c-format
msgid "Realm "
msgstr "Pravo ime"

#: authentication.pm:145
#, fuzzy, c-format
msgid "KDCs Servers"
msgstr "LDAP Server"

#: authentication.pm:147
#, c-format
msgid "Use DNS to resolve hosts for realms "
msgstr ""

#: authentication.pm:148
#, c-format
msgid "Use DNS to resolve KDCs for realms "
msgstr ""

#: authentication.pm:153
#, fuzzy, c-format
msgid "Use local file for users information"
msgstr "Koristi libsafe za servere"

#: authentication.pm:154
#, fuzzy, c-format
msgid "Use Ldap for users information"
msgstr "Informacije o hard disku"

#: authentication.pm:160
#, c-format
msgid ""
"You have selected Kerberos 5 for authentication, now you must choose the "
"type of users information "
msgstr ""

#: authentication.pm:166
#, c-format
msgid "Fecth base Dn "
msgstr ""

#: authentication.pm:187
#, c-format
msgid ""
"You have selected NIS authentication. Please review the configuration "
"options below "
msgstr ""

#: authentication.pm:189
#, c-format
msgid "NIS Domain"
msgstr "NIS Domen"

#: authentication.pm:190
#, c-format
msgid "NIS Server"
msgstr "NIS Server"

#: authentication.pm:211
#, c-format
msgid ""
"You have selected Windows Domain authentication. Please review the "
"configuration options below "
msgstr ""

#: authentication.pm:215
#, fuzzy, c-format
msgid "Domain Model "
msgstr "Domen"

#: authentication.pm:217
#, c-format
msgid "Active Directory Realm "
msgstr ""

#: authentication.pm:233 authentication.pm:249
#, c-format
msgid "Authentication"
msgstr "Autentifikacija"

#: authentication.pm:235
#, fuzzy, c-format
msgid "Authentication method"
msgstr "Autentifikacija"

#. -PO: keep this short or else the buttons will not fit in the window
#: authentication.pm:240
#, c-format
msgid "No password"
msgstr "Bez lozinke"

#: authentication.pm:261
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr "Ova lozinka je suviše jednostavna (treba da ima bar %d znakova)"

#: authentication.pm:368
#, c-format
msgid "Can not use broadcast with no NIS domain"
msgstr "Nije moguć prenos bez NIS domena"

#: authentication.pm:883
#, c-format
msgid "Select file"
msgstr "Izaberite datoteku"

#: authentication.pm:889
#, fuzzy, c-format
msgid "Domain Windows for authentication : "
msgstr "Potrebna Autentifikacija Domena"

#: authentication.pm:891
#, c-format
msgid "Domain Admin User Name"
msgstr "Admin Korisničko ime Domena"

#: authentication.pm:892
#, c-format
msgid "Domain Admin Password"
msgstr "Admin Lozinka domena"

# NOTE: this message will be displayed at boot time; that is
# only the ascii charset will be available on most machines
# so use only 7bit for this message (and do transliteration or
# leave it in English, as it is the best for your language)
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#: bootloader.pm:953
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
"\n"
"Choose an operating system from the list above or\n"
"wait for default boot.\n"
"\n"
msgstr ""
"Dobrodosli u menadzer za startanje operativnih sistema !\n"
"\n"
"Izaberite operativni sistem, ili\n"
"sacekate za startanje pretpostavljenog OS.\n"

#: bootloader.pm:1130
#, c-format
msgid "LILO with text menu"
msgstr "LILO sa tekstualnim menijem"

#: bootloader.pm:1131
#, c-format
msgid "GRUB with graphical menu"
msgstr ""

#: bootloader.pm:1132
#, c-format
msgid "GRUB with text menu"
msgstr ""

#: bootloader.pm:1133
#, c-format
msgid "Yaboot"
msgstr "Yaboot"

#: bootloader.pm:1134
#, c-format
msgid "SILO"
msgstr "SILO"

#: bootloader.pm:1216
#, c-format
msgid "not enough room in /boot"
msgstr "nema dovoljno mesta u /boot"

#: bootloader.pm:1872
#, c-format
msgid "You can not install the bootloader on a %s partition\n"
msgstr "Ne možete da instalirate starter na particiju %s\n"

#: bootloader.pm:1993
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
"renumbered"
msgstr ""

#: bootloader.pm:2006
#, c-format
msgid ""
"The bootloader can not be installed correctly. You have to boot rescue and "
"choose \"%s\""
msgstr ""

#: bootloader.pm:2007
#, fuzzy, c-format
msgid "Re-install Boot Loader"
msgstr "Instaliraj starter"

#: common.pm:142
#, fuzzy, c-format
msgid "B"
msgstr "KB"

#: common.pm:142
#, c-format
msgid "KB"
msgstr "KB"

#: common.pm:142
#, c-format
msgid "MB"
msgstr "MB"

#: common.pm:142
#, c-format
msgid "GB"
msgstr "GB"

#: common.pm:142 common.pm:151
#, c-format
msgid "TB"
msgstr "TB"

#: common.pm:159
#, c-format
msgid "%d minutes"
msgstr "%d minuta"

#: common.pm:161
#, c-format
msgid "1 minute"
msgstr "1 minut"

#: common.pm:163
#, c-format
msgid "%d seconds"
msgstr "%d sekundi"

#: common.pm:383
#, c-format
msgid "command %s missing"
msgstr ""

#: diskdrake/dav.pm:17
#, c-format
msgid ""
"WebDAV is a protocol that allows you to mount a web server's directory\n"
"locally, and treat it like a local filesystem (provided the web server is\n"
"configured as a WebDAV server). If you would like to add WebDAV mount\n"
"points, select \"New\"."
msgstr ""
"WebDAV je protokol koji vam omogućava da montirate direktorijum veb servera\n"
"lokalno, i da ga tretirate kao lokalni fajl sistem (dostupni veb server je\n"
"podešen kao WebDAV server). Ukoliko želite da dodate novu WebDAV tačku\n"
"montiranja, izaberite \"Novi\"."

#: diskdrake/dav.pm:25
#, c-format
msgid "New"
msgstr "Novi"

#: diskdrake/dav.pm:61 diskdrake/interactive.pm:411 diskdrake/smbnfs_gtk.pm:75
#, c-format
msgid "Unmount"
msgstr "Demontiraj"

#: diskdrake/dav.pm:62 diskdrake/interactive.pm:407 diskdrake/smbnfs_gtk.pm:76
#, c-format
msgid "Mount"
msgstr "Montiraj"

#: diskdrake/dav.pm:63
#, c-format
msgid "Server"
msgstr "Server"

#: diskdrake/dav.pm:64 diskdrake/interactive.pm:401
#: diskdrake/interactive.pm:662 diskdrake/interactive.pm:680
#: diskdrake/interactive.pm:684 diskdrake/removable.pm:23
#: diskdrake/smbnfs_gtk.pm:79
#, c-format
msgid "Mount point"
msgstr "Tačka montiranja"

#: diskdrake/dav.pm:65 diskdrake/interactive.pm:403
#: diskdrake/interactive.pm:1068 diskdrake/removable.pm:24
#: diskdrake/smbnfs_gtk.pm:80
#, c-format
msgid "Options"
msgstr "Opcije"

#: diskdrake/dav.pm:66 diskdrake/hd_gtk.pm:183 diskdrake/removable.pm:26
#: diskdrake/smbnfs_gtk.pm:82 interactive/http.pm:151
#, c-format
msgid "Done"
msgstr "Urađeno"

#: diskdrake/dav.pm:75 diskdrake/hd_gtk.pm:123 diskdrake/hd_gtk.pm:290
#: diskdrake/interactive.pm:247 diskdrake/interactive.pm:260
#: diskdrake/interactive.pm:516 diskdrake/interactive.pm:521
#: diskdrake/interactive.pm:652 diskdrake/interactive.pm:938
#: diskdrake/interactive.pm:1114 diskdrake/interactive.pm:1127
#: diskdrake/interactive.pm:1130 diskdrake/interactive.pm:1398
#: diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:23 do_pkgs.pm:28 do_pkgs.pm:44
#: do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:82 fsedit.pm:246
#: interactive/http.pm:117 interactive/http.pm:118 modules/interactive.pm:19
#: scanner.pm:95 scanner.pm:106 scanner.pm:113 scanner.pm:120 wizards.pm:95
#: wizards.pm:99 wizards.pm:121
#, c-format
msgid "Error"
msgstr "Greška"

#: diskdrake/dav.pm:83
#, c-format
msgid "Please enter the WebDAV server URL"
msgstr "Unesite URL WebDAV servera"

#: diskdrake/dav.pm:87
#, c-format
msgid "The URL must begin with http:// or https://"
msgstr "URL mora počinjati sa http:// ili https://"

#: diskdrake/dav.pm:109
#, c-format
msgid "Server: "
msgstr "Server:"

#: diskdrake/dav.pm:110 diskdrake/interactive.pm:489
#: diskdrake/interactive.pm:1273 diskdrake/interactive.pm:1358
#, c-format
msgid "Mount point: "
msgstr "Tačka montiranja: "

#: diskdrake/dav.pm:111 diskdrake/interactive.pm:1365
#, c-format
msgid "Options: %s"
msgstr "Opcije: %s"

#: diskdrake/hd_gtk.pm:54 diskdrake/interactive.pm:298
#: diskdrake/smbnfs_gtk.pm:22 fs/mount_point.pm:106
#: fs/partitioning_wizard.pm:51 fs/partitioning_wizard.pm:206
#: fs/partitioning_wizard.pm:211 fs/partitioning_wizard.pm:250
#: fs/partitioning_wizard.pm:269 fs/partitioning_wizard.pm:274
#, c-format
msgid "Partitioning"
msgstr "Particionisanje"

#: diskdrake/hd_gtk.pm:68
#, c-format
msgid "Click on a partition, choose a filesystem type then choose an action"
msgstr ""

#: diskdrake/hd_gtk.pm:105 diskdrake/interactive.pm:1089
#: diskdrake/interactive.pm:1099 diskdrake/interactive.pm:1152
#, c-format
msgid "Read carefully"
msgstr "PAŽLJIVO PROČITAJ"

#: diskdrake/hd_gtk.pm:105
#, c-format
msgid "Please make a backup of your data first"
msgstr "Molim vas, prvo napravite kopiju vaših podataka"

#: diskdrake/hd_gtk.pm:106 diskdrake/interactive.pm:240
#, c-format
msgid "Exit"
msgstr "Izlaz"

#: diskdrake/hd_gtk.pm:106
#, c-format
msgid "Continue"
msgstr "Nastavi"

#: diskdrake/hd_gtk.pm:178 interactive.pm:653 interactive/gtk.pm:786
#: interactive/gtk.pm:804 interactive/gtk.pm:825 ugtk2.pm:936
#, c-format
msgid "Help"
msgstr "Pomoć"

#: diskdrake/hd_gtk.pm:224
#, c-format
msgid ""
"You have one big Microsoft Windows partition.\n"
"I suggest you first resize that partition\n"
"(click on it, then click on \"Resize\")"
msgstr ""
"Vi imate jednu veliku Microsoft Windows particiju.\n"
"Predlažem da prvo izmenite veličnu (resize) te particije (kliknite na nju,\n"
"a potom na \"Promeni veličinu\")"

#: diskdrake/hd_gtk.pm:226
#, c-format
msgid "Please click on a partition"
msgstr "Kliknite na particiju"

#: diskdrake/hd_gtk.pm:240 diskdrake/smbnfs_gtk.pm:63
#, c-format
msgid "Details"
msgstr "Detalji"

#: diskdrake/hd_gtk.pm:290
#, c-format
msgid "No hard drives found"
msgstr "Nije pronađen hard disk"

#: diskdrake/hd_gtk.pm:317
#, c-format
msgid "Unknown"
msgstr "Nepoznato"

#: diskdrake/hd_gtk.pm:379
#, fuzzy, c-format
msgid "Ext3"
msgstr "Izlaz"

#: diskdrake/hd_gtk.pm:379
#, fuzzy, c-format
msgid "XFS"
msgstr "HFS"

#: diskdrake/hd_gtk.pm:379
#, c-format
msgid "Swap"
msgstr "Swap"

#: diskdrake/hd_gtk.pm:379
#, c-format
msgid "SunOS"
msgstr "SunOS"

#: diskdrake/hd_gtk.pm:379
#, c-format
msgid "HFS"
msgstr "HFS"

#: diskdrake/hd_gtk.pm:379
#, c-format
msgid "Windows"
msgstr "Windows"

#: diskdrake/hd_gtk.pm:380 services.pm:158
#, c-format
msgid "Other"
msgstr "Drugo"

#: diskdrake/hd_gtk.pm:380 diskdrake/interactive.pm:1288
#, c-format
msgid "Empty"
msgstr "Prazno"

#: diskdrake/hd_gtk.pm:387
#, c-format
msgid "Filesystem types:"
msgstr "Vrsta fajl sistema:"

#: diskdrake/hd_gtk.pm:408 diskdrake/interactive.pm:303
#: diskdrake/interactive.pm:388 diskdrake/interactive.pm:546
#: diskdrake/interactive.pm:743 diskdrake/interactive.pm:801
#: diskdrake/interactive.pm:918 diskdrake/interactive.pm:960
#: diskdrake/interactive.pm:961 diskdrake/interactive.pm:1211
#: diskdrake/interactive.pm:1249 diskdrake/interactive.pm:1397 do_pkgs.pm:19
#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:77 harddrake/sound.pm:439
#, c-format
msgid "Warning"
msgstr "Upozorenje"

#: diskdrake/hd_gtk.pm:408
#, fuzzy, c-format
msgid "This partition is already empty"
msgstr "Ovoj particici nije moguće promeniti veličinu"

#: diskdrake/hd_gtk.pm:417
#, c-format
msgid "Use ``Unmount'' first"
msgstr "Prvo uradite ``Demontiraj''"

#: diskdrake/hd_gtk.pm:417
#, fuzzy, c-format
msgid "Use ``%s'' instead (in expert mode)"
msgstr "Umesto toga probajte ``%s''"

#: diskdrake/hd_gtk.pm:417 diskdrake/interactive.pm:402
#: diskdrake/interactive.pm:584 diskdrake/removable.pm:25
#: diskdrake/removable.pm:48
#, c-format
msgid "Type"
msgstr "Tip"

#: diskdrake/interactive.pm:211
#, c-format
msgid "Choose another partition"
msgstr "Izaberite drugu particiju"

#: diskdrake/interactive.pm:211
#, c-format
msgid "Choose a partition"
msgstr "Izaberite particiju"

#: diskdrake/interactive.pm:273 diskdrake/interactive.pm:379
#: interactive/curses.pm:512
#, c-format
msgid "More"
msgstr "Još"

#: diskdrake/interactive.pm:281 diskdrake/interactive.pm:291
#: diskdrake/interactive.pm:1196
#, c-format
msgid "Confirmation"
msgstr "Potvrđivanje"

#: diskdrake/interactive.pm:281
#, c-format
msgid "Continue anyway?"
msgstr "Svejedno nastaviti ?"

#: diskdrake/interactive.pm:286
#, c-format
msgid "Quit without saving"
msgstr "Kraj bez snimanja promena"

#: diskdrake/interactive.pm:286
#, c-format
msgid "Quit without writing the partition table?"
msgstr "Kraj bez snimanja promena u tabele particija?"

#: diskdrake/interactive.pm:291
#, c-format
msgid "Do you want to save /etc/fstab modifications"
msgstr "Da li hoćete da sačuvate izmene u /etc/fstab?"

#: diskdrake/interactive.pm:298 fs/partitioning_wizard.pm:250
#, c-format
msgid "You need to reboot for the partition table modifications to take place"
msgstr "Treba da resetujete mašinu za primenu izmena u tabeli particija"

#: diskdrake/interactive.pm:303
#, c-format
msgid ""
"You should format partition %s.\n"
"Otherwise no entry for mount point %s will be written in fstab.\n"
"Quit anyway?"
msgstr ""

#: diskdrake/interactive.pm:316
#, c-format
msgid "Clear all"
msgstr "Očisti sve"

#: diskdrake/interactive.pm:317
#, c-format
msgid "Auto allocate"
msgstr "Auto dislociranje"

#: diskdrake/interactive.pm:323
#, c-format
msgid "Toggle to normal mode"
msgstr "Pređi na normalni mod"

#: diskdrake/interactive.pm:323
#, c-format
msgid "Toggle to expert mode"
msgstr "Pređi na ekspert mod"

#: diskdrake/interactive.pm:335
#, c-format
msgid "Hard drive information"
msgstr "Informacije o hard disku"

#: diskdrake/interactive.pm:368
#, c-format
msgid "All primary partitions are used"
msgstr "Sve primarne particije su zauzete"

#: diskdrake/interactive.pm:369
#, c-format
msgid "I can not add any more partitions"
msgstr "Ne mogu dodati više ni jednu particiju"

#: diskdrake/interactive.pm:370
#, c-format
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
msgstr ""
"Da bi omogućili kreiranje još (extended) particija izbrišite jednu od "
"postojećih"

#: diskdrake/interactive.pm:381
#, c-format
msgid "Reload partition table"
msgstr "Ponovo učitaj tabelu particija"

#: diskdrake/interactive.pm:388
#, c-format
msgid "Detailed information"
msgstr "Detaljne informacije"

#: diskdrake/interactive.pm:400
#, c-format
msgid "View"
msgstr ""

#: diskdrake/interactive.pm:405 diskdrake/interactive.pm:756
#, c-format
msgid "Resize"
msgstr "Promeni veličinu"

#: diskdrake/interactive.pm:406
#, c-format
msgid "Format"
msgstr "Formatiranje"

#: diskdrake/interactive.pm:408 diskdrake/interactive.pm:866
#, c-format
msgid "Add to RAID"
msgstr "Dodaj na RAID"

#: diskdrake/interactive.pm:409 diskdrake/interactive.pm:884
#, c-format
msgid "Add to LVM"
msgstr "Dodaj na LVM"

#: diskdrake/interactive.pm:410
#, fuzzy, c-format
msgid "Use"
msgstr "Korisnikov ID"

#: diskdrake/interactive.pm:412
#, c-format
msgid "Delete"
msgstr "Obriši"

#: diskdrake/interactive.pm:413
#, c-format
msgid "Remove from RAID"
msgstr "Ukloni sa RAID-a"

#: diskdrake/interactive.pm:414
#, c-format
msgid "Remove from LVM"
msgstr "Ukloni sa LVM-a"

#: diskdrake/interactive.pm:415
#, fuzzy, c-format
msgid "Remove from dm"
msgstr "Ukloni sa LVM-a"

#: diskdrake/interactive.pm:416
#, c-format
msgid "Modify RAID"
msgstr "Promeni RAID"

#: diskdrake/interactive.pm:417
#, c-format
msgid "Use for loopback"
msgstr "Koristi za loopback"

#: diskdrake/interactive.pm:428
#, c-format
msgid "Create"
msgstr "Kreiraj"

#: diskdrake/interactive.pm:478 diskdrake/interactive.pm:480
#, c-format
msgid "Create a new partition"
msgstr "Kreiraj novu particiju"

#: diskdrake/interactive.pm:482
#, c-format
msgid "Start sector: "
msgstr "Početni sektor: "

#: diskdrake/interactive.pm:485 diskdrake/interactive.pm:953
#, c-format
msgid "Size in MB: "
msgstr "Veličina u MB:"

#: diskdrake/interactive.pm:487 diskdrake/interactive.pm:954
#, c-format
msgid "Filesystem type: "
msgstr "Vrsta tatotečnog sistema:"

#: diskdrake/interactive.pm:493
#, c-format
msgid "Preference: "
msgstr "Karakteristike: "

#: diskdrake/interactive.pm:496
#, fuzzy, c-format
msgid "Logical volume name "
msgstr "Lokalna mera"

#: diskdrake/interactive.pm:516
#, c-format
msgid ""
"You can not create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
"First remove a primary partition and create an extended partition."
msgstr ""
"Vi ne možete da kreirate novu particiju\n"
"(pošto ste dosegli maksimalan broj primarnih particija).\n"
"Prvo uklonite primarnu particiju a zatim kreirajte extended particiju."

#: diskdrake/interactive.pm:546
#, c-format
msgid "Remove the loopback file?"
msgstr "Ukloni loopback fajl ?"

#: diskdrake/interactive.pm:568
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
"Posle promene tipa particije %s, svi podaci na ovoj particiji će biti "
"izbrisani"

#: diskdrake/interactive.pm:581
#, c-format
msgid "Change partition type"
msgstr "Promena tipa particije"

#: diskdrake/interactive.pm:583 diskdrake/removable.pm:47
#, c-format
msgid "Which filesystem do you want?"
msgstr "Koju  datotečni sistem želite ?"

#: diskdrake/interactive.pm:590
#, fuzzy, c-format
msgid "Switching from %s to %s"
msgstr "Menjam ext2 na ext3"

#: diskdrake/interactive.pm:620
#, c-format
msgid "Set volume label"
msgstr ""

#: diskdrake/interactive.pm:622
#, c-format
msgid "Beware, this will be written to disk as soon as you validate!"
msgstr ""

#: diskdrake/interactive.pm:623
#, c-format
msgid "Beware, this will be written to disk only after formatting!"
msgstr ""

#: diskdrake/interactive.pm:625
#, c-format
msgid "Which volume label?"
msgstr ""

#: diskdrake/interactive.pm:626
#, fuzzy, c-format
msgid "Label:"
msgstr "Oznaka"

#: diskdrake/interactive.pm:647
#, c-format
msgid "Where do you want to mount the loopback file %s?"
msgstr "Gde biste da montirate loopback fajl %s?"

#: diskdrake/interactive.pm:648
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Gde biste da montirate %s uređaj ?"

#: diskdrake/interactive.pm:653
#, c-format
msgid ""
"Can not unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
msgstr ""
"Demontiranje nije moguće,jer se particija korisiti za loop back.\n"
"Prvo uklonite loopback"

#: diskdrake/interactive.pm:683
#, c-format
msgid "Where do you want to mount %s?"
msgstr "Gde biste da montirate %s uređaj ?"

#: diskdrake/interactive.pm:707 diskdrake/interactive.pm:790
#: fs/partitioning_wizard.pm:146 fs/partitioning_wizard.pm:178
#, c-format
msgid "Resizing"
msgstr "Promena veličine (resizing)"

#: diskdrake/interactive.pm:707
#, c-format
msgid "Computing FAT filesystem bounds"
msgstr "Proračunavam granice FAT datotečnog sistema"

#: diskdrake/interactive.pm:743
#, c-format
msgid "This partition is not resizeable"
msgstr "Ovoj particici nije moguće promeniti veličinu"

#: diskdrake/interactive.pm:748
#, c-format
msgid "All data on this partition should be backed-up"
msgstr "Svi podaci na ovoj particiji bi trebali biti sačuvani"

#: diskdrake/interactive.pm:750
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "Posle promene veličine %s particije svi podaci će biti izbrisani"

#: diskdrake/interactive.pm:757
#, c-format
msgid "Choose the new size"
msgstr "Izaberite novu veličinu"

#: diskdrake/interactive.pm:758
#, c-format
msgid "New size in MB: "
msgstr "Nova veličina u MB:"

#: diskdrake/interactive.pm:759
#, c-format
msgid "Minimum size: %s MB"
msgstr ""

#: diskdrake/interactive.pm:760
#, c-format
msgid "Maximum size: %s MB"
msgstr ""

#: diskdrake/interactive.pm:801
#, fuzzy, c-format
msgid ""
"To ensure data integrity after resizing the partition(s),\n"
"filesystem checks will be run on your next boot into Microsoft Windows®"
msgstr ""
"Da bi osigurali integritet nakon promene veličine particije(a), \n"
"provera fajl sistema će biti pokrenuta kada se sledeći put ulogujete u "
"Windows(TM)"

#: diskdrake/interactive.pm:849 diskdrake/interactive.pm:1393
#, c-format
msgid "Filesystem encryption key"
msgstr "Ključ za enkripciju fajl sistema"

#: diskdrake/interactive.pm:850
#, fuzzy, c-format
msgid "Enter your filesystem encryption key"
msgstr "Izaberite ključ za enkripciju fajl sistema"

#: diskdrake/interactive.pm:851 diskdrake/interactive.pm:1401
#, c-format
msgid "Encryption key"
msgstr "Ključ za enkripciju"

#: diskdrake/interactive.pm:858
#, c-format
msgid "Invalid key"
msgstr ""

#: diskdrake/interactive.pm:866
#, c-format
msgid "Choose an existing RAID to add to"
msgstr "Izaberi postojeći RAID za dodavanje"

#: diskdrake/interactive.pm:868 diskdrake/interactive.pm:886
#, c-format
msgid "new"
msgstr "novi"

#: diskdrake/interactive.pm:884
#, c-format
msgid "Choose an existing LVM to add to"
msgstr "Izaberi postojeći LVM za dodavanje"

#: diskdrake/interactive.pm:891
#, c-format
msgid "LVM name?"
msgstr "LVM ime?"

#: diskdrake/interactive.pm:918
#, c-format
msgid ""
"Physical volume %s is still in use.\n"
"Do you want to move used physical extents on this volume to other volumes?"
msgstr ""

#: diskdrake/interactive.pm:920
#, c-format
msgid "Moving physical extents"
msgstr ""

#: diskdrake/interactive.pm:938
#, c-format
msgid "This partition can not be used for loopback"
msgstr "Ova particija ne može biti korišćena za loopback "

#: diskdrake/interactive.pm:951
#, c-format
msgid "Loopback"
msgstr "Loopback"

#: diskdrake/interactive.pm:952
#, c-format
msgid "Loopback file name: "
msgstr "Ime Loopback datoteke: "

#: diskdrake/interactive.pm:957
#, c-format
msgid "Give a file name"
msgstr "Odredite ime fajla"

#: diskdrake/interactive.pm:960
#, c-format
msgid "File is already used by another loopback, choose another one"
msgstr "Fajl se već koristi od strane drugog loopback-a,izaberite drugi"

#: diskdrake/interactive.pm:961
#, c-format
msgid "File already exists. Use it?"
msgstr "Datoteka već postoji.Da li da ga koristim ?"

#: diskdrake/interactive.pm:993 diskdrake/interactive.pm:996
#, c-format
msgid "Mount options"
msgstr "Opcije montiranja"

#: diskdrake/interactive.pm:1003
#, c-format
msgid "Various"
msgstr "Razno"

#: diskdrake/interactive.pm:1070
#, c-format
msgid "device"
msgstr "uređaj"

#: diskdrake/interactive.pm:1071
#, c-format
msgid "level"
msgstr "nivo"

#: diskdrake/interactive.pm:1072
#, fuzzy, c-format
msgid "chunk size in KiB"
msgstr "chunk veličina"

#: diskdrake/interactive.pm:1090
#, c-format
msgid "Be careful: this operation is dangerous."
msgstr "PAŽLJIVO,ova operacija je opasna."

#: diskdrake/interactive.pm:1105
#, fuzzy, c-format
msgid "Partitioning Type"
msgstr "Particionisanje"

#: diskdrake/interactive.pm:1105
#, c-format
msgid "What type of partitioning?"
msgstr "Koju vrstu particioniranja?"

#: diskdrake/interactive.pm:1143
#, c-format
msgid "You'll need to reboot before the modification can take place"
msgstr "Morate restartovati računar da bi se izmene izvršile"

#: diskdrake/interactive.pm:1152
#, c-format
msgid "Partition table of drive %s is going to be written to disk"
msgstr "Tabela particija za uređaj %s će biti zapisana na disk"

#: diskdrake/interactive.pm:1174 fs/format.pm:96 fs/format.pm:103
#, c-format
msgid "Formatting partition %s"
msgstr "Formatiranje particije %s"

#: diskdrake/interactive.pm:1187
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"Posle formatiranja particije %s,svi podaci na ovoj particiji će biti "
"izbrisani"

#: diskdrake/interactive.pm:1196 fs/partitioning.pm:48
#, c-format
msgid "Check bad blocks?"
msgstr "Proveri loše blokove ?"

#: diskdrake/interactive.pm:1210
#, c-format
msgid "Move files to the new partition"
msgstr "Premesti fajlove na novu particiju"

#: diskdrake/interactive.pm:1210
#, c-format
msgid "Hide files"
msgstr "Sakrij fajlove"

#: diskdrake/interactive.pm:1211
#, c-format
msgid ""
"Directory %s already contains data\n"
"(%s)\n"
"\n"
"You can either choose to move the files into the partition that will be "
"mounted there or leave them where they are (which results in hiding them by "
"the contents of the mounted partition)"
msgstr ""

#: diskdrake/interactive.pm:1226
#, c-format
msgid "Moving files to the new partition"
msgstr "Premeštanje fajlova na novu particiju"

#: diskdrake/interactive.pm:1230
#, c-format
msgid "Copying %s"
msgstr "Kopiranje %s"

#: diskdrake/interactive.pm:1234
#, c-format
msgid "Removing %s"
msgstr "Uklanjanje: %s"

#: diskdrake/interactive.pm:1248
#, c-format
msgid "partition %s is now known as %s"
msgstr "particija %s je sada poznata kao %s"

#: diskdrake/interactive.pm:1249
#, c-format
msgid "Partitions have been renumbered: "
msgstr ""

#: diskdrake/interactive.pm:1274 diskdrake/interactive.pm:1342
#, c-format
msgid "Device: "
msgstr "Uređaj: "

#: diskdrake/interactive.pm:1275
#, c-format
msgid "Volume label: "
msgstr ""

#: diskdrake/interactive.pm:1276
#, c-format
msgid "UUID: "
msgstr ""

#: diskdrake/interactive.pm:1277
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Oznaka DOS particije: %s (samo pretpostavka)\n"

#: diskdrake/interactive.pm:1281 diskdrake/interactive.pm:1290
#: diskdrake/interactive.pm:1361
#, c-format
msgid "Type: "
msgstr "Unesi: "

#: diskdrake/interactive.pm:1285 diskdrake/interactive.pm:1346
#, c-format
msgid "Name: "
msgstr "Ime: "

#: diskdrake/interactive.pm:1292
#, c-format
msgid "Start: sector %s\n"
msgstr "Početak: sektor %s\n"

#: diskdrake/interactive.pm:1293
#, c-format
msgid "Size: %s"
msgstr "Veličina: %s"

#: diskdrake/interactive.pm:1295
#, c-format
msgid ", %s sectors"
msgstr ", %s sektora"

#: diskdrake/interactive.pm:1297
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Cilindar %d do %d\n"

#: diskdrake/interactive.pm:1298
#, c-format
msgid "Number of logical extents: %d\n"
msgstr ""

#: diskdrake/interactive.pm:1299
#, c-format
msgid "Formatted\n"
msgstr "Formatirano\n"

#: diskdrake/interactive.pm:1300
#, c-format
msgid "Not formatted\n"
msgstr "Nije formatirano\n"

#: diskdrake/interactive.pm:1301
#, c-format
msgid "Mounted\n"
msgstr "Montirano\n"

#: diskdrake/interactive.pm:1302
#, c-format
msgid "RAID %s\n"
msgstr "RAID %s\n"

#: diskdrake/interactive.pm:1304
#, fuzzy, c-format
msgid "Encrypted"
msgstr "Ključ za enkripciju"

#: diskdrake/interactive.pm:1304
#, c-format
msgid " (mapped on %s)"
msgstr ""

#: diskdrake/interactive.pm:1305
#, c-format
msgid " (to map on %s)"
msgstr ""

#: diskdrake/interactive.pm:1306
#, c-format
msgid " (inactive)"
msgstr ""

#: diskdrake/interactive.pm:1312
#, c-format
msgid ""
"Loopback file(s):\n"
"   %s\n"
msgstr ""
"Loopback fajl(ovi): \n"
"   %s\n"

#: diskdrake/interactive.pm:1313
#, c-format
msgid ""
"Partition booted by default\n"
"    (for MS-DOS boot, not for lilo)\n"
msgstr ""
"Boot particija po default-u\n"
"   (za podizanje MS-DOSa, ne za lilo)\n"

#: diskdrake/interactive.pm:1315
#, c-format
msgid "Level %s\n"
msgstr "Nivo %s\n"

#: diskdrake/interactive.pm:1316
#, fuzzy, c-format
msgid "Chunk size %d KiB\n"
msgstr "Chunk-uj %s\n"

#: diskdrake/interactive.pm:1317
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-diskovi %s\n"

#: diskdrake/interactive.pm:1319
#, c-format
msgid "Loopback file name: %s"
msgstr "Ime Loopback datoteke: %s"

#: diskdrake/interactive.pm:1322
#, c-format
msgid ""
"\n"
"Chances are, this partition is\n"
"a Driver partition. You should\n"
"probably leave it alone.\n"
msgstr ""
"\n"
"Najverovatnije je, da je ova particija\n"
"Driver particija, pa ne bi trebali\n"
"da je dirate.\n"

#: diskdrake/interactive.pm:1325
#, c-format
msgid ""
"\n"
"This special Bootstrap\n"
"partition is for\n"
"dual-booting your system.\n"
msgstr ""
"\n"
"Ovo je specijalna Bootstrap\n"
"particija i koristi se\n"
"dual-booting vašeg sistema.\n"

#: diskdrake/interactive.pm:1334
#, c-format
msgid "Free space on %s (%s)"
msgstr ""

#: diskdrake/interactive.pm:1343
#, c-format
msgid "Read-only"
msgstr "Samo-čitanje"

#: diskdrake/interactive.pm:1344
#, c-format
msgid "Size: %s\n"
msgstr "Veličina: %s\n"

#: diskdrake/interactive.pm:1345
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometrija: %s cilindara, %s glava, %s sektora\n"

#: diskdrake/interactive.pm:1347
#, fuzzy, c-format
msgid "Medium type: "
msgstr "Vrsta tatotečnog sistema:"

#: diskdrake/interactive.pm:1348
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-diskovi %s\n"

#: diskdrake/interactive.pm:1349
#, c-format
msgid "Partition table type: %s\n"
msgstr "Tip tabele particija: %s\n"

#: diskdrake/interactive.pm:1350
#, c-format
msgid "on channel %d id %d\n"
msgstr "na kanalu %d ID %d\n"

#: diskdrake/interactive.pm:1394
#, c-format
msgid "Choose your filesystem encryption key"
msgstr "Izaberite ključ za enkripciju fajl sistema"

#: diskdrake/interactive.pm:1397
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Ova lozinka(enkripcioni ključ) je suviše jednostavna (treba da ima bar %d "
"znakova)"

#: diskdrake/interactive.pm:1398
#, c-format
msgid "The encryption keys do not match"
msgstr "Nepodudarnost enkripcionih ključeva (lozinki)"

#: diskdrake/interactive.pm:1402
#, c-format
msgid "Encryption key (again)"
msgstr "Ključ za enkripciju (ponovo)"

#: diskdrake/interactive.pm:1404
#, fuzzy, c-format
msgid "Encryption algorithm"
msgstr "Autentifikacija"

#: diskdrake/removable.pm:46
#, c-format
msgid "Change type"
msgstr "Promena tipa"

#: diskdrake/smbnfs_gtk.pm:81 interactive.pm:129 interactive.pm:550
#: interactive/curses.pm:260 interactive/http.pm:104 interactive/http.pm:160
#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:817 ugtk2.pm:415
#: ugtk2.pm:517 ugtk2.pm:526 ugtk2.pm:812
#, c-format
msgid "Cancel"
msgstr "Poništi"

#: diskdrake/smbnfs_gtk.pm:164
#, c-format
msgid "Can not login using username %s (bad password?)"
msgstr "Ne mogu da ulogujem korisničko ime %s (neispravna lozinka?)"

#: diskdrake/smbnfs_gtk.pm:168 diskdrake/smbnfs_gtk.pm:177
#, c-format
msgid "Domain Authentication Required"
msgstr "Potrebna Autentifikacija Domena"

#: diskdrake/smbnfs_gtk.pm:169
#, c-format
msgid "Which username"
msgstr "Koje korisničko ime"

#: diskdrake/smbnfs_gtk.pm:169
#, c-format
msgid "Another one"
msgstr "Još jedan"

#: diskdrake/smbnfs_gtk.pm:178
#, c-format
msgid ""
"Please enter your username, password and domain name to access this host."
msgstr ""
"Unesite svoje korisničko ime, lozinku i domen da bi mogli da pristupite "
"hostu."

#: diskdrake/smbnfs_gtk.pm:180
#, c-format
msgid "Username"
msgstr "Korisničko ime"

#: diskdrake/smbnfs_gtk.pm:182
#, c-format
msgid "Domain"
msgstr "Domen"

#: diskdrake/smbnfs_gtk.pm:206
#, c-format
msgid "Search servers"
msgstr "Traži servere"

#: diskdrake/smbnfs_gtk.pm:211
#, fuzzy, c-format
msgid "Search new servers"
msgstr "Traži servere"

#: do_pkgs.pm:19 do_pkgs.pm:57
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Paket %s mora biti instaliran. Da li želite da ga instalirate?"

#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:82
#, fuzzy, c-format
msgid "Could not install the %s package!"
msgstr "Instaliram paket %s"

#: do_pkgs.pm:28 do_pkgs.pm:65
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Tekući paket %s nedostaje"

#: do_pkgs.pm:39 do_pkgs.pm:77
#, c-format
msgid "The following packages need to be installed:\n"
msgstr "Sledeći paketi treba da budu instalirani:\n"

#: do_pkgs.pm:241
#, c-format
msgid "Installing packages..."
msgstr "Instaliram pakete..."

#: do_pkgs.pm:287 pkgs.pm:265
#, fuzzy, c-format
msgid "Removing packages..."
msgstr "Ukanjam %s ..."

#: fs/any.pm:17
#, c-format
msgid ""
"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
"Dogodila se greška - nije nađen ispravan uređaj na kojem bi bili krerani "
"novi datotečnog sistemi. Proverite vaš hardver da vidite šta je uzrok ovog "
"problema."

#: fs/any.pm:75 fs/partitioning_wizard.pm:59
#, c-format
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Morate imati FAT particiju montiranu u /boot/efi"

#: fs/format.pm:100
#, c-format
msgid "Creating and formatting file %s"
msgstr "Kreiranje i formatiranje datoteke %s"

#: fs/format.pm:119
#, fuzzy, c-format
msgid "I do not know how to set label on %s with type %s"
msgstr "ne znam kako da formatiram %s u tipu %s"

#: fs/format.pm:126
#, fuzzy, c-format
msgid "setting label on %s failed, is it formatted?"
msgstr "%s Formatiranje  %s nije uspelo"

#: fs/format.pm:167
#, c-format
msgid "I do not know how to format %s in type %s"
msgstr "ne znam kako da formatiram %s u tipu %s"

#: fs/format.pm:172 fs/format.pm:174
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s Formatiranje  %s nije uspelo"

#: fs/loopback.pm:24
#, c-format
msgid "Circular mounts %s\n"
msgstr "Kružno montiranje  %s\n"

#: fs/mount.pm:79
#, c-format
msgid "Mounting partition %s"
msgstr "Montiram particiju %s"

#: fs/mount.pm:80
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "montiranje particije %s u direktorijum %s nije uspelo"

#: fs/mount.pm:85 fs/mount.pm:102
#, c-format
msgid "Checking %s"
msgstr "Proveravam %s"

#: fs/mount.pm:119 partition_table.pm:405
#, c-format
msgid "error unmounting %s: %s"
msgstr "Greška pri demontiranju %s: %s"

#: fs/mount.pm:134
#, c-format
msgid "Enabling swap partition %s"
msgstr "Omogućavam swap particiju %s"

#: fs/mount_options.pm:114
#, fuzzy, c-format
msgid "Use an encrypted file system"
msgstr "Ne možete koristiti enkriptovani fajl sistem za tačku montiranja %s"

#: fs/mount_options.pm:116
#, c-format
msgid "Flush write cache on file close"
msgstr ""

#: fs/mount_options.pm:118
#, c-format
msgid "Enable group disk quota accounting and optionally enforce limits"
msgstr ""

#: fs/mount_options.pm:120
#, c-format
msgid ""
"Do not update inode access times on this file system\n"
"(e.g, for faster access on the news spool to speed up news servers)."
msgstr ""

#: fs/mount_options.pm:123
#, c-format
msgid ""
"Update inode access times on this filesystem in a more efficient way\n"
"(e.g, for faster access on the news spool to speed up news servers)."
msgstr ""

#: fs/mount_options.pm:126
#, c-format
msgid ""
"Can only be mounted explicitly (i.e.,\n"
"the -a option will not cause the file system to be mounted)."
msgstr ""

#: fs/mount_options.pm:129
#, c-format
msgid "Do not interpret character or block special devices on the file system."
msgstr ""

#: fs/mount_options.pm:131
#, c-format
msgid ""
"Do not allow execution of any binaries on the mounted\n"
"file system. This option might be useful for a server that has file systems\n"
"containing binaries for architectures other than its own."
msgstr ""

#: fs/mount_options.pm:135
#, c-format
msgid ""
"Do not allow set-user-identifier or set-group-identifier\n"
"bits to take effect. (This seems safe, but is in fact rather unsafe if you\n"
"have suidperl(1) installed.)"
msgstr ""

#: fs/mount_options.pm:139
#, c-format
msgid "Mount the file system read-only."
msgstr ""

#: fs/mount_options.pm:141
#, c-format
msgid "All I/O to the file system should be done synchronously."
msgstr ""

#: fs/mount_options.pm:143
#, c-format
msgid "Allow every user to mount and umount the file system."
msgstr ""

#: fs/mount_options.pm:145
#, c-format
msgid "Allow an ordinary user to mount the file system."
msgstr ""

#: fs/mount_options.pm:147
#, c-format
msgid "Enable user disk quota accounting, and optionally enforce limits"
msgstr ""

#: fs/mount_options.pm:149
#, c-format
msgid "Support \"user.\" extended attributes"
msgstr ""

#: fs/mount_options.pm:151
#, c-format
msgid "Give write access to ordinary users"
msgstr ""

#: fs/mount_options.pm:153
#, c-format
msgid "Give read-only access to ordinary users"
msgstr ""

#: fs/mount_point.pm:80
#, c-format
msgid "Duplicate mount point %s"
msgstr "Duplirana tačka montiranja %s"

#: fs/mount_point.pm:95
#, c-format
msgid "No partition available"
msgstr "nema dostupnih particija"

#: fs/mount_point.pm:98
#, c-format
msgid "Scanning partitions to find mount points"
msgstr "Skeniranje particija za pronalaženje tačke montiranja"

#: fs/mount_point.pm:105
#, c-format
msgid "Choose the mount points"
msgstr "Izaberite tačke montiranja"

#: fs/partitioning.pm:46
#, c-format
msgid "Choose the partitions you want to format"
msgstr "Izaberi particije za formatiranje"

#: fs/partitioning.pm:75
#, c-format
msgid ""
"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
"you can lose data)"
msgstr ""
"Neuspešna prvera fajl sistema %s. Da li želite da popravite greške? (budite "
"pažljivi, možete izgubiti podatke)"

#: fs/partitioning.pm:78
#, c-format
msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Nema dovoljno swap-a da završi instalaciju, dodajte još swap-a"

#: fs/partitioning_wizard.pm:51
#, c-format
msgid ""
"You must have a root partition.\n"
"For this, create a partition (or click on an existing one).\n"
"Then choose action ``Mount point'' and set it to `/'"
msgstr ""
"Morate imati  root particiju.\n"
"Za ovo, kreirajte particiju (ili kliknite na postojeću).\n"
"Zatim izaberite \"Tačka montiranja\" i podesite na `/'"

#: fs/partitioning_wizard.pm:56
#, c-format
msgid ""
"You do not have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
"Hm, nema swap particije\n"
"\n"
"Svejedno nastaviti dalje ?"

#: fs/partitioning_wizard.pm:84
#, c-format
msgid "Use free space"
msgstr "Koristi slobodan prostor"

#: fs/partitioning_wizard.pm:86
#, c-format
msgid "Not enough free space to allocate new partitions"
msgstr "Nema dovoljno slobodnog prostora za alociranje novih particija"

#: fs/partitioning_wizard.pm:94
#, c-format
msgid "Use existing partitions"
msgstr "Koristi postojeću particiju"

#: fs/partitioning_wizard.pm:96
#, c-format
msgid "There is no existing partition to use"
msgstr "Nema ni jedne pariticije za rad"

#: fs/partitioning_wizard.pm:103
#, c-format
msgid "Use the Microsoft Windows® partition for loopback"
msgstr "Koristi Microsoft Windows® particiju za loopback"

#: fs/partitioning_wizard.pm:106
#, c-format
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Koju particiju želite da korisite za Linux4Win?"

#: fs/partitioning_wizard.pm:108
#, c-format
msgid "Choose the sizes"
msgstr "Izaberite veličinu"

#: fs/partitioning_wizard.pm:109
#, c-format
msgid "Root partition size in MB: "
msgstr "Veličina Root particije u MB:"

#: fs/partitioning_wizard.pm:110
#, c-format
msgid "Swap partition size in MB: "
msgstr "Veličina Swap particije u MB:"

#: fs/partitioning_wizard.pm:119
#, c-format
msgid "There is no FAT partition to use as loopback (or not enough space left)"
msgstr ""
"Ne postoje FAT particije kojima se može promeniti veličina (ili nema "
"dovoljno slobodnog prostora)"

#: fs/partitioning_wizard.pm:127
#, fuzzy, c-format
msgid "Use the free space on a Microsoft Windows® partition"
msgstr "Korisiti slobodan prostor na Windows particiji"

#: fs/partitioning_wizard.pm:129
#, c-format
msgid "Which partition do you want to resize?"
msgstr "Kojoj particiji  želite da promenite veličinu?"

#: fs/partitioning_wizard.pm:143
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
"the following error occurred: %s"
msgstr ""
"Program za promenu veličine FAT paritcija ne može da upravlja vašom "
"particijom, \n"
"zbog sledeće greške: %s"

#: fs/partitioning_wizard.pm:146
#, c-format
msgid "Computing the size of the Microsoft Windows® partition"
msgstr "Proračunavam veličinu Microsoft Windows® particije"

#: fs/partitioning_wizard.pm:153
#, c-format
msgid ""
"Your Microsoft Windows® partition is too fragmented. Please reboot your "
"computer under Microsoft Windows®, run the ``defrag'' utility, then restart "
"the Mandriva Linux installation."
msgstr ""
"Vaša Microsoft Windows® particija je previše fragmentirana, prvo pokrenite "
"``defrag''"

#: fs/partitioning_wizard.pm:156
#, c-format
msgid ""
"WARNING!\n"
"\n"
"\n"
"Your Microsoft Windows® partition will be now resized.\n"
"\n"
"\n"
"Be careful: this operation is dangerous. If you have not already done so, "
"you first need to exit the installation, run \"chkdsk c:\" from a Command "
"Prompt under Microsoft Windows® (beware, running graphical program \"scandisk"
"\" is not enough, be sure to use \"chkdsk\" in a Command Prompt!), "
"optionally run defrag, then restart the installation. You should also backup "
"your data.\n"
"\n"
"\n"
"When sure, press %s."
msgstr ""
"UPOZORENJE!\n"
"\n"
"\n"
"Vaša Microsoft Windows® particija treba da promeniti svoju veličinu.\n"
"\n"
"\n"
"Budite pažljivi: ova operacija je opasna. Ukoliko to do sada niste radili, "
"prvo treba da izađete iz instalacije,pokrenete run \"chkdsk c:\" iz komande "
"linije pod Microsoft Windows® (pažnja, pokretanje grafičkog programa "
"\"scandisk\" nije dovoljno, pa bi zato trebali da koristite \"chkdsk\" u "
"komandnoj liniji!), možete pokrenuti i  defrag, a zatim onda ponovo "
"pokrenite instalaciju.\n"
"Takođe bi trebali da uradite bekap svojih podataka.\n"
"\n"
"\n"
"Ako ste sigurni, pritisnite %s."

#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: fs/partitioning_wizard.pm:165 interactive.pm:549 interactive/curses.pm:263
#: ugtk2.pm:519
#, c-format
msgid "Next"
msgstr "Sledeći "

#: fs/partitioning_wizard.pm:168
#, fuzzy, c-format
msgid "Partitionning"
msgstr "Particionisanje"

#: fs/partitioning_wizard.pm:168
#, c-format
msgid "Which size do you want to keep for Microsoft Windows® on partition %s?"
msgstr "Koju veličinu želite da zadržite za prozore particija %s?"

#: fs/partitioning_wizard.pm:169
#, c-format
msgid "Size"
msgstr "Veličina"

#: fs/partitioning_wizard.pm:178
#, c-format
msgid "Resizing Microsoft Windows® partition"
msgstr "Proračunavam granice Microsoft Windows® fajl-sistema"

#: fs/partitioning_wizard.pm:183
#, c-format
msgid "FAT resizing failed: %s"
msgstr "FAT izmena veličine neuspela: %s"

#: fs/partitioning_wizard.pm:186
#, c-format
msgid ""
"To ensure data integrity after resizing the partition(s), \n"
"filesystem checks will be run on your next boot into Microsoft Windows®"
msgstr ""
"Da bi osigurali integritet nakon promene veličine particije(a), \n"
"provera fajl sistema će biti pokrenuta kada se sledeći put ulogujete u "
"Windows(TM)"

#: fs/partitioning_wizard.pm:198
#, c-format
msgid "There is no FAT partition to resize (or not enough space left)"
msgstr ""
"Ne postoje FAT particije kojima se može promeniti veličina  (ili nema "
"dovoljno slobodnog prostora)"

#: fs/partitioning_wizard.pm:203
#, c-format
msgid "Remove Microsoft Windows®"
msgstr "Ukloni Microsoft Windows®"

#: fs/partitioning_wizard.pm:203
#, c-format
msgid "Erase and use entire disk"
msgstr "Izbriši i upotrebi ceo disk"

#: fs/partitioning_wizard.pm:205
#, c-format
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr ""
"Imate više od jednog hard diska, na koji od njih želite da instalirate "
"Linux ?"

#: fs/partitioning_wizard.pm:210 fsedit.pm:600
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "SVE postojeće particije i podaci na disku %s će biti izgubljeni"

#: fs/partitioning_wizard.pm:220
#, c-format
msgid "Custom disk partitioning"
msgstr "Custom disk particioniranje"

#: fs/partitioning_wizard.pm:226
#, c-format
msgid "Use fdisk"
msgstr "Koristi fdisk"

#: fs/partitioning_wizard.pm:229
#, c-format
msgid ""
"You can now partition %s.\n"
"When you are done, do not forget to save using `w'"
msgstr ""
"Sada možete particionirati vaš %s hard disk uređaj\n"
"Kada završite,ne zaboravite da potvrdite koristeći `w'"

#: fs/partitioning_wizard.pm:269
#, c-format
msgid "I can not find any room for installing"
msgstr "Ne mogu da pronađem slobodan prostor za instaliranje"

#: fs/partitioning_wizard.pm:278
#, c-format
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "DrakX čarobnjak za particioniranje je pronašao sledeća rešenja:"

#: fs/partitioning_wizard.pm:287
#, c-format
msgid "Partitioning failed: %s"
msgstr "Particioniranje nije uspelo: %s"

#: fs/type.pm:380
#, c-format
msgid "You can not use JFS for partitions smaller than 16MB"
msgstr "Ne možete koristiti JFS za particije manje od 16MB"

#: fs/type.pm:381
#, c-format
msgid "You can not use ReiserFS for partitions smaller than 32MB"
msgstr "Ne možete koristiti ReiserFS za particije manje od 32MB"

#: fsedit.pm:24
#, c-format
msgid "simple"
msgstr "jednostavno"

#: fsedit.pm:28
#, c-format
msgid "with /usr"
msgstr "sa /usr"

#: fsedit.pm:33
#, c-format
msgid "server"
msgstr "server"

#: fsedit.pm:137
#, c-format
msgid "BIOS software RAID detected on disks %s. Activate it?"
msgstr ""

#: fsedit.pm:247
#, c-format
msgid ""
"I can not read the partition table of device %s, it's too corrupted for me :"
"(\n"
"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
"The other solution is to not allow DrakX to modify the partition table.\n"
"(the error is %s)\n"
"\n"
"Do you agree to lose all the partitions?\n"
msgstr ""
"Ne mogu pročitati tabelu particija uređaj %s , mnogo je iskvarena za mene :"
"(\n"
"Pokušaću dalje zaobilazeći loše particijeMogu pokušati da formatiram loše "
"particije (SVI PODACI će biti izgubljeni !).\n"
"Drugo rešenje je da se DrakX onemogući da modufikuje tabelu particija.\n"
"(greška je %s)\n"
"\n"
"Da li se pristajete da izgubite sve particije?\n"

#: fsedit.pm:425
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "Tačke montiranja moraju da počinju sa vodećim /"

#: fsedit.pm:426
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr "Tačke montiranja treba da sadrže samo alfanumeričke karaktere"

#: fsedit.pm:427
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Već postoji particija sa tačkom montiranja %s\n"

#: fsedit.pm:431
#, c-format
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
"Please be sure to add a /boot partition"
msgstr ""
"Izabrali ste softversku RAID particiju kao root (/).\n"
"Nijedan starter ne može da radi sa tim bez /boot particije.\n"
"Zato treba da dodate /boot particiju"

#: fsedit.pm:437
#, fuzzy, c-format
msgid ""
"You can not use the LVM Logical Volume for mount point %s since it spans "
"physical volumes"
msgstr "Ne možete koristiti logičku LVM particiju za tačku montiranja %s"

#: fsedit.pm:439
#, fuzzy, c-format
msgid ""
"You've selected the LVM Logical Volume as root (/).\n"
"The bootloader is not able to handle this when the volume spans physical "
"volumes.\n"
"You should create a /boot partition first"
msgstr ""
"Izabrali ste softversku RAID particiju kao root (/).\n"
"Nijedan starter ne može da radi sa tim bez /boot particije.\n"
"Zato treba da dodate /boot particiju"

#: fsedit.pm:443 fsedit.pm:445
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr "Ovaj direktorijum treba da ostane u root-u  datotečnog sistema"

#: fsedit.pm:447 fsedit.pm:449
#, c-format
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
"point\n"
msgstr ""
"Potreban vam je pravi datotečni sistem (ext2/ext3, reiserfs, xfs, ili jfs) "
"za ovu tačku montiranja\n"

#: fsedit.pm:451
#, c-format
msgid "You can not use an encrypted file system for mount point %s"
msgstr "Ne možete koristiti enkriptovani fajl sistem za tačku montiranja %s"

#: fsedit.pm:516
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr "Nema dovoljno slobodnog prostora za auto-alociranje"

#: fsedit.pm:518
#, c-format
msgid "Nothing to do"
msgstr "Nema šta da se uradi"

#: harddrake/data.pm:73
#, c-format
msgid "SATA controllers"
msgstr "SATA kontroleri"

#: harddrake/data.pm:82
#, c-format
msgid "RAID controllers"
msgstr "RAID kontroleri"

#: harddrake/data.pm:92
#, c-format
msgid "(E)IDE/ATA controllers"
msgstr "(E)IDE/ATA kontroleri"

#: harddrake/data.pm:103
#, fuzzy, c-format
msgid "Card readers"
msgstr "Model kartice :"

#: harddrake/data.pm:112
#, c-format
msgid "Firewire controllers"
msgstr "Firewire kontroleri"

#: harddrake/data.pm:121
#, c-format
msgid "PCMCIA controllers"
msgstr "PCMCIA kontroleri"

#: harddrake/data.pm:130
#, c-format
msgid "SCSI controllers"
msgstr "SCSI kontroleri"

#: harddrake/data.pm:139
#, c-format
msgid "USB controllers"
msgstr "USB kontroleri"

#: harddrake/data.pm:148
#, fuzzy, c-format
msgid "USB ports"
msgstr ", USB štampač"

#: harddrake/data.pm:157
#, c-format
msgid "SMBus controllers"
msgstr "SMBus kontroleri"

#: harddrake/data.pm:166
#, c-format
msgid "Bridges and system controllers"
msgstr "Mostovi i sistemski kontroleri"

#: harddrake/data.pm:178
#, c-format
msgid "Floppy"
msgstr "Flopi"

#: harddrake/data.pm:188
#, c-format
msgid "Zip"
msgstr "Zip"

#: harddrake/data.pm:204
#, c-format
msgid "Hard Disk"
msgstr "Hard Disk"

#: harddrake/data.pm:214
#, c-format
msgid "USB Mass Storage Devices"
msgstr ""

#: harddrake/data.pm:223
#, c-format
msgid "CDROM"
msgstr "CDROM"

#: harddrake/data.pm:233
#, c-format
msgid "CD/DVD burners"
msgstr "CD/DVD rezači"

#: harddrake/data.pm:243
#, c-format
msgid "DVD-ROM"
msgstr "DVD-ROM"

#: harddrake/data.pm:253
#, c-format
msgid "Tape"
msgstr "Traka"

#: harddrake/data.pm:264
#, c-format
msgid "AGP controllers"
msgstr "AGP kontroleri"

#: harddrake/data.pm:273
#, c-format
msgid "Videocard"
msgstr "Video kartica"

#: harddrake/data.pm:282
#, c-format
msgid "DVB card"
msgstr ""

#: harddrake/data.pm:290
#, c-format
msgid "Tvcard"
msgstr "TV kartica"

#: harddrake/data.pm:300
#, c-format
msgid "Other MultiMedia devices"
msgstr "Drugi multimedijalni uređaji"

#: harddrake/data.pm:309
#, c-format
msgid "Soundcard"
msgstr "Zvučna kartica"

#: harddrake/data.pm:323
#, c-format
msgid "Webcam"
msgstr "Veb kamera"

#: harddrake/data.pm:338
#, c-format
msgid "Processors"
msgstr "Procesori"

#: harddrake/data.pm:348
#, fuzzy, c-format
msgid "ISDN adapters"
msgstr "Interna  ISDN kartica"

#: harddrake/data.pm:359
#, c-format
msgid "USB sound devices"
msgstr ""

#: harddrake/data.pm:368
#, c-format
msgid "Radio cards"
msgstr ""

#: harddrake/data.pm:377
#, c-format
msgid "ATM network cards"
msgstr ""

#: harddrake/data.pm:386
#, c-format
msgid "WAN network cards"
msgstr ""

#: harddrake/data.pm:395
#, c-format
msgid "Bluetooth devices"
msgstr ""

#: harddrake/data.pm:404
#, c-format
msgid "Ethernetcard"
msgstr "Mrežna kartica"

#: harddrake/data.pm:421
#, c-format
msgid "Modem"
msgstr "Modem"

#: harddrake/data.pm:431
#, c-format
msgid "ADSL adapters"
msgstr ""

#: harddrake/data.pm:443
#, c-format
msgid "Memory"
msgstr "Memorija"

#: harddrake/data.pm:452
#, c-format
msgid "Printer"
msgstr "Štampač"

#. -PO: these are joysticks controllers:
#: harddrake/data.pm:466
#, c-format
msgid "Game port controllers"
msgstr ""

#: harddrake/data.pm:475
#, c-format
msgid "Joystick"
msgstr "Džojstik"

#: harddrake/data.pm:485
#, c-format
msgid "Keyboard"
msgstr "Tastatura"

#: harddrake/data.pm:499
#, c-format
msgid "Tablet and touchscreen"
msgstr ""

#: harddrake/data.pm:508
#, c-format
msgid "Mouse"
msgstr "Miš"

#: harddrake/data.pm:523
#, c-format
msgid "Biometry"
msgstr ""

#: harddrake/data.pm:531
#, c-format
msgid "UPS"
msgstr "UPS"

#: harddrake/data.pm:540
#, c-format
msgid "Scanner"
msgstr "Skener"

#: harddrake/data.pm:551
#, c-format
msgid "Unknown/Others"
msgstr "Nepoznati/Ostali"

#: harddrake/data.pm:581
#, c-format
msgid "cpu # "
msgstr "cpu # "

#: harddrake/sound.pm:300
#, c-format
msgid "Please Wait... Applying the configuration"
msgstr "Samo momenat... primena konfiguracije"

#: harddrake/sound.pm:363
#, c-format
msgid "Enable PulseAudio"
msgstr ""

#: harddrake/sound.pm:367
#, c-format
msgid "Automatic routing from ALSA to PulseAudio"
msgstr ""

#: harddrake/sound.pm:372
#, c-format
msgid "Enable 5.1 sound with Pulse Audio"
msgstr ""

#: harddrake/sound.pm:377
#, c-format
msgid "Enable user switching for audio applications"
msgstr ""

#: harddrake/sound.pm:382
#, c-format
msgid "Reset sound mixer to default values"
msgstr ""

#: harddrake/sound.pm:387
#, c-format
msgid "Trouble shooting"
msgstr "Pomoć "

#: harddrake/sound.pm:394
#, c-format
msgid "No alternative driver"
msgstr "Nema alternativnog drajvera"

#: harddrake/sound.pm:395
#, c-format
msgid ""
"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
"currently uses \"%s\""
msgstr ""
"Ne postoji poznati alternativni OSS/ALSA drajver za vašu zvučnu karticu (%s) "
"koja trenutno koristi \"%s\""

#: harddrake/sound.pm:402
#, c-format
msgid "Sound configuration"
msgstr "Podešavanje zvuka"

#: harddrake/sound.pm:404
#, c-format
msgid ""
"Here you can select an alternative driver (either OSS or ALSA) for your "
"sound card (%s)."
msgstr ""
"Ovde možete izabrati alternativni drajver (ili OSS ili ALSA) za svoju zvučnu "
"karticu (%s)."

#. -PO: here the first %s is either "OSS" or "ALSA", 
#. -PO: the second %s is the name of the current driver
#. -PO: and the third %s is the name of the default driver
#: harddrake/sound.pm:409
#, c-format
msgid ""
"\n"
"\n"
"Your card currently use the %s\"%s\" driver (default driver for your card is "
"\"%s\")"
msgstr ""
"\n"
"\n"
"Vaša kartica trenutno koristi %s\"%s\" drajver (default drajver za vašu "
"karticu je \"%s\")"

#: harddrake/sound.pm:411
#, fuzzy, c-format
msgid ""
"OSS (Open Sound System) was the first sound API. It's an OS independent "
"sound API (it's available on most UNIX(tm) systems) but it's a very basic "
"and limited API.\n"
"What's more, OSS drivers all reinvent the wheel.\n"
"\n"
"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
"which\n"
"supports quite a large range of ISA, USB and PCI cards.\n"
"\n"
"It also provides a much higher API than OSS.\n"
"\n"
"To use alsa, one can either use:\n"
"- the old compatibility OSS api\n"
"- the new ALSA api that provides many enhanced features but requires using "
"the ALSA library.\n"
msgstr ""
"OSS (Otvoreni Sistem za Zvuk)je bio prvu zvučni API. On je nezavisan zvučni "
"API u odnosu na operativni sistem(dostupan je na većini unices sistema) ali "
"je prilično rudimenaran i ograničen API.\n"
"Čak šta više, većina drajvera kao da ponovo otkirva točak \n"
"\n"
"ALSA (Advanced Linux Sound Architecture) je modularne arhitekture koji\n"
"podržava veliki broj ISA, USB i PCI kartica.\n"
"\n"
"On takođe obezbeđuje mnogo veći API u odnosu na  OSS.\n"
"\n"
"Da bi koristili alsa, možete koristi ili:\n"
"- stari kompatibilni OSS api\n"
"- novi ALSA api koji omogućava mnogo napredne mogućnosti ali zahteva "
"korišćenje ALSA biblioteke.\n"

#: harddrake/sound.pm:425 harddrake/sound.pm:508
#, c-format
msgid "Driver:"
msgstr "Drajver:"

#: harddrake/sound.pm:439
#, c-format
msgid ""
"The old \"%s\" driver is blacklisted.\n"
"\n"
"It has been reported to oops the kernel on unloading.\n"
"\n"
"The new \"%s\" driver will only be used on next bootstrap."
msgstr ""
"Stari \"%s\" drajver je na crnoj listi.\n"
"\n"
"Prijavljeno je da opstruiše kernel pri restartovanju.\n"
"\n"
"Novi \"%s\" drajver će biti korišćen samo pri sledećem startanju sistema."

#: harddrake/sound.pm:447
#, c-format
msgid "No open source driver"
msgstr "Nema open source drajvera"

#: harddrake/sound.pm:448
#, c-format
msgid ""
"There's no free driver for your sound card (%s), but there's a proprietary "
"driver at \"%s\"."
msgstr ""
"Ne postoji besplatan drajver za vašu zvučnu karticu (%s), ali postoji "
"licencirani drajver na \"%s\"."

#: harddrake/sound.pm:451
#, c-format
msgid "No known driver"
msgstr "Nema poznatog drajvera"

#: harddrake/sound.pm:452
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr "Ne postoji poznati drajver za vašu zvučnu karticu (%s)"

#: harddrake/sound.pm:467
#, c-format
msgid "Sound trouble shooting"
msgstr "Pomoć za podešavanje zvuka"

#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: harddrake/sound.pm:470
#, c-format
msgid ""
"The classic bug sound tester is to run the following commands:\n"
"\n"
"\n"
"- \"lspcidrake -v | fgrep -i AUDIO\" will tell you which driver your card "
"uses\n"
"by default\n"
"\n"
"- \"grep sound-slot /etc/modprobe.conf\" will tell you what driver it\n"
"currently uses\n"
"\n"
"- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
"loaded or not\n"
"\n"
"- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" will\n"
"tell you if sound and alsa services are configured to be run on\n"
"initlevel 3\n"
"\n"
"- \"aumix -q\" will tell you if the sound volume is muted or not\n"
"\n"
"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
msgstr ""
"Klasični tester zvuka treba da pokrene sledeće komande:\n"
"\n"
"\n"
"- \"lspcidrake -v | fgrep -i AUDIO\" će vam reći koji drajver vaša zvučna "
"kartica koristi \n"
"po default-u\n"
"\n"
"- \"grep sound-slot /etc/modprobe.conf\" će vam reći koji je drajver "
"trenutno\n"
"u upotrebi\n"
"\n"
"- \"/sbin/lsmod\" će vam omogućiti da proverite da li njegov je drajverov "
"modul\n"
"učitan ili nije\n"
"\n"
"- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" će\n"
"vam reći da li su server za zvuk i alsa podešeni za pokretanje u\n"
"initlevel 3\n"
"\n"
"- \"aumix -q\" će vam reći kakav je nivo jačine zvuka\n"
"\n"
"- \"/sbin/fuser -v /dev/dsp\" će vam reći koji program koristi dzvučnu "
"karticu.\n"

#: harddrake/sound.pm:497
#, c-format
msgid "Let me pick any driver"
msgstr "Doozvoli da izaberem bilo koji uređaj"

#: harddrake/sound.pm:500
#, c-format
msgid "Choosing an arbitrary driver"
msgstr "Biram odgovarajući drajver"

#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: harddrake/sound.pm:503
#, c-format
msgid ""
"If you really think that you know which driver is the right one for your "
"card\n"
"you can pick one in the above list.\n"
"\n"
"The current driver for your \"%s\" sound card is \"%s\" "
msgstr ""
"Ukoliko zaista mislite da znate koji je pravi drajver za vašu karticu\n"
"možete izabrati jednu sa gornje liste.\n"
"\n"
"Trenutni drajver za vašu \"%s\" zvučnu karticu je \"%s\" "

#: harddrake/v4l.pm:12
#, c-format
msgid "Auto-detect"
msgstr "Auto-detekcija"

#: harddrake/v4l.pm:97 harddrake/v4l.pm:285 harddrake/v4l.pm:337
#, c-format
msgid "Unknown|Generic"
msgstr "Nepoznati|Generic"

#: harddrake/v4l.pm:130
#, c-format
msgid "Unknown|CPH05X (bt878) [many vendors]"
msgstr "Nepoznati|CPH05X (bt878) [mnogi proizvođači]"

#: harddrake/v4l.pm:131
#, c-format
msgid "Unknown|CPH06X (bt878) [many vendors]"
msgstr "Nepoznati|CPH06X (bt878) [mnogi proizvođači]"

#: harddrake/v4l.pm:475
#, c-format
msgid ""
"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
"detect the rights parameters.\n"
"If your card is misdetected, you can force the right tuner and card types "
"here. Just select your tv card parameters if needed."
msgstr ""
"Za većinu modernih TV kartica, bttv modul GNU/Linux kernela jednostavno auto-"
"detektuje prave parametre.\n"
"Ukoliko je kartica pogrešno detektovana, ovde možete da podesite pravi "
"tjuner i tip kartice. Samo selektujte parametre za vašu TV karticu ako je "
"potrebno"

#: harddrake/v4l.pm:478
#, c-format
msgid "Card model:"
msgstr "Model kartice :"

#: harddrake/v4l.pm:479
#, c-format
msgid "Tuner type:"
msgstr "Tip tjunera :"

#: interactive.pm:128 interactive.pm:549 interactive/curses.pm:263
#: interactive/http.pm:103 interactive/http.pm:156 interactive/stdio.pm:39
#: interactive/stdio.pm:148 interactive/stdio.pm:149 mygtk2.pm:817
#: ugtk2.pm:421 ugtk2.pm:519 ugtk2.pm:812 ugtk2.pm:835
#, c-format
msgid "Ok"
msgstr "U redu"

#: interactive.pm:228 modules/interactive.pm:72 ugtk2.pm:811 wizards.pm:156
#, c-format
msgid "Yes"
msgstr "Da"

#: interactive.pm:228 modules/interactive.pm:72 ugtk2.pm:811 wizards.pm:156
#, c-format
msgid "No"
msgstr "Ne"

#: interactive.pm:262
#, c-format
msgid "Choose a file"
msgstr "Izaberite fajl"

#: interactive.pm:387 interactive/gtk.pm:455
#, c-format
msgid "Add"
msgstr "Dodaj"

#: interactive.pm:387 interactive/gtk.pm:455
#, c-format
msgid "Modify"
msgstr "Promeni"

#: interactive.pm:387 interactive/gtk.pm:455
#, c-format
msgid "Remove"
msgstr "Ukloni"

#: interactive.pm:549 interactive/curses.pm:263 ugtk2.pm:519
#, c-format
msgid "Finish"
msgstr "Kraj"

#: interactive.pm:550 interactive/curses.pm:260 ugtk2.pm:517
#, c-format
msgid "Previous"
msgstr "Prethodni"

#: interactive/curses.pm:556 ugtk2.pm:872
#, fuzzy, c-format
msgid "No file chosen"
msgstr "izbor datoteke"

#: interactive/curses.pm:560 ugtk2.pm:876
#, fuzzy, c-format
msgid "You have chosen a directory, not a file"
msgstr "Ime „/“ može predstavljati samo kategoriju, a ne i ključ"

#: interactive/curses.pm:562 ugtk2.pm:878
#, fuzzy, c-format
msgid "No such directory"
msgstr "Nije direktorijum"

#: interactive/curses.pm:562 ugtk2.pm:878
#, c-format
msgid "No such file"
msgstr "Nema takvog fajla"

#: interactive/gtk.pm:570
#, c-format
msgid "Beware, Caps Lock is enabled"
msgstr ""

#: interactive/stdio.pm:29 interactive/stdio.pm:154
#, c-format
msgid "Bad choice, try again\n"
msgstr "Loš izbor, probajte ponovo\n"

#: interactive/stdio.pm:30 interactive/stdio.pm:155
#, c-format
msgid "Your choice? (default %s) "
msgstr "Vaš izbor ? (po default-u %s) "

#: interactive/stdio.pm:54
#, c-format
msgid ""
"Entries you'll have to fill:\n"
"%s"
msgstr ""
"Unosi koje treba da popunite:\n"
"%s"

#: interactive/stdio.pm:70
#, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "Vaš izbor? (0/1, default `%s') "

#: interactive/stdio.pm:97
#, c-format
msgid "Button `%s': %s"
msgstr "Taster `%s': %s"

#: interactive/stdio.pm:98
#, c-format
msgid "Do you want to click on this button?"
msgstr "Da li želite da kliknete na ovaj taster? "

#: interactive/stdio.pm:110
#, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "Vaš izbor? (default `%s'%s) "

#: interactive/stdio.pm:110
#, c-format
msgid " enter `void' for void entry"
msgstr " unesite `void' za void unos"

#: interactive/stdio.pm:128
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr "=> Postoji mnogo stvari za izbor iz (%s).\n"

#: interactive/stdio.pm:131
#, c-format
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
"Your choice? "
msgstr ""
"Izaberite prvi broj od 10 koje želite da editujete,\n"
"ili samo kliknite na Enter da bi nastavili.\n"
"Vaš izbor? "

#: interactive/stdio.pm:144
#, c-format
msgid ""
"=> Notice, a label changed:\n"
"%s"
msgstr ""
"=> Napomena, promenjeno ime:\n"
"%s"

#: interactive/stdio.pm:151
#, c-format
msgid "Re-submit"
msgstr "Re-submit"

#. -PO: the string "default:LTR" can be translated *ONLY* as "default:LTR"
#. -PO: or as "default:RTL", depending if your language is written from
#. -PO: left to right, or from right to left; any other string is wrong.
#: lang.pm:193
#, c-format
msgid "default:LTR"
msgstr "default:LTR"

#: lang.pm:210
#, c-format
msgid "Andorra"
msgstr "Andora"

#: lang.pm:211 timezone.pm:226
#, c-format
msgid "United Arab Emirates"
msgstr "Ujedinjeni Arapski Emirati"

#: lang.pm:212
#, c-format
msgid "Afghanistan"
msgstr "Avganistan"

#: lang.pm:213
#, c-format
msgid "Antigua and Barbuda"
msgstr "Antigva i Barbuda"

#: lang.pm:214
#, c-format
msgid "Anguilla"
msgstr "Anigla"

#: lang.pm:215
#, c-format
msgid "Albania"
msgstr "Albanija"

#: lang.pm:216
#, c-format
msgid "Armenia"
msgstr "Jermenija"

#: lang.pm:217
#, c-format
msgid "Netherlands Antilles"
msgstr "Holandski Antili"

#: lang.pm:218
#, c-format
msgid "Angola"
msgstr "Angola"

#: lang.pm:219
#, c-format
msgid "Antarctica"
msgstr "Antartik"

#: lang.pm:220 timezone.pm:271
#, c-format
msgid "Argentina"
msgstr "Argentina"

#: lang.pm:221
#, c-format
msgid "American Samoa"
msgstr "Američka Samoa"

#: lang.pm:222 mirror.pm:12 timezone.pm:229
#, c-format
msgid "Austria"
msgstr "Austrija"

#: lang.pm:223 mirror.pm:11 timezone.pm:267
#, c-format
msgid "Australia"
msgstr "Australija"

#: lang.pm:224
#, c-format
msgid "Aruba"
msgstr "Aruba"

#: lang.pm:225
#, c-format
msgid "Azerbaijan"
msgstr "Azerbejdžan"

#: lang.pm:226
#, c-format
msgid "Bosnia and Herzegovina"
msgstr "Bosna i Hrecegovina"

#: lang.pm:227
#, c-format
msgid "Barbados"
msgstr "Barbados"

#: lang.pm:228 timezone.pm:211
#, c-format
msgid "Bangladesh"
msgstr "Bangladeš"

#: lang.pm:229 mirror.pm:13 timezone.pm:231
#, c-format
msgid "Belgium"
msgstr "Belgija"

#: lang.pm:230
#, c-format
msgid "Burkina Faso"
msgstr "Burkina Faso"

#: lang.pm:231 timezone.pm:232
#, c-format
msgid "Bulgaria"
msgstr "Bugarska"

#: lang.pm:232
#, c-format
msgid "Bahrain"
msgstr "Bahrein"

#: lang.pm:233
#, c-format
msgid "Burundi"
msgstr "Burundi"

#: lang.pm:234
#, c-format
msgid "Benin"
msgstr "Benin"

#: lang.pm:235
#, c-format
msgid "Bermuda"
msgstr "Bermuda"

#: lang.pm:236
#, c-format
msgid "Brunei Darussalam"
msgstr "Bruneji Darussalam"

#: lang.pm:237
#, c-format
msgid "Bolivia"
msgstr "Bolivija"

#: lang.pm:238 mirror.pm:14 timezone.pm:272
#, c-format
msgid "Brazil"
msgstr "Brazil"

#: lang.pm:239
#, c-format
msgid "Bahamas"
msgstr "Bahami"

#: lang.pm:240
#, c-format
msgid "Bhutan"
msgstr "Butan"

#: lang.pm:241
#, c-format
msgid "Bouvet Island"
msgstr "Ostrva Buve"

#: lang.pm:242
#, c-format
msgid "Botswana"
msgstr "Bocvana"

#: lang.pm:243 timezone.pm:230
#, c-format
msgid "Belarus"
msgstr "Beolorusija"

#: lang.pm:244
#, c-format
msgid "Belize"
msgstr "Belize"

#: lang.pm:245 mirror.pm:15 timezone.pm:261
#, c-format
msgid "Canada"
msgstr "Kanada"

#: lang.pm:246
#, c-format
msgid "Cocos (Keeling) Islands"
msgstr "Kokos (Kelingova) Ostrva"

#: lang.pm:247
#, c-format
msgid "Congo (Kinshasa)"
msgstr "Kongo (Kinšasa)"

#: lang.pm:248
#, c-format
msgid "Central African Republic"
msgstr "Centralno Afrička Republika"

#: lang.pm:249
#, c-format
msgid "Congo (Brazzaville)"
msgstr "Kongo (Brazavil)"

#: lang.pm:250 mirror.pm:39 timezone.pm:255
#, c-format
msgid "Switzerland"
msgstr "Švajcarska"

#: lang.pm:251
#, c-format
msgid "Cote d'Ivoire"
msgstr "Obala slonovače"

#: lang.pm:252
#, c-format
msgid "Cook Islands"
msgstr "Kukova Ostrva"

#: lang.pm:253 timezone.pm:273
#, c-format
msgid "Chile"
msgstr "Čile"

#: lang.pm:254
#, c-format
msgid "Cameroon"
msgstr "Kamerun"

#: lang.pm:255 timezone.pm:212
#, c-format
msgid "China"
msgstr "Kina"

#: lang.pm:256
#, c-format
msgid "Colombia"
msgstr "Kolumbija"

#: lang.pm:257 mirror.pm:16
#, c-format
msgid "Costa Rica"
msgstr "Kostarika"

#: lang.pm:258
#, c-format
msgid "Serbia & Montenegro"
msgstr "Srbija i Crna Gora"

#: lang.pm:259
#, c-format
msgid "Cuba"
msgstr "Kuba"

#: lang.pm:260
#, c-format
msgid "Cape Verde"
msgstr "Kape Verde"

#: lang.pm:261
#, c-format
msgid "Christmas Island"
msgstr "Uskršnja ostrava"

#: lang.pm:262
#, c-format
msgid "Cyprus"
msgstr "Kipar"

#: lang.pm:263 mirror.pm:17 timezone.pm:233
#, c-format
msgid "Czech Republic"
msgstr "Češka"

#: lang.pm:264 mirror.pm:22 timezone.pm:238
#, c-format
msgid "Germany"
msgstr "Nemačka"

#: lang.pm:265
#, c-format
msgid "Djibouti"
msgstr "Džibuti"

#: lang.pm:266 mirror.pm:18 timezone.pm:234
#, c-format
msgid "Denmark"
msgstr "Danska"

#: lang.pm:267
#, c-format
msgid "Dominica"
msgstr "Dominikana"

#: lang.pm:268
#, c-format
msgid "Dominican Republic"
msgstr "Dominikanska Republika"

#: lang.pm:269
#, c-format
msgid "Algeria"
msgstr "Alžir"

#: lang.pm:270
#, c-format
msgid "Ecuador"
msgstr "Ekvador"

#: lang.pm:271 mirror.pm:19 timezone.pm:235
#, c-format
msgid "Estonia"
msgstr "Estonija"

#: lang.pm:272
#, c-format
msgid "Egypt"
msgstr "Egipat"

#: lang.pm:273
#, c-format
msgid "Western Sahara"
msgstr "Zapadna Sahara"

#: lang.pm:274
#, c-format
msgid "Eritrea"
msgstr "Eritreja"

#: lang.pm:275 mirror.pm:37 timezone.pm:253
#, c-format
msgid "Spain"
msgstr "Španija"

#: lang.pm:276
#, c-format
msgid "Ethiopia"
msgstr "Etiopija"

#: lang.pm:277 mirror.pm:20 timezone.pm:236
#, c-format
msgid "Finland"
msgstr "Finska"

#: lang.pm:278
#, c-format
msgid "Fiji"
msgstr "Fidži"

#: lang.pm:279
#, c-format
msgid "Falkland Islands (Malvinas)"
msgstr "Foklandska Ostrva"

#: lang.pm:280
#, c-format
msgid "Micronesia"
msgstr "Mikronezija"

#: lang.pm:281
#, c-format
msgid "Faroe Islands"
msgstr "Farska Ostrva"

#: lang.pm:282 mirror.pm:21 timezone.pm:237
#, c-format
msgid "France"
msgstr "Francuska"

#: lang.pm:283
#, c-format
msgid "Gabon"
msgstr "Gabon"

#: lang.pm:284 timezone.pm:257
#, c-format
msgid "United Kingdom"
msgstr "Velika Britanija"

#: lang.pm:285
#, c-format
msgid "Grenada"
msgstr "Grenada"

#: lang.pm:286
#, c-format
msgid "Georgia"
msgstr "Gruzija"

#: lang.pm:287
#, c-format
msgid "French Guiana"
msgstr "Francuska Gvajana"

#: lang.pm:288
#, c-format
msgid "Ghana"
msgstr "Gana"

#: lang.pm:289
#, c-format
msgid "Gibraltar"
msgstr "Gilbratlar"

#: lang.pm:290
#, c-format
msgid "Greenland"
msgstr "Grenland"

#: lang.pm:291
#, c-format
msgid "Gambia"
msgstr "Gambija"

#: lang.pm:292
#, c-format
msgid "Guinea"
msgstr "Gvineja"

#: lang.pm:293
#, c-format
msgid "Guadeloupe"
msgstr "Gvadalupe"

#: lang.pm:294
#, c-format
msgid "Equatorial Guinea"
msgstr "Ekvatorijalna Gvineja"

#: lang.pm:295 mirror.pm:23 timezone.pm:239
#, c-format
msgid "Greece"
msgstr "Grčka"

#: lang.pm:296
#, c-format
msgid "South Georgia and the South Sandwich Islands"
msgstr "Južna Džordžija i Južna Sendvička Ostrva"

#: lang.pm:297 timezone.pm:262
#, c-format
msgid "Guatemala"
msgstr "Gvatemala"

#: lang.pm:298
#, c-format
msgid "Guam"
msgstr "Guam"

#: lang.pm:299
#, c-format
msgid "Guinea-Bissau"
msgstr "Gvineja-Bisao"

#: lang.pm:300
#, c-format
msgid "Guyana"
msgstr "Gvajana"

#: lang.pm:301
#, fuzzy, c-format
msgid "Hong Kong SAR (China)"
msgstr "Hong Kong"

#: lang.pm:302
#, c-format
msgid "Heard and McDonald Islands"
msgstr "Herdova i McDonald Ostrva"

#: lang.pm:303
#, c-format
msgid "Honduras"
msgstr "Honduras"

#: lang.pm:304
#, c-format
msgid "Croatia"
msgstr "Hrvatska"

#: lang.pm:305
#, c-format
msgid "Haiti"
msgstr "Haiti"

#: lang.pm:306 mirror.pm:24 timezone.pm:240
#, c-format
msgid "Hungary"
msgstr "Mađarska"

#: lang.pm:307 timezone.pm:215
#, c-format
msgid "Indonesia"
msgstr "Indonezija"

#: lang.pm:308 mirror.pm:25 timezone.pm:241
#, c-format
msgid "Ireland"
msgstr "Irska"

#: lang.pm:309 mirror.pm:26 timezone.pm:217
#, c-format
msgid "Israel"
msgstr "Izrael"

#: lang.pm:310 timezone.pm:214
#, c-format
msgid "India"
msgstr "Indija"

#: lang.pm:311
#, c-format
msgid "British Indian Ocean Territory"
msgstr "Britanska Indijska Okeanska Teritorija"

#: lang.pm:312
#, c-format
msgid "Iraq"
msgstr "Irak"

#: lang.pm:313 timezone.pm:216
#, c-format
msgid "Iran"
msgstr "Iran"

#: lang.pm:314
#, c-format
msgid "Iceland"
msgstr "Island"

#: lang.pm:315 mirror.pm:27 timezone.pm:242
#, c-format
msgid "Italy"
msgstr "Italija"

#: lang.pm:316
#, c-format
msgid "Jamaica"
msgstr "Jamajka"

#: lang.pm:317
#, c-format
msgid "Jordan"
msgstr "Jordan"

#: lang.pm:318 mirror.pm:28 timezone.pm:218
#, c-format
msgid "Japan"
msgstr "Japan"

#: lang.pm:319
#, c-format
msgid "Kenya"
msgstr "Kenija"

#: lang.pm:320
#, c-format
msgid "Kyrgyzstan"
msgstr "Kirgistan"

#: lang.pm:321
#, c-format
msgid "Cambodia"
msgstr "Kambodža"

#: lang.pm:322
#, c-format
msgid "Kiribati"
msgstr "Kiribati"

#: lang.pm:323
#, c-format
msgid "Comoros"
msgstr "Komori"

#: lang.pm:324
#, c-format
msgid "Saint Kitts and Nevis"
msgstr "Sveti Kits i Nevis"

#: lang.pm:325
#, c-format
msgid "Korea (North)"
msgstr "Koreja (Severna)"

#: lang.pm:326 timezone.pm:219
#, c-format
msgid "Korea"
msgstr "Koreja"

#: lang.pm:327
#, c-format
msgid "Kuwait"
msgstr "Kuvajt"

#: lang.pm:328
#, c-format
msgid "Cayman Islands"
msgstr "Kajmanska Ostrva"

#: lang.pm:329
#, c-format
msgid "Kazakhstan"
msgstr "Kazahstan"

#: lang.pm:330
#, c-format
msgid "Laos"
msgstr "Laos"

#: lang.pm:331
#, c-format
msgid "Lebanon"
msgstr "Liban"

#: lang.pm:332
#, c-format
msgid "Saint Lucia"
msgstr "Sveta Lucija"

#: lang.pm:333
#, c-format
msgid "Liechtenstein"
msgstr "Lihtenštajn"

#: lang.pm:334
#, c-format
msgid "Sri Lanka"
msgstr "Šri Lanka"

#: lang.pm:335
#, c-format
msgid "Liberia"
msgstr "Liberija"

#: lang.pm:336
#, c-format
msgid "Lesotho"
msgstr "Lesoto"

#: lang.pm:337 timezone.pm:243
#, c-format
msgid "Lithuania"
msgstr "Litvanija"

#: lang.pm:338 timezone.pm:244
#, c-format
msgid "Luxembourg"
msgstr "Luksemburg"

#: lang.pm:339
#, c-format
msgid "Latvia"
msgstr "Letonija"

#: lang.pm:340
#, c-format
msgid "Libya"
msgstr "Libija"

#: lang.pm:341
#, c-format
msgid "Morocco"
msgstr "Maroko"

#: lang.pm:342
#, c-format
msgid "Monaco"
msgstr "Monako"

#: lang.pm:343
#, c-format
msgid "Moldova"
msgstr "Moldavija"

#: lang.pm:344
#, c-format
msgid "Madagascar"
msgstr "Madagaskar"

#: lang.pm:345
#, c-format
msgid "Marshall Islands"
msgstr "Maršalova Ostrva"

#: lang.pm:346
#, c-format
msgid "Macedonia"
msgstr "Makedonija"

#: lang.pm:347
#, c-format
msgid "Mali"
msgstr "Mali"

#: lang.pm:348
#, c-format
msgid "Myanmar"
msgstr "Mianmar (Burma)"

#: lang.pm:349
#, c-format
msgid "Mongolia"
msgstr "Mongolija"

#: lang.pm:350
#, c-format
msgid "Northern Mariana Islands"
msgstr "Severno Marijanska Ostrva"

#: lang.pm:351
#, c-format
msgid "Martinique"
msgstr "Martinik"

#: lang.pm:352
#, c-format
msgid "Mauritania"
msgstr "Mauritanija"

#: lang.pm:353
#, c-format
msgid "Montserrat"
msgstr "Monserat"

#: lang.pm:354
#, c-format
msgid "Malta"
msgstr "Malta"

#: lang.pm:355
#, c-format
msgid "Mauritius"
msgstr "Mauricijus"

#: lang.pm:356
#, c-format
msgid "Maldives"
msgstr "Maldivi"

#: lang.pm:357
#, c-format
msgid "Malawi"
msgstr "Malavi"

#: lang.pm:358 timezone.pm:263
#, c-format
msgid "Mexico"
msgstr "Meksiko"

#: lang.pm:359 timezone.pm:220
#, c-format
msgid "Malaysia"
msgstr "Malezija"

#: lang.pm:360
#, c-format
msgid "Mozambique"
msgstr "Mozambik"

#: lang.pm:361
#, c-format
msgid "Namibia"
msgstr "Namibija"

#: lang.pm:362
#, c-format
msgid "New Caledonia"
msgstr "Nova Kaledonija"

#: lang.pm:363
#, c-format
msgid "Niger"
msgstr "Niger"

#: lang.pm:364
#, c-format
msgid "Norfolk Island"
msgstr "Norfolk Ostrva"

#: lang.pm:365
#, c-format
msgid "Nigeria"
msgstr "Nigerija"

#: lang.pm:366
#, c-format
msgid "Nicaragua"
msgstr "Nikaragva"

#: lang.pm:367 mirror.pm:29 timezone.pm:245
#, c-format
msgid "Netherlands"
msgstr "Holandija"

#: lang.pm:368 mirror.pm:31 timezone.pm:246
#, c-format
msgid "Norway"
msgstr "Norveška"

#: lang.pm:369
#, c-format
msgid "Nepal"
msgstr "Nepal"

#: lang.pm:370
#, c-format
msgid "Nauru"
msgstr "Nauru"

#: lang.pm:371
#, c-format
msgid "Niue"
msgstr "Niue"

#: lang.pm:372 mirror.pm:30 timezone.pm:268
#, c-format
msgid "New Zealand"
msgstr "NOvi Zeland"

#: lang.pm:373
#, c-format
msgid "Oman"
msgstr "Oman"

#: lang.pm:374
#, c-format
msgid "Panama"
msgstr "Panama"

#: lang.pm:375
#, c-format
msgid "Peru"
msgstr "Peru"

#: lang.pm:376
#, c-format
msgid "French Polynesia"
msgstr "Fransuska Polinezija"

#: lang.pm:377
#, c-format
msgid "Papua New Guinea"
msgstr "Papua Nova Gvineja"

#: lang.pm:378 timezone.pm:221
#, c-format
msgid "Philippines"
msgstr "Filipini"

#: lang.pm:379
#, c-format
msgid "Pakistan"
msgstr "Pakistan"

#: lang.pm:380 mirror.pm:32 timezone.pm:247
#, c-format
msgid "Poland"
msgstr "Poljska"

#: lang.pm:381
#, c-format
msgid "Saint Pierre and Miquelon"
msgstr "Sveti Pjer i Mikelon"

#: lang.pm:382
#, c-format
msgid "Pitcairn"
msgstr "Pitcairn"

#: lang.pm:383
#, c-format
msgid "Puerto Rico"
msgstr "Porto Riko"

#: lang.pm:384
#, c-format
msgid "Palestine"
msgstr "Palestina"

#: lang.pm:385 mirror.pm:33 timezone.pm:248
#, c-format
msgid "Portugal"
msgstr "Portugal"

#: lang.pm:386
#, c-format
msgid "Paraguay"
msgstr "Paragvaj"

#: lang.pm:387
#, c-format
msgid "Palau"
msgstr "Palau"

#: lang.pm:388
#, c-format
msgid "Qatar"
msgstr "Katar"

#: lang.pm:389
#, c-format
msgid "Reunion"
msgstr "Reunion"

#: lang.pm:390 timezone.pm:249
#, c-format
msgid "Romania"
msgstr "Rumunija"

#: lang.pm:391 mirror.pm:34
#, c-format
msgid "Russia"
msgstr "Rusija"

#: lang.pm:392
#, c-format
msgid "Rwanda"
msgstr "Ruanda"

#: lang.pm:393
#, c-format
msgid "Saudi Arabia"
msgstr "Saudijska Arabija"

#: lang.pm:394
#, c-format
msgid "Solomon Islands"
msgstr "Solomonova Ostrva"

#: lang.pm:395
#, c-format
msgid "Seychelles"
msgstr "Sejšeli"

#: lang.pm:396
#, c-format
msgid "Sudan"
msgstr "Sudan"

#: lang.pm:397 mirror.pm:38 timezone.pm:254
#, c-format
msgid "Sweden"
msgstr "Švedska"

#: lang.pm:398 timezone.pm:222
#, c-format
msgid "Singapore"
msgstr "Singapur"

#: lang.pm:399
#, c-format
msgid "Saint Helena"
msgstr "Sveta Jelena"

#: lang.pm:400 timezone.pm:252
#, c-format
msgid "Slovenia"
msgstr "Slovenija"

#: lang.pm:401
#, c-format
msgid "Svalbard and Jan Mayen Islands"
msgstr "Svalbard and Jan Mayen Islands"

#: lang.pm:402 mirror.pm:35 timezone.pm:251
#, c-format
msgid "Slovakia"
msgstr "Slavačka"

#: lang.pm:403
#, c-format
msgid "Sierra Leone"
msgstr "Sijera Leone"

#: lang.pm:404
#, c-format
msgid "San Marino"
msgstr "San Marino"

#: lang.pm:405
#, c-format
msgid "Senegal"
msgstr "Senegal"

#: lang.pm:406
#, c-format
msgid "Somalia"
msgstr "Somalija"

#: lang.pm:407
#, c-format
msgid "Suriname"
msgstr "Surinam"

#: lang.pm:408
#, c-format
msgid "Sao Tome and Principe"
msgstr "Sao Tome i Principe"

#: lang.pm:409
#, c-format
msgid "El Salvador"
msgstr "El Salvador"

#: lang.pm:410
#, c-format
msgid "Syria"
msgstr "Sirija"

#: lang.pm:411
#, c-format
msgid "Swaziland"
msgstr "Svazilend"

#: lang.pm:412
#, c-format
msgid "Turks and Caicos Islands"
msgstr "Turks and Caicos Islands"

#: lang.pm:413
#, c-format
msgid "Chad"
msgstr "Čad"

#: lang.pm:414
#, c-format
msgid "French Southern Territories"
msgstr "Francuske Južne Teritorije"

#: lang.pm:415
#, c-format
msgid "Togo"
msgstr "Togo"

#: lang.pm:416 mirror.pm:41 timezone.pm:224
#, c-format
msgid "Thailand"
msgstr "Tajland"

#: lang.pm:417
#, c-format
msgid "Tajikistan"
msgstr "Tadžikistan"

#: lang.pm:418
#, c-format
msgid "Tokelau"
msgstr "Tokelau"

#: lang.pm:419
#, c-format
msgid "East Timor"
msgstr "Istočni Timor"

#: lang.pm:420
#, c-format
msgid "Turkmenistan"
msgstr "Turkmenistan"

#: lang.pm:421
#, c-format
msgid "Tunisia"
msgstr "Tunis"

#: lang.pm:422
#, c-format
msgid "Tonga"
msgstr "Tonga"

#: lang.pm:423 timezone.pm:225
#, c-format
msgid "Turkey"
msgstr "Turska"

#: lang.pm:424
#, c-format
msgid "Trinidad and Tobago"
msgstr "Trinidad i Tobago"

#: lang.pm:425
#, c-format
msgid "Tuvalu"
msgstr "Tuvalu"

#: lang.pm:426 mirror.pm:40 timezone.pm:223
#, c-format
msgid "Taiwan"
msgstr "Tajvan"

#: lang.pm:427 timezone.pm:208
#, c-format
msgid "Tanzania"
msgstr "Tanzanija"

#: lang.pm:428 timezone.pm:256
#, c-format
msgid "Ukraine"
msgstr "Ukrajina"

#: lang.pm:429
#, c-format
msgid "Uganda"
msgstr "Uganda"

#: lang.pm:430
#, c-format
msgid "United States Minor Outlying Islands"
msgstr "United States Minor Outlying Islands"

#: lang.pm:431 mirror.pm:42 timezone.pm:264
#, c-format
msgid "United States"
msgstr "SAD"

#: lang.pm:432
#, c-format
msgid "Uruguay"
msgstr "Urugvaj"

#: lang.pm:433
#, c-format
msgid "Uzbekistan"
msgstr "Uzbekistan"

#: lang.pm:434
#, c-format
msgid "Vatican"
msgstr "Vatikan"

#: lang.pm:435
#, c-format
msgid "Saint Vincent and the Grenadines"
msgstr "Sveti Vinsent i Grenandini"

#: lang.pm:436
#, c-format
msgid "Venezuela"
msgstr "Venecuela"

#: lang.pm:437
#, c-format
msgid "Virgin Islands (British)"
msgstr "Devičanska Ostrva(V.Britanija)"

#: lang.pm:438
#, c-format
msgid "Virgin Islands (U.S.)"
msgstr "Devičanska Ostrva (S.A.D)"

#: lang.pm:439
#, c-format
msgid "Vietnam"
msgstr "Vijetnam"

#: lang.pm:440
#, c-format
msgid "Vanuatu"
msgstr "Vanuatu"

#: lang.pm:441
#, c-format
msgid "Wallis and Futuna"
msgstr "Valis i Futuna"

#: lang.pm:442
#, c-format
msgid "Samoa"
msgstr "Samoa"

#: lang.pm:443
#, c-format
msgid "Yemen"
msgstr "Jemen"

#: lang.pm:444
#, c-format
msgid "Mayotte"
msgstr "Majot"

#: lang.pm:445 mirror.pm:36 timezone.pm:207
#, c-format
msgid "South Africa"
msgstr "Južna Afrika"

#: lang.pm:446
#, c-format
msgid "Zambia"
msgstr "Zambija"

#: lang.pm:447
#, c-format
msgid "Zimbabwe"
msgstr "Zimbabve"

#: lang.pm:1222
#, c-format
msgid "Welcome to %s"
msgstr "Dobrošli u  %s"

#: lvm.pm:84
#, c-format
msgid "Moving used physical extents to other physical volumes failed"
msgstr ""

#: lvm.pm:141
#, c-format
msgid "Physical volume %s is still in use"
msgstr ""

#: lvm.pm:151
#, c-format
msgid "Remove the logical volumes first\n"
msgstr "Ukloni prvo logičke volumene\n"

#: lvm.pm:184
#, c-format
msgid "The bootloader can't handle /boot on multiple physical volumes"
msgstr ""

#: messages.pm:11
#, fuzzy, c-format
msgid ""
"Introduction\n"
"\n"
"The operating system and the different components available in the Mandriva "
"Linux distribution \n"
"shall be called the \"Software Products\" hereafter. The Software Products "
"include, but are not \n"
"restricted to, the set of programs, methods, rules and documentation related "
"to the operating \n"
"system and the different components of the Mandriva Linux distribution, and "
"any applications \n"
"distributed with these products provided by Mandriva's licensors or "
"suppliers.\n"
"\n"
"\n"
"1. License Agreement\n"
"\n"
"Please read this document carefully. This document is a license agreement "
"between you and  \n"
"Mandriva S.A. which applies to the Software Products.\n"
"By installing, duplicating or using any of the Software Products in any "
"manner, you explicitly \n"
"accept and fully agree to conform to the terms and conditions of this "
"License. \n"
"If you disagree with any portion of the License, you are not allowed to "
"install, duplicate or use \n"
"the Software Products. \n"
"Any attempt to install, duplicate or use the Software Products in a manner "
"which does not comply \n"
"with the terms and conditions of this License is void and will terminate "
"your rights under this \n"
"License. Upon termination of the License,  you must immediately destroy all "
"copies of the \n"
"Software Products.\n"
"\n"
"\n"
"2. Limited Warranty\n"
"\n"
"The Software Products and attached documentation are provided \"as is\", "
"with no warranty, to the \n"
"extent permitted by law.\n"
"Neither Mandriva S.A. nor its licensors or suppliers will, in any "
"circumstances and to the extent \n"
"permitted by law, be liable for any special, incidental, direct or indirect "
"damages whatsoever \n"
"(including without limitation damages for loss of business, interruption of "
"business, financial \n"
"loss, legal fees and penalties resulting from a court judgment, or any other "
"consequential loss) \n"
"arising out of  the use or inability to use the Software Products, even if "
"Mandriva S.A. or its \n"
"licensors or suppliers have been advised of the possibility or occurrence of "
"such damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
"COUNTRIES\n"
"\n"
"To the extent permitted by law, neither Mandriva S.A. nor its licensors, "
"suppliers or\n"
"distributors will, in any circumstances, be liable for any special, "
"incidental, direct or indirect \n"
"damages whatsoever (including without limitation damages for loss of "
"business, interruption of \n"
"business, financial loss, legal fees and penalties resulting from a court "
"judgment, or any \n"
"other consequential loss) arising out of the possession and use of software "
"components or \n"
"arising out of  downloading software components from one of Mandriva Linux "
"sites which are \n"
"prohibited or restricted in some countries by local laws.\n"
"This limited liability applies to, but is not restricted to, the strong "
"cryptography components \n"
"included in the Software Products.\n"
"However, because some jurisdictions do not allow the exclusion or limitation "
"or liability for \n"
"consequential or incidental damages, the above limitation may not apply to "
"you.  \n"
"%s\n"
"\n"
"3. The GPL License and Related Licenses\n"
"\n"
"The Software Products consist of components created by different persons or "
"entities. %s\n"
"Most of these licenses allow you to use, duplicate, adapt or redistribute "
"the components which \n"
"they cover. Please read carefully the terms and conditions of the license "
"agreement for each component \n"
"before using any component. Any question on a component license should be "
"addressed to the component \n"
"licensor or supplier and not to Mandriva.\n"
"The programs developed by Mandriva S.A. are governed by the GPL License. "
"Documentation written \n"
"by Mandriva S.A. is governed by a specific license. Please refer to the "
"documentation for \n"
"further details.\n"
"\n"
"\n"
"4. Intellectual Property Rights\n"
"\n"
"All rights to the components of the Software Products belong to their "
"respective authors and are \n"
"protected by intellectual property and copyright laws applicable to software "
"programs.\n"
"Mandriva S.A. and its suppliers and licensors reserves their rights to "
"modify or adapt the Software \n"
"Products, as a whole or in parts, by all means and for all purposes.\n"
"\"Mandriva\", \"Mandriva Linux\" and associated logos are trademarks of "
"Mandriva S.A.  \n"
"\n"
"\n"
"5. Governing Laws \n"
"\n"
"If any portion of this agreement is held void, illegal or inapplicable by a "
"court judgment, this \n"
"portion is excluded from this contract. You remain bound by the other "
"applicable sections of the \n"
"agreement.\n"
"The terms and conditions of this License are governed by the Laws of "
"France.\n"
"All disputes on the terms of this license will preferably be settled out of "
"court. As a last \n"
"resort, the dispute will be referred to the appropriate Courts of Law of "
"Paris - France.\n"
"For any question on this document, please contact Mandriva S.A."
msgstr ""
"Upoznavanje\n"
"\n"
"Operativni sistem i druge komponente dostupne u Mandriva Linux "
"distribuciji \n"
"na dalje će biti zvane \"Softverski Proizvodi\" . Softverski proizvodi "
"uključuju, ali nisu i \n"
"ograničeni na, skup programa, metoda, pravila i dokumentaciju koja je "
"vezanaza operativni \n"
"sistem i druge komponente Mandriva Linux distribucije.\n"
"\n"
"\n"
"1. Licencni ugovor\n"
"\n"
"Pažljivo pročitajte ovaj dokument. Ovaj dokument je licencni ugovor "
"izmeđuizmeđu vas i   \n"
"Mandriva S.A. koji polaže pravo na Softverske Proizvode.\n"
"Instaliranjem, kopiranjem ili upotrebom Softverskih Proizvoda u bilo kom "
"vidu, vi eksplicitno \n"
"prihvatate i potpuno se slažete sa prihvatanjem postavki i uslova i stanja u "
"ovoj Licenci. \n"
"Ukoliko se ne slažete sa bilo kojim delom Licence, nemate pravo da "
"instalirate, kopirate ili koristite \n"
"Softverske proizvode. \n"
"Bilo koji pokušaj instalacije, dupliciranja ili upotrebe Softverskih "
"Proizvoda na način koji se ne slaže sa \n"
"postavkama i uslovima ove Licence će voditi gubitku vaših prava pod ovom \n"
"Licencom. Na osnovu gubitka Licence, morate odmah uništitisve kopije \n"
"Softverskih Proizvoda.\n"
"\n"
"\n"
"2. Ograničena Garancija\n"
"\n"
"Softverski Proizvodi i prateća dokumentracija su omogućene \"kao takve\", i "
"bez garancije, do granica \n"
"koje su dozvoljene zakonom.\n"
"Mandriva S.A. neće, u svim uslovima i u granicama zakona, biti ogovoran za "
"bilo koje specijalne,\n"
"slučajne, direktne ili indirektne štete (uključujući neograničeneštete ili "
"gubitke \n"
"u poslovanju, prekidu poslovanja, finansijskim gubicima, zakonske tražnje i "
"kazne koje su rezultat sudske \n"
"odluke, ili za bilo koji drugi gubitak) koje proizilaze iz upotrebe ili "
"nemogućnosti korišćenja Softverskih \n"
"Proizvoda, čak iako je Mandriva S.A. savetovao i ukazivao na mogućnost "
"pojave takve \n"
"štete.\n"
"\n"
"Ograničena odgovornosti vezane za posedovanje ili upotrebu zabranjenog "
"softvera u nekim zemljama\n"
"\n"
"Do granica koje su uslovljene zakonom, Mandriva S.A. ili njegovi "
"distributeri neće, ni pod kojim uslovima, biti \n"
"odgovorni za specijalne, namerne direktne ili indirektne štete(uključujući "
"neograničene \n"
"štete ili gubitke u poslovanju, prekidu poslovanja, finansijskim gubicima, "
"zakonske tražnje \n"
"i kazne koje su rezultat sudske odluke, ili za bilo koji drugi gubitak) koje "
"proizilaze \n"
"iz upotrebe ili nemogućnosti korišćenja Softverskih Komponenti ili koje "
"proizilaze download-ovanih softverskih komponenti \n"
"bilo kog Mandriva Linux sajta koji su zabranjeni ili ograničeni u nekim "
"zemljama po lokalnim zakonima.\n"
"Ova ograničena prava se primenjuju, ali nisu i ograničena na,kriptografske "
"komponente \n"
"koje se nalaze u Softverskim Proizvodima.\n"
"\n"
"\n"
"3. GPL i za nju vezane Licence\n"
"\n"
"Softverski proizvodi se sastoje od komponenti kreiranih od strane različtih "
"lica ili entiteta. Većina  \n"
"od ovih komponenti se nalaze pod postavkama i uslovima GNU Opšte Javne \n"
"Licence, koja se od sada zove  \"GPL\", ili slične licence. Većina ovih "
"licenci dozvoljava upotrebu, \n"
"dupliciranje, adaptaciju ili redistribuciju komponenti koje one obuhvataju. "
"Molimo Vas da pažljivo pročitte postavke \n"
"i uslove licencnog ugovora za svaku komponentu pre upotrebe bilo koje "
"komponenete. Bilo koje pitanje \n"
"vezano za licencu komponenti treba da bude adresirano na autora komponente a "
"nena Mandriva.\n"
"Programi koje je razvio Mandriva S.A. podležu pod GPL Licencu. Dokumentacija "
"pisana od \n"
"strane Mandriva S.A. podleže pod posebnu licencu. Molim da pogledate "
"dokumentaciju  \n"
"za detalje.\n"
"\n"
"\n"
"4. Prava na Intelektualnu svojinu\n"
"\n"
"Sva prava na komponente Softverskih proizvoda pripadaju njihovim autorima i "
"ona \n"
"su zaštićena zakonima o intelektualnoj svojini i pravima koji se primenjuju "
"na softverske programe.\n"
"Mandriva S.A. je rezervisao svoja prava na modifikovanje ili adaptaciju "
"SoftverskihProizvoda, kako za celinu tako i za \n"
"delove, za sve sve svrhe i sve upotrebe.\n"
"\"Mandriva\", \"Mandriva Linux\" i pridruženi logotipi i oznake Mandriva S."
"A.  \n"
"\n"
"\n"
"5. Zakonska prava \n"
"\n"
"Ukoliko se bilo koji deo ovog ugovora izbegava, nelegalno i van  sudske "
"odluke, ovaj \n"
"deo se isključuje iz ovog ugvora. Obavezni ste da primenjujeteostale delove "
"ovog\n"
"ugovora.\n"
"Postavke i uslovi ove Licence su određeni Zakonima Francuske.\n"
"Svi nesporazumi bi trebali biti rešeni van suda. Kao poslednje \n"
"sredstvo, nesporazumi će biti upućeni na odgovarajuće Sudske ustanove u "
"Parizu - Francuska.\n"
"Za bilo koje pitanje koje je vezano za ovaj dokument, kontaktirajte  "
"Mandriva S.A.  \n"

#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: messages.pm:90
#, c-format
msgid ""
"You agree not to (i) sell, export, re-export, transfer, divert, disclose "
"technical data, or \n"
"dispose of, any Software to any person, entity, or destination prohibited by "
"US export laws \n"
"or regulations including, without limitation, Cuba, Iran, North Korea, Sudan "
"and Syria; or \n"
"(ii) use any Software for any use prohibited by the laws or regulations of "
"the United States.\n"
"\n"
"U.S. GOVERNMENT RESTRICTED RIGHTS. \n"
"\n"
"The Software Products and any accompanying documentation are and shall be "
"deemed to be \n"
"\"commercial computer software\" and \"commercial computer software "
"documentation,\" respectively, \n"
"as defined in DFAR 252.227-7013 and as described in FAR 12.212. Any use, "
"modification, reproduction, \n"
"release, performance, display or disclosure of the Software and any "
"accompanying documentation \n"
"by the United States Government shall be governed solely by the terms of "
"this Agreement and any \n"
"other applicable licence agreements and shall be prohibited except to the "
"extent expressly permitted \n"
"by the terms of this Agreement."
msgstr ""

#: messages.pm:104
#, c-format
msgid ""
"Most of these components, but excluding the applications and software "
"provided by Google Inc. or \n"
"its subsidiaries (\"Google Software\"), are governed under the terms and "
"conditions of the GNU \n"
"General Public Licence, hereafter called \"GPL\", or of similar licenses."
msgstr ""

#: messages.pm:107
#, c-format
msgid ""
"Most of these components are governed under the terms and conditions of the "
"GNU \n"
"General Public Licence, hereafter called \"GPL\", or of similar licenses."
msgstr ""

#: messages.pm:112
#, c-format
msgid ""
"Warning: Free Software may not necessarily be patent free, and some Free\n"
"Software included may be covered by patents in your country. For example, "
"the\n"
"MP3 decoders included may require a licence for further usage (see\n"
"http://www.mp3licensing.com for more details). If you are unsure if a "
"patent\n"
"may be applicable to you, check your local laws."
msgstr ""

#: messages.pm:120
#, c-format
msgid ""
"6. Additional provisions applicable to those Software Products provided by "
"Google Inc. (\"Google Software\")\n"
"\n"
"(a)  You acknowledge that Google or third parties own all rights, title and "
"interest in and to the Google \n"
"Software, portions thereof, or software provided through or in conjunction "
"with the Google Software, including\n"
"without limitation all Intellectual Property Rights. \"Intellectual Property "
"Rights\" means any and all rights \n"
"existing from time to time under patent law, copyright law, trade secret "
"law, trademark law, unfair competition \n"
"law, database rights and any and all other proprietary rights, and any and "
"all applications, renewals, extensions \n"
"and restorations thereof, now or hereafter in force and effect worldwide. "
"You agree not to modify, adapt, \n"
"translate, prepare derivative works from, decompile, reverse engineer, "
"disassemble or otherwise attempt to derive \n"
"source code from Google Software. You also agree to not remove, obscure, or "
"alter Google's or any third party's \n"
"copyright notice, trademarks, or other proprietary rights notices affixed to "
"or contained within or accessed in \n"
"conjunction with or through the Google Software.  \n"
"\n"
"(b)  The Google Software is made available to you for your personal, non-"
"commercial use only.\n"
"You may not use the Google Software in any manner that could damage, "
"disable, overburden, or impair Google's \n"
"search services (e.g., you may not use the Google Software in an automated "
"manner), nor may you use Google \n"
"Software in any manner that could interfere with any other party's use and "
"enjoyment of Google's search services\n"
"or the services and products of the third party licensors of the Google "
"Software.\n"
"\n"
"(c)  Some of the Google Software is designed to be used in conjunction with "
"Google's search and other services.\n"
"Accordingly, your use of such Google Software is also defined by Google's "
"Terms of Service located at \n"
"http://www.google.com/terms_of_service.html and Google's Toolbar Privacy "
"Policy located at \n"
"http://www.google.com/support/toolbar/bin/static.py?page=privacy.html.\n"
"\n"
"(d)  Google Inc. and each of its subsidiaries and affiliates are third party "
"beneficiaries of this contract \n"
"and may enforce its terms."
msgstr ""

#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: messages.pm:150
#, fuzzy, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press Enter to reboot.\n"
"\n"
"\n"
"For information on fixes which are available for this release of Mandriva "
"Linux,\n"
"consult the Errata available from:\n"
"\n"
"\n"
"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
"install chapter of the Official Mandriva Linux User's Guide."
msgstr ""
"Čestitamo, instalacija je završena.\n"
"Izvadite disketu iz drajva i pritisnite <Enter> da se računar resetuje.\n"
"\n"
"\n"
"Za informacije o popravkama koje su na raspolaganju za ovo izdanje\n"
"Mandriva Linux Linux-a, pročitajte deo 'Errata' koji možete naći na\n"
"\n"
"\n"
"%s\n"
"\n"
"\n"
"Informacije o konfigurisanju vašeg sistema možete naći u post-instalacionom\n"
"poglavlju zvaničnog Mandriva Linux 'Vodiča za korisnike'."

#: modules/interactive.pm:19
#, fuzzy, c-format
msgid "This driver has no configuration parameter!"
msgstr "CUPSkonfiguracija za deljenje štampača"

#: modules/interactive.pm:22
#, fuzzy, c-format
msgid "Module configuration"
msgstr "Ručna konfiguracija"

#: modules/interactive.pm:22
#, c-format
msgid "You can configure each parameter of the module here."
msgstr "Ovde možete podesiti svaki parametar modula."

#: modules/interactive.pm:64
#, c-format
msgid "Found %s interfaces"
msgstr "Pronađeno %s interfejsa"

#: modules/interactive.pm:65
#, c-format
msgid "Do you have another one?"
msgstr "Da li imate još jedan?"

#: modules/interactive.pm:66
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Imate li još %s interfejsa?"

#: modules/interactive.pm:72
#, c-format
msgid "See hardware info"
msgstr "Pogledaj informacije o hardveru"

#: modules/interactive.pm:83
#, fuzzy, c-format
msgid "Installing driver for USB controller"
msgstr "Instaliram drajver za %s karticu %s"

#: modules/interactive.pm:84
#, fuzzy, c-format
msgid "Installing driver for firewire controller %s"
msgstr "Instaliram drajver za %s karticu %s"

#: modules/interactive.pm:85
#, fuzzy, c-format
msgid "Installing driver for hard drive controller %s"
msgstr "Instaliram drajver za %s karticu %s"

#: modules/interactive.pm:86
#, fuzzy, c-format
msgid "Installing driver for ethernet controller %s"
msgstr "Instaliram drajver za %s karticu %s"

#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
#: modules/interactive.pm:97
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Instaliram drajver za %s karticu %s"

#: modules/interactive.pm:100
#, c-format
msgid "Configuring Hardware"
msgstr ""

#: modules/interactive.pm:111
#, c-format
msgid ""
"You may now provide options to module %s.\n"
"Note that any address should be entered with the prefix 0x like '0x123'"
msgstr ""
"Sada možete da ubacite njegove opcije u modul %s.\n"
"Zapamtite da svaka adresa treba da se unosi sa prefiksom 0x kao npr. '0x123'"

#: modules/interactive.pm:117
#, c-format
msgid ""
"You may now provide options to module %s.\n"
"Options are in format ``name=value name2=value2 ...''.\n"
"For instance, ``io=0x300 irq=7''"
msgstr ""
"Možete navesti njegove opcije za modul %s.\n"
"Opcije su u formatu ``ime=vrednost ime2=vrednost2 ...''.\n"
"Na primer, ``io=0x300 irq=7''"

#: modules/interactive.pm:119
#, c-format
msgid "Module options:"
msgstr "Opcije modula:"

#. -PO: the %s is the driver type (scsi, network, sound,...)
#: modules/interactive.pm:132
#, c-format
msgid "Which %s driver should I try?"
msgstr "Koji %s drajver da probam?"

#: modules/interactive.pm:141
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
"properly, although it normally works fine without them. Would you like to "
"specify\n"
"extra options for it or allow the driver to probe your machine for the\n"
"information it needs? Occasionally, probing will hang a computer, but it "
"should\n"
"not cause any damage."
msgstr ""
"U nekim slučajevima, drajver %s zahteva dodatne informacije\n"
"za pravilan rad, mada može lepo da radi i bez njih. Da li hoćete\n"
"sami da unesete dodatne podatke za njega, ili da ih drajver sam odredi?\n"
"Moguće je da će proba zaglaviti vaš računar, ali neće naneti nikakvu štetu."

#: modules/interactive.pm:145
#, c-format
msgid "Autoprobe"
msgstr "Automatska proba"

#: modules/interactive.pm:145
#, c-format
msgid "Specify options"
msgstr "Navedite opcije"

#: modules/interactive.pm:157
#, c-format
msgid ""
"Loading module %s failed.\n"
"Do you want to try again with other parameters?"
msgstr ""
"Podizanje modula %s neuspelo.\n"
"Da li želite pokušate ponovo sa drugim parametrima ?"

#: partition_table.pm:411
#, c-format
msgid "mount failed: "
msgstr "montiranje nije uspelo: "

#: partition_table.pm:523
#, c-format
msgid "Extended partition not supported on this platform"
msgstr "Extended particija nije podržana na ovoj platformi"

#: partition_table.pm:541
#, c-format
msgid ""
"You have a hole in your partition table but I can not use it.\n"
"The only solution is to move your primary partitions to have the hole next "
"to the extended partitions."
msgstr ""
"Imate prazninu u vašoj tabeli particija ali je ne mogu korisiti.\n"
"Jedino rešenje je da pomerite primarnu particiju tako da praznina bude\n"
"do extended particija"

#: partition_table/raw.pm:285
#, c-format
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
"It means writing anything on the disk will end up with random, corrupted "
"data."
msgstr ""
"Nešto loše se dešava sa vašim hard diskom. \n"
"Test integriteta podataka nije prošao. \n"
"To znači da sve što se nalazi na disku će završiti kao đubre"

#: pkgs.pm:236 pkgs.pm:239 pkgs.pm:248
#, c-format
msgid "Unused packages removal"
msgstr ""

#: pkgs.pm:236
#, c-format
msgid "Finding unused hardware packages..."
msgstr ""

#: pkgs.pm:239
#, c-format
msgid "Finding unused localization packages..."
msgstr ""

#: pkgs.pm:249
#, c-format
msgid ""
"We have detected that some packages are not needed for your system "
"configuration."
msgstr ""

#: pkgs.pm:250
#, c-format
msgid "We will remove the following packages, unless you choose otherwise:"
msgstr ""

#: pkgs.pm:253 pkgs.pm:254
#, fuzzy, c-format
msgid "Unused hardware support"
msgstr "omogući podršku za radio"

#: pkgs.pm:257 pkgs.pm:258
#, c-format
msgid "Unused localization"
msgstr ""

#: raid.pm:42
#, fuzzy, c-format
msgid "Can not add a partition to _formatted_ RAID %s"
msgstr "Nije moguće dodati particiju na _formatiran_ RAID md%d"

#: raid.pm:157
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Nema dovoljno particija za RAID nivo %d\n"

#: scanner.pm:96
#, c-format
msgid "Could not create directory /usr/share/sane/firmware!"
msgstr ""

#: scanner.pm:107
#, c-format
msgid "Could not create link /usr/share/sane/%s!"
msgstr ""

#: scanner.pm:114
#, c-format
msgid "Could not copy firmware file %s to /usr/share/sane/firmware!"
msgstr ""

#: scanner.pm:121
#, c-format
msgid "Could not set permissions of firmware file %s!"
msgstr ""

#: scanner.pm:200
#, c-format
msgid "Scannerdrake"
msgstr "Scannerdrake"

#: scanner.pm:201
#, c-format
msgid "Could not install the packages needed to share your scanner(s)."
msgstr ""

#: scanner.pm:202
#, c-format
msgid "Your scanner(s) will not be available for non-root users."
msgstr ""

#: security/help.pm:11
#, fuzzy, c-format
msgid "Accept bogus IPv4 error messages."
msgstr ""
"Argumenti: (arg)\n"
"\n"
"Prihvati/Odbij IPv4 poruke o greškama."

#: security/help.pm:13
#, fuzzy, c-format
msgid "Accept broadcasted icmp echo."
msgstr ""
"Argumenti: (arg)\n"
"\n"
" Prihvati/Odbij prenosivi icmp echo."

#: security/help.pm:15
#, fuzzy, c-format
msgid "Accept icmp echo."
msgstr ""
"Argumenti: (arg)\n"
"\n"
" Prihvati/Odbij icmp echo."

#: security/help.pm:17
#, fuzzy, c-format
msgid "Allow autologin."
msgstr ""
"Argumenti: (arg)\n"
"\n"
"Dozvoli/Ne dozvoli autologovanje."

#. -PO: here "ALL" is a value in a pull-down menu; translate it the same as "ALL" is
#: security/help.pm:21
#, fuzzy, c-format
msgid ""
"If set to \"ALL\", /etc/issue and /etc/issue.net are allowed to exist.\n"
"\n"
"If set to \"None\", no issues are allowed.\n"
"\n"
"Else only /etc/issue is allowed."
msgstr ""
"Argumenti: (arg)\n"
"\n"
"Ako je \\fIarg\\fP = ALL allow /etc/issue i /etc/issue.net ne postoji. Ako "
"je \\fIarg\\fP = NONE nijedana radnja nije\n"
"dozvoljena ili je samo /etc/issue dozvoljen."

#: security/help.pm:27
#, fuzzy, c-format
msgid "Allow reboot by the console user."
msgstr ""
"Argumenti: (arg)\n"
"\n"
"Dozvoli/Ne dozvoli restartovanje od strane konzlolnog korisnika."

#: security/help.pm:29
#, fuzzy, c-format
msgid "Allow remote root login."
msgstr ""
"Argumenti: (arg)\n"
"\n"
"Dozvoli/Ne dozvoli udaljeno root logovanje."

#: security/help.pm:31
#, fuzzy, c-format
msgid "Allow direct root login."
msgstr ""
"Argumenti: (arg)\n"
"\n"
"Dozvoli/Ne dozvoli diektno root logovanje."

#: security/help.pm:33
#, fuzzy, c-format
msgid ""
"Allow the list of users on the system on display managers (kdm and gdm)."
msgstr ""
"Argumenti: (arg)\n"
"\n"
"Dozvoli/Ne dozvoli listu korisnika na sistemu u menadžerima za displej (kdm "
"i gdm)."

#: security/help.pm:35
#, c-format
msgid ""
"Allow to export display when\n"
"passing from the root account to the other users.\n"
"\n"
"See pam_xauth(8) for more details.'"
msgstr ""

#: security/help.pm:40
#, fuzzy, c-format
msgid ""
"Allow X connections:\n"
"\n"
"- \"All\" (all connections are allowed),\n"
"\n"
"- \"Local\" (only connection from local machine),\n"
"\n"
"- \"None\" (no connection)."
msgstr ""
"Argumenti: (arg, listen_tcp=None)\n"
"\n"
"Dozvoljava/Nedozvoljava X konekciju. Prvi argument određije šta je urađeno\n"
"sa strane klijenta: ALL (sve konekcije su dozvoljene), LOCAL (samo\n"
"lpkalne konekcije) i NONE (bez konekcije)."

#: security/help.pm:48
#, fuzzy, c-format
msgid ""
"The argument specifies if clients are authorized to connect\n"
"to the X server from the network on the tcp port 6000 or not."
msgstr ""
"Argumenti: (arg)\n"
"\n"
"Argument određuje da li klijent autorzivan za konekovanje na\n"
"X server na tcp portu 6000 ili nije."

#. -PO: here "ALL", "Local" and "None" are values in a pull-down menu; translate them the same as they're
#: security/help.pm:53
#, fuzzy, c-format
msgid ""
"Authorize:\n"
"\n"
"- all services controlled by tcp_wrappers (see hosts.deny(5) man page) if "
"set to \"ALL\",\n"
"\n"
"- only local ones if set to \"Local\"\n"
"\n"
"- none if set to \"None\".\n"
"\n"
"To authorize the services you need, use /etc/hosts.allow (see hosts.allow"
"(5))."
msgstr ""
"Argumenti: (arg)\n"
"\n"
"Autorizuje sve servise koje kontroliše tcp_wrappers (see hosts.deny(5)) ako "
"je \\fIarg\\fP = ALL. Samo lokalni\n"
"if \\fIarg\\fP = LOCAL and none if \\fIarg\\fP = NONE. Za autorizaciju vama "
"potrebnih servisa , koristite /etc/hosts.allow\n"
"(see hosts.allow(5))."

#: security/help.pm:63
#, fuzzy, c-format
msgid ""
"If SERVER_LEVEL (or SECURE_LEVEL if absent)\n"
"is greater than 3 in /etc/security/msec/security.conf, creates the\n"
"symlink /etc/security/msec/server to point to\n"
"/etc/security/msec/server.<SERVER_LEVEL>.\n"
"\n"
"The /etc/security/msec/server is used by chkconfig --add to decide to\n"
"add a service if it is present in the file during the installation of\n"
"packages."
msgstr ""
"Argumenti: ()\n"
"\n"
"Ukoliko je SERVER_LEVEL (ili je SECURE_LEVEL odsutan) veći od 3\n"
"u /etc/security/msec/security.conf, kreira simbolički link /etc/security/"
"msec/server\n"
"da upućuje na /etc/security/msec/server.<SERVER_LEVEL>.  /etc/security/msec/"
"server\n"
"se koristi od strane chkconfig --add da bi dodali servis ukoliko je prisutan "
"u fajlu\n"
"tokom instalacije paketa."

#: security/help.pm:72
#, fuzzy, c-format
msgid ""
"Enable crontab and at for users.\n"
"\n"
"Put allowed users in /etc/cron.allow and /etc/at.allow (see man at(1)\n"
"and crontab(1))."
msgstr ""
"Argumenti: (arg)\n"
"\n"
"Omogući/Onemogući crontab i at za korisnike. Postavite korisnike sa "
"dozvolama u /etc/cron.allow i /etc/at.allow\n"
"(pročitajte man at(1) i crontab(1))."

#: security/help.pm:77
#, c-format
msgid "Enable syslog reports to console 12"
msgstr ""

#: security/help.pm:79
#, fuzzy, c-format
msgid ""
"Enable name resolution spoofing protection.  If\n"
"\"%s\" is true, also reports to syslog."
msgstr ""
"Argumenti: (arg, alert=1)\n"
"\n"
"Omogući/Onemogući zaštitu za name resolution spoofing.  Ako je\n"
"\"%s\" istinit, i to prijavite u syslog."

#: security/help.pm:80
#, c-format
msgid "Security Alerts:"
msgstr "Sigurnosni alarmi:"

#: security/help.pm:82
#, fuzzy, c-format
msgid "Enable IP spoofing protection."
msgstr ""
"Argumenti: (arg, alert=1)\n"
"\n"
"Omogući/Onemogući IP spoofing zaštitu."

#: security/help.pm:84
#, fuzzy, c-format
msgid "Enable libsafe if libsafe is found on the system."
msgstr ""
"Argumenti: (arg)\n"
"\n"
"Omogući/Onemogući libsafe ako je libsafe pronađen na sistemu."

#: security/help.pm:86
#, fuzzy, c-format
msgid "Enable the logging of IPv4 strange packets."
msgstr ""
"Argumenti: (arg)\n"
"\n"
"Omogući/Onemogući prijavljivanje IPv4 strange paketa."

#: security/help.pm:88
#, fuzzy, c-format
msgid "Enable msec hourly security check."
msgstr ""
"Argumenti: (arg)\n"
"\n"
"Omogući/Onemogući msec proveru sigurnosti na svaki čas."

#: security/help.pm:90
#, fuzzy, c-format
msgid ""
"Enable su only from members of the wheel group. If set to no, allows su from "
"any user."
msgstr ""
"Argumenti: (arg)\n"
"\n"
" Omogućavanje su samo za korisnije wheel grupe ili za svakog korisnika."

#: security/help.pm:92
#, fuzzy, c-format
msgid "Use password to authenticate users."
msgstr ""
"Argumenti: (arg)\n"
"\n"
"Koristi lozinku za autentifikaciju korisnika."

#: security/help.pm:94
#, fuzzy, c-format
msgid "Activate ethernet cards promiscuity check."
msgstr ""
"Argumenti: (arg)\n"
"\n"
"Aktiviraj/Deaktiviraj proveru promiskuiteta mrežnih kartica."

#: security/help.pm:96
#, fuzzy, c-format
msgid "Activate daily security check."
msgstr ""
"Argumenti: (arg)\n"
"\n"
" Aktiviraj/Deaktiviraj dnevne sigurnosne provere."

#: security/help.pm:98
#, fuzzy, c-format
msgid "Enable sulogin(8) in single user level."
msgstr ""
"Argumenti: (arg)\n"
"\n"
" Omogući/Onemogući sulogin(8) u single user nivou."

#: security/help.pm:100
#, fuzzy, c-format
msgid "Add the name as an exception to the handling of password aging by msec."
msgstr ""
"Argumenti: (name)\n"
"\n"
"Add the name as an exception to the handling of password aging by msec."

#: security/help.pm:102
#, fuzzy, c-format
msgid "Set password aging to \"max\" days and delay to change to \"inactive\"."
msgstr ""
"Argumenti: (max, inactive=-1)\n"
"\n"
"Podesite lozinku ciljajući na \\fImax\\fP dana i izmena pauze na  "
"\\fIinactive\\fP."

#: security/help.pm:104
#, fuzzy, c-format
msgid "Set the password history length to prevent password reuse."
msgstr ""
"Argumenti: (arg)\n"
"\n"
"Podesite istoriju pamćenja lozinki da bi sprečili ponovnu upotrebu lozinke."

#: security/help.pm:106
#, fuzzy, c-format
msgid ""
"Set the password minimum length and minimum number of digit and minimum "
"number of capitalized letters."
msgstr ""
"Argumenti: (length, ndigits=0, nupper=0)\n"
"\n"
"Podesite najmanju dužinu lozinke i najmanji broj brojeva i minimalan broj "
"velikih slova."

#: security/help.pm:108
#, fuzzy, c-format
msgid "Set the root's file mode creation mask."
msgstr ""
"Argumenti: (umask)\n"
"\n"
"Podesite root umask."

#: security/help.pm:109
#, c-format
msgid "if set to yes, check open ports."
msgstr "ukoliko je podešeno na da, označite otvorene portove."

#: security/help.pm:110
#, fuzzy, c-format
msgid ""
"if set to yes, check for:\n"
"\n"
"- empty passwords,\n"
"\n"
"- no password in /etc/shadow\n"
"\n"
"- for users with the 0 id other than root."
msgstr ""
"ukoliko je podešene na da, proverite prazne lozinke, bez lozinke u /etc/"
"shadow i  korisnike sa 0 id različih od root."

#: security/help.pm:117
#, c-format
msgid "if set to yes, check permissions of files in the users' home."
msgstr ""
"ukoliko je podešeno na da, proverite ovlašćenja za fajlove u korisničkom "
"home diretorijumu."

#: security/help.pm:118
#, c-format
msgid "if set to yes, check if the network devices are in promiscuous mode."
msgstr ""
"ukoliko je podešeno na da, proverite da li su mrežni uređaji u promiscuous "
"modu."

#: security/help.pm:119
#, c-format
msgid "if set to yes, run the daily security checks."
msgstr "ukoliko je podešeno na da, pokrenite dnevne sigurnosne provere."

#: security/help.pm:120
#, c-format
msgid "if set to yes, check additions/removals of sgid files."
msgstr "ukoliko je podešeno na da, označite dodavanje/uklanjanje sgid fajlova."

#: security/help.pm:121
#, c-format
msgid "if set to yes, check empty password in /etc/shadow."
msgstr "ukoliko je podešeno na da, prverite praznu lozinku u /etc/shadow."

#: security/help.pm:122
#, c-format
msgid "if set to yes, verify checksum of the suid/sgid files."
msgstr "ukoliko je podešeno na da, proverite checksum za suid/sgid fajlove."

#: security/help.pm:123
#, c-format
msgid "if set to yes, check additions/removals of suid root files."
msgstr ""
"ukoliko je podešeno na da, označite dodavanje/uklanjanje za suid root "
"fajlove."

#: security/help.pm:124
#, c-format
msgid "if set to yes, report unowned files."
msgstr "ukoliko je podešeno na da, prijavite fajlove bez vlasnika."

#: security/help.pm:125
#, c-format
msgid "if set to yes, check files/directories writable by everybody."
msgstr ""
"ukoliko je podešeno na da, označite fajlove/diretorijume upisivim za sve "
"korisnike."

#: security/help.pm:126
#, c-format
msgid "if set to yes, run chkrootkit checks."
msgstr "ukoliko je podešeno na da, pokrenite chkrootkit provere."

#: security/help.pm:127
#, c-format
msgid ""
"if set, send the mail report to this email address else send it to root."
msgstr ""
"ukoliko je podešeno, pošaljite izveštaj na ovu email adresu uli je pošaljite "
"root-u."

#: security/help.pm:128
#, c-format
msgid "if set to yes, report check result by mail."
msgstr "ukoliko kažete da, pošaljite rezultat provere mail-om."

#: security/help.pm:129
#, c-format
msgid "Do not send mails if there's nothing to warn about"
msgstr ""

#: security/help.pm:130
#, c-format
msgid "if set to yes, run some checks against the rpm database."
msgstr "ukoliko je podešeno na da, pokrenite proveru rpm baze podataka."

#: security/help.pm:131
#, c-format
msgid "if set to yes, report check result to syslog."
msgstr "ukoliko je podešeno na da, pošaljite izveštaj o proveri u syslog."

#: security/help.pm:132
#, c-format
msgid "if set to yes, reports check result to tty."
msgstr "ukoliko je podešeno na da, izveštaj o proveri pošaljite na tty."

#: security/help.pm:134
#, fuzzy, c-format
msgid "Set shell commands history size. A value of -1 means unlimited."
msgstr ""
"Argumenti: (size)\n"
"\n"
"Podesite shell veličinu istorije za komande. Vrednost -1 znači da nema "
"linita."

#: security/help.pm:136
#, fuzzy, c-format
msgid "Set the shell timeout. A value of zero means no timeout."
msgstr ""
"Argumenti: (val)\n"
"\n"
"Podesite shell pauzu. Vrednost zero - nula znači da nema pauze."

#: security/help.pm:136
#, c-format
msgid "Timeout unit is second"
msgstr ""

#: security/help.pm:138
#, fuzzy, c-format
msgid "Set the user's file mode creation mask."
msgstr ""
"Argumenti: (umask)\n"
"\n"
"Podešavanje korisničkog umask."

#: security/l10n.pm:11
#, fuzzy, c-format
msgid "Accept bogus IPv4 error messages"
msgstr ""
"Argumenti: (arg)\n"
"\n"
"Prihvati/Odbij IPv4 poruke o greškama."

#: security/l10n.pm:12
#, fuzzy, c-format
msgid "Accept broadcasted icmp echo"
msgstr ""
"Argumenti: (arg)\n"
"\n"
" Prihvati/Odbij prenosivi icmp echo."

#: security/l10n.pm:13
#, c-format
msgid "Accept icmp echo"
msgstr ""

#: security/l10n.pm:15
#, c-format
msgid "/etc/issue* exist"
msgstr ""

#: security/l10n.pm:16
#, c-format
msgid "Reboot by the console user"
msgstr ""

#: security/l10n.pm:17
#, fuzzy, c-format
msgid "Allow remote root login"
msgstr ""
"Argumenti: (arg)\n"
"\n"
"Dozvoli/Ne dozvoli udaljeno root logovanje."

#: security/l10n.pm:18
#, c-format
msgid "Direct root login"
msgstr ""

#: security/l10n.pm:19
#, fuzzy, c-format
msgid "List users on display managers (kdm and gdm)"
msgstr ""
"Argumenti: (arg)\n"
"\n"
"Dozvoli/Ne dozvoli listu korisnika na sistemu u menadžerima za displej (kdm "
"i gdm)."

#: security/l10n.pm:20
#, c-format
msgid "Export display when passing from root to the other users"
msgstr ""

#: security/l10n.pm:21
#, fuzzy, c-format
msgid "Allow X Window connections"
msgstr "Winmodem konekcija"

#: security/l10n.pm:22
#, c-format
msgid "Authorize TCP connections to X Window"
msgstr ""

#: security/l10n.pm:23
#, c-format
msgid "Authorize all services controlled by tcp_wrappers"
msgstr ""

#: security/l10n.pm:24
#, fuzzy, c-format
msgid "Chkconfig obey msec rules"
msgstr "Podesi servise"

#: security/l10n.pm:25
#, c-format
msgid "Enable \"crontab\" and \"at\" for users"
msgstr ""

#: security/l10n.pm:26
#, c-format
msgid "Syslog reports to console 12"
msgstr ""

#: security/l10n.pm:27
#, c-format
msgid "Name resolution spoofing protection"
msgstr ""

#: security/l10n.pm:28
#, fuzzy, c-format
msgid "Enable IP spoofing protection"
msgstr ""
"Argumenti: (arg, alert=1)\n"
"\n"
"Omogući/Onemogući IP spoofing zaštitu."

#: security/l10n.pm:29
#, fuzzy, c-format
msgid "Enable libsafe if libsafe is found on the system"
msgstr ""
"Argumenti: (arg)\n"
"\n"
"Omogući/Onemogući libsafe ako je libsafe pronađen na sistemu."

#: security/l10n.pm:30
#, fuzzy, c-format
msgid "Enable the logging of IPv4 strange packets"
msgstr ""
"Argumenti: (arg)\n"
"\n"
"Omogući/Onemogući prijavljivanje IPv4 strange paketa."

#: security/l10n.pm:31
#, fuzzy, c-format
msgid "Enable msec hourly security check"
msgstr ""
"Argumenti: (arg)\n"
"\n"
"Omogući/Onemogući msec proveru sigurnosti na svaki čas."

#: security/l10n.pm:32
#, fuzzy, c-format
msgid "Enable su only from the wheel group members"
msgstr ""
"Argumenti: (arg)\n"
"\n"
" Omogućavanje su samo za korisnije wheel grupe ili za svakog korisnika."

#: security/l10n.pm:33
#, fuzzy, c-format
msgid "Use password to authenticate users"
msgstr ""
"Argumenti: (arg)\n"
"\n"
"Koristi lozinku za autentifikaciju korisnika."

#: security/l10n.pm:34
#, fuzzy, c-format
msgid "Ethernet cards promiscuity check"
msgstr ""
"Argumenti: (arg)\n"
"\n"
"Aktiviraj/Deaktiviraj proveru promiskuiteta mrežnih kartica."

#: security/l10n.pm:35
#, c-format
msgid "Daily security check"
msgstr ""

#: security/l10n.pm:36
#, fuzzy, c-format
msgid "Sulogin(8) in single user level"
msgstr ""
"Argumenti: (arg)\n"
"\n"
" Omogući/Onemogući sulogin(8) u single user nivou."

#: security/l10n.pm:37
#, fuzzy, c-format
msgid "No password aging for"
msgstr "Bez lozinke"

#: security/l10n.pm:38
#, c-format
msgid "Set password expiration and account inactivation delays"
msgstr ""

#: security/l10n.pm:39
#, fuzzy, c-format
msgid "Password history length"
msgstr "Ova lozinka je previše prosta"

#: security/l10n.pm:40
#, c-format
msgid "Password minimum length and number of digits and upcase letters"
msgstr ""

#: security/l10n.pm:41
#, fuzzy, c-format
msgid "Root umask"
msgstr "Root lozinka"

#: security/l10n.pm:42
#, c-format
msgid "Shell history size"
msgstr ""

#: security/l10n.pm:43
#, fuzzy, c-format
msgid "Shell timeout"
msgstr "Pauza pri startanju kernela"

#: security/l10n.pm:44
#, fuzzy, c-format
msgid "User umask"
msgstr "Korisnici"

#: security/l10n.pm:45
#, fuzzy, c-format
msgid "Check open ports"
msgstr "Detektovano na portu %s"

#: security/l10n.pm:46
#, c-format
msgid "Check for unsecured accounts"
msgstr ""

#: security/l10n.pm:47
#, fuzzy, c-format
msgid "Check permissions of files in the users' home"
msgstr ""
"ukoliko je podešeno na da, proverite ovlašćenja za fajlove u korisničkom "
"home diretorijumu."

#: security/l10n.pm:48
#, fuzzy, c-format
msgid "Check if the network devices are in promiscuous mode"
msgstr ""
"ukoliko je podešeno na da, proverite da li su mrežni uređaji u promiscuous "
"modu."

#: security/l10n.pm:49
#, fuzzy, c-format
msgid "Run the daily security checks"
msgstr "ukoliko je podešeno na da, pokrenite dnevne sigurnosne provere."

#: security/l10n.pm:50
#, fuzzy, c-format
msgid "Check additions/removals of sgid files"
msgstr "ukoliko je podešeno na da, označite dodavanje/uklanjanje sgid fajlova."

#: security/l10n.pm:51
#, fuzzy, c-format
msgid "Check empty password in /etc/shadow"
msgstr "ukoliko je podešeno na da, prverite praznu lozinku u /etc/shadow."

#: security/l10n.pm:52
#, fuzzy, c-format
msgid "Verify checksum of the suid/sgid files"
msgstr "ukoliko je podešeno na da, proverite checksum za suid/sgid fajlove."

#: security/l10n.pm:53
#, fuzzy, c-format
msgid "Check additions/removals of suid root files"
msgstr ""
"ukoliko je podešeno na da, označite dodavanje/uklanjanje za suid root "
"fajlove."

#: security/l10n.pm:54
#, fuzzy, c-format
msgid "Report unowned files"
msgstr "ukoliko je podešeno na da, prijavite fajlove bez vlasnika."

#: security/l10n.pm:55
#, fuzzy, c-format
msgid "Check files/directories writable by everybody"
msgstr ""
"ukoliko je podešeno na da, označite fajlove/diretorijume upisivim za sve "
"korisnike."

#: security/l10n.pm:56
#, fuzzy, c-format
msgid "Run chkrootkit checks"
msgstr "ukoliko je podešeno na da, pokrenite chkrootkit provere."

#: security/l10n.pm:57
#, c-format
msgid "Do not send empty mail reports"
msgstr ""

#: security/l10n.pm:58
#, fuzzy, c-format
msgid "If set, send the mail report to this email address else send it to root"
msgstr ""
"ukoliko je podešeno, pošaljite izveštaj na ovu email adresu uli je pošaljite "
"root-u."

#: security/l10n.pm:59
#, fuzzy, c-format
msgid "Report check result by mail"
msgstr "ukoliko kažete da, pošaljite rezultat provere mail-om."

#: security/l10n.pm:60
#, fuzzy, c-format
msgid "Run some checks against the rpm database"
msgstr "ukoliko je podešeno na da, pokrenite proveru rpm baze podataka."

#: security/l10n.pm:61
#, fuzzy, c-format
msgid "Report check result to syslog"
msgstr "ukoliko je podešeno na da, pošaljite izveštaj o proveri u syslog."

#: security/l10n.pm:62
#, fuzzy, c-format
msgid "Reports check result to tty"
msgstr "ukoliko je podešeno na da, izveštaj o proveri pošaljite na tty."

#: security/level.pm:10
#, c-format
msgid "Disable msec"
msgstr ""

#: security/level.pm:11
#, c-format
msgid "Standard"
msgstr "Standardni"

#: security/level.pm:12
#, fuzzy, c-format
msgid "Secure"
msgstr "Sigurnost"

#: security/level.pm:38
#, c-format
msgid ""
"This level is to be used with care, as it disables all additional security\n"
"provided by msec. Use it only when you want to take care of all aspects of "
"system security\n"
"on your own."
msgstr ""

#: security/level.pm:41
#, c-format
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
msgstr ""
"Ovo je standardno sigurnosno okruženje preporučeno za računare koji  će "
"biti  koršćeni za vezu sa Internetom ili kao klijent."

#: security/level.pm:42
#, c-format
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
"The security is now high enough to use the system as a server which can "
"accept\n"
"connections from many clients. Note: if your machine is only a client on the "
"Internet, you should choose a lower level."
msgstr ""
"Sa ovim sigurnosnim nivoom, korišćenje ovog sistema kao servera postaje "
"moguće.\n"
"Sigurnost je sada dovoljno velika za korišćenje mašine za server koji "
"prihvata\n"
"konekcije brojnih klijenata. Napomena: ukoliko je vaša mašina samo klijent "
"na Internetu, trebali bi da izaberete niži nivo."

#: security/level.pm:49
#, c-format
msgid "Security"
msgstr "Sigurnost"

#: security/level.pm:49
#, c-format
msgid "DrakSec Basic Options"
msgstr "DrakSec Osnovne Opcije"

#: security/level.pm:52
#, c-format
msgid "Please choose the desired security level"
msgstr "Izaberite željeni sigurnosni nivo"

#. -PO: this string is used to properly format "<security level>: <level description>"
#: security/level.pm:56
#, c-format
msgid "%s: %s"
msgstr ""

#: security/level.pm:59
#, c-format
msgid "Security Administrator:"
msgstr "Administrator za sigurnost:"

#: security/level.pm:60
#, c-format
msgid "Login or email:"
msgstr ""

#: services.pm:19
#, c-format
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Startam ALSA (Advanced Linux Sound Architecture) sistem za zvuk"

#: services.pm:20
#, c-format
msgid "Anacron is a periodic command scheduler."
msgstr "Anacron -  podesite period.komande"

#: services.pm:21
#, c-format
msgid ""
"apmd is used for monitoring battery status and logging it via syslog.\n"
"It can also be used for shutting down the machine when the battery is low."
msgstr ""
"apmd se koristi za praćenje statusa baterije i logovanje preko syslog.\n"
"Koristi se i za gašenje mašine (radi i na desktop mašinama) kada je baterija "
"slaba"

#: services.pm:23
#, c-format
msgid ""
"Runs commands scheduled by the at command at the time specified when\n"
"at was run, and runs batch commands when the load average is low enough."
msgstr ""
"Pokreće komande zakazane at komandom,kao i  batch  komande kao je "
"opterećenost\n"
"sistema mala."

#: services.pm:25
#, c-format
msgid ""
"cron is a standard UNIX program that runs user-specified programs\n"
"at periodic scheduled times. vixie cron adds a number of features to the "
"basic\n"
"UNIX cron, including better security and more powerful configuration options."
msgstr ""
"cron je standardni UNIX program koji pokreće korisničke programe\n"
"preriodično u zakazano vreme. vixie cron  dodaje opcije prostom UNIX cron,"
"uključujući bolju  sigurnost i bolju podesivost."

#: services.pm:28
#, c-format
msgid ""
"Common UNIX Printing System (CUPS) is an advanced printer spooling system"
msgstr ""

#: services.pm:29
#, c-format
msgid "Launches the graphical display manager"
msgstr ""

#: services.pm:30
#, c-format
msgid ""
"FAM is a file monitoring daemon. It is used to get reports when files "
"change.\n"
"It is used by GNOME and KDE"
msgstr ""

#: services.pm:32
#, c-format
msgid ""
"GPM adds mouse support to text-based Linux applications such the\n"
"Midnight Commander. It also allows mouse-based console cut-and-paste "
"operations,\n"
"and includes support for pop-up menus on the console."
msgstr ""
"GPM daje podršku za miša za teksulano-bazirane aplikacije kao što je\n"
"Midnight Commander.Isto tako daje podršku za  pop-up menije na  konzoli."

#: services.pm:35
#, c-format
msgid "HAL is a daemon that collects and maintains information about hardware"
msgstr ""

#: services.pm:36
#, c-format
msgid ""
"HardDrake runs a hardware probe, and optionally configures\n"
"new/changed hardware."
msgstr ""
"HardDrake starta ispitivanje haredvera, i po potrebi đe podesiti \n"
"novi/izmenjeni hardver."

#: services.pm:38
#, c-format
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
"Apache je  WWW server. On se koristi da opslužuje  HTML fajlove\n"
"i CGI."

#: services.pm:39
#, c-format
msgid ""
"The internet superserver daemon (commonly called inetd) starts a\n"
"variety of other internet services as needed. It is responsible for "
"starting\n"
"many services, including telnet, ftp, rsh, and rlogin. Disabling inetd "
"disables\n"
"all of the services it is responsible for."
msgstr ""
"Interent super server demon (znan kao netd) starta \n"
"razne internet servise.On je odgovoran za pokretanje mnogix servisa kao npr. "
"elnet, ftp, rsh, i  rlogin.Isključujući njega, isključujete i servise \n"
"za koje je on odgovoran."

#: services.pm:43
#, c-format
msgid ""
"Launch packet filtering for Linux kernel 2.2 series, to set\n"
"up a firewall to protect your machine from network attacks."
msgstr ""
"Pokrenite filtriranje paketa za Linux kernel serije 2.2, da bi podesili\n"
"firewall radi zaštite vaše mašine od mrežnih napada."

#: services.pm:45
#, c-format
msgid ""
"This package loads the selected keyboard map as set in\n"
"/etc/sysconfig/keyboard.  This can be selected using the kbdconfig utility.\n"
"You should leave this enabled for most machines."
msgstr ""
"Ovaj paket aktivira odabranu mapu tastature kako je podešeno \n"
"u  /etc/sysconfig/keyboard.Ovo se podešava koristeći kbdconfig alatku.\n"
"Treba da bude uključen na većinu mašina."

#: services.pm:48
#, c-format
msgid ""
"Automatic regeneration of kernel header in /boot for\n"
"/usr/include/linux/{autoconf,version}.h"
msgstr ""
"Automatska regeneracija kernelovog zaglavlja u /boot zar\n"
"/usr/include/linux/{autoconf,version}.h"

#: services.pm:50
#, c-format
msgid "Automatic detection and configuration of hardware at boot."
msgstr "Automatska detekcija i konfiguracija hardvera pri startanju sistema."

#: services.pm:51
#, c-format
msgid ""
"Linuxconf will sometimes arrange to perform various tasks\n"
"at boot-time to maintain the system configuration."
msgstr ""
"Linuxconf đe ponekad izvoditi razne zadatke tokom\n"
"startanja sistema radi održavanja i podešavanja sistema."

#: services.pm:53
#, c-format
msgid ""
"lpd is the print daemon required for lpr to work properly. It is\n"
"basically a server that arbitrates print jobs to printer(s)."
msgstr ""
"lpd je print demon potreban  da bi lpr radio dobro.To je \n"
"u osnovi server koji arbitrira  print poslove štampaču(ima)."

#: services.pm:55
#, c-format
msgid ""
"Linux Virtual Server, used to build a high-performance and highly\n"
"available server."
msgstr ""
"Linux-ov Virtuelni Server, koristi se za izgradnju brzog i dostupnog\n"
"servera."

#: services.pm:57
#, c-format
msgid ""
"DBUS is a daemon which broadcasts notifications of system events and other "
"messages"
msgstr ""

#: services.pm:58
#, c-format
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
"names to IP addresses."
msgstr ""
"Nazvan kao (BIND) je Domain Name Server (DNS) koji se koristi za daje host "
"ime IP adresi."

#: services.pm:59
#, c-format
msgid ""
"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
"Manager/Windows), and NCP (NetWare) mount points."
msgstr ""
"Montiranje i demontiranje svih Mrežnih fajl sistema(NFS), SMB (Lan\n"
"Manager/Windows), i  NCP (NetWare) tačaka montiranja. "

#: services.pm:61
#, c-format
msgid ""
"Activates/Deactivates all network interfaces configured to start\n"
"at boot time."
msgstr ""
"Aktiviranje i deaktiviranje svih mrežnih interfejsa konfigurisanih za "
"start \n"
"pri podizanju sistema."

#: services.pm:63
#, c-format
msgid ""
"NFS is a popular protocol for file sharing across TCP/IP networks.\n"
"This service provides NFS server functionality, which is configured via the\n"
"/etc/exports file."
msgstr ""
"NFS je popularni protokol za razmenu  fajlova preko TCP/IP mreža.\n"
"Ovaj servis omogućava funkcionalnost NFS servera,koji se konfiguriše preko \n"
"/etc/exports datoteke."

#: services.pm:66
#, c-format
msgid ""
"NFS is a popular protocol for file sharing across TCP/IP\n"
"networks. This service provides NFS file locking functionality."
msgstr ""
"NFS je popularni protokol za razmenu  fajlova preko TCP/IP mreža.\n"
"Ovaj servis omogućava funkcionalnost NFS  file locking funkcije"

#: services.pm:68
#, c-format
msgid "Synchronizes system time using the Network Time Protocol (NTP)"
msgstr ""

#: services.pm:69
#, c-format
msgid ""
"Automatically switch on numlock key locker under console\n"
"and Xorg at boot."
msgstr ""
"Automatski uključuje numlock taster pod konzolom\n"
"i u Xorg pri startanju."

#: services.pm:71
#, c-format
msgid "Support the OKI 4w and compatible winprinters."
msgstr "Podrška za OKI 4w i kompatibilne mu  win štampače."

#: services.pm:72
#, c-format
msgid ""
"PCMCIA support is usually to support things like ethernet and\n"
"modems in laptops.  It will not get started unless configured so it is safe "
"to have\n"
"it installed on machines that do not need it."
msgstr ""
"PCMCIA podrška  se obično koristi za  eternet i modeme u laptopovima.\n"
"Neće se pokrenuti ukoliko nije konfigurisan tako daje bezbedno instaliran \n"
"na sistemu kom nije potreban."

#: services.pm:75
#, c-format
msgid ""
"The portmapper manages RPC connections, which are used by\n"
"protocols such as NFS and NIS. The portmap server must be running on "
"machines\n"
"which act as servers for protocols which make use of the RPC mechanism."
msgstr ""
"Portmaper uravlja  RPC konekcijama,koje koriste\n"
"protokoli kao NFS i  NIS.Portmap server mora biti pokrenut na mašinama\n"
"koje rade kao serveri za protokole koji koriste RPC mehanizam."

#: services.pm:78
#, c-format
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
"one machine to another."
msgstr ""
"Postfix je  Mail Transport Agent,koji u stvaripremešta poštu sa jedne mašine "
"na drugu."

#: services.pm:79
#, c-format
msgid ""
"Saves and restores system entropy pool for higher quality random\n"
"number generation."
msgstr ""
"čuva i obnavlja sistemski  entropy pool za veći kvalitet generisanje\n"
"slučajnih brojeva."

#: services.pm:81
#, c-format
msgid ""
"Assign raw devices to block devices (such as hard drive\n"
"partitions), for the use of applications such as Oracle or DVD players"
msgstr ""
"Dodeljuje raw urećaje za blok urećaje (kao što su hard disk\n"
"particije), što mođe biti korisno za aplikacije kao što je Oracle ili DVD "
"plejeri"

#: services.pm:83
#, c-format
msgid ""
"The routed daemon allows for automatic IP router table updated via\n"
"the RIP protocol. While RIP is widely used on small networks, more complex\n"
"routing protocols are needed for complex networks."
msgstr ""
"Routed demon dozvoljava automatsko IP ruter update-ovanje preko\n"
"RIP protokola.Dok se RIP dosta korisiti na malim mrežama,kompleksniji \n"
" routing protokoli su potrebni za kompleksne mreže."

#: services.pm:86
#, c-format
msgid ""
"The rstat protocol allows users on a network to retrieve\n"
"performance metrics for any machine on that network."
msgstr ""
"rstat protokol dozvoljava korisnicima na mreži da omoguće\n"
"merenje performansi za bilo koju mašinu na toj  mreži."

#: services.pm:88
#, c-format
msgid ""
"The rusers protocol allows users on a network to identify who is\n"
"logged in on other responding machines."
msgstr ""
"rusers protokol omogućava korisnicima na mreži da otkriju ko je\n"
"ulogovan na drugim mašinama."

#: services.pm:90
#, c-format
msgid ""
"The rwho protocol lets remote users get a list of all of the users\n"
"logged into a machine running the rwho daemon (similar to finger)."
msgstr ""
"rwho protokol dozvoljava udaljenim korisnicima da dobiju listu svih\n"
"korisnika ulogovanih na sistem sa pokrenutim rwho demonom (slično finger-u)."

#: services.pm:92
#, c-format
msgid ""
"SANE (Scanner Access Now Easy) enables to access scanners, video cameras, ..."
msgstr ""

#: services.pm:93
#, c-format
msgid ""
"The SMB/CIFS protocol enables to share access to files & printers and also "
"integrates with a Windows Server domain"
msgstr ""

#: services.pm:94
#, c-format
msgid "Launch the sound system on your machine"
msgstr "Pokreće sistem za zvuk na vašoj mašini"

#: services.pm:95
#, c-format
msgid ""
"Secure Shell is a network protocol that allows data to be exchanged over a "
"secure channel between two computers"
msgstr ""

#: services.pm:96
#, c-format
msgid ""
"Syslog is the facility by which many daemons use to log messages\n"
"to various system log files.  It is a good idea to always run syslog."
msgstr ""
"Syslog je objekat pomoću kog mnogi demoni koriste za logovanje poruka\n"
"u raznim sistemskim log fajlovima. Dobra je ideja imati uvek pokrenut syslog."

#: services.pm:98
#, c-format
msgid "Load the drivers for your usb devices."
msgstr "Podiže drajvere za vaše usb uređaje."

#: services.pm:99
#, c-format
msgid "Starts the X Font Server."
msgstr ""

#: services.pm:100
#, c-format
msgid "Starts other deamons on demand."
msgstr ""

#: services.pm:123
#, c-format
msgid "Printing"
msgstr "Štampanje"

#: services.pm:124
#, c-format
msgid "Internet"
msgstr "Internet"

#: services.pm:127
#, c-format
msgid "File sharing"
msgstr "Zajedničko deljenje fajlova"

#: services.pm:129
#, c-format
msgid "System"
msgstr "Sistem"

#: services.pm:134
#, c-format
msgid "Remote Administration"
msgstr "Udaljena administracija"

#: services.pm:142
#, c-format
msgid "Database Server"
msgstr "Server Baze podataka"

#: services.pm:153 services.pm:192
#, c-format
msgid "Services"
msgstr "Servisi"

#: services.pm:153
#, c-format
msgid "Choose which services should be automatically started at boot time"
msgstr "Izaberite koje servisi treba automatski da se pokrenu pri startanju"

#: services.pm:171
#, c-format
msgid "Services: %d activated for %d registered"
msgstr "Servisi: %d aktiviranih za %d registrovanih"

#: services.pm:208
#, c-format
msgid "running"
msgstr "pokrenuto"

#: services.pm:208
#, c-format
msgid "stopped"
msgstr "zaustavljeno"

#: services.pm:213
#, c-format
msgid "Services and daemons"
msgstr "Servisi i demoni"

#: services.pm:219
#, c-format
msgid ""
"No additional information\n"
"about this service, sorry."
msgstr ""
"žalim ali nema dodatnih informacija\n"
"o ovom servisu."

#: services.pm:224 ugtk2.pm:924
#, c-format
msgid "Info"
msgstr "Info"

#: services.pm:227
#, c-format
msgid "Start when requested"
msgstr ""

#: services.pm:227
#, c-format
msgid "On boot"
msgstr "Pri startanju"

#: services.pm:245
#, c-format
msgid "Start"
msgstr "Start"

#: services.pm:245
#, c-format
msgid "Stop"
msgstr "Stop"

#: standalone.pm:25
#, c-format
msgid ""
"This program is free software; you can redistribute it and/or modify\n"
"it under the terms of the GNU General Public License as published by\n"
"the Free Software Foundation; either version 2, or (at your option)\n"
"any later version.\n"
"\n"
"This program is distributed in the hope that it will be useful,\n"
"but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n"
"GNU General Public License for more details.\n"
"\n"
"You should have received a copy of the GNU General Public License\n"
"along with this program; if not, write to the Free Software\n"
"Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, "
"USA.\n"
msgstr ""
" Ovaj program je bespaltan; možete ga redistribuirati i/ili menjati\n"
" pod uslovima GNU General Public License kako je objavljeno\n"
" u Free Software Fondaciji; ili verziji 2, ili (u vašem slučaju)\n"
" bilo kojoj novijoj verziji.\n"
"\n"
" Ovaj program je distribuiran u nadi da će biti od koristi,\n"
" sli BEZ IKAKVIH GARANCIJA; čak i bez garancije za\n"
" KORISNOST i PRAKTIČNU UPOTREBU.  Pogledajte\n"
" GNU Opštu Javnu Licencu za više detalja.\n"
"\n"
" Trebali bi da mate kopiju GNU Opšte Javne  Licence\n"
" zajedno sa ovim programom; ukoliko je nemate, pišite nam na adresu Free "
"Software\n"
" Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, "
"USA.\n"

#: standalone.pm:44
#, c-format
msgid ""
"[--config-info] [--daemon] [--debug] [--default] [--show-conf]\n"
"Backup and Restore application\n"
"\n"
"--default             : save default directories.\n"
"--debug               : show all debug messages.\n"
"--show-conf           : list of files or directories to backup.\n"
"--config-info         : explain configuration file options (for non-X "
"users).\n"
"--daemon              : use daemon configuration. \n"
"--help                : show this message.\n"
"--version             : show version number.\n"
msgstr ""
"[--config-info] [--daemon] [--debug] [--default] [--show-conf]\n"
"Program za Backup i vraćanje podataka\n"
"\n"
"--default             : snima default direktorijume.\n"
"--debug               : prikazuje sve debug poruke.\n"
"--show-conf           : lista fajlova ili direktorijuma za backup.\n"
"--config-info         : objašnjava podešavanje opcija za fajlove (za ne-X "
"korisnike).\n"
"--daemon              : koristi daemon konfiguraciju. \n"
"--help                : prikazuje ovu poruku.\n"
"--version             : prikazuje verziju programa.\n"

#: standalone.pm:56
#, c-format
msgid ""
"[--boot] [--splash]\n"
"OPTIONS:\n"
"  --boot            - enable to configure boot loader\n"
"  --splash          - enable to configure boot theme\n"
"default mode: offer to configure autologin feature"
msgstr ""

#: standalone.pm:61
#, fuzzy, c-format
msgid ""
"[OPTIONS] [PROGRAM_NAME]\n"
"\n"
"OPTIONS:\n"
"  --help            - print this help message.\n"
"  --report          - program should be one of Mandriva Linux tools\n"
"  --incident        - program should be one of Mandriva Linux tools"
msgstr ""
"[OPTIONS] [PROGRAM_NAME]\n"
"\n"
"OPCIJE:\n"
"  --help            - prikazuje ovaj tekst koji sada čitate.\n"
"  --report          - program treba da bude jedan od Mandriva alata\n"
"  --incident        - program treba da bude jedan od Mandriva alata"

#: standalone.pm:67
#, c-format
msgid ""
"[--add]\n"
"  --add             - \"add a network interface\" wizard\n"
"  --del             - \"delete a network interface\" wizard\n"
"  --skip-wizard     - manage connections\n"
"  --internet        - configure internet\n"
"  --wizard          - like --add"
msgstr ""

#: standalone.pm:73
#, fuzzy, c-format
msgid ""
"\n"
"Font Importation and monitoring application\n"
"\n"
"OPTIONS:\n"
"--windows_import : import from all available windows partitions.\n"
"--xls_fonts      : show all fonts that already exist from xls\n"
"--install        : accept any font file and any directory.\n"
"--uninstall      : uninstall any font or any directory of font.\n"
"--replace        : replace all font if already exist\n"
"--application    : 0 none application.\n"
"                 : 1 all application available supported.\n"
"                 : name_of_application like  so for staroffice \n"
"                 : and gs for ghostscript for only this one."
msgstr ""
"Program za kontrolu i importovanje "
"fontova                                     \n"
"--windows_import : importuje sa svih dostupnih windows particija.\n"
"--xls_fonts      : prikazuje sve fontove koji su već prisutni preko xls\n"
"--strong         : strga provera fonta.\n"
"--install        : instalira bilo koji font i bilo koji direktorijum.\n"
"--uninstall      : deinstalira  bilo koji font ili bilo koji direktorijum sa "
"fontovima.\n"
"--replace        : zamenjuje sve fontove koji već postoje\n"
"--application    : 0 bez aplikacije.\n"
"                 : 1 sve dostupne aplikacije podržane.\n"
"                 : name_of_application kao za na primer staroffice \n"
"                 : i  gs za ghostscript za samo ovu."

#: standalone.pm:88
#, fuzzy, c-format
msgid ""
"[OPTIONS]...\n"
"Mandriva Linux Terminal Server Configurator\n"
"--enable         : enable MTS\n"
"--disable        : disable MTS\n"
"--start          : start MTS\n"
"--stop           : stop MTS\n"
"--adduser        : add an existing system user to MTS (requires username)\n"
"--deluser        : delete an existing system user from MTS (requires "
"username)\n"
"--addclient      : add a client machine to MTS (requires MAC address, IP, "
"nbi image name)\n"
"--delclient      : delete a client machine from MTS (requires MAC address, "
"IP, nbi image name)"
msgstr ""
"[OPTIONS]...\n"
"Program za podešavanje Mandriva Terminalnog Servera\n"
"--enable         : uključuje MTS\n"
"--disable        : isključuje MTS\n"
"--start          : pokreće MTS\n"
"--stop           : zaustavlja MTS\n"
"--adduser        : dodaje postojećeg sistemskog korisnika u MTS (zahteva "
"korisničko ime)\n"
"--deluser        : briše postojećeg sistemskog korisnika iz MTS (zahteva "
"korisničko ime)\n"
"--addclient      : dodaje klijentsku mašinu na MTS (zahteva MAC adresu, IP, "
"nbi image ime)\n"
"--delclient      : briše klijentsku mašinu iz MTS (zahteva MAC adresu, IP, "
"nbi image ime)"

#: standalone.pm:100
#, c-format
msgid "[keyboard]"
msgstr "[keyboard]"

#: standalone.pm:101
#, c-format
msgid "[--file=myfile] [--word=myword] [--explain=regexp] [--alert]"
msgstr "[--file=myfile] [--word=myword] [--explain=regexp] [--alert]"

#: standalone.pm:102
#, c-format
msgid ""
"[OPTIONS]\n"
"Network & Internet connection and monitoring application\n"
"\n"
"--defaultintf interface : show this interface by default\n"
"--connect : connect to internet if not already connected\n"
"--disconnect : disconnect to internet if already connected\n"
"--force : used with (dis)connect : force (dis)connection.\n"
"--status : returns 1 if connected 0 otherwise, then exit.\n"
"--quiet : do not be interactive. To be used with (dis)connect."
msgstr ""
"[OPTIONS]\n"
"Mrežna i Internet konekcija i aplikacije za monitoring\n"
"\n"
"--defaultintf interfejs : prikazuje  ovaj interfejst po osnovnoj postavci\n"
"--connect : povezuje se na Internet ukoliko već nije povezan\n"
"--disconnect : prekida vezu sa Internetom ukoliko je već povezan\n"
"--force : koristi se uz dve prethodne opcije : primorava na povezivanje ili "
"prekid.\n"
"--status : prikadzuje 1 ukoliko je povezan ili 0 ako nije, i zatim "
"završava.\n"
"--quiet : bez interaktivnosti. Treba da se koristi sa opcijama za "
"povezivanje i prekid."

#: standalone.pm:112
#, c-format
msgid ""
"[OPTION]...\n"
"  --no-confirmation      do not ask first confirmation question in Mandriva "
"Update mode\n"
"  --no-verify-rpm        do not verify packages signatures\n"
"  --changelog-first      display changelog before filelist in the "
"description window\n"
"  --merge-all-rpmnew     propose to merge all .rpmnew/.rpmsave files found"
msgstr ""
"[OPTION]...\n"
"  --no-confirmation      ne postavlja pitanje o potvrdi u Mandriva Update "
"modu\n"
"  --no-verify-rpm        ne proverava signature paketa\n"
"  --changelog-first      prikadzuje zapis o izmenama pre liste fajlova u "
"prozoru dza opis\n"
"  --merge-all-rpmnew     predlaže spajanje svih pronađenih .rpmnew/.rpmsave "
"fajlova"

#: standalone.pm:117
#, c-format
msgid ""
"[--manual] [--device=dev] [--update-sane=sane_source_dir] [--update-"
"usbtable] [--dynamic=dev]"
msgstr ""
"[--manual] [--device=dev] [--update-sane=sane_source_dir] [--update-"
"usbtable] [--dynamic=dev]"

#: standalone.pm:118
#, c-format
msgid ""
" [everything]\n"
"       XFdrake [--noauto] monitor\n"
"       XFdrake resolution"
msgstr ""
" [everything]\n"
"       XFdrake [--noauto] monitor\n"
"       XFdrake resolution"

#: standalone.pm:154
#, c-format
msgid ""
"\n"
"Usage: %s  [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
"testing] [-v|--version] "
msgstr ""
"\n"
"Upotreba: %s  [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
"testing] [-v|--version] "

#: timezone.pm:161 timezone.pm:162
#, fuzzy, c-format
msgid "All servers"
msgstr "Dodaj server"

#: timezone.pm:196
#, c-format
msgid "Global"
msgstr "Globalno"

#: timezone.pm:199
#, fuzzy, c-format
msgid "Africa"
msgstr "Južna Afrika"

#: timezone.pm:200
#, fuzzy, c-format
msgid "Asia"
msgstr "Austrija"

#: timezone.pm:201
#, c-format
msgid "Europe"
msgstr ""

#: timezone.pm:202
#, fuzzy, c-format
msgid "North America"
msgstr "Južna Afrika"

#: timezone.pm:203
#, c-format
msgid "Oceania"
msgstr "Okeanija"

#: timezone.pm:204
#, fuzzy, c-format
msgid "South America"
msgstr "Južna Afrika"

#: timezone.pm:213
#, c-format
msgid "Hong Kong"
msgstr "Hong Kong"

#: timezone.pm:250
#, c-format
msgid "Russian Federation"
msgstr "Rusija"

#: timezone.pm:258
#, c-format
msgid "Yugoslavia"
msgstr "Srbija i Crna Gora"

#: ugtk2.pm:812
#, c-format
msgid "Is this correct?"
msgstr "Da li je ovo ispravno ?"

#: ugtk2.pm:874
#, fuzzy, c-format
msgid "You have chosen a file, not a directory"
msgstr "Treba da odredite datoteku, a ne direktorijum.\n"

#: wizards.pm:95
#, c-format
msgid ""
"%s is not installed\n"
"Click \"Next\" to install or \"Cancel\" to quit"
msgstr ""

#: wizards.pm:99
#, c-format
msgid "Installation failed"
msgstr "Instalacija nije uspela"

#~ msgid "Please log out and then use Ctrl-Alt-BackSpace"
#~ msgstr "Molim vaš izlogujte se i restartujte (Ctrl-Alt-BackSpace) računar"

#~ msgid "Welcome To Crackers"
#~ msgstr "Dobrošli kod Krakera"

#~ msgid "Poor"
#~ msgstr "Bedna"

#~ msgid "High"
#~ msgstr "Velika"

#~ msgid "Higher"
#~ msgstr "Višlji"

#~ msgid "Paranoid"
#~ msgstr "Paranoidna"

#~ msgid ""
#~ "This level is to be used with care. It makes your system more easy to "
#~ "use,\n"
#~ "but very sensitive. It must not be used for a machine connected to "
#~ "others\n"
#~ "or to the Internet. There is no password access."
#~ msgstr ""
#~ "Na ovom nivou treba obratiti pažnju. On pravi vaš sistem lakšim\n"
#~ "za upotrebu, ali i  veoma osetljivim: ne sme biti korišten na mašini\n"
#~ "koja je povezana sa drugim mašinama ili na internet. Ovde ne postoji\n"
#~ "pristup sa lozinkom."

#~ msgid ""
#~ "Passwords are now enabled, but use as a networked computer is still not "
#~ "recommended."
#~ msgstr ""
#~ "Lozinke su sada omogućene, ali se i dalje ne preporučuje da se koristi\n"
#~ "kao mrežni računar."

#~ msgid ""
#~ "There are already some restrictions, and more automatic checks are run "
#~ "every night."
#~ msgstr ""
#~ "Već postoje neka ograničenja, a više automatskih provera se pokreće svake "
#~ "noći."

#~ msgid ""
#~ "This is similar to the previous level, but the system is entirely closed "
#~ "and security features are at their maximum."
#~ msgstr ""
#~ "Ovo je slično prethodnom nivou, ali je sada sistem potpuno zatvoren i "
#~ "sigurnosne opcije su maksimalne."

#~ msgid ""
#~ "\n"
#~ "Warning\n"
#~ "\n"
#~ "Please read carefully the terms below. If you disagree with any\n"
#~ "portion, you are not allowed to install the next CD media. Press "
#~ "'Refuse' \n"
#~ "to continue the installation without using these media.\n"
#~ "\n"
#~ "\n"
#~ "Some components contained in the next CD media are not governed\n"
#~ "by the GPL License or similar agreements. Each such component is then\n"
#~ "governed by the terms and conditions of its own specific license. \n"
#~ "Please read carefully and comply with such specific licenses before \n"
#~ "you use or redistribute the said components. \n"
#~ "Such licenses will in general prevent the transfer,  duplication \n"
#~ "(except for backup purposes), redistribution, reverse engineering, \n"
#~ "de-assembly, de-compilation or modification of the component. \n"
#~ "Any breach of agreement will immediately terminate your rights under \n"
#~ "the specific license. Unless the specific license terms grant you such\n"
#~ "rights, you usually cannot install the programs on more than one\n"
#~ "system, or adapt it to be used on a network. In doubt, please contact \n"
#~ "directly the distributor or editor of the component. \n"
#~ "Transfer to third parties or copying of such components including the \n"
#~ "documentation is usually forbidden.\n"
#~ "\n"
#~ "\n"
#~ "All rights to the components of the next CD media belong to their \n"
#~ "respective authors and are protected by intellectual property and \n"
#~ "copyright laws applicable to software programs.\n"
#~ msgstr ""
#~ "\n"
#~ "Upozorenje !\n"
#~ "\n"
#~ "Pažljivo pročitajte dole navedene uslove. Ukoliko se ne slažete sa bilo "
#~ "kojim \n"
#~ "delom, onda nemate odobrenje za instaliranje sledećeg CD-a. Pritisnite "
#~ "'Odbijam' \n"
#~ "da bi nastavili instalaciju bez upotrebe tih CD medija.\n"
#~ "\n"
#~ "\n"
#~ "Neke komponente sadržane u sledećim CD medijama nisu pod\n"
#~ "GPL Licencom ili sličnim ugovorima. Svaka takva komponenta je onda "
#~ "uslovljena\n"
#~ "uslovima i ugovorima sopstevene lincence. \n"
#~ "Pažljivo pročitajte i upoznajte se sa takvim specifičnim licencama pre \n"
#~ "nego uotrebite ili redistribuirate pomenute komponente. \n"
#~ "Takve licence će u glavnom zabranjivati transfer, kopiranje \n"
#~ "(osim za svrhu backup-a podataka), redisribuciju, nahnadnu promenu, \n"
#~ "rastavljanje, de-kompajliranje ili menjanje komponenti. \n"
#~ "Bilo koji deo ugovora koji nije ispoštovan istovremeno uklanja i ostala "
#~ "vaša prava\n"
#~ "u datoj licenci. Ukoliko vam određena licenca ne garantuje takva\n"
#~ "prava, obično ne možete instalirati programe na više od jedanog\n"
#~ "aiatema, ili ih prilagoditi da se mogu koristiti na mreži. Ukoliko ste u "
#~ "dilemi, molimo vas da direktno \n"
#~ "kontaktirate distributera ili editora komponente. \n"
#~ "Prenos na treće programe ili kopiranje takvih komponenti uključujući i\n"
#~ "dokumentaciju je obično zabranjen.\n"
#~ "\n"
#~ "\n"
#~ "Sva prava na komponente na sledećim CD medijama pripadaju njihovim \n"
#~ "respektativnim autorima i zaštićene su zakonima o intelektuanoj svojini "
#~ "i \n"
#~ "pravima koji se primenjuju na softverske programe.\n"

#~ msgid "Use libsafe for servers"
#~ msgstr "Koristi libsafe za servere"

#~ msgid ""
#~ "A library which defends against buffer overflow and format string attacks."
#~ msgstr "Biblioteka koja štiti od buffer overflow-a i format string napada."

#~ msgid "LILO/grub Installation"
#~ msgstr "LILO/grub instalacija"

#~ msgid "Precise RAM size if needed (found %d MB)"
#~ msgstr "Definiši veličinu RAM ako je potrebno (detektovano je %d MB)"

#~ msgid "Give the ram size in MB"
#~ msgstr "Prikaži veličinu RAM-a u Mb"

#~ msgid ""
#~ "If you plan to use aboot, be careful to leave a free space (2048 sectors "
#~ "is enough)\n"
#~ "at the beginning of the disk"
#~ msgstr ""
#~ "Ukoliko planirate da koristite  aboot, ostavite prazan prostor (2048 "
#~ "sektorana početku \n"
#~ "diska)"

#~ msgid "Security level"
#~ msgstr "Sigurnosni nivo"

#~ msgid "Expand Tree"
#~ msgstr "Proširi stablo"

#~ msgid "Collapse Tree"
#~ msgstr "Skupi stablo"

#~ msgid "Toggle between flat and group sorted"
#~ msgstr "Birajte: ravno ili grupno sortirano"

#~ msgid "Choose action"
#~ msgstr "Izaberite akciju"

#, fuzzy
#~ msgid "Active Directory with SFU"
#~ msgstr "Obnovi sve backup-ove"

#, fuzzy
#~ msgid "Active Directory with Winbind"
#~ msgstr "Obnovi sve backup-ove"

#, fuzzy
#~ msgid "Active Directory with SFU:"
#~ msgstr "Obnovi sve backup-ove"

#, fuzzy
#~ msgid "Active Directory with Winbind:"
#~ msgstr "Obnovi sve backup-ove"

#~ msgid "Authentication LDAP"
#~ msgstr "LDAP Autentifikacija"

#~ msgid "TLS"
#~ msgstr "TLS"

#~ msgid "SSL"
#~ msgstr "SSL"

#, fuzzy
#~ msgid "Authentication Active Directory"
#~ msgstr "Autentifikacija"

#, fuzzy
#~ msgid "LDAP users database"
#~ msgstr "Server,Baze podataka"

#, fuzzy
#~ msgid "Password for user"
#~ msgstr "Potrebna je Lozinka"

#~ msgid "Authentication NIS"
#~ msgstr "NIS Autentifikacija"

#~ msgid ""
#~ "For this to work for a W2K PDC, you will probably need to have the admin "
#~ "run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
#~ "add and reboot the server.\n"
#~ "You will also need the username/password of a Domain Admin to join the "
#~ "machine to the Windows(TM) domain.\n"
#~ "If networking is not yet enabled, Drakx will attempt to join the domain "
#~ "after the network setup step.\n"
#~ "Should this setup fail for some reason and domain authentication is not "
#~ "working, run 'smbpasswd -j DOMAIN -U USER%%PASSWORD' using your Windows"
#~ "(tm) Domain, and Admin Username/Password, after system boot.\n"
#~ "The command 'wbinfo -t' will test whether your authentication secrets are "
#~ "good."
#~ msgstr ""
#~ "Da bi ovo radilo sa W2K PDC, verovatno ćete morati da kao admin "
#~ "pokrenete: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" "
#~ "everyone /add i da restartujete server.\n"
#~ "Takože ćete morati da imate username/password za  Domain Admin da bi "
#~ "pristupili mašini koja ima Windows(TM) domen.\n"
#~ "Ukoliko mreža još uvek nije omogućena, Drakx će pokušati da pristupi "
#~ "domenu nakon podešavanja mreže.\n"
#~ "Ukoliko ovo podešavanje ne uspe iz nekog razloga i atuentifikacija domena "
#~ "ne radi, pokrenite 'smbpasswd -j DOMAIN -U USER%%PASSWORD' koristeći vaš "
#~ "Windows(tm) Domen, i Admin Username/Password, nakon startanja sistema.\n"
#~ "Komanda 'wbinfo -t' će testirati da li vaša autentifikacija dobra."

#~ msgid "Authentication Windows Domain"
#~ msgstr "Autentifikacija Windows Domena"

#~ msgid "Undo"
#~ msgstr "Poništi radnju"

#~ msgid "Save partition table"
#~ msgstr "Sačuvaj tabelu particija"

#~ msgid "Restore partition table"
#~ msgstr "Obnovi tabelu particija"

#~ msgid ""
#~ "The backup partition table has not the same size\n"
#~ "Still continue?"
#~ msgstr ""
#~ "Pohranjena(snimljena) tabela particija nije iste veličine\n"
#~ "Želite da nastavite ?"

#~ msgid "Info: "
#~ msgstr "Info: "

#~ msgid "Unknown driver"
#~ msgstr "Nepoznati drajver"

#~ msgid "Error reading file %s"
#~ msgstr "Greška kod otvaranja datoteka %s"

#~ msgid "Restoring from file %s failed: %s"
#~ msgstr "Otvaranje iz datoteke %s nije uspelo: %s"

#~ msgid "Bad backup file"
#~ msgstr "Loše backup-ovana datoteka"

#~ msgid "Error writing to file %s"
#~ msgstr "Greška kod unosa u datoteka %s"

#~ msgid "Error: The \"%s\" driver for your sound card is unlisted"
#~ msgstr "Greška: drajver \"%s\" za  vašu zvučnu karticu nije prikazan"

#~ msgid "Ext2"
#~ msgstr "Ext2"

#~ msgid "Journalised FS"
#~ msgstr "Journalised FS"

#~ msgid "Starts the X Font Server (this is mandatory for Xorg to run)."
#~ msgstr "Pokreće X Font server (potrebno za pokretanje Xorg)."

#~ msgid "Add user"
#~ msgstr "Dodaj korisnika"

#~ msgid "Accept user"
#~ msgstr "Prihvati korisnika"

#~ msgid "Rescue partition table"
#~ msgstr "Spasi tabelu particija"

#~ msgid "Removable media automounting"
#~ msgstr "Automontiranje prenosivog medija"

#~ msgid "Trying to rescue partition table"
#~ msgstr "Spasavanje tabele particija"

#, fuzzy
#~ msgid "Accept/Refuse bogus IPv4 error messages."
#~ msgstr ""
#~ "Argumenti: (arg)\n"
#~ "\n"
#~ "Prihvati/Odbij IPv4 poruke o greškama."

#, fuzzy
#~ msgid "Accept/Refuse broadcasted icmp echo."
#~ msgstr ""
#~ "Argumenti: (arg)\n"
#~ "\n"
#~ " Prihvati/Odbij prenosivi icmp echo."

#, fuzzy
#~ msgid "Allow/Forbid remote root login."
#~ msgstr ""
#~ "Argumenti: (arg)\n"
#~ "\n"
#~ "Dozvoli/Ne dozvoli udaljeno root logovanje."

#, fuzzy
#~ msgid "Enable/Disable IP spoofing protection."
#~ msgstr ""
#~ "Argumenti: (arg, alert=1)\n"
#~ "\n"
#~ "Omogući/Onemogući IP spoofing zaštitu."

#, fuzzy
#~ msgid "Enable/Disable libsafe if libsafe is found on the system."
#~ msgstr ""
#~ "Argumenti: (arg)\n"
#~ "\n"
#~ "Omogući/Onemogući libsafe ako je libsafe pronađen na sistemu."

#, fuzzy
#~ msgid "Enable/Disable the logging of IPv4 strange packets."
#~ msgstr ""
#~ "Argumenti: (arg)\n"
#~ "\n"
#~ "Omogući/Onemogući prijavljivanje IPv4 strange paketa."

#, fuzzy
#~ msgid "Enable/Disable msec hourly security check."
#~ msgstr ""
#~ "Argumenti: (arg)\n"
#~ "\n"
#~ "Omogući/Onemogući msec proveru sigurnosti na svaki čas."

#~ msgid "Number of capture buffers:"
#~ msgstr "Broj capture buffera :"

#~ msgid "number of capture buffers for mmap'ed capture"
#~ msgstr "broj capture buffer-a za mmap'ed capture"

#~ msgid "PLL setting:"
#~ msgstr "PLL opcije :"

#~ msgid "Radio support:"
#~ msgstr "Podrška za radio :"

#~ msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
#~ msgstr " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"