summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/network.c
blob: 10a42a74fa588f6d6a48000260b842bbaf754c3d (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
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
/*
 * Guillaume Cottenceau (gc@mandrakesoft.com)
 *
 * Copyright 2000 Mandrakesoft
 *
 * This software may be freely redistributed under the terms of the GNU
 * public license.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 *
 */

/*
 * Portions from Erik Troan (ewt@redhat.com)
 *
 * Copyright 1996 Red Hat Software 
 *
 */

#include <stdlib.h>
#include <unistd.h>
#include <sys/socket.h>
#include <net/if.h>
#include <arpa/inet.h>
#include <net/route.h>
#include <sys/ioctl.h>
#include <sys/mount.h>
#include <stdio.h>
#include <netdb.h>
#include <resolv.h>
#include <sys/utsname.h>

#include "stage1.h"
#include "frontend.h"
#include "modules.h"
#include "probing.h"
#include "log.h"
#include "mount.h"
#include "automatic.h"
#include "dhcp.h"
#include "adsl.h"
#include "url.h"
#include "dns.h"

#include "network.h"
#include "directory.h"

/* include it after config-stage1.h so that _GNU_SOURCE is defined and strndup is available */
#include <string.h>

static void error_message_net(void)  /* reduce code size */
{
	stg1_error_message("Could not configure network.");
}


int configure_net_device(struct interface_info * intf)
{
	struct ifreq req;
	struct rtentry route;
	int s;
	struct sockaddr_in addr;
	struct in_addr ia;
	char ip[20], nm[20], nw[20], bc[20];
	
	addr.sin_family = AF_INET;
	addr.sin_port = 0;
	
	memcpy(&ia, &intf->ip, sizeof(intf->ip));
	strcpy(ip, inet_ntoa(ia));
	
	memcpy(&ia, &intf->netmask, sizeof(intf->netmask));
	strcpy(nm, inet_ntoa(ia));
	
	memcpy(&ia, &intf->broadcast, sizeof(intf->broadcast));
	strcpy(bc, inet_ntoa(ia));
	
	memcpy(&ia, &intf->network, sizeof(intf->network));
	strcpy(nw, inet_ntoa(ia));

	log_message("configuring device %s ip: %s nm: %s nw: %s bc: %s", intf->device, ip, nm, nw, bc);

	if (IS_TESTING)
		return 0;

	s = socket(AF_INET, SOCK_DGRAM, 0);
	if (s < 0) {
		log_perror("socket");
		error_message_net();
		return 1;
	}

	strcpy(req.ifr_name, intf->device);

	if (intf->is_up == 1) {
		log_message("interface already up, downing before reconfigure");

		req.ifr_flags = 0;
		if (ioctl(s, SIOCSIFFLAGS, &req)) {
			close(s);
			log_perror("SIOCSIFFLAGS (downing)");
			error_message_net();
			return 1;
		}
	}
		
	/* sets IP address */
	addr.sin_port = 0;
	memcpy(&addr.sin_addr, &intf->ip, sizeof(intf->ip));
	memcpy(&req.ifr_addr, &addr, sizeof(addr));
	if (ioctl(s, SIOCSIFADDR, &req)) {
		close(s);
		log_perror("SIOCSIFADDR");
		error_message_net();
		return 1;
	}

	/* sets broadcast */
	memcpy(&addr.sin_addr, &intf->broadcast, sizeof(intf->broadcast));
	memcpy(&req.ifr_broadaddr, &addr, sizeof(addr));
	if (ioctl(s, SIOCSIFBRDADDR, &req)) {
		close(s);
		log_perror("SIOCSIFBRDADDR");
		error_message_net();
		return 1;
	}

	/* sets netmask */
	memcpy(&addr.sin_addr, &intf->netmask, sizeof(intf->netmask));
	memcpy(&req.ifr_netmask, &addr, sizeof(addr));
	if (ioctl(s, SIOCSIFNETMASK, &req)) {
		close(s);
		log_perror("SIOCSIFNETMASK");
		error_message_net();
		return 1;
	}

	if (intf->is_ptp)
		req.ifr_flags = IFF_UP | IFF_RUNNING | IFF_POINTOPOINT | IFF_NOARP;
	else
		req.ifr_flags = IFF_UP | IFF_RUNNING | IFF_BROADCAST;

	/* brings up networking! */
	if (ioctl(s, SIOCSIFFLAGS, &req)) {
		close(s);
		log_perror("SIOCSIFFLAGS (upping)");
		error_message_net();
		return 1;
	}

	memset(&route, 0, sizeof(route));
	route.rt_dev = intf->device;
	route.rt_flags = RTF_UP;
	
	memcpy(&addr.sin_addr, &intf->network, sizeof(intf->network));
	memcpy(&route.rt_dst, &addr, sizeof(addr));
	
	memcpy(&addr.sin_addr, &intf->netmask, sizeof(intf->netmask));
	memcpy(&route.rt_genmask, &addr, sizeof(addr));

	/* adds route */
	if (ioctl(s, SIOCADDRT, &route)) {
		close(s);
		log_perror("SIOCADDRT");
		error_message_net();
		return 1;
	}

	close(s);

	intf->is_up = 1;

	if (intf->boot_proto != BOOTPROTO_DHCP && !streq(intf->device, "lo")) {
		/* I need to sleep a bit in order for kernel to finish
		   init of the network device; if not, first sendto() for
		   gethostbyaddr will get an EINVAL. */
		wait_message("Bringing up networking...");
		sleep(2);
		remove_wait_message();
	}

	return 0;
}

/* host network informations */ 
char * hostname = NULL;
char * domain = NULL;
struct in_addr gateway = { 0 };
struct in_addr dns_server = { 0 };
struct in_addr dns_server2 = { 0 };

static int add_default_route(void)
{
	int s;
	struct rtentry route;
	struct sockaddr_in addr;

	if (IS_TESTING)
		return 0;

	if (gateway.s_addr == 0) {
		log_message("no gateway provided, can't add default route");
		return 0;
	}

	s = socket(AF_INET, SOCK_DGRAM, 0);
	if (s < 0) {
		close(s);
		log_perror("socket");
		error_message_net();
		return 1;
	}

	memset(&route, 0, sizeof(route));

	addr.sin_family = AF_INET;
	addr.sin_port = 0;
	addr.sin_addr = gateway;
	memcpy(&route.rt_gateway, &addr, sizeof(addr));

	addr.sin_addr.s_addr = INADDR_ANY;
	memcpy(&route.rt_dst, &addr, sizeof(addr));
	memcpy(&route.rt_genmask, &addr, sizeof(addr));

	route.rt_flags = RTF_UP | RTF_GATEWAY;
	route.rt_metric = 0;

	if (ioctl(s, SIOCADDRT, &route)) {
		close(s);
		log_perror("SIOCADDRT");
		error_message_net();
		return 1;
	}

	close(s);
	
	return 0;
}


static int write_resolvconf(void)
{
	char * filename = "/etc/resolv.conf";
	FILE * f;
	
	if (dns_server.s_addr == 0) {
		log_message("resolvconf needs a dns server");
		return -1;
	}

	f = fopen(filename, "w");
	if (!f) {
		log_perror(filename);
		return -1;
	}

	if (domain)
		fprintf(f, "search %s\n", domain); /* we can live without the domain search (user will have to enter fully-qualified names) */
	fprintf(f, "nameserver %s\n", inet_ntoa(dns_server));
	if (dns_server2.s_addr != 0)
		fprintf(f, "nameserver %s\n", inet_ntoa(dns_server2));

	fclose(f);
	res_init();		/* reinit the resolver so DNS changes take affect */

	return 0;
}


static int save_netinfo(struct interface_info * intf)
{
	char * file_network = "/tmp/network";
	char file_intf[500];
	FILE * f;
	
	f = fopen(file_network, "w");
	if (!f) {
		log_perror(file_network);
		return -1;
	}

	fprintf(f, "NETWORKING=yes\n");
	fprintf(f, "FORWARD_IPV4=false\n");

	if (hostname && !intf->boot_proto == BOOTPROTO_DHCP)
		fprintf(f, "HOSTNAME=%s\n", hostname);
	if (domain)
		fprintf(f, "DOMAINNAME=%s\n", domain);
	if (dhcp_hostname && !streq(dhcp_hostname, ""))
		fprintf(f, "DHCP_HOSTNAME=%s\n", dhcp_hostname);
	
	if (gateway.s_addr != 0)
		fprintf(f, "GATEWAY=%s\n", inet_ntoa(gateway));

	fclose(f);

	
	strcpy(file_intf, "/tmp/ifcfg-");
	strcat(file_intf, intf->device);

	f = fopen(file_intf, "w");
	if (!f) {
		log_perror(file_intf);
		return -1;
	}

	fprintf(f, "DEVICE=%s\n", intf->device);

	if (intf->boot_proto == BOOTPROTO_DHCP)
		fprintf(f, "BOOTPROTO=dhcp\n");
	else if (intf->boot_proto == BOOTPROTO_STATIC) {
		fprintf(f, "BOOTPROTO=static\n");
		fprintf(f, "IPADDR=%s\n", inet_ntoa(intf->ip));
		fprintf(f, "NETMASK=%s\n", inet_ntoa(intf->netmask));
		fprintf(f, "NETWORK=%s\n", inet_ntoa(intf->network));
		fprintf(f, "BROADCAST=%s\n", inet_ntoa(intf->broadcast));
	} else if (intf->boot_proto == BOOTPROTO_ADSL_PPPOE) {
		fprintf(f, "BOOTPROTO=adsl_pppoe\n");
		fprintf(f, "USER=%s\n", intf->user);
		fprintf(f, "PASS=%s\n", intf->pass);
		fprintf(f, "ACNAME=%s\n", intf->acname);
	}

	fclose(f);

	return 0;
}


char * guess_netmask(char * ip_addr)
{
	struct in_addr addr;
	unsigned long int tmp;

	if (streq(ip_addr, "") || !inet_aton(ip_addr, &addr))
		return "";

	log_message("guessing netmask");

	tmp = ntohl(addr.s_addr);
	
	if (((tmp & 0xFF000000) >> 24) <= 127)
		return "255.0.0.0";
	else if (((tmp & 0xFF000000) >> 24) <= 191)
		return "255.255.0.0";
	else 
		return "255.255.255.0";
}


char * guess_domain_from_hostname(char *hostname)
{
	char *domain = strchr(strdup(hostname), '.');
	if (!domain || domain[1] == '\0') {
		log_message("unable to guess domain from hostname: %s", hostname);
		return NULL;
	}
	return domain + 1; /* skip '.' */
}


static void static_ip_callback(char ** strings)
{
	struct in_addr addr;

        static int done = 0;
        if (done)
                return;
	if (streq(strings[0], "") || !inet_aton(strings[0], &addr))
		return;
        done = 1;

	if (!strcmp(strings[1], "")) {
		char * ptr;
		strings[1] = strdup(strings[0]);
		ptr = strrchr(strings[1], '.');
		if (ptr)
			*(ptr+1) = '\0';
	}

	if (!strcmp(strings[2], ""))
		strings[2] = strdup(strings[1]);

	if (!strcmp(strings[3], ""))
		strings[3] = strdup(guess_netmask(strings[0]));
}


static enum return_type setup_network_interface(struct interface_info * intf)
{
	enum return_type results;
	char * bootprotos[] = { "Static", "DHCP", "ADSL", NULL };
	char * bootprotos_auto[] = { "static", "dhcp", "adsl" };
	char * choice;

	results = ask_from_list_auto("Please choose the desired IP attribution.", bootprotos, &choice, "network", bootprotos_auto);
	if (results != RETURN_OK)
		return results;

	if (!strcmp(choice, "Static")) {
		char * questions[] = { "IP of this machine", "IP of DNS", "IP of default gateway", "Netmask", NULL };
		char * questions_auto[] = { "ip", "dns", "gateway", "netmask" };
		static char ** answers = NULL;
		struct in_addr addr;

		results = ask_from_entries_auto("Please enter the network information. (leave netmask blank for Internet standard)",
						questions, &answers, 16, questions_auto, static_ip_callback);
		if (results != RETURN_OK)
			return setup_network_interface(intf);

		if (streq(answers[0], "") || !inet_aton(answers[0], &addr)) {
			stg1_error_message("Invalid IP address.");
			return setup_network_interface(intf);
		}
		memcpy(&intf->ip, &addr, sizeof(addr));

		if (!inet_aton(answers[1], &dns_server)) {
			log_message("invalid DNS");
			dns_server.s_addr = 0; /* keep an understandable state */
		}

		if (streq(answers[0], answers[1])) {
			log_message("IP and DNS are the same, guess you don't want a DNS, disabling it");
			dns_server.s_addr = 0; /* keep an understandable state */
		}

		if (!inet_aton(answers[2], &gateway)) {
			log_message("invalid gateway");
			gateway.s_addr = 0; /* keep an understandable state */
		}

		if ((streq(answers[3], "") && inet_aton(guess_netmask(answers[0]), &addr))
		    || inet_aton(answers[3], &addr))
			memcpy(&intf->netmask, &addr, sizeof(addr));
		else {
			stg1_error_message("Invalid netmask.");
			return setup_network_interface(intf);
		}

		*((uint32_t *) &intf->broadcast) = (*((uint32_t *) &intf->ip) &
						    *((uint32_t *) &intf->netmask)) | ~(*((uint32_t *) &intf->netmask));

		inet_aton("255.255.255.255", &addr);
		if (!memcmp(&addr, &intf->netmask, sizeof(addr))) {
			log_message("netmask is 255.255.255.255 -> point to point device");
			intf->network = gateway;
			intf->is_ptp = 1;
		} else {
			*((uint32_t *) &intf->network) = *((uint32_t *) &intf->ip) & *((uint32_t *) &intf->netmask);
			intf->is_ptp = 0;
		}
		intf->boot_proto = BOOTPROTO_STATIC;

		if (configure_net_device(intf))
			return RETURN_ERROR;

	} else if (streq(choice, "DHCP")) {
		results = perform_dhcp(intf);

		if (results == RETURN_BACK)
			return setup_network_interface(intf);
		if (results == RETURN_ERROR)
			return results;
		intf->boot_proto = BOOTPROTO_DHCP;

		if (configure_net_device(intf))
			return RETURN_ERROR;

	} else if (streq(choice, "ADSL")) {
		results = perform_adsl(intf);

		if (results == RETURN_BACK)
			return setup_network_interface(intf);
		if (results == RETURN_ERROR)
			return results;
	} else
		return RETURN_ERROR;
	
	return add_default_route();
}


static enum return_type configure_network(struct interface_info * intf)
{
	char * dnshostname;

	if (hostname && domain)
		return RETURN_OK;

	dnshostname = mygethostbyaddr(inet_ntoa(intf->ip));

	if (dnshostname) {
		if (intf->boot_proto == BOOTPROTO_STATIC)
			hostname = strdup(dnshostname);
		domain = guess_domain_from_hostname(dnshostname);
		if (domain) {
			log_message("got hostname and domain from dns entry, %s and %s", dnshostname, domain);
			return RETURN_OK;
		}
	} else
		log_message("reverse name lookup on self failed");

	if (domain)
		return RETURN_OK;

	dnshostname = NULL;
	if (dns_server.s_addr != 0) {
		wait_message("Trying to resolve dns...");
		dnshostname = mygethostbyaddr(inet_ntoa(dns_server));
		remove_wait_message();
		if (dnshostname) {
			log_message("got DNS fullname, %s", dnshostname);
			domain = guess_domain_from_hostname(dnshostname);
		} else
			log_message("reverse name lookup on DNS failed");
	} else
		log_message("no DNS, unable to guess domain");

	if (domain) {
		log_message("got domain from DNS fullname, %s", domain);
	} else {
		enum return_type results;
		char * questions[] = { "Host name", "Domain name", NULL };
		char * questions_auto[] = { "hostname", "domain" };
		static char ** answers = NULL;
		char * boulet;
		
		results = ask_from_entries_auto("I could not guess hostname and domain name; please fill in this information. "
						"Valid answers are for example: `mybox' for hostname and `mynetwork.com' for "
						"domain name, for a machine called `mybox.mynetwork.com' on the Internet.",
						questions, &answers, 32, questions_auto, NULL);
		if (results != RETURN_OK)
			return results;
		
		hostname = answers[0];
		if ((boulet = strchr(hostname, '.')) != NULL)
			boulet[0] = '\0';
		domain = answers[1];
	}

	return RETURN_OK;
}


static enum return_type bringup_networking(struct interface_info * intf)
{
	static struct interface_info loopback;
	enum return_type results = RETURN_ERROR;
	
	my_insmod("af_packet", ANY_DRIVER_TYPE, NULL, 1);

	while (results != RETURN_OK) {
		results = setup_network_interface(intf);
		if (results != RETURN_OK)
			return results;
		write_resolvconf();
		results = configure_network(intf);
	}

	write_resolvconf(); /* maybe we have now domain to write also */

	if (loopback.is_up == 0) {
		int rc;
		strcpy(loopback.device, "lo");
		loopback.is_ptp = 0;
		loopback.is_up = 0;
		loopback.ip.s_addr = htonl(0x7f000001);
		loopback.netmask.s_addr = htonl(0xff000000);
		loopback.broadcast.s_addr = htonl(0x7fffffff);
		loopback.network.s_addr = htonl(0x7f000000);
		rc = configure_net_device(&loopback);
		if (rc)
			return RETURN_ERROR;
	}

	return RETURN_OK;
}


static char * interface_select(void)
{
	char ** interfaces, ** ptr;
	char * descriptions[50];
	char * choice;
	int i, count = 0;
	enum return_type results;

	interfaces = get_net_devices();

	ptr = interfaces;
	while (ptr && *ptr) {
		count++;
		ptr++;
	}

	if (count == 0) {
		stg1_error_message("No NET device found.\n"
				   "Hint: if you're using a Laptop, note that PCMCIA Network adapters are now supported either with `pcmcia.img' or `network.img', please try both these bootdisks.");
		i = ask_insmod(NETWORK_DEVICES);
		if (i == RETURN_BACK)
			return NULL;
		return interface_select();
	}

	if (count == 1)
		return *interfaces;

	i = 0;
	while (interfaces[i]) {
		descriptions[i] = get_net_intf_description(interfaces[i]);
		i++;
	}

	results = ask_from_list_comments_auto("Please choose the NET device to use for the installation.",
					      interfaces, descriptions, &choice, "interface", interfaces);

	if (results != RETURN_OK)
		return NULL;

	return choice;
}

#ifndef MANDRAKE_MOVE
static enum return_type get_http_proxy(char **http_proxy_host, char **http_proxy_port)
{
	char *questions[] = { "HTTP proxy host", "HTTP proxy port", NULL };
	char *questions_auto[] = { "proxy_host", "proxy_port", NULL };
	static char ** answers = NULL;
	enum return_type results;
	
	results = ask_from_entries_auto("Please enter HTTP proxy host and port if you need it, else leave them blank or cancel.",
					questions, &answers, 40, questions_auto, NULL);
	if (results == RETURN_OK) {
		*http_proxy_host = answers[0];
		*http_proxy_port = answers[1];
	}

	return results;
}


static int mirrorlist_entry_split(const char *entry, char *mirror[4]) /* mirror = { medium, protocol, host, path } */
{
	char *medium_sep, *protocol_sep, *host_sep, *path_sep;

	medium_sep = strchr(entry, ':');
	if (!medium_sep || medium_sep == entry) {
		log_message("NETWORK: no medium in \"%s\"", entry);
		return -1;
	}

	mirror[0] = strndup(entry, medium_sep - entry);
	entry = medium_sep + 1;

	protocol_sep = strstr(entry, "://");
	if (!protocol_sep || protocol_sep == entry) {
		log_message("NETWORK: no protocol in \"%s\"", entry);
		return -1;
	}

	mirror[1] = strndup(entry, protocol_sep - entry);
	entry = protocol_sep + 3;

	host_sep = strchr(entry, '/');
	if (!host_sep || host_sep == entry) {
		log_message("NETWORK: no hostname in \"%s\"", entry);
		return -1;
	}

	mirror[2] = strndup(entry, host_sep - entry);
	entry = host_sep;

	path_sep = strstr(entry, "/media/main");
	if (!path_sep || path_sep == entry) {
		log_message("NETWORK: this path isn't valid : \"%s\"", entry);
		return -1;
	}

	mirror[3] = strndup(entry, path_sep - entry);

	return 0;
}


static int choose_mirror_from_host_list(char *mirrorlist[][4], const char *protocol, char *medium, char **selected_host, char **filepath)
{
	enum return_type results;
	char *hostlist[MIRRORLIST_MAX_ITEMS+1] = { "Specify the mirror manually", "-----" };
	int hostlist_index = 2, mirrorlist_index;

	/* select hosts matching medium and protocol */
	for (mirrorlist_index = 0; mirrorlist[mirrorlist_index][0]; mirrorlist_index++) {
		if (!strcmp(mirrorlist[mirrorlist_index][0], medium) &&
		    !strcmp(mirrorlist[mirrorlist_index][1], protocol)) {
			hostlist[hostlist_index] = mirrorlist[mirrorlist_index][2];
			hostlist_index++;
			if (hostlist_index == MIRRORLIST_MAX_ITEMS)
				break;
		}
	}
	hostlist[hostlist_index] = NULL;

	do {
		results = ask_from_list("Please select a mirror from the list below.",
					hostlist, selected_host);

		if (results == RETURN_BACK) {
			return RETURN_ERROR;
		} else if (results == RETURN_OK) {
			if (!strcmp(*selected_host, hostlist[0])) {
				/* enter the mirror manually */
				return RETURN_OK;
			} else if (!strcmp(*selected_host, hostlist[1])) {
				/* the separator has been selected */
				results = RETURN_ERROR;
				continue;
			}
		}

		/* select the path according to medium, protocol and host */
		for (mirrorlist_index = 0; mirrorlist[mirrorlist_index][0]; mirrorlist_index++) {
			if (!strcmp(mirrorlist[mirrorlist_index][0], medium) &&
			    !strcmp(mirrorlist[mirrorlist_index][1], protocol) &&
			    !strcmp(mirrorlist[mirrorlist_index][2], *selected_host)) {
				*filepath = mirrorlist[mirrorlist_index][3];
				return RETURN_OK;
			}
		}

		stg1_info_message("Unable to find the path for this mirror, please select another one");
		results = RETURN_ERROR;
		
	} while (results == RETURN_ERROR);

	return RETURN_ERROR;
}


static int choose_mirror_from_list(char *http_proxy_host, char *http_proxy_port, const char *protocol, char **selected_host, char **filepath)
{
	enum return_type results;
	char *mirrorlist[MIRRORLIST_MAX_ITEMS+1][4];
	int mirrorlist_number = 0;
	char *medialist[MIRRORLIST_MAX_MEDIA+1] = { "Specify the mirror manually", "-----" };
	int media_number = 2;
	char *selected_medium;
	int fd, size, line_pos = 0;
	char line[500];
	int use_http_proxy = !streq(http_proxy_host, "") && !streq(http_proxy_port, "");

	fd = http_download_file(MIRRORLIST_HOST, MIRRORLIST_PATH, &size, use_http_proxy ? "http" : NULL, http_proxy_host, http_proxy_port);
	if (fd < 0) {
		log_message("HTTP: unable to get mirrors list");
		return RETURN_ERROR;
	}

	while (read(fd, line + line_pos, 1) > 0) {
		if (line[line_pos] == '\n') {
			line[line_pos] = '\0';
			line_pos = 0;

			/* skip medium if it looks like an updates one */
			if (strstr(line, "updates"))
				continue;

			if (mirrorlist_entry_split(line, mirrorlist[mirrorlist_number]) < 0)
				continue;

			/* add medium in media list if different from previous one */
			if (media_number == 2 ||
			    strcmp(mirrorlist[mirrorlist_number][0], medialist[media_number-1])) {
				medialist[media_number] = mirrorlist[mirrorlist_number][0];
				media_number++;
			}

			mirrorlist_number++;
		} else {
			line_pos++;
		}

		if (mirrorlist_number >= MIRRORLIST_MAX_ITEMS || media_number >= MIRRORLIST_MAX_MEDIA)
			break;
	}
	close(fd);

	mirrorlist[mirrorlist_number][0] = NULL;
	medialist[media_number] = NULL;

	do {
		results = ask_from_list("Please select a medium from the list below.",
					medialist, &selected_medium);

		if (results == RETURN_BACK) {
			return RETURN_BACK;
		} else if (results == RETURN_OK) {
			if (!strcmp(selected_medium, medialist[0])) {
				/* enter the mirror manually */
				return RETURN_OK;
			} else if (!strcmp(selected_medium, medialist[1])) {
				/* the separator has been selected */
				results = RETURN_ERROR;
				continue;
			} else {
				/* a medium has been selected */
				results = choose_mirror_from_host_list(mirrorlist, protocol, selected_medium, selected_host, filepath);
			}
		}
	} while (results == RETURN_ERROR);

	return results;
}
#endif


/* -=-=-- */


enum return_type intf_select_and_up()
{
	static struct interface_info intf[20];
	static int num_interfaces = 0;
	struct interface_info * sel_intf = NULL;
	int i;
	enum return_type results;
	char * iface = interface_select();
	
	if (iface == NULL)
		return RETURN_BACK;
	
	for (i = 0; i < num_interfaces ; i++)
		if (!strcmp(intf[i].device, iface))
			sel_intf = &(intf[i]);
	
	if (sel_intf == NULL) {
		sel_intf = &(intf[num_interfaces]);
		strcpy(sel_intf->device, iface);
		sel_intf->is_up = 0;
		num_interfaces++;
	}
	
	results = bringup_networking(sel_intf);

	if (results == RETURN_OK)
		save_netinfo(sel_intf);

	return results;
}



enum return_type nfs_prepare(void)
{
	char * questions[] = { "NFS server name", DISTRIB_NAME " directory", NULL };
	char * questions_auto[] = { "server", "directory", NULL };
	static char ** answers = NULL;
	char * nfs_own_mount = IMAGE_LOCATION_DIR "nfsimage";
	char * nfsmount_location;
	enum return_type results = intf_select_and_up(NULL, NULL);

	if (results != RETURN_OK)
		return results;

	do {
		results = ask_from_entries_auto("Please enter the name or IP address of your NFS server, "
						"and the directory containing the " DISTRIB_NAME " Distribution.",
						questions, &answers, 40, questions_auto, NULL);
		if (results != RETURN_OK || streq(answers[0], "")) {
			unset_automatic(); /* we are in a fallback mode */
			return nfs_prepare();
		}
		
		nfsmount_location = malloc(strlen(answers[0]) + strlen(answers[1]) + 2);
		strcpy(nfsmount_location, answers[0]);
		strcat(nfsmount_location, ":");
		strcat(nfsmount_location, answers[1]);
		
		if (my_mount(nfsmount_location, nfs_own_mount, "nfs", 0) == -1) {
			stg1_error_message("I can't mount the directory from the NFS server.");
			results = RETURN_BACK;
			continue;
		}

		results = try_with_directory(nfs_own_mount, "nfs", "nfs-iso");
		if (results != RETURN_OK)
			umount(nfs_own_mount);
		if (results == RETURN_ERROR)
                        return RETURN_ERROR;
	}
	while (results == RETURN_BACK);

	return RETURN_OK;
}


#ifndef MANDRAKE_MOVE
enum return_type ftp_prepare(void)
{
	char * questions[] = { "FTP server", DISTRIB_NAME " directory", "Login", "Password", NULL };
	char * questions_auto[] = { "server", "directory", "user", "pass", NULL };
	static char ** answers = NULL;
	enum return_type results;
	struct utsname kernel_uname;
	char *http_proxy_host, *http_proxy_port;

	if (!ramdisk_possible()) {
		stg1_error_message("FTP install needs more than %d Mbytes of memory (detected %d Mbytes). You may want to try an NFS install.",
				   MEM_LIMIT_DRAKX, total_memory());
		return RETURN_ERROR;
	}

	results = intf_select_and_up();

	if (results != RETURN_OK)
		return results;

        get_http_proxy(&http_proxy_host, &http_proxy_port);
	uname(&kernel_uname);

	do {
		char location_full[500];
		int ftp_serv_response = -1;
		int fd, size;
		int use_http_proxy;
		char ftp_hostname[500];

		if (!IS_AUTOMATIC) {
			if (answers == NULL)
				answers = (char **) malloc(sizeof(questions));

			results = choose_mirror_from_list(http_proxy_host, http_proxy_port, "ftp", &answers[0], &answers[1]);

			if (results == RETURN_BACK)
				return ftp_prepare();
		}

		results = ask_from_entries_auto("Please enter the name or IP address of the FTP server, "
						"the directory containing the " DISTRIB_NAME " Distribution, "
						"and the login/pass if necessary (leave login blank for anonymous). ",
						questions, &answers, 40, questions_auto, NULL);
		if (results != RETURN_OK || streq(answers[0], "")) {
			unset_automatic(); /* we are in a fallback mode */
			return ftp_prepare();
		}

		use_http_proxy = !streq(http_proxy_host, "") && !streq(http_proxy_port, "");

		strcpy(location_full, answers[1][0] == '/' ? "" : "/");
		strcat(location_full, answers[1]);

		if (use_http_proxy) {
		        log_message("FTP: don't connect to %s directly, will use proxy", answers[0]);
		} else {
			char *kernels_list_file, *kernels_list;

		        log_message("FTP: trying to connect to %s", answers[0]);
			ftp_serv_response = ftp_open_connection(answers[0], answers[2], answers[3], "");
                        if (ftp_serv_response < 0) {
                                log_message("FTP: error connect %d", ftp_serv_response);
                                if (ftp_serv_response == FTPERR_BAD_HOSTNAME)
                                        stg1_error_message("Error: bad hostname.");
                                else if (ftp_serv_response == FTPERR_FAILED_CONNECT)
                                        stg1_error_message("Error: failed to connect to remote host.");
                                else
                                        stg1_error_message("Error: couldn't connect.");
                                results = RETURN_BACK;
                                continue;
                        }
			kernels_list_file = asprintf_("%s/" CLP_LOCATION_REL "mdkinst.kernels", location_full);

			log_message("FTP: trying to retrieve %s", kernels_list_file);
		        fd = ftp_start_download(ftp_serv_response, kernels_list_file, &size);

			if (fd < 0) {
				char *msg = str_ftp_error(fd);
				log_message("FTP: error get %d for remote file %s", fd, kernels_list_file);
				stg1_error_message("Error: %s.", msg ? msg : "couldn't retrieve list of kernel versions");
				results = RETURN_BACK;
				continue;
			}

			kernels_list = alloca(size);
			size = read(fd, kernels_list, size);
			close(fd);
			ftp_end_data_command(ftp_serv_response);
			
			if (!strstr(kernels_list, asprintf_("%s\n", kernel_uname.release))) {
				stg1_info_message("The modules for this kernel (%s) can't be found on this mirror, please update your boot disk", kernel_uname.release);
				results = RETURN_BACK;
				continue;
			}
                }

		strcat(location_full, CLP_FILE_REL("/"));

		log_message("FTP: trying to retrieve %s", location_full);

		if (use_http_proxy) {
			if (strcmp(answers[2], "")) {
			        strcpy(ftp_hostname, answers[2]); /* user name */
				strcat(ftp_hostname, ":");
				strcat(ftp_hostname, answers[3]); /* password */
				strcat(ftp_hostname, "@");
			} else {
			    strcpy(ftp_hostname, "");
			}
			strcat(ftp_hostname, answers[0]);
			fd = http_download_file(ftp_hostname, location_full, &size, "ftp", http_proxy_host, http_proxy_port);
		} else {
		        fd = ftp_start_download(ftp_serv_response, location_full, &size);
		}

		if (fd < 0) {
			char *msg = str_ftp_error(fd);
			log_message("FTP: error get %d for remote file %s", fd, location_full);
			stg1_error_message("Error: %s.", msg ? msg : "couldn't retrieve Installation program");
			results = RETURN_BACK;
			continue;
		}

		log_message("FTP: size of download %d bytes", size);
		
		results = load_clp_fd(fd, size);
		if (results == RETURN_OK) {
		        if (!use_http_proxy)
			        ftp_end_data_command(ftp_serv_response);
		} else {
			unset_automatic(); /* we are in a fallback mode */
			return results;
		}

		if (use_http_proxy) {
                        add_to_env("METHOD", "http");
		        sprintf(location_full, "ftp://%s%s", ftp_hostname, answers[1]);
		        add_to_env("URLPREFIX", location_full);
			add_to_env("PROXY", http_proxy_host);
			add_to_env("PROXYPORT", http_proxy_port);
		} else {
                        add_to_env("METHOD", "ftp");
		        add_to_env("HOST", answers[0]);
			add_to_env("PREFIX", answers[1]);
			if (!streq(answers[2], "")) {
			        add_to_env("LOGIN", answers[2]);
				add_to_env("PASSWORD", answers[3]);
			}
		}
	}
	while (results == RETURN_BACK);

	return RETURN_OK;
}

enum return_type http_prepare(void)
{
	char * questions[] = { "HTTP server", DISTRIB_NAME " directory", NULL };
	char * questions_auto[] = { "server", "directory", NULL };
	static char ** answers = NULL;
	enum return_type results;
	char *http_proxy_host, *http_proxy_port;

	if (!ramdisk_possible()) {
		stg1_error_message("HTTP install needs more than %d Mbytes of memory (detected %d Mbytes). You may want to try an NFS install.",
				   MEM_LIMIT_DRAKX, total_memory());
		return RETURN_ERROR;
	}

	results = intf_select_and_up();

	if (results != RETURN_OK)
		return results;

        get_http_proxy(&http_proxy_host, &http_proxy_port);

	do {
		char location_full[500];
		int fd, size;
		int use_http_proxy;

		results = ask_from_entries_auto("Please enter the name or IP address of the HTTP server, "
						"and the directory containing the " DISTRIB_NAME " Distribution.",
						questions, &answers, 40, questions_auto, NULL);
		if (results != RETURN_OK || streq(answers[0], "")) {
			unset_automatic(); /* we are in a fallback mode */
			return http_prepare();
		}

		strcpy(location_full, answers[1][0] == '/' ? "" : "/");
		strcat(location_full, answers[1]);
		strcat(location_full, CLP_FILE_REL("/"));

		log_message("HTTP: trying to retrieve %s from %s", location_full, answers[0]);
		
		use_http_proxy = !streq(http_proxy_host, "") && !streq(http_proxy_port, "");

		fd = http_download_file(answers[0], location_full, &size, use_http_proxy ? "http" : NULL, http_proxy_host, http_proxy_port);
		if (fd < 0) {
			log_message("HTTP: error %d", fd);
			if (fd == FTPERR_FAILED_CONNECT)
				stg1_error_message("Error: couldn't connect to server.");
			else
				stg1_error_message("Error: couldn't get file (%s).", location_full);
			results = RETURN_BACK;
			continue;
		}

		log_message("HTTP: size of download %d bytes", size);
		
		if (load_clp_fd(fd, size) != RETURN_OK) {
			unset_automatic(); /* we are in a fallback mode */
			return RETURN_ERROR;
                }

                add_to_env("METHOD", "http");
		sprintf(location_full, "http://%s%s%s", answers[0], answers[1][0] == '/' ? "" : "/", answers[1]);
		add_to_env("URLPREFIX", location_full);
                if (!streq(http_proxy_host, ""))
			add_to_env("PROXY", http_proxy_host);
                if (!streq(http_proxy_port, ""))
			add_to_env("PROXYPORT", http_proxy_port);
	}
	while (results == RETURN_BACK);

	return RETURN_OK;

}
#endif
='#n4954'>4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 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 7352 7353 7354 7355 7356 7357 7358 7359 7360 7361 7362 7363 7364 7365 7366 7367 7368 7369 7370 7371 7372 7373 7374 7375 7376 7377 7378 7379 7380 7381 7382
# 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-10-07 13:57+0200\n"
"PO-Revision-Date: 2004-09-15 13:33+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:910 diskdrake/interactive.pm:594
#: diskdrake/interactive.pm:794 diskdrake/interactive.pm:838
#: diskdrake/interactive.pm:942 diskdrake/interactive.pm:1196
#: diskdrake/interactive.pm:1248 do_pkgs.pm:241 do_pkgs.pm:287
#: harddrake/sound.pm:303 interactive.pm:587 pkgs.pm:281
#, c-format
msgid "Please wait"
msgstr "Само моменат..."

#: any.pm:252
#, fuzzy, c-format
msgid "Bootloader installation in progress"
msgstr "Инсталација стартера"

#: 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 "Инсталација стартера неуспела. Грешка је:"

#: 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 ""
"Мораћете да промените Open Firmware boot-уређај да \n"
" би могли да користите стартер.  Уколико не видите промпт\n"
" при рестарту држите Command-Option-O-F при стартању и унесите:\n"
" setenv boot-device %s,\\\\:tbxi\n"
" Онда укуцајте: shut-down\n"
"Када следећи пут стартујете машину требали би да видите статеров промпт."

#: 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 ""
"Ви сте одлучили да инсталирате стартер на партицију.\n"
"Ово указујен ато да већ имате инсталиран стартер на хард диску који "
"бутујете.\n"
"\n"
"На који драјв се бутујете?"

#: any.pm:346
#, fuzzy, c-format
msgid "First sector (MBR) of drive %s"
msgstr "Први сектор диска (MBR)"

#: any.pm:348
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Први сектор диска (MBR)"

#: any.pm:350
#, c-format
msgid "First sector of the root partition"
msgstr "Први сектор root партиције"

#: any.pm:352
#, c-format
msgid "On Floppy"
msgstr "На дискету"

#: any.pm:354 pkgs.pm:277 ugtk2.pm:526
#, c-format
msgid "Skip"
msgstr "Прескочи"

#: any.pm:358
#, fuzzy, c-format
msgid "Bootloader Installation"
msgstr "Инсталација стартера"

#: any.pm:362
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Где бисте да инсталирате стартер?"

#: any.pm:389
#, c-format
msgid "Boot Style Configuration"
msgstr "Конфигурација стила стартања"

#: any.pm:399 any.pm:429 any.pm:430
#, c-format
msgid "Bootloader main options"
msgstr "Главне опције стартера"

#: any.pm:403
#, c-format
msgid "Bootloader"
msgstr "Стартер"

#: any.pm:404 any.pm:433
#, c-format
msgid "Bootloader to use"
msgstr "Стартер који ће се користити"

#: any.pm:406 any.pm:435
#, c-format
msgid "Boot device"
msgstr "Стартни (boot) уређај"

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

#: any.pm:409
#, c-format
msgid "Delay before booting default image"
msgstr "Пауза пре стартања default image-а"

#: any.pm:410
#, c-format
msgid "Enable ACPI"
msgstr "Омогући ACPI"

#: any.pm:411
#, fuzzy, c-format
msgid "Enable SMP"
msgstr "Омогући ACPI"

#: any.pm:412
#, fuzzy, c-format
msgid "Enable APIC"
msgstr "Омогући ACPI"

#: any.pm:413
#, fuzzy, c-format
msgid "Enable Local APIC"
msgstr "Омогући ACPI"

#: any.pm:415 any.pm:855 any.pm:871 authentication.pm:250
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Лозинка"

#: any.pm:417 authentication.pm:261
#, c-format
msgid "The passwords do not match"
msgstr "Неподударност лозинки"

#: any.pm:417 authentication.pm:261 diskdrake/interactive.pm:1420
#, c-format
msgid "Please try again"
msgstr "Пробајте поново"

#: any.pm:418
#, fuzzy, c-format
msgid "You can not use a password with %s"
msgstr "Не можете користити енкриптовани фајл систем за тачку монтирања %s"

#: any.pm:421 any.pm:857 any.pm:873 authentication.pm:251
#, c-format
msgid "Password (again)"
msgstr "Лозинка (поновите)"

#: any.pm:422
#, c-format
msgid "Restrict command line options"
msgstr "Ограничена командна линика - опције"

#: any.pm:422
#, c-format
msgid "restrict"
msgstr "ограничено"

#: any.pm:423
#, c-format
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"Опција``Ограничена командна линика - опције'' је неупотребљива без лозинке"

#: any.pm:425
#, c-format
msgid "Clean /tmp at each boot"
msgstr "Очисти /tmp при сваком стартању"

#: any.pm:434
#, c-format
msgid "Init Message"
msgstr "Иницијална порука"

#: any.pm:436
#, c-format
msgid "Open Firmware Delay"
msgstr "Отпочни Firmware паузу"

#: any.pm:437
#, c-format
msgid "Kernel Boot Timeout"
msgstr "Пауза при стартању кернела"

#: any.pm:438
#, c-format
msgid "Enable CD Boot?"
msgstr "Омогући стартање са CD-а?"

#: any.pm:439
#, c-format
msgid "Enable OF Boot?"
msgstr "Омогући OF стартање?"

#: any.pm:440
#, c-format
msgid "Default OS?"
msgstr "Подразумевани ОС ?"

#: any.pm:513
#, c-format
msgid "Image"
msgstr "Слика"

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

#: any.pm:515 any.pm:540
#, c-format
msgid "Append"
msgstr "Додатак"

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

#: any.pm:520
#, c-format
msgid "Video mode"
msgstr "Видео мод"

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

#: any.pm:523
#, fuzzy, c-format
msgid "Network profile"
msgstr "Грешка на мрежи"

#: any.pm:532 any.pm:537 any.pm:539 diskdrake/interactive.pm:404
#, c-format
msgid "Label"
msgstr "Ознака"

#: any.pm:534 any.pm:542 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Подразумевано"

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

#: any.pm:552
#, c-format
msgid "Empty label not allowed"
msgstr "Празна ознака није дозвољена"

#: any.pm:553
#, c-format
msgid "You must specify a kernel image"
msgstr "Морате специфицирати кернелов image"

#: any.pm:553
#, c-format
msgid "You must specify a root partition"
msgstr "Морате одредити root партицију"

#: any.pm:554
#, c-format
msgid "This label is already used"
msgstr "Ова ознака је већ у употреби"

#: any.pm:572
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Коју врсту уноса додајете ?"

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

#: any.pm:573
#, c-format
msgid "Other OS (SunOS...)"
msgstr "Други ОС-ови (SunOS,BSD,...)"

#: any.pm:574
#, c-format
msgid "Other OS (MacOS...)"
msgstr "Други ОС-ови (MacOS,BSD,...)"

#: any.pm:574
#, c-format
msgid "Other OS (Windows...)"
msgstr "Други ОС-ови (Windows,BSD,BeOS,...)"

#: any.pm:621
#, fuzzy, c-format
msgid "Bootloader Configuration"
msgstr "Конфигурација стила стартања"

#: any.pm:622
#, 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 ""
"Ово су постављне опције.\n"
"Можете додати нове или изменити старе."

#: any.pm:816
#, c-format
msgid "access to X programs"
msgstr "приступ X програмима"

#: any.pm:817
#, c-format
msgid "access to rpm tools"
msgstr "приступ rpm алатима"

#: any.pm:818
#, c-format
msgid "allow \"su\""
msgstr "дозволи \"su\""

#: any.pm:819
#, c-format
msgid "access to administrative files"
msgstr "приступ административним фајловима"

#: any.pm:820
#, c-format
msgid "access to network tools"
msgstr "приступ мрежним алатима"

#: any.pm:821
#, c-format
msgid "access to compilation tools"
msgstr "приступ алатима за компајлирање"

#: any.pm:827
#, c-format
msgid "(already added %s)"
msgstr "(%s већ постоји)"

#: any.pm:833
#, c-format
msgid "Please give a user name"
msgstr "Одредите корисничко име"

#: any.pm:834
#, fuzzy, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
"cased letters, numbers, `-' and `_'"
msgstr "Корисничко име може садржати само мала слова, бројеве, `-' и `_'"

#: any.pm:835
#, c-format
msgid "The user name is too long"
msgstr "Корисничко име већ је предугачко"

#: any.pm:836
#, c-format
msgid "This user name has already been added"
msgstr "Ово корисничко име већ постоји"

#: any.pm:842 any.pm:875
#, c-format
msgid "User ID"
msgstr "Корисников ID"

#: any.pm:842 any.pm:876
#, c-format
msgid "Group ID"
msgstr "Групни ID"

#: any.pm:843
#, fuzzy, c-format
msgid "%s must be a number"
msgstr "Опција %s мора бити број!"

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

#: any.pm:848
#, fuzzy, c-format
msgid "User management"
msgstr "Корисничко име"

#: any.pm:854 authentication.pm:237
#, fuzzy, c-format
msgid "Set administrator (root) password"
msgstr "Унеси root лозинку"

#: any.pm:859
#, fuzzy, c-format
msgid "Enter a user"
msgstr ""
"Унеси корисника\n"
"%s"

#: any.pm:861
#, c-format
msgid "Icon"
msgstr "Икона"

#: any.pm:864
#, c-format
msgid "Real name"
msgstr "Право име"

#: any.pm:869
#, c-format
msgid "Login name"
msgstr "Име за пријављивање"

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

#: any.pm:910
#, c-format
msgid "Please wait, adding media..."
msgstr "Молим Вас сачекајте, убацујем медијум..."

#: any.pm:940 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Ауто логовање"

#: any.pm:941
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr "Ја могу подести ваш рачунар да аутоматски улогује једног корисника."

#: any.pm:942
#, fuzzy, c-format
msgid "Use this feature"
msgstr "Да ли желите да користите ову опцију ?"

#: any.pm:943
#, c-format
msgid "Choose the default user:"
msgstr "Изаберите default (основног) корисника:"

#: any.pm:944
#, c-format
msgid "Choose the window manager to run:"
msgstr "Изаберите менаџер прозора који желите да користите:"

#: any.pm:955 any.pm:975 any.pm:1048
#, fuzzy, c-format
msgid "Release Notes"
msgstr "Верзија: "

#: any.pm:982 any.pm:1340 interactive/gtk.pm:819
#, c-format
msgid "Close"
msgstr "Затвори"

#: any.pm:1034
#, c-format
msgid "License agreement"
msgstr "ЛИценцирани уговор"

#: any.pm:1036 diskdrake/dav.pm:26
#, c-format
msgid "Quit"
msgstr "Крај"

#: any.pm:1043
#, fuzzy, c-format
msgid "Do you accept this license ?"
msgstr "Да ли имате још један?"

#: any.pm:1044
#, c-format
msgid "Accept"
msgstr "Прихвати"

#: any.pm:1044
#, c-format
msgid "Refuse"
msgstr "Одбаци"

#: any.pm:1070 any.pm:1136
#, c-format
msgid "Please choose a language to use"
msgstr "Изаберите који језик желите да кориситите"

#: any.pm:1099
#, 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 "Можете изабрати други језик који ће бити доступан после инсталације "

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

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

#: any.pm:1115
#, c-format
msgid "All languages"
msgstr "Сви језици"

#: any.pm:1137
#, fuzzy, c-format
msgid "Language choice"
msgstr "упуство"

#: any.pm:1191
#, c-format
msgid "Country / Region"
msgstr "Земља"

#: any.pm:1192
#, c-format
msgid "Please choose your country"
msgstr "Изаберите своју земљу"

#: any.pm:1194
#, c-format
msgid "Here is the full list of available countries"
msgstr "Овде је представљена цела листа доступних земаља"

#: any.pm:1195
#, fuzzy, c-format
msgid "Other Countries"
msgstr "Остали портови"

#: any.pm:1195 interactive.pm:488 interactive/gtk.pm:445
#, c-format
msgid "Advanced"
msgstr "Напредно"

#: any.pm:1201
#, fuzzy, c-format
msgid "Input method:"
msgstr "Мрежни метод:"

#: any.pm:1204
#, c-format
msgid "None"
msgstr "Неиједан"

#: any.pm:1285
#, c-format
msgid "No sharing"
msgstr "Нема заједничког дељења"

#: any.pm:1285
#, c-format
msgid "Allow all users"
msgstr "Дозволи све кориснике"

#: any.pm:1285
#, c-format
msgid "Custom"
msgstr "Избор по жељи"

#: any.pm:1289
#, 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 ""
"Да ли би желели да дозволите корисницима заједнички деле неке од својих "
"директоријума?\n"
"Да би ово могли да омогућите једноставно кликните на \"Share\" у konqueror-у "
"или nautilus-у.\n"
"\n"
"\"Custom\" дозвољава детаљнија per-user подешавања.\n"

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

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

#: any.pm:1312
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr "Можете експортовати користећи NFS или SMB-у. Који од ова два желите"

#: any.pm:1340
#, c-format
msgid "Launch userdrake"
msgstr "Покрени userdrake"

#: any.pm:1342
#, 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 дељење ресурса користи групу \"fileshare\". \n"
"Ви помоћу userdrake-а можете додати корисника у ову групу."

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

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

#: any.pm:1487
#, c-format
msgid "Timezone"
msgstr "Временска зона"

#: any.pm:1487
#, c-format
msgid "Which is your timezone?"
msgstr "Која је ваша временска зона ?"

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

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

#: any.pm:1517
#, fuzzy, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "Ваш системски (BIOS) часовник је подешен на GMT"

#: any.pm:1518
#, fuzzy, c-format
msgid "%s (hardware clock set to local time)"
msgstr "Ваш системски (BIOS) часовник је подешен на GMT"

#: any.pm:1520
#, c-format
msgid "NTP Server"
msgstr "NTP Сервер"

#: any.pm:1521
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Аутоматска синхронизација времена (преко NTP-а)"

#: authentication.pm:24
#, c-format
msgid "Local file"
msgstr "Локална датотека"

#: 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 "Мрежна картица"

#: authentication.pm:28 authentication.pm:216
#, c-format
msgid "Windows Domain"
msgstr "Windows Домен"

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

#: authentication.pm:63
#, c-format
msgid "Local file:"
msgstr "Локални фајл :"

#: 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 Домен:"

#: 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:107 authentication.pm:141 authentication.pm:160
#: authentication.pm:161 authentication.pm:187 authentication.pm:211
#: authentication.pm:896
#, c-format
msgid " "
msgstr ""

#: authentication.pm:108 authentication.pm:142 authentication.pm:188
#: authentication.pm:212
#, fuzzy, c-format
msgid "Welcome to the Authentication Wizard"
msgstr "Потребна Аутентификација Домена"

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

#: authentication.pm:112 authentication.pm:167
#, c-format
msgid "LDAP Server"
msgstr "LDAP Сервер"

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

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

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

#: authentication.pm:117 authentication.pm:172
#, c-format
msgid "Download CA Certificate "
msgstr ""

#: authentication.pm:119 authentication.pm:152
#, c-format
msgid "Use Disconnect mode "
msgstr ""

#: authentication.pm:120 authentication.pm:173
#, c-format
msgid "Use anonymous BIND "
msgstr ""

#: authentication.pm:121 authentication.pm:124 authentication.pm:126
#: authentication.pm:130
#, c-format
msgid "  "
msgstr ""

#: authentication.pm:122 authentication.pm:174
#, c-format
msgid "Bind DN "
msgstr ""

#: authentication.pm:123 authentication.pm:175
#, fuzzy, c-format
msgid "Bind Password "
msgstr "Лозинка"

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

#: authentication.pm:127
#, fuzzy, c-format
msgid "Password base"
msgstr "Лозинка"

#: authentication.pm:128
#, fuzzy, c-format
msgid "Group base"
msgstr "Групни ID"

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

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

#: authentication.pm:146
#, fuzzy, c-format
msgid "Realm "
msgstr "Право име"

#: authentication.pm:148
#, fuzzy, c-format
msgid "KDCs Servers"
msgstr "LDAP Сервер"

#: authentication.pm:150
#, c-format
msgid "Use DNS to locate KDC for the realm"
msgstr ""

#: authentication.pm:151
#, c-format
msgid "Use DNS to locate realms"
msgstr ""

#: authentication.pm:156
#, fuzzy, c-format
msgid "Use local file for users information"
msgstr "Користи libsafe за сервере"

#: authentication.pm:157
#, fuzzy, c-format
msgid "Use Ldap for users information"
msgstr "Информације о хард диску"

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

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

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

#: authentication.pm:192
#, c-format
msgid "NIS Domain"
msgstr "NIS Домен"

#: authentication.pm:193
#, c-format
msgid "NIS Server"
msgstr "NIS Сервер"

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

#: authentication.pm:218
#, fuzzy, c-format
msgid "Domain Model "
msgstr "Домен"

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

#: authentication.pm:221
#, fuzzy, c-format
msgid "DNS Domain"
msgstr "NIS Домен"

#: authentication.pm:222
#, fuzzy, c-format
msgid "DC Server"
msgstr "LDAP Сервер"

#: authentication.pm:236 authentication.pm:252
#, c-format
msgid "Authentication"
msgstr "Аутентификација"

#: authentication.pm:238
#, fuzzy, c-format
msgid "Authentication method"
msgstr "Аутентификација"

#. -PO: keep this short or else the buttons will not fit in the window
#: authentication.pm:243
#, c-format
msgid "No password"
msgstr "Без лозинке"

#: authentication.pm:264
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr "Ова лозинка је сувише једноставна (треба да има бар %d знакова)"

#: authentication.pm:375
#, c-format
msgid "Can not use broadcast with no NIS domain"
msgstr "Није могућ пренос без NIS домена"

#: authentication.pm:891
#, c-format
msgid "Select file"
msgstr "Изаберите датотеку"

#: authentication.pm:897
#, fuzzy, c-format
msgid "Domain Windows for authentication : "
msgstr "Потребна Аутентификација Домена"

#: authentication.pm:899
#, c-format
msgid "Domain Admin User Name"
msgstr "Admin Корисничко име Домена"

#: authentication.pm:900
#, c-format
msgid "Domain Admin Password"
msgstr "Admin Лозинка домена"

# 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:960
#, 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:1132
#, c-format
msgid "LILO with text menu"
msgstr "LILO са текстуалним менијем"

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

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

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

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

#: bootloader.pm:1218
#, c-format
msgid "not enough room in /boot"
msgstr "нема довољно места у /boot"

#: bootloader.pm:1874
#, c-format
msgid "You can not install the bootloader on a %s partition\n"
msgstr "Не можете да инсталирате стартер на партицију %s\n"

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

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

#: bootloader.pm:2009
#, fuzzy, c-format
msgid "Re-install Boot Loader"
msgstr "Инсталирај стартер"

#: 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 минута"

#: common.pm:161
#, c-format
msgid "1 minute"
msgstr "1 минут"

#: common.pm:163
#, c-format
msgid "%d seconds"
msgstr "%d секунди"

#: 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 је протокол који вам омогућава да монтирате директоријум веб сервера\n"
"локално, и да га третирате као локални фајл систем (доступни веб сервер је\n"
"подешен као WebDAV сервер). Уколико желите да додате нову WebDAV тачку\n"
"монтирања, изаберите \"Нови\"."

#: diskdrake/dav.pm:25
#, c-format
msgid "New"
msgstr "Нови"

#: diskdrake/dav.pm:63 diskdrake/interactive.pm:411 diskdrake/smbnfs_gtk.pm:75
#, c-format
msgid "Unmount"
msgstr "Демонтирај"

#: diskdrake/dav.pm:64 diskdrake/interactive.pm:407 diskdrake/smbnfs_gtk.pm:76
#, c-format
msgid "Mount"
msgstr "Монтирај"

#: diskdrake/dav.pm:65
#, c-format
msgid "Server"
msgstr "Сервер"

#: diskdrake/dav.pm:66 diskdrake/interactive.pm:401
#: diskdrake/interactive.pm:666 diskdrake/interactive.pm:684
#: diskdrake/interactive.pm:688 diskdrake/removable.pm:23
#: diskdrake/smbnfs_gtk.pm:79
#, c-format
msgid "Mount point"
msgstr "Тачка монтирања"

#: diskdrake/dav.pm:67 diskdrake/interactive.pm:403
#: diskdrake/interactive.pm:1090 diskdrake/removable.pm:24
#: diskdrake/smbnfs_gtk.pm:80
#, c-format
msgid "Options"
msgstr "Опције"

#: diskdrake/dav.pm:68 interactive.pm:387 interactive/gtk.pm:453
#, c-format
msgid "Remove"
msgstr "Уклони"

#: diskdrake/dav.pm:69 diskdrake/hd_gtk.pm:187 diskdrake/removable.pm:26
#: diskdrake/smbnfs_gtk.pm:82 interactive/http.pm:151
#, c-format
msgid "Done"
msgstr "Урађено"

#: diskdrake/dav.pm:78 diskdrake/hd_gtk.pm:128 diskdrake/hd_gtk.pm:294
#: diskdrake/interactive.pm:247 diskdrake/interactive.pm:260
#: diskdrake/interactive.pm:450 diskdrake/interactive.pm:520
#: diskdrake/interactive.pm:525 diskdrake/interactive.pm:656
#: diskdrake/interactive.pm:909 diskdrake/interactive.pm:960
#: diskdrake/interactive.pm:1136 diskdrake/interactive.pm:1149
#: diskdrake/interactive.pm:1152 diskdrake/interactive.pm:1420
#: 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 "Грешка"

#: diskdrake/dav.pm:86
#, c-format
msgid "Please enter the WebDAV server URL"
msgstr "Унесите URL WebDAV сервера"

#: diskdrake/dav.pm:90
#, c-format
msgid "The URL must begin with http:// or https://"
msgstr "URL мора почињати са http:// или https://"

#: diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:412 diskdrake/interactive.pm:303
#: diskdrake/interactive.pm:388 diskdrake/interactive.pm:550
#: diskdrake/interactive.pm:747 diskdrake/interactive.pm:805
#: diskdrake/interactive.pm:940 diskdrake/interactive.pm:982
#: diskdrake/interactive.pm:983 diskdrake/interactive.pm:1233
#: diskdrake/interactive.pm:1271 diskdrake/interactive.pm:1419 do_pkgs.pm:19
#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:77 harddrake/sound.pm:442
#, c-format
msgid "Warning"
msgstr "Упозорење"

#: diskdrake/dav.pm:106
#, fuzzy, c-format
msgid "Are you sure you want to delete this mountpoint?"
msgstr "Да ли желите да кликнете на овај тастер? "

#: diskdrake/dav.pm:124
#, c-format
msgid "Server: "
msgstr "Сервер:"

#: diskdrake/dav.pm:125 diskdrake/interactive.pm:493
#: diskdrake/interactive.pm:1295 diskdrake/interactive.pm:1380
#, c-format
msgid "Mount point: "
msgstr "Тачка монтирања: "

#: diskdrake/dav.pm:126 diskdrake/interactive.pm:1387
#, c-format
msgid "Options: %s"
msgstr "Опције: %s"

#: diskdrake/hd_gtk.pm:61 diskdrake/interactive.pm:298
#: diskdrake/smbnfs_gtk.pm:22 fs/mount_point.pm:106
#: fs/partitioning_wizard.pm:52 fs/partitioning_wizard.pm:222
#: fs/partitioning_wizard.pm:230 fs/partitioning_wizard.pm:269
#: fs/partitioning_wizard.pm:388 fs/partitioning_wizard.pm:445
#: fs/partitioning_wizard.pm:518 fs/partitioning_wizard.pm:521
#, c-format
msgid "Partitioning"
msgstr "Партиционисање"

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

#: diskdrake/hd_gtk.pm:110 diskdrake/interactive.pm:1111
#: diskdrake/interactive.pm:1121 diskdrake/interactive.pm:1174
#, c-format
msgid "Read carefully"
msgstr "ПАЖЉИВО ПРОЧИТАЈ"

#: diskdrake/hd_gtk.pm:110
#, c-format
msgid "Please make a backup of your data first"
msgstr "Молим вас, прво направите копију ваших података"

#: diskdrake/hd_gtk.pm:111 diskdrake/interactive.pm:240
#, c-format
msgid "Exit"
msgstr "Излаз"

#: diskdrake/hd_gtk.pm:111
#, c-format
msgid "Continue"
msgstr "Настави"

#: diskdrake/hd_gtk.pm:182 fs/partitioning_wizard.pm:493 interactive.pm:653
#: interactive/gtk.pm:811 interactive/gtk.pm:829 interactive/gtk.pm:850
#: ugtk2.pm:936
#, c-format
msgid "Help"
msgstr "Помоћ"

#: diskdrake/hd_gtk.pm:228
#, 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 ""
"Ви имате једну велику Microsoft Windows партицију.\n"
"Предлажем да прво измените величну (resize) те партиције (кликните на њу,\n"
"а потом на \"Промени величину\")"

#: diskdrake/hd_gtk.pm:230
#, c-format
msgid "Please click on a partition"
msgstr "Кликните на партицију"

#: diskdrake/hd_gtk.pm:244 diskdrake/smbnfs_gtk.pm:63
#, c-format
msgid "Details"
msgstr "Детаљи"

#: diskdrake/hd_gtk.pm:294
#, c-format
msgid "No hard drives found"
msgstr "Није пронађен хард диск"

#: diskdrake/hd_gtk.pm:321
#, c-format
msgid "Unknown"
msgstr "Непознато"

#: diskdrake/hd_gtk.pm:383
#, fuzzy, c-format
msgid "Ext3"
msgstr "Излаз"

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

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

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

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

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

#: diskdrake/hd_gtk.pm:384 services.pm:158
#, c-format
msgid "Other"
msgstr "Друго"

#: diskdrake/hd_gtk.pm:384 diskdrake/interactive.pm:1310
#, c-format
msgid "Empty"
msgstr "Празно"

#: diskdrake/hd_gtk.pm:391
#, c-format
msgid "Filesystem types:"
msgstr "Врста фајл система:"

#: diskdrake/hd_gtk.pm:412
#, fuzzy, c-format
msgid "This partition is already empty"
msgstr "Овој партицици није могуће променити величину"

#: diskdrake/hd_gtk.pm:421
#, c-format
msgid "Use ``Unmount'' first"
msgstr "Прво урадите ``Демонтирај''"

#: diskdrake/hd_gtk.pm:421
#, fuzzy, c-format
msgid "Use ``%s'' instead (in expert mode)"
msgstr "Уместо тога пробајте ``%s''"

#: diskdrake/hd_gtk.pm:421 diskdrake/interactive.pm:402
#: diskdrake/interactive.pm:588 diskdrake/removable.pm:25
#: diskdrake/removable.pm:48
#, c-format
msgid "Type"
msgstr "Тип"

#: diskdrake/interactive.pm:211
#, c-format
msgid "Choose another partition"
msgstr "Изаберите другу партицију"

#: diskdrake/interactive.pm:211
#, c-format
msgid "Choose a partition"
msgstr "Изаберите партицију"

#: diskdrake/interactive.pm:273 diskdrake/interactive.pm:379
#: interactive/curses.pm:512
#, c-format
msgid "More"
msgstr "Још"

#: diskdrake/interactive.pm:281 diskdrake/interactive.pm:291
#: diskdrake/interactive.pm:1218
#, c-format
msgid "Confirmation"
msgstr "Потврђивање"

#: diskdrake/interactive.pm:281
#, c-format
msgid "Continue anyway?"
msgstr "Свеједно наставити ?"

#: diskdrake/interactive.pm:286
#, c-format
msgid "Quit without saving"
msgstr "Крај без снимања промена"

#: diskdrake/interactive.pm:286
#, c-format
msgid "Quit without writing the partition table?"
msgstr "Крај без снимања промена у табеле партиција?"

#: diskdrake/interactive.pm:291
#, c-format
msgid "Do you want to save /etc/fstab modifications"
msgstr "Да ли хоћете да сачувате измене у /etc/fstab?"

#: diskdrake/interactive.pm:298 fs/partitioning_wizard.pm:269
#, c-format
msgid "You need to reboot for the partition table modifications to take place"
msgstr "Треба да ресетујете машину за примену измена у табели партиција"

#: 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 "Очисти све"

#: diskdrake/interactive.pm:317
#, c-format
msgid "Auto allocate"
msgstr "Ауто дислоцирање"

#: diskdrake/interactive.pm:323
#, c-format
msgid "Toggle to normal mode"
msgstr "Пређи на нормални мод"

#: diskdrake/interactive.pm:323
#, c-format
msgid "Toggle to expert mode"
msgstr "Пређи на експерт мод"

#: diskdrake/interactive.pm:335
#, c-format
msgid "Hard drive information"
msgstr "Информације о хард диску"

#: diskdrake/interactive.pm:368
#, c-format
msgid "All primary partitions are used"
msgstr "Све примарне партиције су заузете"

#: diskdrake/interactive.pm:369
#, c-format
msgid "I can not add any more partitions"
msgstr "Не могу додати више ни једну партицију"

#: diskdrake/interactive.pm:370
#, c-format
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
msgstr ""
"Да би омогућили креирање још (extended) партиција избришите једну од "
"постојећих"

#: diskdrake/interactive.pm:381
#, c-format
msgid "Reload partition table"
msgstr "Поново учитај табелу партиција"

#: diskdrake/interactive.pm:388
#, c-format
msgid "Detailed information"
msgstr "Детаљне информације"

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

#: diskdrake/interactive.pm:405 diskdrake/interactive.pm:760
#, c-format
msgid "Resize"
msgstr "Промени величину"

#: diskdrake/interactive.pm:406
#, c-format
msgid "Format"
msgstr "Форматирање"

#: diskdrake/interactive.pm:408 diskdrake/interactive.pm:870
#, c-format
msgid "Add to RAID"
msgstr "Додај на RAID"

#: diskdrake/interactive.pm:409 diskdrake/interactive.pm:891
#, c-format
msgid "Add to LVM"
msgstr "Додај на LVM"

#: diskdrake/interactive.pm:410
#, fuzzy, c-format
msgid "Use"
msgstr "Корисников ID"

#: diskdrake/interactive.pm:412
#, c-format
msgid "Delete"
msgstr "Обриши"

#: diskdrake/interactive.pm:413
#, c-format
msgid "Remove from RAID"
msgstr "Уклони са RAID-а"

#: diskdrake/interactive.pm:414
#, c-format
msgid "Remove from LVM"
msgstr "Уклони са LVM-а"

#: diskdrake/interactive.pm:415
#, fuzzy, c-format
msgid "Remove from dm"
msgstr "Уклони са LVM-а"

#: diskdrake/interactive.pm:416
#, c-format
msgid "Modify RAID"
msgstr "Промени RAID"

#: diskdrake/interactive.pm:417
#, c-format
msgid "Use for loopback"
msgstr "Користи за loopback"

#: diskdrake/interactive.pm:428
#, c-format
msgid "Create"
msgstr "Креирај"

#: diskdrake/interactive.pm:450
#, fuzzy, c-format
msgid "Failed to mount partition"
msgstr "Премести фајлове на нову партицију"

#: diskdrake/interactive.pm:482 diskdrake/interactive.pm:484
#, c-format
msgid "Create a new partition"
msgstr "Креирај нову партицију"

#: diskdrake/interactive.pm:486
#, c-format
msgid "Start sector: "
msgstr "Почетни сектор: "

#: diskdrake/interactive.pm:489 diskdrake/interactive.pm:975
#, c-format
msgid "Size in MB: "
msgstr "Величина у MB:"

#: diskdrake/interactive.pm:491 diskdrake/interactive.pm:976
#, c-format
msgid "Filesystem type: "
msgstr "Врста татотечног система:"

#: diskdrake/interactive.pm:497
#, c-format
msgid "Preference: "
msgstr "Карактеристике: "

#: diskdrake/interactive.pm:500
#, fuzzy, c-format
msgid "Logical volume name "
msgstr "Локална мера"

#: diskdrake/interactive.pm:520
#, 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 ""
"Ви не можете да креирате нову партицију\n"
"(пошто сте досегли максималан број примарних партиција).\n"
"Прво уклоните примарну партицију а затим креирајте extended партицију."

#: diskdrake/interactive.pm:550
#, c-format
msgid "Remove the loopback file?"
msgstr "Уклони loopback фајл ?"

#: diskdrake/interactive.pm:572
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
"После промене типа партиције %s, сви подаци на овој партицији ће бити "
"избрисани"

#: diskdrake/interactive.pm:585
#, c-format
msgid "Change partition type"
msgstr "Промена типа партиције"

#: diskdrake/interactive.pm:587 diskdrake/removable.pm:47
#, c-format
msgid "Which filesystem do you want?"
msgstr "Коју  датотечни систем желите ?"

#: diskdrake/interactive.pm:594
#, fuzzy, c-format
msgid "Switching from %s to %s"
msgstr "Мењам ext2 на ext3"

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

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

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

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

#: diskdrake/interactive.pm:630
#, fuzzy, c-format
msgid "Label:"
msgstr "Ознака"

#: diskdrake/interactive.pm:651
#, c-format
msgid "Where do you want to mount the loopback file %s?"
msgstr "Где бисте да монтирате loopback фајл %s?"

#: diskdrake/interactive.pm:652
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Где бисте да монтирате %s уређај ?"

#: diskdrake/interactive.pm:657
#, c-format
msgid ""
"Can not unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
msgstr ""
"Демонтирање није могуће,јер се партиција корисити за loop back.\n"
"Прво уклоните loopback"

#: diskdrake/interactive.pm:687
#, c-format
msgid "Where do you want to mount %s?"
msgstr "Где бисте да монтирате %s уређај ?"

#: diskdrake/interactive.pm:711 diskdrake/interactive.pm:794
#: fs/partitioning_wizard.pm:129 fs/partitioning_wizard.pm:191
#, c-format
msgid "Resizing"
msgstr "Промена величине (resizing)"

#: diskdrake/interactive.pm:711
#, c-format
msgid "Computing FAT filesystem bounds"
msgstr "Прорачунавам границе FAT датотечног система"

#: diskdrake/interactive.pm:747
#, c-format
msgid "This partition is not resizeable"
msgstr "Овој партицици није могуће променити величину"

#: diskdrake/interactive.pm:752
#, c-format
msgid "All data on this partition should be backed-up"
msgstr "Сви подаци на овој партицији би требали бити сачувани"

#: diskdrake/interactive.pm:754
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "После промене величине %s партиције сви подаци ће бити избрисани"

#: diskdrake/interactive.pm:761
#, c-format
msgid "Choose the new size"
msgstr "Изаберите нову величину"

#: diskdrake/interactive.pm:762
#, c-format
msgid "New size in MB: "
msgstr "Нова величина у MB:"

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

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

#: diskdrake/interactive.pm:805
#, 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 ""
"Да би осигурали интегритет након промене величине партиције(а), \n"
"провера фајл система ће бити покренута када се следећи пут улогујете у "
"Windows(TM)"

#: diskdrake/interactive.pm:853 diskdrake/interactive.pm:1415
#, c-format
msgid "Filesystem encryption key"
msgstr "Кључ за енкрипцију фајл система"

#: diskdrake/interactive.pm:854
#, fuzzy, c-format
msgid "Enter your filesystem encryption key"
msgstr "Изаберите кључ за енкрипцију фајл система"

#: diskdrake/interactive.pm:855 diskdrake/interactive.pm:1423
#, c-format
msgid "Encryption key"
msgstr "Кључ за енкрипцију"

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

#: diskdrake/interactive.pm:870
#, c-format
msgid "Choose an existing RAID to add to"
msgstr "Изабери постојећи RAID за додавање"

#: diskdrake/interactive.pm:872 diskdrake/interactive.pm:893
#, c-format
msgid "new"
msgstr "нови"

#: diskdrake/interactive.pm:891
#, c-format
msgid "Choose an existing LVM to add to"
msgstr "Изабери постојећи LVM за додавање"

#: diskdrake/interactive.pm:903 diskdrake/interactive.pm:912
#, fuzzy, c-format
msgid "LVM name"
msgstr "LVM име?"

#: diskdrake/interactive.pm:904
#, c-format
msgid "Enter a name for the new LVM volume group"
msgstr ""

#: diskdrake/interactive.pm:909
#, fuzzy, c-format
msgid "\"%s\" already exists"
msgstr "Датотека већ постоји.Да ли да га користим ?"

#: diskdrake/interactive.pm:940
#, 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:942
#, c-format
msgid "Moving physical extents"
msgstr ""

#: diskdrake/interactive.pm:960
#, c-format
msgid "This partition can not be used for loopback"
msgstr "Ова партиција не може бити коришћена за loopback "

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

#: diskdrake/interactive.pm:974
#, c-format
msgid "Loopback file name: "
msgstr "Име Loopback датотеке: "

#: diskdrake/interactive.pm:979
#, c-format
msgid "Give a file name"
msgstr "Одредите име фајла"

#: diskdrake/interactive.pm:982
#, c-format
msgid "File is already used by another loopback, choose another one"
msgstr "Фајл се већ користи од стране другог loopback-а,изаберите други"

#: diskdrake/interactive.pm:983
#, c-format
msgid "File already exists. Use it?"
msgstr "Датотека већ постоји.Да ли да га користим ?"

#: diskdrake/interactive.pm:1015 diskdrake/interactive.pm:1018
#, c-format
msgid "Mount options"
msgstr "Опције монтирања"

#: diskdrake/interactive.pm:1025
#, c-format
msgid "Various"
msgstr "Разно"

#: diskdrake/interactive.pm:1092
#, c-format
msgid "device"
msgstr "уређај"

#: diskdrake/interactive.pm:1093
#, c-format
msgid "level"
msgstr "ниво"

#: diskdrake/interactive.pm:1094
#, fuzzy, c-format
msgid "chunk size in KiB"
msgstr "chunk величина"

#: diskdrake/interactive.pm:1112
#, c-format
msgid "Be careful: this operation is dangerous."
msgstr "ПАЖЉИВО,ова операција је опасна."

#: diskdrake/interactive.pm:1127
#, fuzzy, c-format
msgid "Partitioning Type"
msgstr "Партиционисање"

#: diskdrake/interactive.pm:1127
#, c-format
msgid "What type of partitioning?"
msgstr "Коју врсту партиционирања?"

#: diskdrake/interactive.pm:1165
#, c-format
msgid "You'll need to reboot before the modification can take place"
msgstr "Морате рестартовати рачунар да би се измене извршиле"

#: diskdrake/interactive.pm:1174
#, c-format
msgid "Partition table of drive %s is going to be written to disk"
msgstr "Табела партиција за уређај %s ће бити записана на диск"

#: diskdrake/interactive.pm:1196 fs/format.pm:96 fs/format.pm:103
#, c-format
msgid "Formatting partition %s"
msgstr "Форматирање партиције %s"

#: diskdrake/interactive.pm:1209
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"После форматирања партиције %s,сви подаци на овој партицији ће бити избрисани"

#: diskdrake/interactive.pm:1218 fs/partitioning.pm:48
#, c-format
msgid "Check bad blocks?"
msgstr "Провери лоше блокове ?"

#: diskdrake/interactive.pm:1232
#, c-format
msgid "Move files to the new partition"
msgstr "Премести фајлове на нову партицију"

#: diskdrake/interactive.pm:1232
#, c-format
msgid "Hide files"
msgstr "Сакриј фајлове"

#: diskdrake/interactive.pm:1233
#, 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:1248
#, c-format
msgid "Moving files to the new partition"
msgstr "Премештање фајлова на нову партицију"

#: diskdrake/interactive.pm:1252
#, c-format
msgid "Copying %s"
msgstr "Копирање %s"

#: diskdrake/interactive.pm:1256
#, c-format
msgid "Removing %s"
msgstr "Уклањање: %s"

#: diskdrake/interactive.pm:1270
#, c-format
msgid "partition %s is now known as %s"
msgstr "партиција %s је сада позната као %s"

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

#: diskdrake/interactive.pm:1296 diskdrake/interactive.pm:1364
#, c-format
msgid "Device: "
msgstr "Уређај: "

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

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

#: diskdrake/interactive.pm:1299
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Ознака DOS партиције: %s (само претпоставка)\n"

#: diskdrake/interactive.pm:1303 diskdrake/interactive.pm:1312
#: diskdrake/interactive.pm:1383
#, c-format
msgid "Type: "
msgstr "Унеси: "

#: diskdrake/interactive.pm:1307 diskdrake/interactive.pm:1368
#, c-format
msgid "Name: "
msgstr "Име: "

#: diskdrake/interactive.pm:1314
#, c-format
msgid "Start: sector %s\n"
msgstr "Почетак: сектор %s\n"

#: diskdrake/interactive.pm:1315
#, c-format
msgid "Size: %s"
msgstr "Величина: %s"

#: diskdrake/interactive.pm:1317
#, c-format
msgid ", %s sectors"
msgstr ", %s сектора"

#: diskdrake/interactive.pm:1319
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Цилиндар %d до %d\n"

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

#: diskdrake/interactive.pm:1321
#, c-format
msgid "Formatted\n"
msgstr "Форматирано\n"

#: diskdrake/interactive.pm:1322
#, c-format
msgid "Not formatted\n"
msgstr "Није форматирано\n"

#: diskdrake/interactive.pm:1323
#, c-format
msgid "Mounted\n"
msgstr "Монтирано\n"

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

#: diskdrake/interactive.pm:1326
#, fuzzy, c-format
msgid "Encrypted"
msgstr "Кључ за енкрипцију"

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

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

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

#: diskdrake/interactive.pm:1334
#, c-format
msgid ""
"Loopback file(s):\n"
"   %s\n"
msgstr ""
"Loopback фајл(ови): \n"
"   %s\n"

#: diskdrake/interactive.pm:1335
#, c-format
msgid ""
"Partition booted by default\n"
"    (for MS-DOS boot, not for lilo)\n"
msgstr ""
"Boot партиција по default-у\n"
"   (за подизање MS-DOS-а, не за lilo)\n"

#: diskdrake/interactive.pm:1337
#, c-format
msgid "Level %s\n"
msgstr "Ниво %s\n"

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

#: diskdrake/interactive.pm:1339
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-дискови %s\n"

#: diskdrake/interactive.pm:1341
#, c-format
msgid "Loopback file name: %s"
msgstr "Име Loopback датотеке: %s"

#: diskdrake/interactive.pm:1344
#, c-format
msgid ""
"\n"
"Chances are, this partition is\n"
"a Driver partition. You should\n"
"probably leave it alone.\n"
msgstr ""
"\n"
"Највероватније је, да је ова партиција\n"
"Driver партиција, па не би требали\n"
"да је дирате.\n"

#: diskdrake/interactive.pm:1347
#, c-format
msgid ""
"\n"
"This special Bootstrap\n"
"partition is for\n"
"dual-booting your system.\n"
msgstr ""
"\n"
"Ово је специјална Bootstrap\n"
"партиција и користи се\n"
"dual-booting вашег система.\n"

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

#: diskdrake/interactive.pm:1365
#, c-format
msgid "Read-only"
msgstr "Само-читање"

#: diskdrake/interactive.pm:1366
#, c-format
msgid "Size: %s\n"
msgstr "Величина: %s\n"

#: diskdrake/interactive.pm:1367
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Геометрија: %s цилиндара, %s глава, %s сектора\n"

#: diskdrake/interactive.pm:1369
#, fuzzy, c-format
msgid "Medium type: "
msgstr "Врста татотечног система:"

#: diskdrake/interactive.pm:1370
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-дискови %s\n"

#: diskdrake/interactive.pm:1371
#, c-format
msgid "Partition table type: %s\n"
msgstr "Тип табеле партиција: %s\n"

#: diskdrake/interactive.pm:1372
#, c-format
msgid "on channel %d id %d\n"
msgstr "на каналу %d ID %d\n"

#: diskdrake/interactive.pm:1416
#, c-format
msgid "Choose your filesystem encryption key"
msgstr "Изаберите кључ за енкрипцију фајл система"

#: diskdrake/interactive.pm:1419
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Ова лозинка(енкрипциони кључ) је сувише једноставна (треба да има бар %d "
"знакова)"

#: diskdrake/interactive.pm:1420
#, c-format
msgid "The encryption keys do not match"
msgstr "Неподударност енкрипционих кључева (лозинки)"

#: diskdrake/interactive.pm:1424
#, c-format
msgid "Encryption key (again)"
msgstr "Кључ за енкрипцију (поново)"

#: diskdrake/interactive.pm:1426
#, fuzzy, c-format
msgid "Encryption algorithm"
msgstr "Аутентификација"

#: diskdrake/removable.pm:46
#, c-format
msgid "Change type"
msgstr "Промена типа"

#: 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:846 ugtk2.pm:415
#: ugtk2.pm:517 ugtk2.pm:526 ugtk2.pm:812
#, c-format
msgid "Cancel"
msgstr "Поништи"

#: diskdrake/smbnfs_gtk.pm:164
#, c-format
msgid "Can not login using username %s (bad password?)"
msgstr "Не могу да улогујем корисничко име %s (неисправна лозинка?)"

#: diskdrake/smbnfs_gtk.pm:168 diskdrake/smbnfs_gtk.pm:177
#, c-format
msgid "Domain Authentication Required"
msgstr "Потребна Аутентификација Домена"

#: diskdrake/smbnfs_gtk.pm:169
#, c-format
msgid "Which username"
msgstr "Које корисничко име"

#: diskdrake/smbnfs_gtk.pm:169
#, c-format
msgid "Another one"
msgstr "Још један"

#: diskdrake/smbnfs_gtk.pm:178
#, c-format
msgid ""
"Please enter your username, password and domain name to access this host."
msgstr ""
"Унесите своје корисничко име, лозинку и домен да би могли да приступите "
"хосту."

#: diskdrake/smbnfs_gtk.pm:180
#, c-format
msgid "Username"
msgstr "Корисничко име"

#: diskdrake/smbnfs_gtk.pm:182
#, c-format
msgid "Domain"
msgstr "Домен"

#: diskdrake/smbnfs_gtk.pm:206
#, c-format
msgid "Search servers"
msgstr "Тражи сервере"

#: diskdrake/smbnfs_gtk.pm:211
#, fuzzy, c-format
msgid "Search new servers"
msgstr "Тражи сервере"

#: 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 "Пакет %s мора бити инсталиран. Да ли желите да га инсталирате?"

#: 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 "Инсталирам пакет %s"

#: do_pkgs.pm:28 do_pkgs.pm:65
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Текући пакет %s недостаје"

#: do_pkgs.pm:39 do_pkgs.pm:77
#, c-format
msgid "The following packages need to be installed:\n"
msgstr "Следећи пакети треба да буду инсталирани:\n"

#: do_pkgs.pm:241
#, c-format
msgid "Installing packages..."
msgstr "Инсталирам пакете..."

#: do_pkgs.pm:287 pkgs.pm:281
#, fuzzy, c-format
msgid "Removing packages..."
msgstr "Укањам %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 ""
"Догодила се грешка - није нађен исправан уређај на којем би били крерани "
"нови датотечног системи. Проверите ваш хардвер да видите шта је узрок овог "
"проблема."

#: fs/any.pm:75 fs/partitioning_wizard.pm:60
#, c-format
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Морате имати FAT партицију монтирану у /boot/efi"

#: fs/format.pm:100
#, c-format
msgid "Creating and formatting file %s"
msgstr "Креирање и форматирање датотеке %s"

#: fs/format.pm:119
#, fuzzy, c-format
msgid "I do not know how to set label on %s with type %s"
msgstr "не знам како да форматирам %s у типу %s"

#: fs/format.pm:126
#, fuzzy, c-format
msgid "setting label on %s failed, is it formatted?"
msgstr "%s Форматирање  %s није успело"

#: fs/format.pm:167
#, c-format
msgid "I do not know how to format %s in type %s"
msgstr "не знам како да форматирам %s у типу %s"

#: fs/format.pm:172 fs/format.pm:174
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s Форматирање  %s није успело"

#: fs/loopback.pm:24
#, c-format
msgid "Circular mounts %s\n"
msgstr "Кружно монтирање  %s\n"

#: fs/mount.pm:85
#, c-format
msgid "Mounting partition %s"
msgstr "Монтирам партицију %s"

#: fs/mount.pm:86
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "монтирање партиције %s у директоријум %s није успело"

#: fs/mount.pm:91 fs/mount.pm:108
#, c-format
msgid "Checking %s"
msgstr "Проверавам %s"

#: fs/mount.pm:125 partition_table.pm:405
#, c-format
msgid "error unmounting %s: %s"
msgstr "Грешка при демонтирању %s: %s"

#: fs/mount.pm:140
#, c-format
msgid "Enabling swap partition %s"
msgstr "Омогућавам swap партицију %s"

#: fs/mount_options.pm:114
#, fuzzy, c-format
msgid "Use an encrypted file system"
msgstr "Не можете користити енкриптовани фајл систем за тачку монтирања %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 "Дуплирана тачка монтирања %s"

#: fs/mount_point.pm:95
#, c-format
msgid "No partition available"
msgstr "нема доступних партиција"

#: fs/mount_point.pm:98
#, c-format
msgid "Scanning partitions to find mount points"
msgstr "Скенирање партиција за проналажење тачке монтирања"

#: fs/mount_point.pm:105
#, c-format
msgid "Choose the mount points"
msgstr "Изаберите тачке монтирања"

#: fs/partitioning.pm:46
#, c-format
msgid "Choose the partitions you want to format"
msgstr "Изабери партиције за форматирање"

#: 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 ""
"Неуспешна првера фајл система %s. Да ли желите да поправите грешке? (будите "
"пажљиви, можете изгубити податке)"

#: fs/partitioning.pm:78
#, c-format
msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Нема довољно swap-а да заврши инсталацију, додајте још swap-а"

#: fs/partitioning_wizard.pm:52
#, 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 ""
"Морате имати  root партицију.\n"
"За ово, креирајте партицију (или кликните на постојећу).\n"
"Затим изаберите \"Тачка монтирања\" и подесите на `/'"

#: fs/partitioning_wizard.pm:57
#, c-format
msgid ""
"You do not have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
"Хм, нема swap партиције\n"
"\n"
"Свеједно наставити даље ?"

#: fs/partitioning_wizard.pm:93
#, c-format
msgid "Use free space"
msgstr "Користи слободан простор"

#: fs/partitioning_wizard.pm:95
#, c-format
msgid "Not enough free space to allocate new partitions"
msgstr "Нема довољно слободног простора за алоцирање нових партиција"

#: fs/partitioning_wizard.pm:103
#, c-format
msgid "Use existing partitions"
msgstr "Користи постојећу партицију"

#: fs/partitioning_wizard.pm:105
#, c-format
msgid "There is no existing partition to use"
msgstr "Нема ни једне паритиције за рад"

#: fs/partitioning_wizard.pm:129
#, c-format
msgid "Computing the size of the Microsoft Windows® partition"
msgstr "Прорачунавам величину Microsoft Windows® партиције"

#: fs/partitioning_wizard.pm:148
#, fuzzy, c-format
msgid "Use the free space on a Microsoft Windows® partition"
msgstr "Корисити слободан простор на Windows партицији"

#: fs/partitioning_wizard.pm:152
#, c-format
msgid "Which partition do you want to resize?"
msgstr "Којој партицији  желите да промените величину?"

#: fs/partitioning_wizard.pm:162
#, 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 ""
"Ваша Microsoft Windows® партиција је превише фрагментирана, прво покрените "
"``defrag''"

#: fs/partitioning_wizard.pm:166
#, 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 ""
"УПОЗОРЕЊЕ!\n"
"\n"
"\n"
"Ваша Microsoft Windows® партиција треба да променити своју величину.\n"
"\n"
"\n"
"Будите пажљиви: ова операција је опасна. Уколико то до сада нисте радили, "
"прво треба да изађете из инсталације,покренете run \"chkdsk c:\" из команде "
"линије под Microsoft Windows® (пажња, покретање графичког програма \"scandisk"
"\" није довољно, па би зато требали да користите \"chkdsk\" у командној "
"линији!), можете покренути и  defrag, а затим онда поново покрените "
"инсталацију.\n"
"Такође би требали да урадите бекап својих података.\n"
"\n"
"\n"
"Ако сте сигурни, притисните %s."

#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: fs/partitioning_wizard.pm:175 fs/partitioning_wizard.pm:498
#: interactive.pm:549 interactive/curses.pm:263 ugtk2.pm:519
#, c-format
msgid "Next"
msgstr "Следећи "

#: fs/partitioning_wizard.pm:180
#, fuzzy, c-format
msgid "Partitionning"
msgstr "Партиционисање"

#: fs/partitioning_wizard.pm:180
#, c-format
msgid "Which size do you want to keep for Microsoft Windows® on partition %s?"
msgstr "Коју величину желите да задржите за прозоре партиција %s?"

#: fs/partitioning_wizard.pm:181
#, c-format
msgid "Size"
msgstr "Величина"

#: fs/partitioning_wizard.pm:191
#, c-format
msgid "Resizing Microsoft Windows® partition"
msgstr "Прорачунавам границе Microsoft Windows® фајл-система"

#: fs/partitioning_wizard.pm:196
#, c-format
msgid "FAT resizing failed: %s"
msgstr "FAT измена величине неуспела: %s"

#: fs/partitioning_wizard.pm:199
#, 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 ""
"Да би осигурали интегритет након промене величине партиције(а), \n"
"провера фајл система ће бити покренута када се следећи пут улогујете у "
"Windows(TM)"

#: fs/partitioning_wizard.pm:212
#, c-format
msgid "There is no FAT partition to resize (or not enough space left)"
msgstr ""
"Не постоје FAT партиције којима се може променити величина  (или нема "
"довољно слободног простора)"

#: fs/partitioning_wizard.pm:217
#, c-format
msgid "Remove Microsoft Windows®"
msgstr "Уклони Microsoft Windows®"

#: fs/partitioning_wizard.pm:217
#, c-format
msgid "Erase and use entire disk"
msgstr "Избриши и употреби цео диск"

#: fs/partitioning_wizard.pm:221
#, c-format
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr ""
"Имате више од једног хард диска, на који од њих желите да инсталирате "
"Линукс ?"

#: fs/partitioning_wizard.pm:229 fsedit.pm:600
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "СВЕ постојеће партиције и подаци на диску %s ће бити изгубљени"

#: fs/partitioning_wizard.pm:239
#, c-format
msgid "Custom disk partitioning"
msgstr "Custom диск партиционирање"

#: fs/partitioning_wizard.pm:245
#, c-format
msgid "Use fdisk"
msgstr "Користи fdisk"

#: fs/partitioning_wizard.pm:248
#, c-format
msgid ""
"You can now partition %s.\n"
"When you are done, do not forget to save using `w'"
msgstr ""
"Сада можете партиционирати ваш %s хард диск уређај\n"
"Када завршите,не заборавите да потврдите користећи `w'"

#: fs/partitioning_wizard.pm:388 fs/partitioning_wizard.pm:518
#, c-format
msgid "I can not find any room for installing"
msgstr "Не могу да пронађем слободан простор за инсталирање"

#: fs/partitioning_wizard.pm:397 fs/partitioning_wizard.pm:525
#, c-format
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "DrakX чаробњак за партиционирање је пронашао следећа решења:"

#: fs/partitioning_wizard.pm:459
#, c-format
msgid "Here is the content of your disk drive "
msgstr ""

#: fs/partitioning_wizard.pm:535
#, c-format
msgid "Partitioning failed: %s"
msgstr "Партиционирање није успело: %s"

#: fs/type.pm:390
#, c-format
msgid "You can not use JFS for partitions smaller than 16MB"
msgstr "Не можете користити JFS за партиције мање од 16MB"

#: fs/type.pm:391
#, c-format
msgid "You can not use ReiserFS for partitions smaller than 32MB"
msgstr "Не можете користити ReiserFS за партиције мање од 32MB"

#: fsedit.pm:24
#, c-format
msgid "simple"
msgstr "једноставно"

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

#: fsedit.pm:33
#, c-format
msgid "server"
msgstr "сервер"

#: 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 ""
"Не могу прочитати табелу партиција уређај %s , много је искварена за мене :"
"(\n"
"Покушаћу даље заобилазећи лоше партицијеМогу покушати да форматирам лоше "
"партиције (СВИ ПОДАЦИ ће бити изгубљени !).\n"
"Друго решење је да се DrakX онемогући да модуфикује табелу партиција.\n"
"(грешка је %s)\n"
"\n"
"Да ли се пристајете да изгубите све партиције?\n"

#: fsedit.pm:425
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "Тачке монтирања морају да почињу са водећим /"

#: fsedit.pm:426
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr "Тачке монтирања треба да садрже само алфанумеричке карактере"

#: fsedit.pm:427
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Већ постоји партиција са тачком монтирања %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 ""
"Изабрали сте софтверску RAID партицију као root (/).\n"
"Ниједан стартер не може да ради са тим без /boot партиције.\n"
"Зато треба да додате /boot партицију"

#: 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 "Не можете користити логичку LVM партицију за тачку монтирања %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 ""
"Изабрали сте софтверску RAID партицију као root (/).\n"
"Ниједан стартер не може да ради са тим без /boot партиције.\n"
"Зато треба да додате /boot партицију"

#: fsedit.pm:443 fsedit.pm:445
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr "Овај директоријум треба да остане у root-у  датотечног система"

#: fsedit.pm:447 fsedit.pm:449
#, c-format
msgid ""
"You need a true filesystem (ext2/3/4, reiserfs, xfs, or jfs) for this mount "
"point\n"
msgstr ""
"Потребан вам је прави датотечни систем (ext2/3/4, reiserfs, xfs, или jfs) за "
"ову тачку монтирања\n"

#: fsedit.pm:451
#, c-format
msgid "You can not use an encrypted file system for mount point %s"
msgstr "Не можете користити енкриптовани фајл систем за тачку монтирања %s"

#: fsedit.pm:516
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr "Нема довољно слободног простора за ауто-алоцирање"

#: fsedit.pm:518
#, c-format
msgid "Nothing to do"
msgstr "Нема шта да се уради"

#: harddrake/data.pm:62
#, c-format
msgid "SATA controllers"
msgstr "SATA контролери"

#: harddrake/data.pm:71
#, c-format
msgid "RAID controllers"
msgstr "RAID контролери"

#: harddrake/data.pm:81
#, c-format
msgid "(E)IDE/ATA controllers"
msgstr "(E)IDE/ATA контролери"

#: harddrake/data.pm:92
#, fuzzy, c-format
msgid "Card readers"
msgstr "Модел картице :"

#: harddrake/data.pm:101
#, c-format
msgid "Firewire controllers"
msgstr "Firewire контролери"

#: harddrake/data.pm:110
#, c-format
msgid "PCMCIA controllers"
msgstr "PCMCIA контролери"

#: harddrake/data.pm:119
#, c-format
msgid "SCSI controllers"
msgstr "SCSI контролери"

#: harddrake/data.pm:128
#, c-format
msgid "USB controllers"
msgstr "USB контролери"

#: harddrake/data.pm:137
#, fuzzy, c-format
msgid "USB ports"
msgstr ", USB штампач"

#: harddrake/data.pm:146
#, c-format
msgid "SMBus controllers"
msgstr "SMBus контролери"

#: harddrake/data.pm:155
#, c-format
msgid "Bridges and system controllers"
msgstr "Мостови и системски контролери"

#: harddrake/data.pm:167
#, c-format
msgid "Floppy"
msgstr "Флопи"

#: harddrake/data.pm:177
#, c-format
msgid "Zip"
msgstr "Зип"

#: harddrake/data.pm:193
#, c-format
msgid "Hard Disk"
msgstr "Диск"

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

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

#: harddrake/data.pm:222
#, c-format
msgid "CD/DVD burners"
msgstr "CD/DVD резачи"

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

#: harddrake/data.pm:242
#, c-format
msgid "Tape"
msgstr "Трака"

#: harddrake/data.pm:253
#, c-format
msgid "AGP controllers"
msgstr "AGP контролери"

#: harddrake/data.pm:262
#, c-format
msgid "Videocard"
msgstr "Видео картица"

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

#: harddrake/data.pm:279
#, c-format
msgid "Tvcard"
msgstr "ТВ картица"

#: harddrake/data.pm:289
#, c-format
msgid "Other MultiMedia devices"
msgstr "Други мултимедијални уређаји"

#: harddrake/data.pm:298
#, c-format
msgid "Soundcard"
msgstr "Звучна картица"

#: harddrake/data.pm:312
#, c-format
msgid "Webcam"
msgstr "Веб камера"

#: harddrake/data.pm:327
#, c-format
msgid "Processors"
msgstr "Процесори"

#: harddrake/data.pm:337
#, fuzzy, c-format
msgid "ISDN adapters"
msgstr "Интерна  ISDN картица"

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

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

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

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

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

#: harddrake/data.pm:393
#, c-format
msgid "Ethernetcard"
msgstr "Мрежна картица"

#: harddrake/data.pm:410
#, c-format
msgid "Modem"
msgstr "Модем"

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

#: harddrake/data.pm:432
#, c-format
msgid "Memory"
msgstr "Меморија"

#: harddrake/data.pm:441
#, c-format
msgid "Printer"
msgstr "Штампач"

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

#: harddrake/data.pm:464
#, c-format
msgid "Joystick"
msgstr "Џојстик"

#: harddrake/data.pm:474
#, c-format
msgid "Keyboard"
msgstr "Тастатура"

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

#: harddrake/data.pm:497
#, c-format
msgid "Mouse"
msgstr "Миш"

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

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

#: harddrake/data.pm:529
#, c-format
msgid "Scanner"
msgstr "Скенер"

#: harddrake/data.pm:540
#, c-format
msgid "Unknown/Others"
msgstr "Непознати/Остали"

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

#: harddrake/sound.pm:303
#, c-format
msgid "Please Wait... Applying the configuration"
msgstr "Само моменат... примена конфигурације"

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

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

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

#: harddrake/sound.pm:379
#, c-format
msgid "Use Glitch-Free mode"
msgstr ""

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

#: harddrake/sound.pm:390
#, c-format
msgid "Trouble shooting"
msgstr "Помоћ "

#: harddrake/sound.pm:397
#, c-format
msgid "No alternative driver"
msgstr "Нема алтернативног драјвера"

#: harddrake/sound.pm:398
#, c-format
msgid ""
"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
"currently uses \"%s\""
msgstr ""
"Не постоји познати алтернативни OSS/ALSA драјвер за вашу звучну картицу (%s) "
"која тренутно користи \"%s\""

#: harddrake/sound.pm:405
#, c-format
msgid "Sound configuration"
msgstr "Подешавање звука"

#: harddrake/sound.pm:407
#, c-format
msgid ""
"Here you can select an alternative driver (either OSS or ALSA) for your "
"sound card (%s)."
msgstr ""
"Овде можете изабрати алтернативни драјвер (или OSS или ALSA) за своју звучну "
"картицу (%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:412
#, c-format
msgid ""
"\n"
"\n"
"Your card currently use the %s\"%s\" driver (default driver for your card is "
"\"%s\")"
msgstr ""
"\n"
"\n"
"Ваша картица тренутно користи %s\"%s\" драјвер (default драјвер за вашу "
"картицу је \"%s\")"

#: harddrake/sound.pm:414
#, 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 (Отворени Систем за Звук)је био прву звучни API. Он је независан звучни "
"API у односу на оперативни систем(доступан је на већини unices система) али "
"је прилично рудименаран и ограничен API.\n"
"Чак шта више, већина драјвера као да поново откирва точак \n"
"\n"
"ALSA (Advanced Linux Sound Architecture) је модуларне архитектуре који\n"
"подржава велики број ISA, USB и PCI картица.\n"
"\n"
"Он такође обезбеђује много већи API у односу на  OSS.\n"
"\n"
"Да би користили alsa, можете користи или:\n"
"- стари компатибилни OSS api\n"
"- нови ALSA api који омогућава много напредне могућности али захтева "
"коришћење ALSA библиотеке.\n"

#: harddrake/sound.pm:428 harddrake/sound.pm:511
#, c-format
msgid "Driver:"
msgstr "Драјвер:"

#: harddrake/sound.pm:442
#, 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 ""
"Стари \"%s\" драјвер је на црној листи.\n"
"\n"
"Пријављено је да опструише кернел при рестартовању.\n"
"\n"
"Нови \"%s\" драјвер ће бити коришћен само при следећем стартању система."

#: harddrake/sound.pm:450
#, c-format
msgid "No open source driver"
msgstr "Нема open source драјвера"

#: harddrake/sound.pm:451
#, c-format
msgid ""
"There's no free driver for your sound card (%s), but there's a proprietary "
"driver at \"%s\"."
msgstr ""
"Не постоји бесплатан драјвер за вашу звучну картицу (%s), али постоји "
"лиценцирани драјвер на \"%s\"."

#: harddrake/sound.pm:454
#, c-format
msgid "No known driver"
msgstr "Нема познатог драјвера"

#: harddrake/sound.pm:455
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr "Не постоји познати драјвер за вашу звучну картицу (%s)"

#: harddrake/sound.pm:470
#, c-format
msgid "Sound trouble shooting"
msgstr "Помоћ за подешавање звука"

#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: harddrake/sound.pm:473
#, 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 ""
"Класични тестер звука треба да покрене следеће команде:\n"
"\n"
"\n"
"- \"lspcidrake -v | fgrep -i AUDIO\" ће вам рећи који драјвер ваша звучна "
"картица користи \n"
"по default-у\n"
"\n"
"- \"grep sound-slot /etc/modprobe.conf\" ће вам рећи који је драјвер "
"тренутно\n"
"у употреби\n"
"\n"
"- \"/sbin/lsmod\" ће вам омогућити да проверите да ли његов је драјверов "
"модул\n"
"учитан или није\n"
"\n"
"- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" ће\n"
"вам рећи да ли су сервер за звук и alsa подешени за покретање у\n"
"initlevel 3\n"
"\n"
"- \"aumix -q\" ће вам рећи какав је ниво јачине звука\n"
"\n"
"- \"/sbin/fuser -v /dev/dsp\" ће вам рећи који програм користи ѕвучну "
"картицу.\n"

#: harddrake/sound.pm:500
#, c-format
msgid "Let me pick any driver"
msgstr "Доозволи да изаберем било који уређај"

#: harddrake/sound.pm:503
#, c-format
msgid "Choosing an arbitrary driver"
msgstr "Бирам одговарајући драјвер"

#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: harddrake/sound.pm:506
#, 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 ""
"Уколико заиста мислите да знате који је прави драјвер за вашу картицу\n"
"можете изабрати једну са горње листе.\n"
"\n"
"Тренутни драјвер за вашу \"%s\" звучну картицу је \"%s\" "

#: harddrake/v4l.pm:12
#, c-format
msgid "Auto-detect"
msgstr "Ауто-детекција"

#: harddrake/v4l.pm:97 harddrake/v4l.pm:285 harddrake/v4l.pm:337
#, c-format
msgid "Unknown|Generic"
msgstr "Непознати|Generic"

#: harddrake/v4l.pm:130
#, c-format
msgid "Unknown|CPH05X (bt878) [many vendors]"
msgstr "Непознати|CPH05X (bt878) [многи произвођачи]"

#: harddrake/v4l.pm:131
#, c-format
msgid "Unknown|CPH06X (bt878) [many vendors]"
msgstr "Непознати|CPH06X (bt878) [многи произвођачи]"

#: 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 ""
"За већину модерних ТВ картица, bttv модул GNU/Linux кернела једноставно ауто-"
"детектује праве параметре.\n"
"Уколико је картица погрешно детектована, овде можете да подесите прави "
"тјунер и тип картице. Само селектујте параметре за вашу TV картицу ако је "
"потребно"

#: harddrake/v4l.pm:478
#, c-format
msgid "Card model:"
msgstr "Модел картице :"

#: harddrake/v4l.pm:479
#, c-format
msgid "Tuner type:"
msgstr "Тип тјунера :"