summaryrefslogtreecommitdiffstats
path: root/wp-includes/functions.php
blob: e93bf7aff62f3fa84efb651879aa33b7dcbeb4c0 (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
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
<?php

require_once(dirname(__FILE__).'/compat.php');

function mysql2date($dateformatstring, $mysqlstring, $translate = true) {
	global $wp_locale;
	$m = $mysqlstring;
	if ( empty($m) ) {
		return false;
	}
	$i = mktime(substr($m,11,2),substr($m,14,2),substr($m,17,2),substr($m,5,2),substr($m,8,2),substr($m,0,4));

	if( 'U' == $dateformatstring )
		return $i;

	if ( -1 == $i || false == $i )
		$i = 0;

	if ( !empty($wp_locale->month) && !empty($wp_locale->weekday) && $translate ) {
		$datemonth = $wp_locale->get_month(date('m', $i));
		$datemonth_abbrev = $wp_locale->get_month_abbrev($datemonth);
		$dateweekday = $wp_locale->get_weekday(date('w', $i));
		$dateweekday_abbrev = $wp_locale->get_weekday_abbrev($dateweekday);
		$datemeridiem = $wp_locale->get_meridiem(date('a', $i));
		$datemeridiem_capital = $wp_locale->get_meridiem(date('A', $i));
		$dateformatstring = ' '.$dateformatstring;
		$dateformatstring = preg_replace("/([^\\\])D/", "\\1".backslashit($dateweekday_abbrev), $dateformatstring);
		$dateformatstring = preg_replace("/([^\\\])F/", "\\1".backslashit($datemonth), $dateformatstring);
		$dateformatstring = preg_replace("/([^\\\])l/", "\\1".backslashit($dateweekday), $dateformatstring);
		$dateformatstring = preg_replace("/([^\\\])M/", "\\1".backslashit($datemonth_abbrev), $dateformatstring);
		$dateformatstring = preg_replace("/([^\\\])a/", "\\1".backslashit($datemeridiem), $dateformatstring);
		$dateformatstring = preg_replace("/([^\\\])A/", "\\1".backslashit($datemeridiem_capital), $dateformatstring);

		$dateformatstring = substr($dateformatstring, 1, strlen($dateformatstring)-1);
	}
	$j = @date($dateformatstring, $i);
	if ( !$j ) {
	// for debug purposes
	//	echo $i." ".$mysqlstring;
	}
	return $j;
}

function current_time($type, $gmt = 0) {
	switch ($type) {
		case 'mysql':
			if ( $gmt ) $d = gmdate('Y-m-d H:i:s');
			else $d = gmdate('Y-m-d H:i:s', (time() + (get_option('gmt_offset') * 3600)));
			return $d;
			break;
		case 'timestamp':
			if ( $gmt ) $d = time();
			else $d = time() + (get_option('gmt_offset') * 3600);
			return $d;
			break;
	}
}

function date_i18n($dateformatstring, $unixtimestamp) {
	global $wp_locale;
	$i = $unixtimestamp;
	if ( (!empty($wp_locale->month)) && (!empty($wp_locale->weekday)) ) {
		$datemonth = $wp_locale->get_month(date('m', $i));
		$datemonth_abbrev = $wp_locale->get_month_abbrev($datemonth);
		$dateweekday = $wp_locale->get_weekday(date('w', $i));
		$dateweekday_abbrev = $wp_locale->get_weekday_abbrev($dateweekday);
		$datemeridiem = $wp_locale->get_meridiem(date('a', $i));
		$datemeridiem_capital = $wp_locale->get_meridiem(date('A', $i));
		$dateformatstring = ' '.$dateformatstring;
		$dateformatstring = preg_replace("/([^\\\])D/", "\\1".backslashit($dateweekday_abbrev), $dateformatstring);
		$dateformatstring = preg_replace("/([^\\\])F/", "\\1".backslashit($datemonth), $dateformatstring);
		$dateformatstring = preg_replace("/([^\\\])l/", "\\1".backslashit($dateweekday), $dateformatstring);
		$dateformatstring = preg_replace("/([^\\\])M/", "\\1".backslashit($datemonth_abbrev), $dateformatstring);
		$dateformatstring = preg_replace("/([^\\\])a/", "\\1".backslashit($datemeridiem), $dateformatstring);
		$dateformatstring = preg_replace("/([^\\\])A/", "\\1".backslashit($datemeridiem_capital), $dateformatstring);

		$dateformatstring = substr($dateformatstring, 1, strlen($dateformatstring)-1);
	}
	$j = @date($dateformatstring, $i);
	return $j;
}

function get_weekstartend($mysqlstring, $start_of_week) {
	$my = substr($mysqlstring,0,4);
	$mm = substr($mysqlstring,8,2);
	$md = substr($mysqlstring,5,2);
	$day = mktime(0,0,0, $md, $mm, $my);
	$weekday = date('w',$day);
	$i = 86400;

	if ( $weekday < get_option('start_of_week') )
		$weekday = 7 - (get_option('start_of_week') - $weekday);

	while ($weekday > get_option('start_of_week')) {
		$weekday = date('w',$day);
		if ( $weekday < get_option('start_of_week') )
			$weekday = 7 - (get_option('start_of_week') - $weekday);

		$day = $day - 86400;
		$i = 0;
	}
	$week['start'] = $day + 86400 - $i;
	// $week['end'] = $day - $i + 691199;
	$week['end'] = $week['start'] + 604799;
	return $week;
}

function get_lastpostdate($timezone = 'server') {
	global $cache_lastpostdate, $pagenow, $wpdb, $blog_id;
	$add_seconds_blog = get_option('gmt_offset') * 3600;
	$add_seconds_server = date('Z');
	if ( !isset($cache_lastpostdate[$blog_id][$timezone]) ) {
		switch(strtolower($timezone)) {
			case 'gmt':
				$lastpostdate = $wpdb->get_var("SELECT post_date_gmt FROM $wpdb->posts WHERE post_status = 'publish' ORDER BY post_date_gmt DESC LIMIT 1");
				break;
			case 'blog':
				$lastpostdate = $wpdb->get_var("SELECT post_date FROM $wpdb->posts WHERE post_status = 'publish' ORDER BY post_date_gmt DESC LIMIT 1");
				break;
			case 'server':
				$lastpostdate = $wpdb->get_var("SELECT DATE_ADD(post_date_gmt, INTERVAL '$add_seconds_server' SECOND) FROM $wpdb->posts WHERE post_status = 'publish' ORDER BY post_date_gmt DESC LIMIT 1");
				break;
		}
		$cache_lastpostdate[$blog_id][$timezone] = $lastpostdate;
	} else {
		$lastpostdate = $cache_lastpostdate[$blog_id][$timezone];
	}
	return $lastpostdate;
}

function get_lastpostmodified($timezone = 'server') {
	global $cache_lastpostmodified, $pagenow, $wpdb, $blog_id;
	$add_seconds_blog = get_option('gmt_offset') * 3600;
	$add_seconds_server = date('Z');
	if ( !isset($cache_lastpostmodified[$blog_id][$timezone]) ) {
		switch(strtolower($timezone)) {
			case 'gmt':
				$lastpostmodified = $wpdb->get_var("SELECT post_modified_gmt FROM $wpdb->posts WHERE post_status = 'publish' ORDER BY post_modified_gmt DESC LIMIT 1");
				break;
			case 'blog':
				$lastpostmodified = $wpdb->get_var("SELECT post_modified FROM $wpdb->posts WHERE post_status = 'publish' ORDER BY post_modified_gmt DESC LIMIT 1");
				break;
			case 'server':
				$lastpostmodified = $wpdb->get_var("SELECT DATE_ADD(post_modified_gmt, INTERVAL '$add_seconds_server' SECOND) FROM $wpdb->posts WHERE post_status = 'publish' ORDER BY post_modified_gmt DESC LIMIT 1");
				break;
		}
		$lastpostdate = get_lastpostdate($timezone);
		if ( $lastpostdate > $lastpostmodified ) {
			$lastpostmodified = $lastpostdate;
		}
		$cache_lastpostmodified[$blog_id][$timezone] = $lastpostmodified;
	} else {
		$lastpostmodified = $cache_lastpostmodified[$blog_id][$timezone];
	}
	return $lastpostmodified;
}

function maybe_unserialize($original) {
	if ( is_serialized($original) ) // don't attempt to unserialize data that wasn't serialized going in
		if ( false !== $gm = @ unserialize($original) )
			return $gm;
	return $original;
}

function is_serialized($data) {
	// if it isn't a string, it isn't serialized
	if ( !is_string($data) )
		return false;
	$data = trim($data);
	if ( 'N;' == $data )
		return true;
	if ( !preg_match('/^([adObis]):/', $data, $badions) )
		return false;
	switch ( $badions[1] ) :
	case 'a' :
	case 'O' :
	case 's' :
		if ( preg_match("/^{$badions[1]}:[0-9]+:.*[;}]\$/s", $data) )
			return true;
		break;
	case 'b' :
	case 'i' :
	case 'd' :
		if ( preg_match("/^{$badions[1]}:[0-9.E-]+;\$/", $data) )
			return true;
		break;
	endswitch;
	return false;
}

function is_serialized_string($data) {
	// if it isn't a string, it isn't a serialized string
	if ( !is_string($data) )
		return false;
	$data = trim($data);
	if ( preg_match('/^s:[0-9]+:.*;$/s',$data) ) // this should fetch all serialized strings
		return true;
	return false;
}

/* Options functions */

function get_option($setting) {
	global $wpdb, $switched, $current_blog;

	// Allow plugins to short-circuit options.
	$pre = apply_filters( 'pre_option_' . $setting, false ); 
	if ( $pre ) 
		return $pre; 

	if ( $switched != false || defined('WP_INSTALLING') != false ) {
		wp_cache_delete($setting, 'options');
		wp_cache_delete('notoptions', 'options');
		wp_cache_delete('alloptions', 'options');
	}

	// prevent non-existent options from triggering multiple queries
	$notoptions = wp_cache_get('notoptions', 'options');
	if ( isset($notoptions[$setting]) )
		return false;

	$alloptions = wp_load_alloptions();

	if ( isset($alloptions[$setting]) ) {
		$value = $alloptions[$setting];
	} else {
		$value = wp_cache_get($setting, 'options');

		if ( false === $value ) {
			if ( defined('WP_INSTALLING') )
				$wpdb->hide_errors();
			$row = $wpdb->get_row("SELECT option_value FROM $wpdb->options WHERE option_name = '$setting' LIMIT 1");
			if ( defined('WP_INSTALLING') )
				$wpdb->show_errors();

			if( is_object( $row) ) { // Has to be get_row instead of get_var because of funkiness with 0, false, null values
				$value = $row->option_value;
				wp_cache_set($setting, $value, 'options');
			} else { // option does not exist, so we must cache its non-existence
				$notoptions[$setting] = true;
				wp_cache_set('notoptions', $notoptions, 'options');
				return false;
			}
		}
	}

	// If home is not set use siteurl.
	if ( 'home' == $setting && '' == $value )
		return get_option('siteurl');

	if ( 'siteurl' == $setting || 'home' == $setting || 'category_base' == $setting )
		$value = preg_replace('|/+$|', '', $value);

	if (! unserialize($value) )
		$value = stripslashes( $value );

	return apply_filters( 'option_' . $setting, maybe_unserialize($value) );
}

function wp_protect_special_option($option) {
	$protected = array('alloptions', 'notoptions');
	if ( in_array($option, $protected) )
		die(sprintf(__('%s is a protected WP option and may not be modified'), wp_specialchars($option)));
}

function form_option($option) {
	echo attribute_escape(get_option($option));
}

function get_alloptions() {
	global $wpdb, $wp_queries;
	$wpdb->hide_errors();
	if ( !$options = $wpdb->get_results("SELECT option_name, option_value FROM $wpdb->options WHERE autoload = 'yes'") ) {
		$options = $wpdb->get_results("SELECT option_name, option_value FROM $wpdb->options");
	}
	$wpdb->show_errors();

	foreach ($options as $option) {
		// "When trying to design a foolproof system,
		//  never underestimate the ingenuity of the fools :)" -- Dougal
		if ( 'siteurl' == $option->option_name )
			$option->option_value = preg_replace('|/+$|', '', $option->option_value);
		if ( 'home' == $option->option_name )
			$option->option_value = preg_replace('|/+$|', '', $option->option_value);
		if ( 'category_base' == $option->option_name )
			$option->option_value = preg_replace('|/+$|', '', $option->option_value);
		$value = maybe_unserialize($option->option_value);
		$all_options->{$option->option_name} = apply_filters('pre_option_' . $option->option_name, $value);
	}
	return apply_filters('all_options', $all_options);
}

function wp_load_alloptions() {
	global $wpdb;

	$alloptions = wp_cache_get('alloptions', 'options');

	if ( !$alloptions ) {
		$wpdb->hide_errors();
		if ( !$alloptions_db = $wpdb->get_results("SELECT option_name, option_value FROM $wpdb->options WHERE autoload = 'yes'") )
			$alloptions_db = $wpdb->get_results("SELECT option_name, option_value FROM $wpdb->options");
		$wpdb->show_errors();
		$alloptions = array();
		foreach ( (array) $alloptions_db as $o )
			$alloptions[$o->option_name] = $o->option_value;
		wp_cache_set('alloptions', $alloptions, 'options');
	}
	return $alloptions;
}

function update_option($option_name, $newvalue) {
	global $wpdb;

	wp_protect_special_option($option_name);

	if ( is_string($newvalue) )
		$newvalue = trim($newvalue);

	// If the new and old values are the same, no need to update.
	$oldvalue = get_option($option_name);
	if ( $newvalue === $oldvalue ) {
		return false;
	}

	if ( false === $oldvalue ) {
		add_option($option_name, $newvalue);
		return true;
	}

	$notoptions = wp_cache_get('notoptions', 'options');
	if ( isset($notoptions[$option_name]) ) {
		unset($notoptions[$option_name]);
		wp_cache_set('notoptions', $notoptions, 'options');
	}

	$_newvalue = $newvalue;
	$newvalue = maybe_serialize($newvalue);

	$alloptions = wp_load_alloptions();
	if ( isset($alloptions[$option_name]) ) {
		$alloptions[$option_name] = $newvalue;
		wp_cache_set('alloptions', $alloptions, 'options');
	} else {
		wp_cache_set($option_name, $newvalue, 'options');
	}

	$newvalue = $wpdb->escape($newvalue);
	$option_name = $wpdb->escape($option_name);
	$wpdb->query("UPDATE $wpdb->options SET option_value = '$newvalue' WHERE option_name = '$option_name'");
	if ( $wpdb->rows_affected == 1 ) {
		do_action("update_option_{$option_name}", $oldvalue, $_newvalue);
		return true;
	}
	return false;
}

// thx Alex Stapleton, http://alex.vort-x.net/blog/
function add_option($name, $value = '', $description = '', $autoload = 'yes') {
	global $wpdb;

	wp_protect_special_option($name);

	// Make sure the option doesn't already exist we can check the cache before we ask for a db query
	$notoptions = wp_cache_get('notoptions', 'options');
	if ( isset($notoptions[$name]) ) {
		unset($notoptions[$name]);
		wp_cache_set('notoptions', $notoptions, 'options');
	} elseif ( false !== get_option($name) ) {
			return;
	}

	$value = maybe_serialize($value);

	if ( 'yes' == $autoload ) {
		$alloptions = wp_load_alloptions();
		$alloptions[$name] = $value;
		wp_cache_set('alloptions', $alloptions, 'options');
	} else {
		wp_cache_set($name, $value, 'options');
	}

	$name = $wpdb->escape($name);
	$value = $wpdb->escape($value);
	$description = $wpdb->escape($description);
	$wpdb->query("INSERT INTO $wpdb->options (option_name, option_value, option_description, autoload) VALUES ('$name', '$value', '$description', '$autoload')");

	return;
}

function delete_option($name) {
	global $wpdb;

	wp_protect_special_option($name);

	// Get the ID, if no ID then return
	$option = $wpdb->get_row("SELECT option_id, autoload FROM $wpdb->options WHERE option_name = '$name'");
	if ( !$option->option_id ) {
		$alloptions = wp_load_alloptions();
		if ( isset($alloptions[$name]) ) {
			unset($alloptions[$name]);
			wp_cache_set('alloptions', $alloptions, 'options');
		}
		return false;
	}
	$wpdb->query("DELETE FROM $wpdb->options WHERE option_name = '$name'");
	if ( 'yes' == $option->autoload ) {
		$alloptions = wp_load_alloptions();
		if ( isset($alloptions[$name]) ) {
			unset($alloptions[$name]);
			wp_cache_set('alloptions', $alloptions, 'options');
		}
	}

	wp_cache_delete($name, 'options');

	return true;
}

function maybe_serialize($data) {
	if ( is_string($data) )
		$data = trim($data);
	elseif ( is_array($data) || is_object($data) )
		return serialize($data);
	if ( is_serialized($data) )
		return serialize($data);
	return $data;
}

function gzip_compression() {
	if ( !get_option('gzipcompression') ) return false;

	if ( extension_loaded('zlib') ) {
		ob_start('ob_gzhandler');
	}
}

function make_url_footnote($content) {
	preg_match_all('/<a(.+?)href=\"(.+?)\"(.*?)>(.+?)<\/a>/', $content, $matches);
	$j = 0;
	for ($i=0; $i<count($matches[0]); $i++) {
		$links_summary = (!$j) ? "\n" : $links_summary;
		$j++;
		$link_match = $matches[0][$i];
		$link_number = '['.($i+1).']';
		$link_url = $matches[2][$i];
		$link_text = $matches[4][$i];
		$content = str_replace($link_match, $link_text.' '.$link_number, $content);
		$link_url = ((strtolower(substr($link_url,0,7)) != 'http://') && (strtolower(substr($link_url,0,8)) != 'https://')) ? get_option('home') . $link_url : $link_url;
		$links_summary .= "\n".$link_number.' '.$link_url;
	}
	$content = strip_tags($content);
	$content .= $links_summary;
	return $content;
}


function xmlrpc_getposttitle($content) {
	global $post_default_title;
	if ( preg_match('/<title>(.+?)<\/title>/is', $content, $matchtitle) ) {
		$post_title = $matchtitle[0];
		$post_title = preg_replace('/<title>/si', '', $post_title);
		$post_title = preg_replace('/<\/title>/si', '', $post_title);
	} else {
		$post_title = $post_default_title;
	}
	return $post_title;
}

function xmlrpc_getpostcategory($content) {
	global $post_default_category;
	if ( preg_match('/<category>(.+?)<\/category>/is', $content, $matchcat) ) {
		$post_category = trim($matchcat[1], ',');
		$post_category = explode(',', $post_category);
	} else {
		$post_category = $post_default_category;
	}
	return $post_category;
}

function xmlrpc_removepostdata($content) {
	$content = preg_replace('/<title>(.+?)<\/title>/si', '', $content);
	$content = preg_replace('/<category>(.+?)<\/category>/si', '', $content);
	$content = trim($content);
	return $content;
}

function debug_fopen($filename, $mode) {
	global $debug;
	if ( $debug == 1 ) {
		$fp = fopen($filename, $mode);
		return $fp;
	} else {
		return false;
	}
}

function debug_fwrite($fp, $string) {
	global $debug;
	if ( $debug == 1 ) {
		fwrite($fp, $string);
	}
}

function debug_fclose($fp) {
	global $debug;
	if ( $debug == 1 ) {
		fclose($fp);
	}
}

function do_enclose( $content, $post_ID ) {
	global $wp_version, $wpdb;
	include_once (ABSPATH . WPINC . '/class-IXR.php');

	$log = debug_fopen(ABSPATH . '/enclosures.log', 'a');
	$post_links = array();
	debug_fwrite($log, 'BEGIN '.date('YmdHis', time())."\n");

	$pung = get_enclosed( $post_ID );

	$ltrs = '\w';
	$gunk = '/#~:.?+=&%@!\-';
	$punc = '.:?\-';
	$any = $ltrs . $gunk . $punc;

	preg_match_all("{\b http : [$any] +? (?= [$punc] * [^$any] | $)}x", $content, $post_links_temp);

	debug_fwrite($log, 'Post contents:');
	debug_fwrite($log, $content."\n");

	foreach($post_links_temp[0] as $link_test) :
		if ( !in_array($link_test, $pung) ) : // If we haven't pung it already
			$test = parse_url($link_test);
			if ( isset($test['query']) )
				$post_links[] = $link_test;
			elseif (($test['path'] != '/') && ($test['path'] != ''))
				$post_links[] = $link_test;
		endif;
	endforeach;

	foreach ($post_links as $url) :
		if ( $url != '' && !$wpdb->get_var("SELECT post_id FROM $wpdb->postmeta WHERE post_id = '$post_ID' AND meta_key = 'enclosure' AND meta_value LIKE ('$url%')") ) {
			if ( $headers = wp_get_http_headers( $url) ) {
				$len = (int) $headers['content-length'];
				$type = $wpdb->escape( $headers['content-type'] );
				$allowed_types = array( 'video', 'audio' );
				if ( in_array( substr( $type, 0, strpos( $type, "/" ) ), $allowed_types ) ) {
					$meta_value = "$url\n$len\n$type\n";
					$wpdb->query( "INSERT INTO `$wpdb->postmeta` ( `post_id` , `meta_key` , `meta_value` )
					VALUES ( '$post_ID', 'enclosure' , '$meta_value')" );
				}
			}
		}
	endforeach;
}

function wp_get_http_headers( $url, $red = 1 ) {
	global $wp_version;
	@set_time_limit( 60 );

	if ( $red > 5 )
		 return false;

	$parts = parse_url( $url );
	$file = $parts['path'] . ($parts['query'] ? '?'.$parts['query'] : '');
	$host = $parts['host'];
	if ( !isset( $parts['port'] ) )
		$parts['port'] = 80;

	$head = "HEAD $file HTTP/1.1\r\nHOST: $host\r\nUser-Agent: WordPress/" . $wp_version . "\r\n\r\n";

	$fp = @fsockopen($host, $parts['port'], $err_num, $err_msg, 3);
	if ( !$fp )
		return false;

	$response = '';
	fputs( $fp, $head );
	while ( !feof( $fp ) && strpos( $response, "\r\n\r\n" ) == false )
		$response .= fgets( $fp, 2048 );
	fclose( $fp );
	preg_match_all('/(.*?): (.*)\r/', $response, $matches);
	$count = count($matches[1]);
	for ( $i = 0; $i < $count; $i++) {
		$key = strtolower($matches[1][$i]);
		$headers["$key"] = $matches[2][$i];
	}

	preg_match('/.*([0-9]{3}).*/', $response, $return);
	$headers['response'] = $return[1]; // HTTP response code eg 204, 200, 404

		$code = $headers['response'];
		if ( ('302' == $code || '301' == $code) && isset($headers['location']) )
				return wp_get_http_headers( $headers['location'], ++$red );

	return $headers;
}

function is_new_day() {
	global $day, $previousday;
	if ( $day != $previousday ) {
		return(1);
	} else {
		return(0);
	}
}

function update_post_cache(&$posts) {
	global $post_cache, $blog_id;

	if ( !$posts )
		return;

	for ($i = 0; $i < count($posts); $i++) {
		$post_cache[$blog_id][$posts[$i]->ID] = &$posts[$i];
	}
}

function clean_post_cache($id) {
	global $post_cache, $post_meta_cache, $category_cache, $blog_id;

	if ( isset( $post_cache[$blog_id][$id] ) )
		unset( $post_cache[$blog_id][$id] );

	if ( isset ($post_meta_cache[$blog_id][$id] ) )
		unset( $post_meta_cache[$blog_id][$id] );

	if ( isset( $category_cache[$blog_id][$id]) )
		unset ( $category_cache[$blog_id][$id] );
}

function update_page_cache(&$pages) {
	global $page_cache, $blog_id;

	if ( !$pages )
		return;

	for ($i = 0; $i < count($pages); $i++) {
		$page_cache[$blog_id][$pages[$i]->ID] = &$pages[$i];
		wp_cache_add($pages[$i]->ID, $pages[$i], 'pages');
	}
}

function clean_page_cache($id) {
	global $page_cache, $blog_id;

	if ( isset( $page_cache[$blog_id][$id] ) )
		unset( $page_cache[$blog_id][$id] );

	wp_cache_delete($id, 'pages');
	wp_cache_delete( 'all_page_ids', 'pages' );
	wp_cache_delete( 'get_pages', 'page' );
}

function update_post_category_cache($post_ids) {
	global $wpdb, $category_cache, $blog_id;

	if ( empty($post_ids) )
		return;

	if ( is_array($post_ids) )
		$post_id_list = implode(',', $post_ids);

	$post_id_array = (array) explode(',', $post_ids);
	$count = count( $post_id_array);
	for ( $i = 0; $i < $count; $i++ ) {
		$post_id = $post_id_array[ $i ];
		if ( isset( $category_cache[$blog_id][$post_id] ) ) {
			unset( $post_id_array[ $i ] );
			continue;
		}
	}
	if ( count( $post_id_array ) == 0 )
		return;
	$post_id_list = join( ',', $post_id_array ); // with already cached stuff removed

	$dogs = $wpdb->get_results("SELECT post_id, category_id FROM $wpdb->post2cat WHERE post_id IN ($post_id_list)");

	if ( empty($dogs) )
		return;

	foreach ($dogs as $catt)
		$category_cache[$blog_id][$catt->post_id][$catt->category_id] = &get_category($catt->category_id);
}

function update_post_caches(&$posts) {
	global $post_cache, $category_cache, $post_meta_cache;
	global $wpdb, $blog_id;

	// No point in doing all this work if we didn't match any posts.
	if ( !$posts )
		return;

	// Get the categories for all the posts
	for ($i = 0; $i < count($posts); $i++) {
		$post_id_array[] = $posts[$i]->ID;
		$post_cache[$blog_id][$posts[$i]->ID] = &$posts[$i];
	}

	$post_id_list = implode(',', $post_id_array);

	update_post_category_cache($post_id_list);

	update_postmeta_cache($post_id_list);
}

function update_postmeta_cache($post_id_list = '') {
	global $wpdb, $post_meta_cache, $blog_id;

	// We should validate this comma-separated list for the upcoming SQL query
	$post_id_list = preg_replace('|[^0-9,]|', '', $post_id_list);

	if ( empty( $post_id_list ) )
		return false;

	// we're marking each post as having its meta cached (with no keys... empty array), to prevent posts with no meta keys from being queried again
	// any posts that DO have keys will have this empty array overwritten with a proper array, down below
	$post_id_array = (array) explode(',', $post_id_list);
	$count = count( $post_id_array);
	for ( $i = 0; $i < $count; $i++ ) {
		$post_id = $post_id_array[ $i ];
		if ( isset( $post_meta_cache[$blog_id][$post_id] ) ) { // If the meta is already cached
			unset( $post_id_array[ $i ] );
			continue;
		}
		$post_meta_cache[$blog_id][$post_id] = array();
	}
	if ( count( $post_id_array ) == 0 )
		return;
	$post_id_list = join( ',', $post_id_array ); // with already cached stuff removeds

	// Get post-meta info
	if ( $meta_list = $wpdb->get_results("SELECT post_id, meta_key, meta_value FROM $wpdb->postmeta WHERE post_id IN($post_id_list) ORDER BY post_id, meta_key", ARRAY_A) ) {
		// Change from flat structure to hierarchical:
		if ( !isset($post_meta_cache) )
			$post_meta_cache[$blog_id] = array();

		foreach ($meta_list as $metarow) {
			$mpid = (int) $metarow['post_id'];
			$mkey = $metarow['meta_key'];
			$mval = $metarow['meta_value'];

			// Force subkeys to be array type:
			if ( !isset($post_meta_cache[$blog_id][$mpid]) || !is_array($post_meta_cache[$blog_id][$mpid]) )
				$post_meta_cache[$blog_id][$mpid] = array();
			if ( !isset($post_meta_cache[$blog_id][$mpid]["$mkey"]) || !is_array($post_meta_cache[$blog_id][$mpid]["$mkey"]) )
				$post_meta_cache[$blog_id][$mpid]["$mkey"] = array();

			// Add a value to the current pid/key:
			$post_meta_cache[$blog_id][$mpid][$mkey][] = $mval;
		}
	}
}

function update_category_cache() {
	return true;
}

function clean_category_cache($id) {
	wp_cache_delete($id, 'category');
	wp_cache_delete('all_category_ids', 'category');
	wp_cache_delete('get_categories', 'category');
}

/*
add_query_arg: Returns a modified querystring by adding
a single key & value or an associative array.
Setting a key value to emptystring removes the key.
Omitting oldquery_or_uri uses the $_SERVER value.

Parameters:
add_query_arg(newkey, newvalue, oldquery_or_uri) or
add_query_arg(associative_array, oldquery_or_uri)
*/
function add_query_arg() {
	$ret = '';
	if ( is_array(func_get_arg(0)) ) {
		if ( @func_num_args() < 2 || '' == @func_get_arg(1) )
			$uri = $_SERVER['REQUEST_URI'];
		else
			$uri = @func_get_arg(1);
	} else {
		if ( @func_num_args() < 3 || '' == @func_get_arg(2) )
			$uri = $_SERVER['REQUEST_URI'];
		else
			$uri = @func_get_arg(2);
	}

	if ( $frag = strstr($uri, '#') )
		$uri = substr($uri, 0, -strlen($frag));
	else
		$frag = '';

	if ( preg_match('|^https?://|i', $uri, $matches) ) {
		$protocol = $matches[0];
		$uri = substr($uri, strlen($protocol));
	} else {
		$protocol = '';
	}

	if (strpos($uri, '?') !== false) {
		$parts = explode('?', $uri, 2);
		if ( 1 == count($parts) ) {
			$base = '?';
			$query = $parts[0];
		} else {
			$base = $parts[0] . '?';
			$query = $parts[1];
		}
	} elseif (!empty($protocol) || strpos($uri, '/') !== false) {
		$base = $uri . '?';
		$query = '';
	} else {
		$base = '';
		$query = $uri;
	}

	parse_str($query, $qs);
	if ( is_array(func_get_arg(0)) ) {
		$kayvees = func_get_arg(0);
		$qs = array_merge($qs, $kayvees);
	} else {
		$qs[func_get_arg(0)] = func_get_arg(1);
	}

	foreach($qs as $k => $v) {
		if ( $v !== FALSE ) {
			if ( $ret != '' )
				$ret .= '&';
			if ( empty($v) && !preg_match('|[?&]' . preg_quote($k, '|') . '=|', $query) )
				$ret .= $k;
			else
				$ret .= "$k=$v";
		}
	}
	$ret = $protocol . $base . $ret . $frag;
	if ( get_magic_quotes_gpc() )
		$ret = stripslashes($ret); // parse_str() adds slashes if magicquotes is on.  See: http://php.net/parse_str
	return trim($ret, '?');
}

/*
remove_query_arg: Returns a modified querystring by removing
a single key or an array of keys.
Omitting oldquery_or_uri uses the $_SERVER value.

Parameters:
remove_query_arg(removekey, [oldquery_or_uri]) or
remove_query_arg(removekeyarray, [oldquery_or_uri])
*/

function remove_query_arg($key, $query='') {
	if ( is_array($key) ) { // removing multiple keys
		foreach ( (array) $key as $k )
			$query = add_query_arg($k, FALSE, $query);
		return $query;
	}
	return add_query_arg($key, FALSE, $query);
}

function add_magic_quotes($array) {
	global $wpdb;

	foreach ($array as $k => $v) {
		if ( is_array($v) ) {
			$array[$k] = add_magic_quotes($v);
		} else {
			$array[$k] = $wpdb->escape($v);
		}
	}
	return $array;
}

function wp_remote_fopen( $uri ) {
	$timeout = 10;
	$parsed_url = @parse_url($uri);

	if ( !$parsed_url || !is_array($parsed_url) )
		return false;

	if ( !isset($parsed_url['scheme']) || !in_array($parsed_url['scheme'], array('http','https')) )
		$uri = 'http://' . $uri;

	if ( ini_get('allow_url_fopen') ) {
		$fp = @fopen( $uri, 'r' );
		if ( !$fp )
			return false;

		//stream_set_timeout($fp, $timeout); // Requires php 4.3
		$linea = '';
		while( $remote_read = fread($fp, 4096) )
			$linea .= $remote_read;
		fclose($fp);
		return $linea;
	} else if ( function_exists('curl_init') ) {
		$handle = curl_init();
		curl_setopt ($handle, CURLOPT_URL, $uri);
		curl_setopt ($handle, CURLOPT_CONNECTTIMEOUT, 1);
		curl_setopt ($handle, CURLOPT_RETURNTRANSFER, 1);
		curl_setopt ($handle, CURLOPT_TIMEOUT, $timeout);
		$buffer = curl_exec($handle);
		curl_close($handle);
		return $buffer;
	} else {
		return false;
	}
}

function wp($query_vars = '') {
	global $wp;

	$wp->main($query_vars);
}

function status_header( $header ) {
	if ( 200 == $header )
		$text = 'OK';
	elseif ( 301 == $header )
		$text = 'Moved Permanently';
	elseif ( 302 == $header )
		$text = 'Moved Temporarily';
	elseif ( 304 == $header )
		$text = 'Not Modified';
	elseif ( 404 == $header )
		$text = 'Not Found';
	elseif ( 410 == $header )
		$text = 'Gone';

	if ( version_compare(phpversion(), '4.3.0', '>=') )
		@header("HTTP/1.1 $header $text", true, $header);
	else
		@header("HTTP/1.1 $header $text");
}

function nocache_headers() {
	@ header('Expires: Wed, 11 Jan 1984 05:00:00 GMT');
	@ header('Last-Modified: ' . gmdate('D, d M Y H:i:s') . ' GMT');
	@ header('Cache-Control: no-cache, must-revalidate, max-age=0');
	@ header('Pragma: no-cache');
}

function cache_javascript_headers() {
	$expiresOffset = 864000; // 10 days
	header("Content-type: text/javascript; charset=" . get_bloginfo('charset'));
	header("Vary: Accept-Encoding"); // Handle proxies
	header("Expires: " . gmdate("D, d M Y H:i:s", time() + $expiresOffset) . " GMT");
}

function get_num_queries() {
	global $wpdb;
	return $wpdb->num_queries;
}

function bool_from_yn($yn) {
		if ($yn == 'Y') return 1;
		return 0;
}

function do_feed() {
	global $wp_query;

	$feed = get_query_var('feed');

	// Remove the pad, if present.
	$feed = preg_replace('/^_+/', '', $feed);

	if ( $feed == '' || $feed == 'feed' )
		$feed = 'rss2';

	$hook = 'do_feed_' . $feed;
	do_action($hook, $wp_query->is_comment_feed);
}

function do_feed_rdf() {
	load_template(ABSPATH . WPINC . '/feed-rdf.php');
}

function do_feed_rss() {
	load_template(ABSPATH . WPINC . '/feed-rss.php');
}

function do_feed_rss2($for_comments) {
	if ( $for_comments ) {
		load_template(ABSPATH . WPINC . '/feed-rss2-comments.php');
	} else {
		load_template(ABSPATH . WPINC . '/feed-rss2.php');
	}
}

function do_feed_atom($for_comments) {
	if ($for_comments) {
		load_template(ABSPATH . WPINC . '/feed-atom-comments.php');
	} else {
		load_template(ABSPATH . WPINC . '/feed-atom.php');
	}
}

function do_robots() {
	global $current_blog;
	do_action('do_robotstxt');

	if ( '0' == $current_blog->public ) {
		echo "User-agent: *\n";
		echo "Disallow: /\n";
	} else {
		echo "User-agent: *\n";
		echo "Disallow:\n";
	}
}

function is_blog_installed() {
	global $wpdb;
	$wpdb->hide_errors();
	$installed = $wpdb->get_var("SELECT option_value FROM $wpdb->options WHERE option_name = 'siteurl'");
	$wpdb->show_errors();
	return $installed;
}

function wp_nonce_url($actionurl, $action = -1) {
	return wp_specialchars(add_query_arg('_wpnonce', wp_create_nonce($action), $actionurl));
}

function wp_nonce_field($action = -1, $name = "_wpnonce", $referer = true) {
	$name = attribute_escape($name);
	echo '<input type="hidden" name="' . $name . '" value="' . wp_create_nonce($action) . '" />';
	if ( $referer )
		wp_referer_field();
}

function wp_referer_field() {
	$ref = attribute_escape($_SERVER['REQUEST_URI']);
	echo '<input type="hidden" name="_wp_http_referer" value="'. $ref . '" />';
	if ( wp_get_original_referer() ) {
		$original_ref = attribute_escape(stripslashes(wp_get_original_referer()));
		echo '<input type="hidden" name="_wp_original_http_referer" value="'. $original_ref . '" />';
	}
}

function wp_original_referer_field() {
	echo '<input type="hidden" name="_wp_original_http_referer" value="' . attribute_escape(stripslashes($_SERVER['REQUEST_URI'])) . '" />';
}

function wp_get_referer() {
	foreach ( array($_REQUEST['_wp_http_referer'], $_SERVER['HTTP_REFERER']) as $ref )
		if ( !empty($ref) )
			return $ref;
	return false;
}

function wp_get_original_referer() {
	if ( !empty($_REQUEST['_wp_original_http_referer']) )
		return $_REQUEST['_wp_original_http_referer'];
	return false;
}

function wp_mkdir_p($target) {
	// from php.net/mkdir user contributed notes
	if (file_exists($target)) {
		if (! @ is_dir($target))
			return false;
		else
			return true;
	}

	// Attempting to create the directory may clutter up our display.
	if (@ mkdir($target)) {
		$stat = @ stat(dirname($target));
		$dir_perms = $stat['mode'] & 0007777;  // Get the permission bits.
		@ chmod($target, $dir_perms);
		return true;
	} else {
		if ( is_dir(dirname($target)) )
			return false;
	}

	// If the above failed, attempt to create the parent node, then try again.
	if (wp_mkdir_p(dirname($target)))
		return wp_mkdir_p($target);

	return false;
}

// Returns an array containing the current upload directory's path and url, or an error message.
function wp_upload_dir() {
	$siteurl = get_option('siteurl');
	//prepend ABSPATH to $dir and $siteurl to $url if they're not already there
	$path = str_replace(ABSPATH, '', trim(get_option('upload_path')));
	$dir = ABSPATH . $path;
	$url = trailingslashit($siteurl) . $path;

	if ( $dir == ABSPATH ) { //the option was empty
		$dir = ABSPATH . 'wp-content/uploads';
	}

	if ( defined('UPLOADS') ) {
		$dir = ABSPATH . UPLOADS;
		$url = trailingslashit($siteurl) . UPLOADS;
	}

	if ( get_option('uploads_use_yearmonth_folders')) {
		// Generate the yearly and monthly dirs
		$time = current_time( 'mysql' );
		$y = substr( $time, 0, 4 );
		$m = substr( $time, 5, 2 );
		$dir = $dir . "/$y/$m";
		$url = $url . "/$y/$m";
	}

	// Make sure we have an uploads dir
	if ( ! wp_mkdir_p( $dir ) ) {
		$message = sprintf(__('Unable to create directory %s. Is its parent directory writable by the server?'), $dir);
		return array('error' => $message);
	}

		$uploads = array('path' => $dir, 'url' => $url, 'error' => false);
	return apply_filters('upload_dir', $uploads);
}

function wp_upload_bits($name, $type, $bits) {
	if ( empty($name) )
		return array('error' => __("Empty filename"));

	$wp_filetype = wp_check_filetype($name);
	if ( !$wp_filetype['ext'] )
		return array('error' => __("Invalid file type"));

	$upload = wp_upload_dir();

	if ( $upload['error'] !== false )
		return $upload;

	$number = '';
	$filename = $name;
	$path_parts = pathinfo($filename);
	$ext = $path_parts['extension'];
	if ( empty($ext) )
		$ext = '';
	else
		$ext = ".$ext";
	while ( file_exists($upload['path'] . "/$filename") ) {
		if ( '' == "$number$ext" )
			$filename = $filename . ++$number . $ext;
		else
			$filename = str_replace("$number$ext", ++$number . $ext, $filename);
	}

	$new_file = $upload['path'] . "/$filename";
	if ( ! wp_mkdir_p( dirname($new_file) ) ) {
		$message = sprintf(__('Unable to create directory %s. Is its parent directory writable by the server?'), dirname($new_file));
		return array('error' => $message);
	}

	$ifp = @ fopen($new_file, 'wb');
	if ( ! $ifp )
		return array('error' => sprintf(__('Could not write file %s'), $new_file));

	$success = @ fwrite($ifp, $bits);
	fclose($ifp);
	// Set correct file permissions
	$stat = @ stat(dirname($new_file));
	$perms = $stat['mode'] & 0007777;
	$perms = $perms & 0000666;
	@ chmod($new_file, $perms);

	// Compute the URL
	$url = $upload['url'] . "/$filename";

	return array('file' => $new_file, 'url' => $url, 'error' => false);
}

function wp_check_filetype($filename, $mimes = null) {
	// Accepted MIME types are set here as PCRE unless provided.
	$mimes = is_array($mimes) ? $mimes : apply_filters('upload_mimes', array (
		'jpg|jpeg|jpe' => 'image/jpeg',
		'gif' => 'image/gif',
		'png' => 'image/png',
		'bmp' => 'image/bmp',
		'tif|tiff' => 'image/tiff',
		'ico' => 'image/x-icon',
		'asf|asx|wax|wmv|wmx' => 'video/asf',
		'avi' => 'video/avi',
		'mov|qt' => 'video/quicktime',
		'mpeg|mpg|mpe' => 'video/mpeg',
		'txt|c|cc|h' => 'text/plain',
		'rtx' => 'text/richtext',
		'css' => 'text/css',
		'htm|html' => 'text/html',
		'mp3|mp4' => 'audio/mpeg',
		'ra|ram' => 'audio/x-realaudio',
		'wav' => 'audio/wav',
		'ogg' => 'audio/ogg',
		'mid|midi' => 'audio/midi',
		'wma' => 'audio/wma',
		'rtf' => 'application/rtf',
		'js' => 'application/javascript',
		'pdf' => 'application/pdf',
		'doc' => 'application/msword',
		'pot|pps|ppt' => 'application/vnd.ms-powerpoint',
		'wri' => 'application/vnd.ms-write',
		'xla|xls|xlt|xlw' => 'application/vnd.ms-excel',
		'mdb' => 'application/vnd.ms-access',
		'mpp' => 'application/vnd.ms-project',
		'swf' => 'application/x-shockwave-flash',
		'class' => 'application/java',
		'tar' => 'application/x-tar',
		'zip' => 'application/zip',
		'gz|gzip' => 'application/x-gzip',
		'exe' => 'application/x-msdownload'
	));

	$type = false;
	$ext = false;

	foreach ($mimes as $ext_preg => $mime_match) {
		$ext_preg = '!\.(' . $ext_preg . ')$!i';
		if ( preg_match($ext_preg, $filename, $ext_matches) ) {
			$type = $mime_match;
			$ext = $ext_matches[1];
			break;
		}
	}

	return compact('ext', 'type');
}

function wp_explain_nonce($action) {
	if ( $action !== -1 && preg_match('/([a-z]+)-([a-z]+)(_(.+))?/', $action, $matches) ) {
		$verb = $matches[1];
		$noun = $matches[2];

		$trans = array();
		$trans['update']['attachment'] = array(__('Are you sure you want to edit this attachment: &quot;%s&quot;?'), 'get_the_title');

		$trans['add']['category'] = array(__('Are you sure you want to add this category?'), false);
		$trans['delete']['category'] = array(__('Are you sure you want to delete this category: &quot;%s&quot;?'), 'get_catname');
		$trans['update']['category'] = array(__('Are you sure you want to edit this category: &quot;%s&quot;?'), 'get_catname');

		$trans['delete']['comment'] = array(__('Are you sure you want to delete this comment: &quot;%s&quot;?'), 'use_id');
		$trans['unapprove']['comment'] = array(__('Are you sure you want to unapprove this comment: &quot;%s&quot;?'), 'use_id');
		$trans['approve']['comment'] = array(__('Are you sure you want to approve this comment: &quot;%s&quot;?'), 'use_id');
		$trans['update']['comment'] = array(__('Are you sure you want to edit this comment: &quot;%s&quot;?'), 'use_id');
		$trans['bulk']['comments'] = array(__('Are you sure you want to bulk modify comments?'), false);
		$trans['moderate']['comments'] = array(__('Are you sure you want to moderate comments?'), false);

		$trans['add']['bookmark'] = array(__('Are you sure you want to add this bookmark?'), false);
		$trans['delete']['bookmark'] = array(__('Are you sure you want to delete this bookmark: &quot;%s&quot;?'), 'use_id');
		$trans['update']['bookmark'] = array(__('Are you sure you want to edit this bookmark: &quot;%s&quot;?'), 'use_id');
		$trans['bulk']['bookmarks'] = array(__('Are you sure you want to bulk modify bookmarks?'), false);

		$trans['add']['page'] = array(__('Are you sure you want to add this page?'), false);
		$trans['delete']['page'] = array(__('Are you sure you want to delete this page: &quot;%s&quot;?'), 'get_the_title');
		$trans['update']['page'] = array(__('Are you sure you want to edit this page: &quot;%s&quot;?'), 'get_the_title');

		$trans['edit']['plugin'] = array(__('Are you sure you want to edit this plugin file: &quot;%s&quot;?'), 'use_id');
		$trans['activate']['plugin'] = array(__('Are you sure you want to activate this plugin: &quot;%s&quot;?'), 'use_id');
		$trans['deactivate']['plugin'] = array(__('Are you sure you want to deactivate this plugin: &quot;%s&quot;?'), 'use_id');

		$trans['add']['post'] = array(__('Are you sure you want to add this post?'), false);
		$trans['delete']['post'] = array(__('Are you sure you want to delete this post: &quot;%s&quot;?'), 'get_the_title');
		$trans['update']['post'] = array(__('Are you sure you want to edit this post: &quot;%s&quot;?'), 'get_the_title');

		$trans['add']['user'] = array(__('Are you sure you want to add this user?'), false);
		$trans['delete']['users'] = array(__('Are you sure you want to delete users?'), false);
		$trans['bulk']['users'] = array(__('Are you sure you want to bulk modify users?'), false);
		$trans['update']['user'] = array(__('Are you sure you want to edit this user: &quot;%s&quot;?'), 'get_author_name');
		$trans['update']['profile'] = array(__('Are you sure you want to modify the profile for: &quot;%s&quot;?'), 'get_author_name');

		$trans['update']['options'] = array(__('Are you sure you want to edit your settings?'), false);
		$trans['update']['permalink'] = array(__('Are you sure you want to change your permalink structure to: %s?'), 'use_id');
		$trans['edit']['file'] = array(__('Are you sure you want to edit this file: &quot;%s&quot;?'), 'use_id');
		$trans['edit']['theme'] = array(__('Are you sure you want to edit this theme file: &quot;%s&quot;?'), 'use_id');
		$trans['switch']['theme'] = array(__('Are you sure you want to switch to this theme: &quot;%s&quot;?'), 'use_id');

		if ( isset($trans[$verb][$noun]) ) {
			if ( !empty($trans[$verb][$noun][1]) ) {
				$lookup = $trans[$verb][$noun][1];
				$object = $matches[4];
				if ( 'use_id' != $lookup )
					$object = call_user_func($lookup, $object);
				return sprintf($trans[$verb][$noun][0], $object);
			} else {
				return $trans[$verb][$noun][0];
			}
		}
	}

	return apply_filters( 'explain_nonce_' . $verb . '-' . $noun, __('Are you sure you want to do this?'), $matches[4] );
}

function wp_nonce_ays($action) {
	global $pagenow, $menu, $submenu, $parent_file, $submenu_file;

	$adminurl = get_option('siteurl') . '/wp-admin';
	if ( wp_get_referer() )
		$adminurl = clean_url(wp_get_referer());

	$title = __('WordPress Confirmation');
	// Remove extra layer of slashes.
	$_POST   = stripslashes_deep($_POST  );
	if ( $_POST ) {
		$q = http_build_query($_POST);
		$q = explode( ini_get('arg_separator.output'), $q);
		$html .= "\t<form method='post' action='" . attribute_escape($pagenow) . "'>\n";
		foreach ( (array) $q as $a ) {
			$v = substr(strstr($a, '='), 1);
			$k = substr($a, 0, -(strlen($v)+1));
			$html .= "\t\t<input type='hidden' name='" . attribute_escape(urldecode($k)) . "' value='" . attribute_escape(urldecode($v)) . "' />\n";
		}
		$html .= "\t\t<input type='hidden' name='_wpnonce' value='" . wp_create_nonce($action) . "' />\n";
		$html .= "\t\t<div id='message' class='confirm fade'>\n\t\t<p>" . wp_specialchars(wp_explain_nonce($action)) . "</p>\n\t\t<p><a href='$adminurl'>" . __('No') . "</a> <input type='submit' value='" . __('Yes') . "' /></p>\n\t\t</div>\n\t</form>\n";
	} else {
		$html .= "\t<div id='message' class='confirm fade'>\n\t<p>" . wp_specialchars(wp_explain_nonce($action)) . "</p>\n\t<p><a href='$adminurl'>" . __('No') . "</a> <a href='" . clean_url(add_query_arg( '_wpnonce', wp_create_nonce($action), $_SERVER['REQUEST_URI'] )) . "'>" . __('Yes') . "</a></p>\n\t</div>\n";
	}
	$html .= "</body>\n</html>";
	wp_die($html, $title);
}

function wp_die( $message, $title = '' ) {
	global $wp_locale;

	if ( is_wp_error( $message ) ) {
		if ( empty($title) ) {
			$error_data = $message->get_error_data();
			if ( is_array($error_data) && isset($error_data['title']) )
				$title = $error_data['title'];
		}
		$errors = $message->get_error_messages();
		switch ( count($errors) ) :
		case 0 :
			$message = '';
			break;
		case 1 :
			$message = "<p>{$errors[0]}</p>";
			break;
		default :
			$message = "<ul>\n\t\t<li>" . join( "</li>\n\t\t<li>", $errors ) . "</li>\n\t</ul>";
			break;
		endswitch;
	} elseif ( is_string($message) ) {
		$message = "<p>$message</p>";
	}

	header('Content-Type: text/html; charset=utf-8');

	if ( empty($title) )
		$title = __('WordPress &rsaquo; Error');

	if (strpos($_SERVER['PHP_SELF'], 'wp-admin') !== false)
		$admin_dir = '';
	else
		$admin_dir = 'wp-admin/';

?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" <?php if ( function_exists('language_attributes') ) language_attributes(); ?>>
<head>
	<title><?php echo $title ?></title>
	<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
	<link rel="stylesheet" href="<?php echo $admin_dir; ?>install.css" type="text/css" />
<?php if ( ('rtl' == $wp_locale->text_direction) ) : ?>
	<link rel="stylesheet" href="<?php echo $admin_dir; ?>install-rtl.css" type="text/css" />
<?php endif; ?>
</head>
<body>
	<h1 id="logo"><img alt="WordPress" src="<?php echo $admin_dir; ?>images/wordpress-logo.png" /></h1>
	<?php echo $message; ?>

</body>
</html>
<?php
	die();
}

function _mce_set_direction() {
	global $wp_locale;

	if ('rtl' == $wp_locale->text_direction) {
		echo 'directionality : "rtl" ,';
		echo 'theme_advanced_toolbar_align : "right" ,';
	}
}

function _mce_load_rtl_plugin($input) {
	global $wp_locale;

	if ('rtl' == $wp_locale->text_direction)
		$input[] = 'directionality';

	return $input;
}

function _mce_add_direction_buttons($input) {
	global $wp_locale;

	if ('rtl' == $wp_locale->text_direction) {
		$new_buttons = array('separator', 'ltr', 'rtl');
		$input = array_merge($input, $new_buttons);
	}

	return $input;
}

function smilies_init() {
	global $wpsmiliestrans, $wp_smiliessearch, $wp_smiliesreplace;

	// don't bother setting up smilies if they are disabled
	if ( !get_option('use_smilies') )
		return;

	if (!isset($wpsmiliestrans)) {
		$wpsmiliestrans = array(
		':mrgreen:' => 'icon_mrgreen.gif',
		':neutral:' => 'icon_neutral.gif',
		':twisted:' => 'icon_twisted.gif',
		  ':arrow:' => 'icon_arrow.gif',
		  ':shock:' => 'icon_eek.gif',
		  ':smile:' => 'icon_smile.gif',
		    ':???:' => 'icon_confused.gif',
		   ':cool:' => 'icon_cool.gif',
		   ':evil:' => 'icon_evil.gif',
		   ':grin:' => 'icon_biggrin.gif',
		   ':idea:' => 'icon_idea.gif',
		   ':oops:' => 'icon_redface.gif',
		   ':razz:' => 'icon_razz.gif',
		   ':roll:' => 'icon_rolleyes.gif',
		   ':wink:' => 'icon_wink.gif',
		    ':cry:' => 'icon_cry.gif',
		    ':eek:' => 'icon_surprised.gif',
		    ':lol:' => 'icon_lol.gif',
		    ':mad:' => 'icon_mad.gif',
		    ':sad:' => 'icon_sad.gif',
		      '8-)' => 'icon_cool.gif',
		      '8-O' => 'icon_eek.gif',
		      ':-(' => 'icon_sad.gif',
		      ':-)' => 'icon_smile.gif',
		      ':-?' => 'icon_confused.gif',
		      ':-D' => 'icon_biggrin.gif',
		      ':-P' => 'icon_razz.gif',
		      ':-o' => 'icon_surprised.gif',
		      ':-x' => 'icon_mad.gif',
		      ':-|' => 'icon_neutral.gif',
		      ';-)' => 'icon_wink.gif',
		       '8)' => 'icon_cool.gif',
		       '8O' => 'icon_eek.gif',
		       ':(' => 'icon_sad.gif',
		       ':)' => 'icon_smile.gif',
		       ':?' => 'icon_confused.gif',
		       ':D' => 'icon_biggrin.gif',
		       ':P' => 'icon_razz.gif',
		       ':o' => 'icon_surprised.gif',
		       ':x' => 'icon_mad.gif',
		       ':|' => 'icon_neutral.gif',
		       ';)' => 'icon_wink.gif',
		      ':!:' => 'icon_exclaim.gif',
		      ':?:' => 'icon_question.gif',
		);
	}

	foreach ( (array) $wpsmiliestrans as $smiley => $img ) {
		$wp_smiliessearch[] = '/(\s|^)'.preg_quote($smiley, '/').'(\s|$)/';
		$smiley_masked = htmlspecialchars(trim($smiley), ENT_QUOTES);
		$wp_smiliesreplace[] = " <img src='" . get_option('siteurl') . "/wp-includes/images/smilies/$img' alt='$smiley_masked' class='wp-smiley' /> ";
	}
}

?>
' href='#n7456'>7456 7457 7458 7459 7460 7461 7462 7463 7464 7465 7466 7467 7468 7469 7470 7471 7472 7473 7474 7475 7476 7477 7478 7479 7480 7481 7482 7483 7484 7485 7486 7487 7488 7489 7490 7491 7492 7493 7494 7495 7496 7497 7498 7499 7500 7501 7502 7503 7504 7505 7506 7507 7508 7509 7510 7511 7512 7513 7514 7515 7516 7517 7518 7519 7520 7521 7522 7523 7524 7525 7526 7527 7528 7529 7530 7531 7532 7533 7534 7535 7536 7537 7538 7539 7540 7541 7542 7543 7544 7545 7546 7547 7548 7549 7550 7551 7552 7553 7554 7555 7556 7557 7558 7559 7560 7561 7562 7563 7564 7565 7566 7567 7568 7569 7570 7571 7572 7573 7574 7575 7576 7577 7578 7579 7580 7581 7582 7583 7584 7585 7586 7587 7588 7589 7590 7591 7592 7593 7594 7595 7596 7597 7598 7599 7600 7601 7602 7603 7604 7605 7606 7607 7608 7609 7610 7611 7612 7613 7614 7615 7616 7617 7618 7619 7620 7621 7622 7623 7624 7625 7626 7627 7628 7629 7630 7631 7632 7633 7634 7635 7636 7637 7638 7639 7640 7641 7642 7643 7644 7645 7646 7647 7648 7649 7650 7651 7652 7653 7654 7655 7656 7657 7658 7659 7660 7661 7662 7663 7664 7665 7666 7667 7668 7669 7670 7671 7672 7673 7674 7675 7676 7677 7678 7679 7680 7681 7682 7683 7684 7685 7686 7687 7688 7689 7690 7691 7692 7693 7694 7695 7696 7697 7698 7699 7700 7701 7702 7703 7704 7705 7706 7707 7708 7709 7710 7711 7712 7713 7714 7715 7716 7717 7718 7719 7720 7721 7722 7723 7724 7725 7726 7727 7728 7729 7730 7731 7732 7733 7734 7735 7736 7737 7738 7739 7740 7741 7742 7743 7744 7745 7746 7747 7748 7749 7750 7751 7752 7753 7754 7755 7756 7757 7758 7759 7760 7761 7762 7763 7764 7765 7766 7767 7768 7769 7770 7771 7772 7773 7774 7775 7776 7777 7778 7779 7780 7781 7782 7783 7784 7785 7786 7787 7788 7789 7790 7791 7792 7793 7794 7795 7796 7797 7798 7799 7800 7801 7802 7803 7804 7805 7806 7807 7808 7809 7810 7811 7812 7813 7814 7815 7816 7817 7818 7819 7820 7821 7822 7823 7824 7825 7826 7827 7828 7829 7830 7831 7832 7833 7834 7835 7836 7837 7838 7839 7840 7841 7842 7843 7844 7845 7846 7847 7848 7849 7850 7851 7852 7853 7854 7855 7856 7857 7858 7859 7860 7861 7862 7863 7864 7865 7866 7867 7868 7869 7870 7871 7872 7873 7874 7875 7876 7877 7878 7879 7880 7881 7882 7883 7884 7885 7886 7887 7888 7889 7890 7891 7892 7893 7894 7895 7896 7897 7898 7899 7900 7901 7902 7903 7904 7905 7906 7907 7908 7909 7910 7911 7912 7913 7914 7915 7916 7917 7918 7919 7920 7921 7922 7923 7924 7925 7926 7927 7928 7929 7930 7931 7932 7933 7934 7935 7936 7937 7938 7939 7940 7941 7942 7943 7944 7945 7946 7947 7948 7949 7950 7951 7952 7953 7954 7955 7956 7957 7958 7959 7960 7961 7962 7963 7964 7965 7966 7967 7968 7969 7970 7971 7972 7973 7974 7975 7976 7977 7978 7979 7980 7981 7982 7983 7984 7985 7986 7987 7988 7989 7990 7991 7992 7993 7994 7995 7996 7997 7998 7999 8000 8001 8002 8003 8004 8005 8006 8007 8008 8009 8010 8011 8012 8013 8014 8015 8016 8017 8018 8019 8020 8021 8022 8023 8024 8025 8026 8027 8028 8029 8030 8031 8032 8033 8034 8035 8036 8037 8038 8039 8040 8041 8042 8043 8044 8045 8046 8047 8048 8049 8050 8051 8052 8053 8054 8055 8056 8057 8058 8059 8060 8061 8062 8063 8064 8065 8066 8067 8068 8069 8070 8071 8072 8073 8074 8075 8076 8077 8078 8079 8080 8081 8082 8083 8084 8085 8086 8087 8088 8089 8090 8091 8092 8093 8094 8095 8096 8097 8098 8099 8100 8101 8102 8103 8104 8105 8106 8107 8108 8109 8110 8111 8112 8113 8114 8115 8116 8117 8118 8119 8120 8121 8122 8123 8124 8125 8126 8127 8128 8129 8130 8131 8132 8133 8134 8135 8136 8137 8138 8139 8140 8141 8142 8143 8144 8145 8146 8147 8148 8149 8150 8151 8152 8153 8154 8155 8156 8157 8158 8159 8160 8161 8162 8163 8164 8165 8166 8167 8168 8169 8170 8171 8172 8173 8174 8175 8176 8177 8178 8179 8180 8181 8182 8183 8184 8185 8186 8187 8188 8189 8190 8191 8192 8193 8194 8195 8196 8197 8198 8199 8200 8201 8202 8203 8204 8205 8206 8207 8208 8209 8210 8211 8212 8213 8214 8215 8216 8217 8218 8219 8220 8221 8222 8223 8224 8225 8226 8227 8228 8229 8230 8231 8232 8233 8234 8235 8236 8237 8238 8239 8240 8241 8242 8243 8244 8245 8246 8247 8248 8249 8250 8251 8252 8253 8254 8255 8256 8257 8258 8259 8260 8261 8262 8263 8264 8265 8266 8267 8268 8269 8270 8271 8272 8273 8274 8275 8276 8277 8278 8279 8280 8281 8282 8283 8284 8285 8286 8287 8288 8289 8290 8291 8292 8293 8294 8295 8296 8297 8298 8299 8300 8301 8302 8303 8304 8305 8306 8307 8308 8309 8310 8311 8312 8313 8314 8315 8316 8317 8318 8319 8320 8321 8322 8323 8324 8325 8326 8327 8328 8329 8330 8331 8332 8333 8334 8335 8336 8337 8338 8339 8340 8341 8342 8343 8344 8345 8346 8347 8348 8349 8350 8351 8352 8353 8354 8355 8356 8357 8358 8359 8360 8361 8362 8363 8364 8365 8366 8367 8368 8369 8370 8371 8372 8373 8374 8375 8376 8377 8378 8379 8380 8381 8382 8383 8384 8385 8386 8387 8388 8389 8390 8391 8392 8393 8394 8395 8396 8397 8398 8399 8400 8401 8402 8403 8404 8405 8406 8407 8408 8409 8410 8411 8412 8413 8414 8415 8416 8417 8418 8419 8420 8421 8422 8423 8424 8425 8426 8427 8428 8429 8430 8431 8432 8433 8434 8435 8436 8437 8438 8439 8440 8441 8442 8443 8444 8445 8446 8447 8448 8449 8450 8451 8452 8453 8454 8455 8456 8457 8458 8459 8460 8461 8462 8463 8464 8465 8466 8467 8468 8469 8470 8471 8472 8473 8474 8475 8476 8477 8478 8479 8480 8481 8482 8483 8484 8485 8486 8487 8488 8489 8490 8491 8492 8493 8494 8495 8496 8497 8498 8499 8500 8501 8502 8503 8504 8505 8506 8507 8508 8509 8510 8511 8512 8513 8514 8515 8516 8517 8518 8519 8520 8521 8522 8523 8524 8525 8526 8527 8528 8529 8530 8531 8532 8533 8534 8535 8536 8537 8538 8539 8540 8541 8542 8543 8544 8545 8546 8547 8548 8549 8550 8551 8552 8553 8554 8555 8556 8557 8558 8559 8560 8561 8562 8563 8564 8565 8566 8567 8568 8569 8570 8571 8572 8573 8574 8575 8576 8577 8578 8579 8580 8581 8582 8583 8584 8585 8586 8587 8588 8589 8590 8591 8592 8593 8594 8595 8596 8597 8598 8599 8600 8601 8602 8603 8604 8605 8606 8607 8608 8609 8610 8611 8612 8613 8614 8615 8616 8617 8618 8619 8620 8621 8622 8623 8624 8625 8626 8627 8628 8629 8630 8631 8632 8633 8634 8635 8636 8637 8638 8639 8640 8641 8642 8643 8644 8645 8646 8647 8648 8649 8650 8651 8652 8653 8654 8655 8656 8657 8658 8659 8660 8661 8662 8663 8664 8665 8666 8667 8668 8669 8670 8671 8672 8673 8674 8675 8676 8677 8678 8679 8680 8681 8682 8683 8684 8685 8686 8687 8688 8689 8690 8691 8692 8693 8694 8695 8696 8697 8698 8699 8700 8701 8702 8703 8704 8705 8706 8707 8708 8709 8710 8711 8712 8713 8714 8715 8716 8717 8718 8719 8720 8721 8722 8723 8724 8725 8726 8727 8728 8729 8730 8731 8732 8733 8734 8735 8736 8737 8738 8739 8740 8741 8742 8743 8744 8745 8746 8747 8748 8749 8750 8751 8752 8753 8754 8755 8756 8757 8758 8759 8760 8761 8762 8763 8764 8765 8766 8767 8768 8769 8770 8771 8772 8773 8774 8775 8776 8777 8778 8779 8780 8781 8782 8783 8784 8785 8786 8787 8788 8789 8790 8791 8792 8793 8794 8795 8796 8797 8798 8799 8800 8801 8802 8803 8804 8805 8806 8807 8808 8809 8810 8811 8812 8813 8814 8815 8816 8817 8818 8819 8820 8821 8822 8823 8824 8825 8826 8827 8828 8829 8830 8831 8832 8833 8834 8835 8836 8837 8838 8839 8840 8841 8842 8843 8844 8845 8846 8847 8848 8849 8850 8851 8852 8853 8854 8855 8856 8857 8858 8859 8860 8861 8862 8863 8864 8865 8866 8867 8868 8869 8870 8871 8872 8873 8874 8875 8876 8877 8878 8879 8880 8881 8882 8883 8884 8885 8886 8887 8888 8889 8890 8891 8892 8893 8894 8895 8896 8897 8898 8899 8900 8901 8902 8903 8904 8905 8906 8907 8908 8909 8910 8911 8912 8913 8914 8915 8916 8917 8918 8919 8920 8921 8922 8923 8924 8925 8926 8927 8928 8929 8930 8931 8932 8933 8934 8935 8936 8937 8938 8939 8940 8941 8942 8943 8944 8945 8946 8947 8948 8949 8950 8951 8952 8953 8954 8955 8956 8957 8958 8959 8960 8961 8962 8963 8964 8965 8966 8967 8968 8969 8970 8971 8972 8973 8974 8975 8976 8977 8978 8979 8980 8981 8982 8983 8984 8985 8986 8987 8988 8989 8990 8991 8992 8993 8994 8995 8996 8997 8998 8999 9000 9001 9002 9003 9004 9005 9006 9007 9008 9009 9010 9011 9012 9013 9014 9015 9016 9017 9018 9019 9020 9021 9022 9023 9024 9025 9026 9027 9028 9029 9030 9031 9032 9033 9034 9035 9036 9037 9038 9039 9040 9041 9042 9043 9044 9045 9046 9047 9048 9049 9050 9051 9052 9053 9054 9055 9056 9057 9058 9059 9060 9061 9062 9063 9064 9065 9066 9067 9068 9069 9070 9071 9072 9073 9074 9075 9076 9077 9078 9079 9080 9081 9082 9083 9084 9085 9086 9087 9088 9089 9090 9091 9092 9093 9094 9095 9096 9097 9098 9099 9100 9101 9102 9103 9104 9105 9106 9107 9108 9109 9110 9111 9112 9113 9114 9115 9116 9117 9118 9119 9120 9121 9122 9123 9124 9125 9126 9127 9128 9129 9130 9131 9132 9133 9134 9135 9136 9137 9138 9139 9140 9141 9142 9143 9144 9145 9146 9147 9148 9149 9150 9151 9152 9153 9154 9155 9156 9157 9158 9159 9160 9161 9162 9163 9164 9165 9166 9167 9168 9169 9170 9171 9172 9173 9174 9175 9176 9177 9178 9179 9180 9181 9182 9183 9184 9185 9186 9187 9188 9189 9190 9191 9192 9193 9194 9195 9196 9197 9198 9199 9200 9201 9202 9203 9204 9205 9206 9207 9208 9209 9210 9211 9212 9213 9214 9215 9216 9217 9218 9219 9220 9221 9222 9223 9224 9225 9226 9227 9228 9229 9230 9231 9232 9233 9234 9235 9236 9237 9238 9239 9240 9241 9242 9243 9244 9245 9246 9247 9248 9249 9250 9251 9252 9253 9254 9255 9256 9257 9258 9259 9260 9261 9262 9263 9264 9265 9266 9267 9268 9269 9270 9271 9272 9273 9274 9275 9276 9277 9278 9279 9280 9281 9282 9283 9284 9285 9286 9287 9288 9289 9290 9291 9292 9293 9294 9295 9296 9297 9298 9299 9300 9301 9302 9303 9304 9305 9306 9307 9308 9309 9310 9311 9312 9313 9314 9315 9316 9317 9318 9319 9320 9321 9322 9323 9324 9325 9326 9327 9328 9329 9330 9331 9332 9333 9334 9335 9336 9337 9338 9339 9340 9341 9342 9343 9344 9345 9346 9347 9348 9349 9350 9351 9352 9353 9354 9355 9356 9357 9358 9359 9360 9361 9362 9363 9364 9365 9366 9367 9368 9369 9370 9371 9372 9373 9374 9375 9376 9377 9378 9379 9380 9381 9382 9383 9384 9385 9386 9387 9388 9389 9390 9391 9392 9393 9394 9395 9396 9397 9398 9399 9400 9401 9402 9403 9404 9405 9406 9407 9408 9409 9410 9411 9412 9413 9414 9415 9416 9417 9418 9419 9420 9421 9422 9423 9424 9425 9426 9427 9428 9429 9430 9431 9432 9433 9434 9435 9436 9437 9438 9439 9440 9441 9442 9443 9444 9445 9446 9447 9448 9449 9450 9451 9452 9453 9454 9455 9456 9457 9458 9459 9460 9461 9462 9463 9464 9465 9466 9467 9468 9469 9470 9471 9472 9473 9474 9475 9476 9477 9478 9479 9480 9481 9482 9483 9484 9485 9486 9487 9488 9489 9490 9491 9492 9493 9494 9495 9496 9497 9498 9499 9500 9501 9502 9503 9504 9505 9506 9507 9508 9509 9510 9511 9512 9513 9514 9515 9516 9517 9518 9519 9520 9521 9522 9523 9524 9525 9526 9527 9528 9529 9530 9531 9532 9533 9534 9535 9536 9537 9538 9539 9540 9541 9542 9543 9544 9545 9546 9547 9548 9549 9550 9551 9552 9553 9554 9555 9556 9557 9558 9559 9560 9561 9562 9563 9564 9565 9566 9567 9568 9569 9570 9571 9572 9573 9574 9575 9576 9577 9578 9579 9580 9581 9582 9583 9584 9585 9586 9587 9588 9589 9590 9591 9592 9593 9594 9595 9596 9597 9598 9599 9600 9601 9602 9603 9604 9605 9606 9607 9608 9609 9610 9611 9612 9613 9614 9615 9616 9617 9618 9619 9620 9621 9622 9623 9624 9625 9626 9627 9628 9629 9630 9631 9632 9633 9634 9635 9636 9637 9638 9639 9640 9641 9642 9643 9644 9645 9646 9647 9648 9649 9650 9651 9652 9653 9654 9655 9656 9657 9658 9659 9660 9661 9662 9663 9664 9665 9666 9667 9668 9669 9670 9671 9672 9673 9674 9675 9676 9677 9678 9679 9680 9681 9682 9683 9684 9685 9686 9687 9688 9689 9690 9691 9692 9693 9694 9695 9696 9697 9698 9699 9700 9701 9702 9703 9704 9705 9706 9707 9708 9709 9710 9711 9712 9713 9714 9715 9716 9717 9718 9719 9720 9721 9722 9723 9724 9725 9726 9727 9728 9729 9730 9731 9732 9733 9734 9735 9736 9737 9738 9739 9740 9741 9742 9743 9744 9745 9746 9747 9748 9749 9750 9751 9752 9753 9754 9755 9756 9757 9758 9759 9760 9761 9762 9763 9764 9765 9766 9767 9768 9769 9770 9771 9772 9773 9774 9775 9776 9777 9778 9779 9780 9781 9782 9783 9784 9785 9786 9787 9788 9789 9790 9791 9792 9793 9794 9795 9796 9797 9798 9799 9800 9801 9802 9803 9804 9805 9806 9807 9808 9809 9810 9811 9812 9813 9814 9815 9816 9817 9818 9819 9820 9821 9822 9823 9824 9825 9826 9827 9828 9829 9830 9831 9832 9833 9834 9835 9836 9837 9838 9839 9840 9841 9842 9843 9844 9845 9846 9847 9848 9849 9850 9851 9852 9853 9854 9855 9856 9857 9858 9859 9860 9861 9862 9863 9864 9865 9866 9867 9868 9869 9870 9871 9872 9873 9874 9875 9876 9877 9878 9879 9880 9881 9882 9883 9884 9885 9886 9887 9888 9889 9890 9891 9892 9893 9894 9895 9896 9897 9898 9899 9900 9901 9902 9903 9904 9905 9906 9907 9908 9909 9910 9911 9912 9913 9914 9915 9916 9917 9918 9919 9920 9921 9922 9923 9924 9925 9926 9927 9928 9929 9930 9931 9932 9933 9934 9935 9936 9937 9938 9939 9940 9941 9942 9943 9944 9945 9946 9947 9948 9949 9950 9951 9952 9953 9954 9955 9956 9957 9958 9959 9960 9961 9962 9963 9964 9965 9966 9967 9968 9969 9970 9971 9972 9973 9974 9975 9976 9977 9978 9979 9980 9981 9982 9983 9984 9985 9986 9987 9988 9989 9990 9991 9992 9993 9994 9995 9996 9997 9998 9999 10000 10001 10002 10003 10004 10005 10006 10007 10008 10009 10010 10011 10012 10013 10014 10015 10016 10017 10018 10019 10020 10021 10022 10023 10024 10025 10026 10027 10028 10029 10030 10031 10032 10033 10034 10035 10036 10037 10038 10039 10040 10041 10042 10043 10044 10045 10046 10047 10048 10049 10050 10051 10052 10053 10054 10055 10056 10057 10058 10059 10060 10061 10062 10063 10064 10065 10066 10067 10068 10069 10070 10071 10072 10073 10074 10075 10076 10077 10078 10079 10080 10081 10082 10083 10084 10085 10086 10087 10088 10089 10090 10091 10092 10093 10094 10095 10096 10097 10098 10099 10100 10101 10102 10103 10104 10105 10106 10107 10108 10109 10110 10111 10112 10113 10114 10115 10116 10117 10118 10119 10120 10121 10122 10123 10124 10125 10126 10127 10128 10129 10130 10131 10132 10133 10134 10135 10136 10137 10138 10139 10140 10141 10142 10143 10144 10145 10146 10147 10148 10149 10150 10151 10152 10153 10154 10155 10156 10157 10158 10159 10160 10161 10162 10163 10164 10165 10166 10167 10168 10169 10170 10171 10172 10173 10174 10175 10176 10177 10178 10179 10180 10181 10182 10183 10184 10185 10186 10187 10188 10189 10190 10191 10192 10193 10194 10195 10196 10197 10198 10199 10200 10201 10202 10203 10204 10205 10206 10207 10208 10209 10210 10211 10212 10213 10214 10215 10216 10217 10218 10219 10220 10221 10222 10223 10224 10225 10226 10227 10228 10229 10230 10231 10232 10233 10234 10235 10236 10237 10238 10239 10240 10241 10242 10243 10244 10245 10246 10247 10248 10249 10250 10251 10252 10253 10254 10255 10256 10257 10258 10259 10260 10261 10262 10263 10264 10265 10266 10267 10268 10269 10270 10271 10272 10273 10274 10275 10276 10277 10278 10279 10280 10281 10282 10283 10284 10285 10286 10287 10288 10289 10290 10291 10292 10293 10294 10295 10296 10297 10298 10299 10300 10301 10302 10303 10304 10305 10306 10307 10308 10309 10310 10311 10312 10313 10314 10315 10316 10317 10318 10319 10320 10321 10322 10323 10324 10325 10326 10327 10328 10329 10330 10331 10332 10333 10334 10335 10336 10337 10338 10339 10340 10341 10342 10343 10344 10345 10346 10347 10348 10349 10350 10351 10352 10353 10354 10355 10356 10357 10358 10359 10360 10361 10362 10363 10364 10365 10366 10367 10368 10369 10370 10371 10372 10373 10374 10375 10376 10377 10378 10379 10380 10381 10382 10383 10384 10385 10386 10387 10388 10389 10390 10391 10392 10393 10394 10395 10396 10397 10398 10399 10400 10401 10402 10403 10404 10405 10406 10407 10408 10409 10410 10411 10412 10413 10414 10415 10416 10417 10418 10419 10420 10421 10422 10423 10424 10425 10426 10427 10428 10429 10430 10431 10432 10433 10434 10435 10436 10437 10438 10439 10440 10441 10442 10443 10444 10445 10446 10447 10448 10449 10450 10451 10452 10453 10454 10455 10456 10457 10458 10459 10460 10461 10462 10463 10464 10465 10466 10467 10468 10469 10470 10471 10472 10473 10474 10475 10476 10477 10478 10479 10480 10481 10482 10483 10484 10485 10486 10487 10488 10489 10490 10491 10492 10493 10494 10495 10496 10497 10498 10499 10500 10501 10502 10503 10504 10505 10506 10507 10508 10509 10510 10511 10512 10513 10514 10515 10516 10517 10518 10519 10520 10521 10522 10523 10524 10525 10526 10527 10528 10529 10530 10531 10532 10533 10534 10535 10536 10537 10538 10539 10540 10541 10542 10543 10544 10545 10546 10547 10548 10549 10550 10551 10552 10553 10554 10555 10556 10557 10558 10559 10560 10561 10562 10563 10564 10565 10566 10567 10568 10569 10570 10571 10572 10573 10574 10575 10576 10577 10578 10579 10580 10581 10582 10583 10584 10585 10586 10587 10588 10589 10590 10591 10592 10593 10594 10595 10596 10597 10598 10599 10600 10601 10602 10603 10604 10605 10606 10607 10608 10609 10610 10611 10612 10613 10614 10615 10616 10617 10618 10619 10620 10621 10622 10623 10624 10625 10626 10627 10628 10629 10630 10631 10632 10633 10634 10635 10636 10637 10638 10639 10640 10641 10642 10643 10644 10645 10646 10647 10648 10649 10650 10651 10652 10653 10654 10655 10656 10657 10658 10659 10660 10661 10662 10663 10664 10665 10666 10667 10668 10669 10670 10671 10672 10673 10674 10675 10676 10677 10678 10679 10680 10681 10682 10683 10684 10685 10686 10687 10688 10689 10690 10691 10692 10693 10694 10695 10696 10697 10698 10699 10700 10701 10702 10703 10704 10705 10706 10707 10708 10709 10710 10711 10712 10713 10714 10715 10716 10717 10718 10719 10720 10721 10722 10723 10724 10725 10726 10727 10728 10729 10730 10731 10732 10733 10734 10735 10736 10737 10738 10739 10740 10741 10742 10743 10744 10745 10746 10747 10748 10749 10750 10751 10752 10753 10754 10755 10756 10757 10758 10759 10760 10761 10762 10763 10764 10765 10766 10767 10768 10769 10770 10771 10772 10773 10774 10775 10776 10777 10778 10779 10780 10781 10782 10783 10784 10785 10786 10787 10788 10789 10790 10791 10792 10793 10794 10795 10796 10797 10798 10799 10800 10801 10802 10803 10804 10805 10806 10807 10808 10809 10810 10811 10812 10813 10814 10815 10816 10817 10818 10819 10820 10821 10822 10823 10824 10825 10826 10827 10828 10829 10830 10831 10832 10833 10834 10835 10836 10837 10838 10839 10840 10841 10842 10843 10844 10845 10846 10847 10848 10849 10850 10851 10852 10853 10854 10855 10856 10857 10858 10859 10860 10861 10862 10863 10864 10865 10866 10867 10868 10869 10870 10871 10872 10873 10874 10875 10876 10877 10878 10879 10880 10881 10882 10883 10884 10885 10886 10887 10888 10889 10890 10891 10892 10893 10894 10895 10896 10897 10898 10899 10900 10901 10902 10903 10904 10905 10906 10907 10908 10909 10910 10911 10912 10913 10914 10915 10916 10917 10918 10919 10920 10921 10922 10923 10924 10925 10926 10927 10928 10929 10930 10931 10932 10933 10934 10935 10936 10937 10938 10939 10940 10941 10942 10943 10944 10945 10946 10947 10948 10949 10950 10951 10952 10953 10954 10955 10956 10957 10958 10959 10960 10961 10962 10963 10964 10965 10966 10967 10968 10969 10970 10971 10972 10973 10974 10975 10976 10977 10978 10979 10980 10981 10982 10983 10984 10985 10986 10987 10988 10989 10990 10991 10992 10993 10994 10995 10996 10997 10998 10999 11000 11001 11002 11003 11004 11005 11006 11007 11008 11009 11010 11011 11012 11013 11014 11015 11016 11017 11018 11019 11020 11021 11022 11023 11024 11025 11026 11027 11028 11029 11030 11031 11032 11033 11034 11035 11036 11037 11038 11039 11040 11041 11042 11043 11044 11045 11046 11047 11048 11049 11050 11051 11052 11053 11054 11055 11056 11057 11058 11059 11060 11061 11062 11063 11064 11065 11066 11067 11068 11069 11070 11071 11072 11073 11074 11075 11076 11077 11078 11079 11080 11081 11082 11083 11084 11085 11086 11087 11088 11089 11090 11091 11092 11093 11094 11095 11096 11097 11098 11099 11100 11101 11102 11103 11104 11105 11106 11107 11108 11109 11110 11111 11112 11113 11114 11115 11116 11117 11118 11119 11120 11121 11122 11123 11124 11125 11126 11127 11128 11129 11130 11131 11132 11133 11134 11135 11136 11137 11138 11139 11140 11141 11142 11143 11144 11145 11146 11147 11148 11149 11150 11151 11152 11153 11154 11155 11156 11157 11158 11159 11160 11161 11162 11163 11164 11165 11166 11167 11168 11169 11170 11171 11172 11173 11174 11175 11176 11177 11178 11179 11180 11181 11182 11183 11184 11185 11186 11187 11188 11189 11190 11191 11192 11193 11194 11195 11196 11197 11198 11199 11200 11201 11202 11203 11204 11205 11206 11207 11208 11209 11210 11211 11212 11213 11214 11215 11216 11217 11218 11219 11220 11221 11222 11223 11224 11225 11226 11227 11228 11229 11230 11231 11232 11233 11234 11235 11236 11237 11238 11239 11240 11241 11242 11243 11244 11245 11246 11247 11248 11249 11250 11251 11252 11253 11254 11255 11256 11257 11258 11259 11260 11261 11262 11263 11264 11265 11266 11267 11268 11269 11270 11271 11272 11273 11274 11275 11276 11277 11278 11279 11280 11281 11282 11283 11284 11285 11286 11287 11288 11289 11290 11291 11292 11293 11294 11295 11296 11297 11298 11299 11300 11301 11302 11303 11304 11305 11306 11307 11308 11309 11310 11311 11312 11313 11314 11315 11316 11317 11318 11319 11320 11321 11322 11323 11324 11325 11326 11327 11328 11329 11330 11331 11332 11333 11334 11335 11336 11337 11338 11339 11340 11341 11342 11343 11344 11345 11346 11347 11348 11349 11350 11351 11352 11353 11354 11355 11356 11357 11358 11359 11360 11361 11362 11363 11364 11365 11366 11367 11368 11369 11370 11371 11372 11373 11374 11375 11376 11377 11378 11379 11380 11381 11382 11383 11384 11385 11386 11387 11388 11389 11390 11391 11392 11393 11394 11395 11396 11397 11398 11399 11400 11401 11402 11403 11404 11405 11406 11407 11408 11409 11410 11411 11412 11413 11414 11415 11416 11417 11418 11419 11420 11421 11422 11423 11424 11425 11426 11427 11428 11429 11430 11431 11432 11433 11434 11435 11436 11437 11438 11439 11440 11441 11442 11443 11444 11445 11446 11447 11448 11449 11450 11451 11452 11453 11454 11455 11456 11457 11458 11459 11460 11461 11462 11463 11464 11465 11466 11467 11468 11469 11470 11471 11472 11473 11474 11475 11476 11477 11478 11479 11480 11481 11482 11483 11484 11485 11486 11487 11488 11489 11490 11491 11492 11493 11494 11495
# SOME DESCRIPTIVE TITLE.
# Anaconda-ko mezuen Euskeraketa
# Copyright (C) 2000 Free Software Foundation, Inc.
# Euskeraketa: Iñaki Larrañaga Murgoitio <blackziggy@sammic.com>, 2001/01/10.
# 
#
#
msgid ""
msgstr ""
"Project-Id-Version: 7.1\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2004-04-15 10:29-0400\n"
"PO-Revision-Date: 2001-01-10 22:20+1\n"
"Last-Translator: Iñaki Larrañaga Murgoitio <blackziggy@freemail.it>\n"
"Language-Team: BASQUE <linux-eu@chanae.alphanet.ch>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8-bit\n"

#: ../anaconda:94
msgid "Starting VNC..."
msgstr ""

# ../gui.py:586
#: ../anaconda:129
#, fuzzy, c-format
msgid "%s %s installation on host %s"
msgstr "Red Hat Linux-eko Ezartzailea %s-ean"

# ../todo.py:858
#: ../anaconda:131
#, fuzzy, c-format
msgid "%s %s installation"
msgstr "Red Hat Linux-eko ezarketak bilatzen..."

#: ../anaconda:151
msgid "Unable to set vnc password - using no password!"
msgstr ""

# ../textw/userauth_text.py:42
#: ../anaconda:152
#, fuzzy
msgid "Make sure your password is at least 6 characters in length."
msgstr ""
"Sistemako arduradunaren hitz-ezkutuak gutxienez 6 hizki (ikur) eduki behar "
"ditu."

#: ../anaconda:175
msgid ""
"\n"
"\n"
"WARNING!!! VNC server running with NO PASSWORD!\n"
"You can use the vncpassword=<password> boot option\n"
"if you would like to secure the server.\n"
"\n"
msgstr ""

#: ../anaconda:179
msgid "The VNC server is now running."
msgstr ""

#: ../anaconda:182
#, c-format
msgid "Attempting to connect to vnc client on host %s..."
msgstr ""

#: ../anaconda:196
msgid "Giving up attempting to connect after 50 tries!\n"
msgstr ""

#: ../anaconda:198
#, c-format
msgid "Please manually connect your vnc client to %s to begin the install."
msgstr ""

#: ../anaconda:200
msgid "Please manually connect your vnc client to begin the install."
msgstr ""

#: ../anaconda:204
msgid "Will try to connect again in 15 seconds..."
msgstr ""

# ../iw/progress_gui.py:223
#: ../anaconda:208
#, fuzzy
msgid "Connected!"
msgstr "Osatuta"

#: ../anaconda:212
#, c-format
msgid "Please connect to %s to begin the install..."
msgstr ""

#: ../anaconda:214
msgid "Please connect to begin the install..."
msgstr ""

# ../loader/cdrom.c:34 ../loader/devices.c:92 ../loader/devices.c:214
# ../loader/devices.c:236 ../loader/devices.c:243 ../loader/devices.c:312
# ../loader/devices.c:410 ../loader/devices.c:455 ../loader/devices.c:475
# ../loader/devices.c:503 ../loader/kickstart.c:58 ../loader/kickstart.c:68
# ../loader/kickstart.c:107 ../loader/lang.c:97 ../loader/lang.c:289
# ../loader/lang.c:578 ../loader/loader.c:277 ../loader/loader.c:504
# ../loader/loader.c:514 ../loader/loader.c:693 ../loader/loader.c:752
# ../loader/loader.c:852 ../loader/loader.c:944 ../loader/loader.c:1022
# ../loader/loader.c:1027 ../loader/loader.c:1126 ../loader/loader.c:1135
# ../loader/loader.c:1166 ../loader/loader.c:1398 ../loader/loader.c:2026
# ../loader/loader.c:2072 ../loader/loader.c:2135 ../loader/loader.c:2143
# ../loader/net.c:164 ../loader/net.c:249 ../loader/net.c:334
# ../loader/net.c:643 ../loader/net.c:676 ../loader/urls.c:155
# ../loader/urls.c:233 ../loader/urls.c:238 ../loader/urls.c:376
# ../text.py:120 ../text.py:196 ../text.py:269 ../text.py:316 ../text.py:334
# ../text.py:376 ../text.py:405 ../text.py:487 ../text.py:499 ../text.py:524
# ../text.py:544 ../text.py:755 ../text.py:781 ../text.py:806 ../text.py:812
# ../text.py:827 ../text.py:1042 ../textw/bootdisk_text.py:52
# ../textw/bootdisk_text.py:54 ../textw/lilo_text.py:30
# ../textw/lilo_text.py:87 ../textw/lilo_text.py:146
# ../textw/lilo_text.py:152 ../textw/mouse_text.py:55
# ../textw/network_text.py:92 ../textw/network_text.py:113
# ../textw/network_text.py:141 ../textw/packages_text.py:55
# ../textw/packages_text.py:89 ../textw/packages_text.py:236
# ../textw/packages_text.py:347 ../textw/partitioning_text.py:257
# ../textw/partitioning_text.py:309 ../textw/partitioning_text.py:320
# ../textw/partitioning_text.py:328 ../textw/partitioning_text.py:335
# ../textw/silo_text.py:25 ../textw/silo_text.py:99
# ../textw/timezone_text.py:69 ../textw/userauth_text.py:30
# ../textw/userauth_text.py:44 ../textw/userauth_text.py:49
# ../textw/userauth_text.py:84 ../textw/userauth_text.py:99
# ../textw/userauth_text.py:105 ../textw/userauth_text.py:111
# ../textw/userauth_text.py:119 ../textw/userauth_text.py:128
# ../textw/userauth_text.py:135 ../textw/userauth_text.py:196
# ../textw/userauth_text.py:287 ../xserver.py:33
#: ../anaconda:560 ../anaconda:741 ../gui.py:238 ../gui.py:982 ../rescue.py:40
#: ../rescue.py:224 ../rescue.py:302 ../rescue.py:330 ../rescue.py:340
#: ../rescue.py:409 ../rescue.py:415 ../text.py:326 ../text.py:472
#: ../textw/confirm_text.py:26 ../textw/confirm_text.py:52
#: ../textw/constants_text.py:36 ../textw/fdisk_text.py:41
#: ../textw/network_text.py:32 ../textw/network_text.py:166
#: ../textw/network_text.py:394 ../textw/network_text.py:402
#: ../textw/silo_text.py:110 ../textw/silo_text.py:147
#: ../textw/silo_text.py:160 ../loader2/cdinstall.c:136
#: ../loader2/cdinstall.c:137 ../loader2/cdinstall.c:253
#: ../loader2/cdinstall.c:256 ../loader2/cdinstall.c:373
#: ../loader2/cdinstall.c:378 ../loader2/cdinstall.c:381
#: ../loader2/cdinstall.c:446 ../loader2/driverdisk.c:249
#: ../loader2/driverdisk.c:265 ../loader2/driverdisk.c:279
#: ../loader2/driverdisk.c:442 ../loader2/driverdisk.c:475
#: ../loader2/driverselect.c:73 ../loader2/driverselect.c:213
#: ../loader2/hdinstall.c:242 ../loader2/hdinstall.c:295
#: ../loader2/hdinstall.c:354 ../loader2/hdinstall.c:516
#: ../loader2/hdinstall.c:567 ../loader2/hdinstall.c:599
#: ../loader2/hdinstall.c:649 ../loader2/kbd.c:125 ../loader2/kickstart.c:106
#: ../loader2/kickstart.c:116 ../loader2/kickstart.c:159
#: ../loader2/kickstart.c:258 ../loader2/lang.c:102 ../loader2/lang.c:374
#: ../loader2/loader.c:322 ../loader2/loader.c:335 ../loader2/loader.c:346
#: ../loader2/loader.c:628 ../loader2/loader.c:806 ../loader2/mediacheck.c:255
#: ../loader2/mediacheck.c:312 ../loader2/mediacheck.c:354
#: ../loader2/method.c:150 ../loader2/method.c:359 ../loader2/method.c:444
#: ../loader2/modules.c:919 ../loader2/net.c:174 ../loader2/net.c:433
#: ../loader2/net.c:729 ../loader2/net.c:752 ../loader2/net.c:868
#: ../loader2/nfsinstall.c:54 ../loader2/nfsinstall.c:200
#: ../loader2/nfsinstall.c:209 ../loader2/nfsinstall.c:247
#: ../loader2/telnetd.c:84 ../loader2/urlinstall.c:66
#: ../loader2/urlinstall.c:136 ../loader2/urlinstall.c:149
#: ../loader2/urlinstall.c:431 ../loader2/urlinstall.c:440
#: ../loader2/urlinstall.c:451 ../loader2/urls.c:171 ../loader2/urls.c:181
#: ../loader2/urls.c:189 ../loader2/urls.c:254 ../loader2/urls.c:319
#: ../loader2/urls.c:324 ../loader2/urls.c:330 ../loader2/urls.c:444
msgid "OK"
msgstr "Onartu"

# ../loader/urls.c:244
#: ../anaconda:611
#, fuzzy
msgid "Unknown Error"
msgstr "Ostalari Ezezaguna"

# ../loader/kickstart.c:69
#: ../anaconda:614
#, fuzzy, c-format
msgid "Error pulling second part of kickstart config: %s!"
msgstr "%s kickstart fitxategiaren edukinak irakurtzean %s akatsa"

#: ../anaconda:726
msgid ""
"You do not have enough RAM to use the graphical installer.  Starting text "
"mode."
msgstr ""

#: ../anaconda:778
msgid "Install class forcing text mode installation"
msgstr ""

#: ../anaconda:805
msgid "No video hardware found, assuming headless"
msgstr ""

#: ../anaconda:816 ../anaconda:1063 ../bar.py:23
msgid "Unable to instantiate a X hardware state object."
msgstr ""

#: ../anaconda:840
msgid "Graphical installation not available...  Starting text mode."
msgstr ""

#: ../anaconda:855
msgid ""
"No mouse was detected.  A mouse is required for graphical installation.  "
"Starting text mode."
msgstr ""

#: ../anaconda:865
#, c-format
msgid "Detected mouse type: %s"
msgstr ""

#: ../anaconda:869
#, c-format
msgid "Using mouse type: %s"
msgstr ""

# ../libfdisk/gnomefsedit.c:3409
#: ../autopart.py:933
#, fuzzy
msgid "Could not allocate cylinder-based partitions as primary partitions"
msgstr "Izendatubariko Disko-zatiak daude..."

# ../libfdisk/gnomefsedit.c:3409
#: ../autopart.py:936
#, fuzzy
msgid "Could not allocate partitions as primary partitions"
msgstr "Izendatubariko Disko-zatiak daude..."

# ../libfdisk/gnomefsedit.c:3409
#: ../autopart.py:939
#, fuzzy
msgid "Could not allocate cylinder-based partitions"
msgstr "Izendatubariko Disko-zatiak daude..."

# ../libfdisk/gnomefsedit.c:3409
#: ../autopart.py:942
#, fuzzy
msgid "Could not allocate partitions"
msgstr "Izendatubariko Disko-zatiak daude..."

#: ../autopart.py:1004
#, python-format
msgid ""
"Boot partition %s doesn't belong to a BSD disk label. SRM won't be able to "
"boot from this paritition. Use a partition belonging to a BSD disk label or "
"change this device disk label to BSD."
msgstr ""

#: ../autopart.py:1006
#, python-format
msgid ""
"Boot partition %s doesn't belong to a disk with enough free space at its "
"beginning for the bootloader to live on. Make sure that there's at least 5MB "
"of free space at the beginning of the disk that contains /boot"
msgstr ""

#: ../autopart.py:1008
#, python-format
msgid ""
"Boot partition %s isn't a VFAT partition.  EFI won't be able to boot from "
"this partition."
msgstr ""

#: ../autopart.py:1010
msgid ""
"Boot partition isn't located early enough on the disk.  OpenFirmware won't "
"be able to boot this installation."
msgstr ""

#: ../autopart.py:1013
#, python-format
msgid ""
"Boot partition %s may not meet booting constraints for your architecture.  "
"Creation of a boot disk is highly encouraged."
msgstr ""

#: ../autopart.py:1038
#, python-format
msgid ""
"Adding this partition would not leave enough disk space for already "
"allocated logical volumes in %s."
msgstr ""

# ../libfdisk/gnomefsedit.c:3409
#: ../autopart.py:1195
#, fuzzy
msgid "Requested Partition Does Not Exist"
msgstr "Izendatubariko Disko-zatiak daude..."

#: ../autopart.py:1196
#, python-format
msgid ""
"Unable to locate partition %s to use for %s.\n"
"\n"
"Press 'OK' to reboot your system."
msgstr ""

# ../libfdisk/gnomefsedit.c:3409
#: ../autopart.py:1221
#, fuzzy
msgid "Requested Raid Device Does Not Exist"
msgstr "Izendatubariko Disko-zatiak daude..."

#: ../autopart.py:1222
#, python-format
msgid ""
"Unable to locate raid device %s to use for %s.\n"
"\n"
"Press 'OK' to reboot your system."
msgstr ""

# ../libfdisk/gnomefsedit.c:3409
#: ../autopart.py:1251
#, fuzzy
msgid "Requested Volume Group Does Not Exist"
msgstr "Izendatubariko Disko-zatiak daude..."

#: ../autopart.py:1252
#, python-format
msgid ""
"Unable to locate volume group %s to use for %s.\n"
"\n"
"Press 'OK' to reboot your system."
msgstr ""

# ../libfdisk/gnomefsedit.c:3409
#: ../autopart.py:1287
#, fuzzy
msgid "Requested Logical Volume Does Not Exist"
msgstr "Izendatubariko Disko-zatiak daude..."

#: ../autopart.py:1288
#, python-format
msgid ""
"Unable to locate logical volume %s to use for %s.\n"
"\n"
"Press 'OK' to reboot your system."
msgstr ""

# ../iw/rootpartition_gui.py:247 ../iw/rootpartition_gui.py:297
# ../textw/partitioning_text.py:149
#: ../autopart.py:1320 ../autopart.py:1368
#, fuzzy
msgid "Automatic Partitioning Errors"
msgstr "Berekasakako Disko Zatiketa"

#: ../autopart.py:1321
#, python-format
msgid ""
"The following errors occurred with your partitioning:\n"
"\n"
"%s\n"
"\n"
"Press 'OK' to reboot your system."
msgstr ""

# ../iw/rootpartition_gui.py:247 ../iw/rootpartition_gui.py:297
# ../textw/partitioning_text.py:149
#: ../autopart.py:1331
#, fuzzy
msgid "Warnings During Automatic Partitioning"
msgstr "Berekasakako Disko Zatiketa"

# ../iw/rootpartition_gui.py:247 ../iw/rootpartition_gui.py:297
# ../textw/partitioning_text.py:149
#: ../autopart.py:1332
#, fuzzy, python-format
msgid ""
"Following warnings occurred during automatic partitioning:\n"
"\n"
"%s"
msgstr "Berekasakako Disko Zatiketa"

#: ../autopart.py:1345 ../autopart.py:1362
msgid ""
"\n"
"\n"
"Press 'OK' to reboot your system."
msgstr ""

# ../iw/rootpartition_gui.py:313
#: ../autopart.py:1346 ../iw/partition_gui.py:998
#: ../textw/partition_text.py:219
#, fuzzy
msgid "Error Partitioning"
msgstr "Disko Zatiteka Eskuz egin"

# ../libfdisk/gnomefsedit.c:3409
#: ../autopart.py:1347
#, fuzzy, python-format
msgid ""
"Could not allocate requested partitions: \n"
"\n"
"%s.%s"
msgstr "Izendatubariko Disko-zatiak daude..."

#: ../autopart.py:1364
msgid ""
"\n"
"\n"
"You can choose a different automatic partitioning option, or click 'Back' to "
"select manual partitioning.\n"
"\n"
"Press 'OK' to continue."
msgstr ""

#: ../autopart.py:1369
#, python-format
msgid ""
"The following errors occurred with your partitioning:\n"
"\n"
"%s\n"
"\n"
"This can happen if there is not enough space on your hard drive(s) for the "
"installation.%s"
msgstr ""

#: ../autopart.py:1380
msgid "Unrecoverable Error"
msgstr ""

#: ../autopart.py:1381
msgid "Your system will now be rebooted."
msgstr ""

# ../todo.py:857
#: ../autopart.py:1464 ../bootloader.py:148 ../gui.py:979 ../image.py:441
#: ../partedUtils.py:273 ../partedUtils.py:303 ../partedUtils.py:806
#: ../partedUtils.py:858 ../upgrade.py:310 ../upgrade.py:421 ../upgrade.py:474
#: ../upgrade.py:497 ../upgrade.py:543 ../iw/blpasswidget.py:148
#: ../iw/bootloader_advanced_gui.py:42 ../iw/bootloader_main_gui.py:92
#: ../iw/fdasd_gui.py:93 ../iw/upgrade_swap_gui.py:200
#: ../iw/upgrade_swap_gui.py:208 ../iw/upgrade_swap_gui.py:215
#: ../textw/bootloader_text.py:141 ../textw/bootloader_text.py:456
#: ../textw/fdasd_text.py:84 ../textw/partition_text.py:223
#: ../textw/upgrade_text.py:177 ../loader2/loader.c:370
#, fuzzy
msgid "Warning"
msgstr "Bilatzen"

#: ../autopart.py:1470
msgid ""
"Automatic Partitioning sets partitions based on the selected installation "
"type. You also can customize the partitions once they have been created.\n"
"\n"
"The manual disk partitioning tool, Disk Druid, allows you to create "
"partitions in an interactive environment. You can set the file system types, "
"mount points, partition sizes, and more."
msgstr ""

#: ../autopart.py:1481
msgid ""
"Before automatic partitioning can be set up by the installation program, you "
"must choose how to use the space on your hard drives."
msgstr ""

# ../libfdisk/gnomefsedit.c:2475
#: ../autopart.py:1486
#, fuzzy
msgid "Remove all partitions on this system"
msgstr "Linux disko-zatiak ezabatu"

# ../libfdisk/gnomefsedit.c:2475
#: ../autopart.py:1487
#, fuzzy
msgid "Remove all Linux partitions on this system"
msgstr "Linux disko-zatiak ezabatu"

# ../libfdisk/gnomefsedit.c:2486
#: ../autopart.py:1488
#, fuzzy
msgid "Keep all partitions and use existing free space"
msgstr "Diskoko leku hutsa erabili"

# ../libfdisk/gnomefsedit.c:1278
#: ../autopart.py:1490
#, fuzzy, python-format
msgid ""
"You have chosen to remove all partitions (ALL DATA) on the following drives:%"
"s\n"
"Are you sure you want to do this?"
msgstr ""
"Disko bakar bati izendatubariko RAID zati bat egoktitu diozu.\n"
"Horrela gertatzea nahi al duzu?"

# ../libfdisk/gnomefsedit.c:1278
#: ../autopart.py:1494
#, fuzzy, python-format
msgid ""
"You have chosen to remove all Linux partitions (and ALL DATA on them) on the "
"following drives:%s\n"
"Are you sure you want to do this?"
msgstr ""
"Disko bakar bati izendatubariko RAID zati bat egoktitu diozu.\n"
"Horrela gertatzea nahi al duzu?"

# ../iw/lilo_gui.py:307 ../iw/lilo_gui.py:343 ../iw/silo_gui.py:256
# ../iw/silo_gui.py:291 ../textw/lilo_text.py:113 ../textw/lilo_text.py:193
# ../textw/silo_text.py:132 ../textw/silo_text.py:196
#: ../bootloader.py:108
#, fuzzy
msgid "Bootloader"
msgstr "Abiaketaren Izena"

# ../todo.py:1558
#: ../bootloader.py:108
#, fuzzy
msgid "Installing bootloader..."
msgstr "%s ezartzen.\n"

#: ../bootloader.py:149
msgid ""
"No kernel packages were installed on your system.  Your boot loader "
"configuration will not be changed."
msgstr ""

# ../iw/progress_gui.py:223
#: ../cmdline.py:42 ../iw/progress_gui.py:472 ../iw/progress_gui.py:673
msgid "Completed"
msgstr "Osatuta"

# ../text.py:639
#: ../cmdline.py:47
#, fuzzy
msgid "In progress...   "
msgstr "Guztira  :"

#: ../cmdline.py:68
msgid "Can't have a question in command line mode!"
msgstr ""

#: ../cmdline.py:86
msgid "Parted exceptions can't be handled in command line mode!"
msgstr ""

#: ../cmdline.py:131
#, python-format
msgid "Done [%d/%d]"
msgstr ""

# ../todo.py:1558
#: ../cmdline.py:137
#, fuzzy, python-format
msgid "Installing %s-%s-%s... "
msgstr "%s ezartzen.\n"

# ../comps.py:430
#: ../comps.py:767 ../comps.py:795 ../hdrlist.py:749
msgid "Everything"
msgstr "Guztiak"

# ../todo.py:784 ../todo.py:826 ../todo.py:832 ../todo.py:849
#: ../comps.py:936 ../comps.py:1001
msgid "no suggestion"
msgstr "aholkurik ez dago"

# ../loader/devices.c:77
#: ../comps.py:1098 ../hdrlist.py:972
msgid "Miscellaneous"
msgstr "Denetatik"

#: ../comps.py:1114 ../hdrlist.py:45 ../hdrlist.py:919
msgid ""
"This group includes all the packages available.  Note that there are "
"substantially more packages than just the ones in all the other package "
"groups on this page."
msgstr ""

#: ../comps.py:1118 ../hdrlist.py:923
msgid ""
"Choose this group to get the minimal possible set of packages.  Useful for "
"creating small router/firewall boxes, for example."
msgstr ""

# ../gui.py:142
#: ../constants.py:72
#, fuzzy
msgid ""
"An unhandled exception has occurred.  This is most likely a bug.  Please "
"copy the full text of this exception or save the crash dump to a floppy then "
"file a detailed bug report against anaconda at http://bugzilla.redhat.com/"
"bugzilla/"
msgstr ""
"Ezusteko bat gertatu da. Honek mamorro edo akats (\"BUG\") baten itxura "
"dauka. Ezusteko honen mezuaren testu osoa kopiatu etahttp://bugzilla.redhat."
"com/bugzilla -ra mamorro honi buruzko txozten bat bidal ezazu mesedez."

# ../gui.py:142
#: ../constants.py:79
#, fuzzy
msgid ""
"An unhandled exception has occurred.  This is most likely a bug.  Please "
"copy the full text of this exception and file a detailed bug report against "
"anaconda at http://bugzilla.redhat.com/bugzilla/"
msgstr ""
"Ezusteko bat gertatu da. Honek mamorro edo akats (\"BUG\") baten itxura "
"dauka. Ezusteko honen mezuaren testu osoa kopiatu etahttp://bugzilla.redhat."
"com/bugzilla -ra mamorro honi buruzko txozten bat bidal ezazu mesedez."

# ../exception.py:13 ../text.py:795
#: ../exception.py:227 ../text.py:240
msgid "Exception Occurred"
msgstr "Ezbeharra Gertatu da"

# ../exception.py:91
#: ../exception.py:295
msgid "Dump Written"
msgstr "Gertaeraren buruzkoak gorde dira"

# ../exception.py:92
#: ../exception.py:296
msgid ""
"Your system's state has been successfully written to the floppy. Your system "
"will now be reset."
msgstr ""
"Zure sistemako egoera disketean zuzen gorde da. Sistema berpiztu daiteke."

# ../loader/loader.c:2144
#: ../floppy.py:103
#, fuzzy
msgid "Unable to make boot floppy"
msgstr "Disketea lotzerakoan porrot egin du."

#: ../floppy.py:104
msgid ""
"The size of the kernel modules needed for your machine make it impossible to "
"create a boot disk that will fit on a floppy diskette."
msgstr ""

# ../loader/loader.c:2144
#: ../floppy.py:113
#, fuzzy
msgid "Insert a floppy disk"
msgstr "Disketea lotzerakoan porrot egin du."

# ../iw/bootdisk_gui.py:57
#: ../floppy.py:114
#, fuzzy
msgid ""
"Please remove any diskettes from the floppy drive, and insert the floppy "
"diskette that is to contain the boot disk.\n"
"\n"
"All data will be ERASED during creation of the boot disk."
msgstr ""
"Diskete-tramankulu nagusian diskete garbi bat sartu. Abiatze disketea "
"sortzerakoan horko edukin guztia ezabatua izango da."

# ../libfdisk/gnomefsedit.c:813 ../libfdisk/gnomefsedit.c:1900
# ../libfdisk/gnomefsedit.c:2449 ../libfdisk/newtfsedit.c:573
# ../libfdisk/newtfsedit.c:1657 ../loader/devices.c:215
# ../loader/devices.c:503 ../loader/loader.c:2135 ../text.py:334
# ../text.py:337 ../text.py:812 ../text.py:814 ../textw/lilo_text.py:118
# ../textw/silo_text.py:136 ../textw/silo_text.py:154
# ../textw/userauth_text.py:63
#: ../floppy.py:118
#, fuzzy
msgid "_Cancel"
msgstr "Etsi"

# ../iw/lilo_gui.py:292 ../iw/silo_gui.py:225
#: ../floppy.py:118
#, fuzzy
msgid "_Make boot disk"
msgstr "Abiatze disketea sortu"

# ../fstab.py:215 ../fstab.py:406 ../fstab.py:506 ../fstab.py:727
# ../image.py:55 ../image.py:96 ../libfdisk/newtfsedit.c:1701
# ../loader/devices.c:236 ../loader/devices.c:243 ../loader/devices.c:410
# ../loader/devices.c:455 ../loader/devices.c:475 ../loader/lang.c:97
# ../loader/loader.c:504 ../loader/loader.c:514 ../loader/loader.c:752
# ../loader/loader.c:852 ../loader/loader.c:1022 ../loader/loader.c:1027
# ../loader/loader.c:1166 ../loader/loader.c:2026 ../loader/loader.c:2072
# ../loader/loader.c:2143 ../loader/urls.c:78 ../loader/urls.c:87
# ../loader/urls.c:94 ../loader/urls.c:233 ../loader/urls.c:238
# ../text.py:248 ../textw/bootdisk_text.py:69 ../todo.py:868 ../todo.py:896
# ../todo.py:979 ../todo.py:992
#: ../floppy.py:129 ../floppy.py:154 ../floppy.py:169 ../floppy.py:200
#: ../fsset.py:592 ../fsset.py:1243 ../fsset.py:1262 ../fsset.py:1313
#: ../fsset.py:1324 ../fsset.py:1359 ../fsset.py:1409 ../fsset.py:1453
#: ../harddrive.py:165 ../image.py:130 ../image.py:168 ../image.py:301
#: ../image.py:498 ../packages.py:150 ../packages.py:163 ../packages.py:175
#: ../packages.py:182 ../packages.py:408 ../packages.py:583 ../packages.py:668
#: ../partedUtils.py:627 ../upgrade.py:341 ../upgrade.py:366 ../upgrade.py:393
#: ../iw/osbootwidget.py:223 ../iw/osbootwidget.py:232
#: ../iw/raid_dialog_gui.py:616 ../iw/raid_dialog_gui.py:655
#: ../textw/fdasd_text.py:73 ../textw/upgrade_text.py:165
#: ../textw/upgrade_text.py:172 ../loader2/cdinstall.c:137
#: ../loader2/cdinstall.c:446 ../loader2/driverdisk.c:279
#: ../loader2/driverdisk.c:336 ../loader2/hdinstall.c:242
#: ../loader2/hdinstall.c:295 ../loader2/hdinstall.c:354
#: ../loader2/hdinstall.c:567 ../loader2/hdinstall.c:649
#: ../loader2/kickstart.c:258 ../loader2/lang.c:102 ../loader2/loader.c:346
#: ../loader2/loader.c:628 ../loader2/mediacheck.c:255
#: ../loader2/mediacheck.c:312 ../loader2/method.c:150 ../loader2/method.c:359
#: ../loader2/method.c:444 ../loader2/nfsinstall.c:200
#: ../loader2/nfsinstall.c:209 ../loader2/telnetd.c:84
#: ../loader2/urlinstall.c:66 ../loader2/urlinstall.c:136
#: ../loader2/urlinstall.c:149 ../loader2/urls.c:171 ../loader2/urls.c:181
#: ../loader2/urls.c:189 ../loader2/urls.c:319 ../loader2/urls.c:324
msgid "Error"
msgstr "Akatsa"

# ../iw/bootdisk_gui.py:61 ../textw/bootdisk_text.py:70
#: ../floppy.py:130 ../floppy.py:155
#, fuzzy
msgid ""
"An error occurred while making the boot disk. Please make sure that there is "
"a floppy in the first floppy drive."
msgstr ""
"Abiatze disketea sortzean akats bat gertatu da. Egituratutako diskete bat "
"disketeen tramankulu nagusian dagoela egiazta al dezakezu?"

# ../fstab.py:553 ../todo.py:531
#: ../floppy.py:141
msgid "Creating"
msgstr "Sortzen"

# ../todo.py:531
#: ../floppy.py:141
msgid "Creating boot disk..."
msgstr "Abiatze Diskoa Sortzen..."

# ../iw/bootdisk_gui.py:61 ../textw/bootdisk_text.py:70
#: ../floppy.py:170
#, fuzzy
msgid ""
"An error occurred while attempting to verify the boot disk.  Please make "
"sure that you have a good floppy in the first floppy drive."
msgstr ""
"Abiatze disketea sortzean akats bat gertatu da. Egituratutako diskete bat "
"disketeen tramankulu nagusian dagoela egiazta al dezakezu?"

# ../iw/bootdisk_gui.py:61 ../textw/bootdisk_text.py:70
#: ../floppy.py:201
#, fuzzy
msgid ""
"Your boot floppy appears to be invalid.  This is likely due to a bad "
"floppy.  Please make sure that you have a good floppy in the first floppy "
"drive."
msgstr ""
"Abiatze disketea sortzean akats bat gertatu da. Egituratutako diskete bat "
"disketeen tramankulu nagusian dagoela egiazta al dezakezu?"

# ../textw/partitioning_text.py:254
#: ../fsset.py:178
#, fuzzy
msgid "Checking for Bad Blocks"
msgstr "Tangulu (bloke) txarrak begiztatu"

# ../textw/partitioning_text.py:254
#: ../fsset.py:179
#, fuzzy, python-format
msgid "Checking for bad blocks on /dev/%s..."
msgstr "Tangulu (bloke) txarrak begiztatu"

#: ../fsset.py:593
#, python-format
msgid ""
"An error occurred migrating %s to ext3.  It is possible to continue without "
"migrating this file system if desired.\n"
"\n"
"Would you like to continue without migrating %s?"
msgstr ""

# ../libfdisk/gnomefsedit.c:2199
#: ../fsset.py:1158
#, fuzzy
msgid "RAID Device"
msgstr "RAID tramankulurik ez da ageri"

#: ../fsset.py:1162 ../fsset.py:1168
msgid "Apple Bootstrap"
msgstr ""

#: ../fsset.py:1173 ../partitions.py:802
msgid "PPC PReP Boot"
msgstr ""

# ../iw/lilo_gui.py:247 ../iw/silo_gui.py:175 ../textw/lilo_text.py:82
# ../textw/silo_text.py:65
#: ../fsset.py:1176 ../iw/silo_gui.py:184 ../textw/silo_text.py:76
msgid "First sector of boot partition"
msgstr "Abiatze disko-zatiko Lehen Sektorea"

# ../iw/lilo_gui.py:243 ../iw/silo_gui.py:172 ../textw/lilo_text.py:81
# ../textw/silo_text.py:64
#: ../fsset.py:1177 ../iw/silo_gui.py:181 ../textw/silo_text.py:75
msgid "Master Boot Record (MBR)"
msgstr "Master Boot Record (MBR)"

# ../fstab.py:715
#: ../fsset.py:1244
#, fuzzy, python-format
msgid ""
"An error occurred trying to initialize swap on device %s.  This problem is "
"serious, and the install cannot continue.\n"
"\n"
"Press <Enter> to reboot your system."
msgstr ""
"Akatsa, %s diskoa %s bezala lotzerakoan: %s\n"
"\n"
"Ziurrenik, disko zati hau egituratu barik dagoela esanahiko du.\n"
"\n"
"Onartu zaztatu eta zure ordenagailua berpiztu."

# ../fstab.py:715
#: ../fsset.py:1263
#, fuzzy, python-format
msgid ""
"Error enabling swap device %s: %s\n"
"\n"
"This most likely means this swap partition has not been initialized.\n"
"\n"
"Press OK to reboot your system."
msgstr ""
"Akatsa, %s diskoa %s bezala lotzerakoan: %s\n"
"\n"
"Ziurrenik, disko zati hau egituratu barik dagoela esanahiko du.\n"
"\n"
"Onartu zaztatu eta zure ordenagailua berpiztu."

#: ../fsset.py:1314
#, python-format
msgid ""
"Bad blocks have been detected on device /dev/%s. We do not recommend you use "
"this device.\n"
"\n"
"Press <Enter> to reboot your system"
msgstr ""

# ../fstab.py:715
#: ../fsset.py:1325
#, fuzzy, python-format
msgid ""
"An error occurred searching for bad blocks on %s.  This problem is serious, "
"and the install cannot continue.\n"
"\n"
"Press <Enter> to reboot your system."
msgstr ""
"Akatsa, %s diskoa %s bezala lotzerakoan: %s\n"
"\n"
"Ziurrenik, disko zati hau egituratu barik dagoela esanahiko du.\n"
"\n"
"Onartu zaztatu eta zure ordenagailua berpiztu."

# ../fstab.py:715
#: ../fsset.py:1360
#, fuzzy, python-format
msgid ""
"An error occurred trying to format %s.  This problem is serious, and the "
"install cannot continue.\n"
"\n"
"Press <Enter> to reboot your system."
msgstr ""
"Akatsa, %s diskoa %s bezala lotzerakoan: %s\n"
"\n"
"Ziurrenik, disko zati hau egituratu barik dagoela esanahiko du.\n"
"\n"
"Onartu zaztatu eta zure ordenagailua berpiztu."

# ../fstab.py:715
#: ../fsset.py:1410
#, fuzzy, python-format
msgid ""
"An error occurred trying to migrate %s.  This problem is serious, and the "
"install cannot continue.\n"
"\n"
"Press <Enter> to reboot your system."
msgstr ""
"Akatsa, %s diskoa %s bezala lotzerakoan: %s\n"
"\n"
"Ziurrenik, disko zati hau egituratu barik dagoela esanahiko du.\n"
"\n"
"Onartu zaztatu eta zure ordenagailua berpiztu."

# ../libfdisk/fsedit.c:912 ../libfdisk/fsedit.c:919 ../libfdisk/fsedit.c:926
# ../libfdisk/fsedit.c:935 ../libfdisk/fsedit.c:962 ../libfdisk/fsedit.c:975
# ../libfdisk/fsedit.c:985
#: ../fsset.py:1431 ../fsset.py:1440
#, fuzzy
msgid "Invalid mount point"
msgstr "Loturagune Okerra"

# ../fstab.py:715
#: ../fsset.py:1432
#, fuzzy, python-format
msgid ""
"An error occurred when trying to create %s.  Some element of this path is "
"not a directory. This is a fatal error and the install cannot continue.\n"
"\n"
"Press <Enter> to reboot your system."
msgstr ""
"Akatsa, %s diskoa %s bezala lotzerakoan: %s\n"
"\n"
"Ziurrenik, disko zati hau egituratu barik dagoela esanahiko du.\n"
"\n"
"Onartu zaztatu eta zure ordenagailua berpiztu."

# ../fstab.py:715
#: ../fsset.py:1441
#, fuzzy, python-format
msgid ""
"An error occurred when trying to create %s: %s.  This is a fatal error and "
"the install cannot continue.\n"
"\n"
"Press <Enter> to reboot your system."
msgstr ""
"Akatsa, %s diskoa %s bezala lotzerakoan: %s\n"
"\n"
"Ziurrenik, disko zati hau egituratu barik dagoela esanahiko du.\n"
"\n"
"Onartu zaztatu eta zure ordenagailua berpiztu."

# ../fstab.py:715
#: ../fsset.py:1454
#, python-format
msgid ""
"Error mounting device %s as %s: %s\n"
"\n"
"This most likely means this partition has not been formatted.\n"
"\n"
"Press OK to reboot your system."
msgstr ""
"Akatsa, %s diskoa %s bezala lotzerakoan: %s\n"
"\n"
"Ziurrenik, disko zati hau egituratu barik dagoela esanahiko du.\n"
"\n"
"Onartu zaztatu eta zure ordenagailua berpiztu."

# ../libfdisk/gnomefsedit.c:2617
#: ../fsset.py:2068
#, fuzzy
msgid "Duplicate Labels"
msgstr "RAID tramankulua ezabatu?"

#: ../fsset.py:2069
#, python-format
msgid ""
"Multiple devices on your system are labelled %s.  Labels across devices must "
"be unique for your system to function properly.\n"
"\n"
"Please fix this problem and restart the installation process."
msgstr ""

# ../libfdisk/gnomefsedit.c:3538
#: ../fsset.py:2076 ../gui.py:1092 ../image.py:72 ../image.py:451
#: ../packages.py:1453 ../iw/confirm_gui.py:68 ../iw/confirm_gui.py:98
#: ../textw/confirm_text.py:38 ../textw/confirm_text.py:64
#, fuzzy
msgid "_Reboot"
msgstr "_Garbitu"

# ../fstab.py:395 ../fstab.py:598 ../fstab.py:633 ../fstab.py:643
# ../fstab.py:667
#: ../fsset.py:2329
msgid "Formatting"
msgstr "Diskoa Egituratzen"

# ../fstab.py:599 ../fstab.py:634 ../fstab.py:644 ../fstab.py:668
#: ../fsset.py:2330
#, fuzzy, python-format
msgid "Formatting %s file system..."
msgstr "%s fitxategitza egituratzen..."

# ../todo.py:993
#: ../gui.py:105
#, fuzzy
msgid "An error occurred copying the screenshots over."
msgstr "Eguneratuko diren sortak bilatzerakoan akats bat gertatu da."

#: ../gui.py:117
msgid "Screenshots Copied"
msgstr ""

#: ../gui.py:118
msgid ""
"The screenshots have been saved into the directory:\n"
"\n"
"\t/root/anaconda-screenshots/\n"
"\n"
"You can access these when you reboot and login as root."
msgstr ""

#: ../gui.py:162
msgid "Saving Screenshot"
msgstr ""

#: ../gui.py:163
#, python-format
msgid "A screenshot named '%s' has been saved."
msgstr ""

#: ../gui.py:166
msgid "Error Saving Screenshot"
msgstr ""

#: ../gui.py:167
msgid ""
"An error occurred while saving the screenshot.  If this occurred during "
"package installation, you may need to try several times for it to succeed."
msgstr ""

#: ../gui.py:235 ../text.py:323
msgid "Fix"
msgstr ""

# ../iw/welcome_gui.py:88 ../libfdisk/fsedit.c:943
# ../libfdisk/gnomefsedit.c:728 ../libfdisk/gnomefsedit.c:1136
# ../libfdisk/gnomefsedit.c:1277 ../libfdisk/gnomefsedit.c:2331
# ../libfdisk/gnomefsedit.c:2617 ../libfdisk/gnomefsedit.c:2670
# ../libfdisk/newtfsedit.c:610 ../libfdisk/newtfsedit.c:836
# ../libfdisk/newtfsedit.c:1639 ../libfdisk/newtfsedit.c:1657
# ../libfdisk/newtfsedit.c:1742 ../loader/devices.c:207
# ../loader/loader.c:656 ../loader/net.c:810 ../text.py:291
# ../textw/bootdisk_text.py:12 ../textw/bootdisk_text.py:30
# ../textw/bootdisk_text.py:38 ../textw/partitioning_text.py:218
#: ../gui.py:236 ../rescue.py:176 ../text.py:324 ../textw/bootdisk_text.py:22
#: ../textw/bootloader_text.py:82 ../textw/constants_text.py:48
#: ../textw/upgrade_text.py:253 ../loader2/driverdisk.c:380
#: ../loader2/driverdisk.c:391 ../loader2/hdinstall.c:462
#: ../loader2/loader.c:370
msgid "Yes"
msgstr "Bai"

# ../iw/welcome_gui.py:91 ../libfdisk/fsedit.c:943
# ../libfdisk/gnomefsedit.c:728 ../libfdisk/gnomefsedit.c:1136
# ../libfdisk/gnomefsedit.c:1277 ../libfdisk/gnomefsedit.c:2331
# ../libfdisk/gnomefsedit.c:2617 ../libfdisk/gnomefsedit.c:2670
# ../libfdisk/newtfsedit.c:610 ../libfdisk/newtfsedit.c:836
# ../libfdisk/newtfsedit.c:1639 ../libfdisk/newtfsedit.c:1657
# ../libfdisk/newtfsedit.c:1742 ../loader/devices.c:208 ../loader/net.c:810
# ../text.py:291 ../text.py:297 ../textw/bootdisk_text.py:12
# ../textw/bootdisk_text.py:30 ../textw/bootdisk_text.py:41
# ../textw/partitioning_text.py:218
#: ../gui.py:237 ../rescue.py:176 ../rescue.py:178 ../text.py:325
#: ../textw/bootdisk_text.py:22 ../textw/bootdisk_text.py:35
#: ../textw/bootloader_text.py:82 ../textw/constants_text.py:52
#: ../textw/upgrade_text.py:253 ../textw/upgrade_text.py:260
#: ../loader2/driverdisk.c:380 ../loader2/driverdisk.c:391
#: ../loader2/loader.c:370
msgid "No"
msgstr "Ez"

# ../libfdisk/fsedit.c:1439 ../loader/net.c:254 ../loader/net.c:379
#: ../gui.py:239 ../text.py:327 ../loader2/net.c:179 ../loader2/net.c:478
msgid "Retry"
msgstr "Saiatu Berriz"

#: ../gui.py:240 ../text.py:328
msgid "Ignore"
msgstr ""

# ../libfdisk/gnomefsedit.c:813 ../libfdisk/gnomefsedit.c:1900
# ../libfdisk/gnomefsedit.c:2449 ../libfdisk/newtfsedit.c:573
# ../libfdisk/newtfsedit.c:1657 ../loader/devices.c:215
# ../loader/devices.c:503 ../loader/loader.c:2135 ../text.py:334
# ../text.py:337 ../text.py:812 ../text.py:814 ../textw/lilo_text.py:118
# ../textw/silo_text.py:136 ../textw/silo_text.py:154
# ../textw/userauth_text.py:63
#: ../gui.py:241 ../gui.py:556 ../partIntfHelpers.py:232
#: ../partIntfHelpers.py:520 ../text.py:116 ../text.py:117 ../text.py:286
#: ../text.py:288 ../text.py:329 ../iw/bootloader_advanced_gui.py:50
#: ../iw/bootloader_main_gui.py:104 ../textw/bootloader_text.py:218
#: ../textw/constants_text.py:40 ../textw/silo_text.py:147
#: ../textw/silo_text.py:165 ../textw/userauth_text.py:88
#: ../loader2/driverdisk.c:250 ../loader2/loader.c:335
msgid "Cancel"
msgstr "Etsi"

# ../gui.py:275 ../text.py:810
#: ../gui.py:638 ../text.py:284
msgid ""
"Please insert a floppy now. All contents of the disk will be erased, so "
"please choose your diskette carefully."
msgstr ""
"Mesedez, diskete bat sar ezazu orain. Disketeko edukin guztia ezabatua "
"izango da, beraz disketea aukeratzerakoan argi ibili."

#: ../gui.py:810 ../iw/release_notes_viewer_gui.py:44
msgid "Release notes are missing.\n"
msgstr ""

#: ../gui.py:980
msgid "The release notes are missing."
msgstr ""

# ../fstab.py:215 ../fstab.py:406 ../fstab.py:506 ../fstab.py:727
# ../image.py:55 ../image.py:96 ../libfdisk/newtfsedit.c:1701
# ../loader/devices.c:236 ../loader/devices.c:243 ../loader/devices.c:410
# ../loader/devices.c:455 ../loader/devices.c:475 ../loader/lang.c:97
# ../loader/loader.c:504 ../loader/loader.c:514 ../loader/loader.c:752
# ../loader/loader.c:852 ../loader/loader.c:1022 ../loader/loader.c:1027
# ../loader/loader.c:1166 ../loader/loader.c:2026 ../loader/loader.c:2072
# ../loader/loader.c:2143 ../loader/urls.c:78 ../loader/urls.c:87
# ../loader/urls.c:94 ../loader/urls.c:233 ../loader/urls.c:238
# ../text.py:248 ../textw/bootdisk_text.py:69 ../todo.py:868 ../todo.py:896
# ../todo.py:979 ../todo.py:992
#: ../gui.py:1080
#, fuzzy
msgid "Error!"
msgstr "Akatsa"

#: ../gui.py:1081
#, python-format
msgid ""
"An error occurred when attempting to load an installer interface component.\n"
"\n"
"className = %s"
msgstr ""

# ../iw/congrats_gui.py:13 ../iw/congrats_gui.py:61
#: ../gui.py:1085 ../packages.py:187 ../packages.py:588 ../packages.py:1447
#, fuzzy
msgid "_Exit"
msgstr "Irten"

# ../libfdisk/fsedit.c:1439 ../loader/net.c:254 ../loader/net.c:379
#: ../gui.py:1086
#, fuzzy
msgid "_Retry"
msgstr "Saiatu Berriz"

# ../text.py:1002
#: ../gui.py:1088 ../packages.py:1450
#, fuzzy
msgid "Rebooting System"
msgstr "Sistema Eguneratu"

#: ../gui.py:1089 ../packages.py:1451
msgid "Your system will now be rebooted..."
msgstr ""

# ../gui.py:366 ../gui.py:604 ../libfdisk/newtfsedit.c:1438
# ../libfdisk/newtfsedit.c:1446 ../loader/cdrom.c:34 ../loader/devices.c:93
# ../loader/devices.c:215 ../loader/devices.c:312 ../loader/lang.c:578
# ../loader/loader.c:277 ../loader/loader.c:656 ../loader/loader.c:693
# ../loader/loader.c:852 ../loader/loader.c:944 ../loader/loader.c:1398
# ../loader/net.c:164 ../loader/net.c:249 ../loader/net.c:334
# ../loader/urls.c:155 ../loader/urls.c:376 ../text.py:57 ../text.py:68
# ../text.py:120 ../text.py:123 ../text.py:196 ../text.py:251 ../text.py:269
# ../text.py:272 ../text.py:291 ../text.py:294 ../text.py:316 ../text.py:319
# ../text.py:376 ../text.py:379 ../text.py:405 ../text.py:409 ../text.py:418
# ../text.py:487 ../text.py:489 ../text.py:499 ../text.py:501
# ../textw/bootdisk_text.py:30 ../textw/constants_text.py:10
# ../textw/lilo_text.py:31 ../textw/lilo_text.py:87 ../textw/lilo_text.py:95
# ../textw/lilo_text.py:203 ../textw/mouse_text.py:27
# ../textw/mouse_text.py:28 ../textw/mouse_text.py:55
# ../textw/mouse_text.py:81 ../textw/network_text.py:92
# ../textw/network_text.py:141 ../textw/network_text.py:144
# ../textw/packages_text.py:55 ../textw/packages_text.py:236
# ../textw/packages_text.py:347 ../textw/packages_text.py:353
# ../textw/partitioning_text.py:24 ../textw/partitioning_text.py:65
# ../textw/partitioning_text.py:257 ../textw/partitioning_text.py:309
# ../textw/silo_text.py:26 ../textw/silo_text.py:99 ../textw/silo_text.py:206
# ../textw/timezone_text.py:69 ../textw/userauth_text.py:30
# ../textw/userauth_text.py:165 ../textw/userauth_text.py:196
# ../textw/userauth_text.py:287
#: ../gui.py:1180 ../packages.py:1453 ../iw/confirm_gui.py:68
#: ../iw/confirm_gui.py:98 ../textw/confirm_text.py:38
#: ../textw/confirm_text.py:64 ../textw/firewall_text.py:203
#, fuzzy
msgid "_Back"
msgstr "Atzera"

# ../gui.py:365 ../gui.py:605
#: ../gui.py:1182
#, fuzzy
msgid "_Next"
msgstr "Hurrengoa"

# ../gui.py:745
#: ../gui.py:1184
#, fuzzy
msgid "_Release Notes"
msgstr "Oharrak Zabaldu"

# ../gui.py:367 ../gui.py:609
#: ../gui.py:1186
#, fuzzy
msgid "Show _Help"
msgstr "Laguntza Azaldu"

# ../gui.py:368 ../gui.py:608
#: ../gui.py:1188
#, fuzzy
msgid "Hide _Help"
msgstr "Laguntza Ezkutatu"

# ../text.py:827 ../text.py:828
#: ../gui.py:1190
#, fuzzy
msgid "_Debug"
msgstr "Akats-Azterketa"

# ../todo.py:1634
#: ../gui.py:1272
#, fuzzy, python-format
msgid "%s Installer"
msgstr "Ezarketa Ondorengoa"

# ../gui.py:586
#: ../gui.py:1287
#, fuzzy, python-format
msgid "%s Installer on %s"
msgstr "Red Hat Linux-eko Ezartzailea %s-ean"

# ../xf86config.py:873
#: ../gui.py:1315
#, fuzzy
msgid "Unable to load title bar"
msgstr "Bideo xafla ezin ezagutu"

# ../gui.py:682
#: ../gui.py:1421
msgid "Install Window"
msgstr "Ezarketa Lehioa"

# ../harddrive.py:169
#: ../harddrive.py:166 ../image.py:499
#, fuzzy, python-format
msgid ""
"The following ISO images are missing which are required for the install:\n"
"\n"
"%s\n"
"The system will now reboot."
msgstr "Ezarketa lantzeko beharrezkoa den #%d CD-a galdu da."

#: ../image.py:63
msgid "Required Install Media"
msgstr ""

#: ../image.py:64
#, python-format
msgid ""
"The software you have selected to install will require the following CDs:\n"
"\n"
"%s\n"
"Please have these ready before proceeding with the installation.  If you "
"need to abort the installation and reboot please select \"Reboot\"."
msgstr ""

# ../textw/partitioning_text.py:154 ../textw/partitioning_text.py:155
#: ../image.py:72 ../image.py:452 ../kickstart.py:1342 ../kickstart.py:1369
#: ../iw/partition_gui.py:1012
#, fuzzy
msgid "_Continue"
msgstr "Jarraitu"

#: ../image.py:131
#, python-format
msgid ""
"An error occurred unmounting the CD.  Please make sure you're not accessing %"
"s from the shell on tty2 and then click OK to retry."
msgstr ""

# ../image.py:52
#: ../image.py:164
msgid "Copying File"
msgstr "Fitxategia Kopiatzen"

# ../image.py:53
#: ../image.py:165
msgid "Transferring install image to hard drive..."
msgstr "Ezarketaren irudia disko gogrrera bidaltzen..."

# ../image.py:56
#: ../image.py:169
msgid ""
"An error occurred transferring the install image to your hard drive. You are "
"probably out of disk space."
msgstr ""
"Ezarketako irudia disko gogorrera bidaltzerakoan akats bat gertatu da. "
"Litekeena da diskoko leku guztia beteta edukitzea."

# ../image.py:78
#: ../image.py:259
msgid "Change CDROM"
msgstr "Aldatu 'CDROM'-a"

# ../image.py:79
#: ../image.py:260
#, python-format
msgid "Please insert disc %d to continue."
msgstr "Mesedez, jarraitzeko %d diskoa sartu."

# ../image.py:91
#: ../image.py:295
msgid "Wrong CDROM"
msgstr "CDROM okerra"

# ../image.py:92
#: ../image.py:296
#, fuzzy, python-format
msgid "That's not the correct %s CDROM."
msgstr "Hau ez da Red Hat Linux-eko CDROM zuzena."

# ../image.py:97
#: ../image.py:302
msgid "The CDROM could not be mounted."
msgstr "Ezinezkoa CDROM-a lotzea."

# ../text.py:194 ../text.py:915
#: ../installclass.py:59
#, fuzzy
msgid "Install on System"
msgstr "Ezarketa Mota"

# ../iw/progress_gui.py:36
#: ../kickstart.py:1334
#, fuzzy
msgid "Missing Package"
msgstr "Sortak Ezartzen"

#: ../kickstart.py:1335
#, python-format
msgid ""
"You have specified that the package '%s' should be installed.  This package "
"does not exist. Would you like to continue or abort your installation?"
msgstr ""

# ../libfdisk/gnomefsedit.c:3538
#: ../kickstart.py:1341 ../kickstart.py:1368
#, fuzzy
msgid "_Abort"
msgstr "_Garbitu"

# ../loader/net.c:379
#: ../kickstart.py:1360
#, fuzzy
msgid "Missing Group"
msgstr "Azalpenak Galdu dira"

#: ../kickstart.py:1361
#, python-format
msgid ""
"You have specified that the group '%s' should be installed.  This group does "
"not exist. Would you like to continue or abort your installation?"
msgstr ""

# ../textw/userauth_text.py:42
#: ../network.py:41
#, fuzzy
msgid "Hostname must be 64 or less characters in length."
msgstr ""
"Sistemako arduradunaren hitz-ezkutuak gutxienez 6 hizki (ikur) eduki behar "
"ditu."

#: ../network.py:44
msgid "Hostname must start with a valid character in the range 'a-z' or 'A-Z'"
msgstr ""

#: ../network.py:49
msgid "Hostnames can only contain the characters 'a-z', 'A-Z', '-', or '.'"
msgstr ""

#: ../packages.py:46 ../iw/package_gui.py:41
msgid "Proceed with upgrade?"
msgstr ""

#: ../packages.py:47 ../iw/package_gui.py:42
msgid ""
"The file systems of the Linux installation you have chosen to upgrade have "
"already been mounted. You cannot go back past this point. \n"
"\n"
msgstr ""

# ../iw/welcome_gui.py:80
#: ../packages.py:51 ../iw/package_gui.py:46
#, fuzzy
msgid "Would you like to continue with the upgrade?"
msgstr "Zure sistema egokitzea nahi?"

# ../todo.py:550
#: ../packages.py:144
msgid "Reading"
msgstr "Irakurtzen"

# ../todo.py:551
#: ../packages.py:144
msgid "Reading package information..."
msgstr "Programa Sortei buruzko azalpenak irakurtzen..."

# ../todo.py:1377
#: ../packages.py:151
#, fuzzy
msgid ""
"Unable to read header list.  This may be due to a missing file or bad "
"media.  Press <return> to try again."
msgstr ""
"%s fitxategia ezin ireki. Galdutako fitxategia, programa sorta okerra edo CD/"
"diskete okerra egoteagatik izan daiteke. Berriz saiatzeko lerro-itzulera "
"(Return) zapaldu."

# ../todo.py:1377
#: ../packages.py:164
#, fuzzy
msgid ""
"Unable to read comps file.  This may be due to a missing file or bad media.  "
"Press <return> to try again."
msgstr ""
"%s fitxategia ezin ireki. Galdutako fitxategia, programa sorta okerra edo CD/"
"diskete okerra egoteagatik izan daiteke. Berriz saiatzeko lerro-itzulera "
"(Return) zapaldu."

# ../todo.py:1377
#: ../packages.py:176 ../packages.py:669 ../upgrade.py:342
#, fuzzy
msgid ""
"Unable to merge header list.  This may be due to a missing file or bad "
"media.  Press <return> to try again."
msgstr ""
"%s fitxategia ezin ireki. Galdutako fitxategia, programa sorta okerra edo CD/"
"diskete okerra egoteagatik izan daiteke. Berriz saiatzeko lerro-itzulera "
"(Return) zapaldu."

#: ../packages.py:183 ../packages.py:584
#, python-format
msgid ""
"You are trying to install on a machine which isn't supported by this release "
"of %s."
msgstr ""

# ../todo.py:756
#: ../packages.py:289
msgid "Dependency Check"
msgstr "Menpekotasunak Egiztatu"

# ../todo.py:757
#: ../packages.py:290
msgid "Checking dependencies in packages selected for installation..."
msgstr "Ezarketarako hautatuako programa sorten menpekotasunak egiaztatzen..."

# ../todo.py:1302
#: ../packages.py:349 ../packages.py:767
msgid "Processing"
msgstr "Burutzen"

# ../todo.py:1303
#: ../packages.py:350
msgid "Preparing to install..."
msgstr "Ezarketarako prestatzen..."

#: ../packages.py:409
#, python-format
msgid ""
"The package %s-%s-%s cannot be opened. This is due to a missing file or "
"perhaps a corrupt package.  If you are installing from CD media this usually "
"means the CD media is corrupt, or the CD drive is unable to read the media.\n"
"\n"
"Press <return> to try again."
msgstr ""

# ../todo.py:1558
#: ../packages.py:417
#, fuzzy
msgid "Installing..."
msgstr "%s ezartzen.\n"

# ../iw/progress_gui.py:36
#: ../packages.py:438
#, fuzzy
msgid "Error Installing Package"
msgstr "Sortak Ezartzen"

#: ../packages.py:439
#, python-format
msgid ""
"There was an error installing %s.  This can indicate media failure, lack of "
"disk space, and/or hardware problems.  This is a fatal error and your "
"install will be aborted.  Please verify your media and try your install "
"again.\n"
"\n"
"Press the OK button to reboot your system."
msgstr ""

# ../todo.py:1303
#: ../packages.py:768
#, fuzzy
msgid "Preparing RPM transaction..."
msgstr "Ezarketarako prestatzen..."

# ../todo.py:1556
#: ../packages.py:851
#, fuzzy, python-format
msgid ""
"Upgrading %s packages\n"
"\n"
msgstr "%s eguneratzen.\n"

# ../iw/progress_gui.py:36
#: ../packages.py:853
#, fuzzy, python-format
msgid ""
"Installing %s packages\n"
"\n"
msgstr "Sortak Ezartzen"

# ../todo.py:1556
#: ../packages.py:861 ../packages.py:1161
#, fuzzy, python-format
msgid "Upgrading %s-%s-%s.%s.\n"
msgstr "%s eguneratzen.\n"

# ../todo.py:1558
#: ../packages.py:863 ../packages.py:1163
#, fuzzy, python-format
msgid "Installing %s-%s-%s.%s.\n"
msgstr "%s ezartzen.\n"

#: ../packages.py:879
#, python-format
msgid ""
"\n"
"\n"
"The following packages were automatically\n"
"selected to be installed:\n"
"%s\n"
"\n"
msgstr ""

# ../text.py:977
#: ../packages.py:885
#, fuzzy
msgid "Install Starting"
msgstr "Ezarketaren Hasera"

#: ../packages.py:886
msgid "Starting install process, this may take several minutes..."
msgstr ""

# ../todo.py:1583
#: ../packages.py:926
#, fuzzy
msgid ""
"You don't appear to have enough disk space to install the packages you've "
"selected. You need more space on the following file systems:\n"
"\n"
msgstr ""
"Hautatutako sortak ezartzeko diskoan behar haina lekurik ez dagoela dirudi. "
"Fitxategitza hauetan toki gehiagoren beharra dago:\n"
"\n"

# ../libfdisk/gnomefsedit.c:2992 ../todo.py:1586
#: ../packages.py:930 ../packages.py:951 ../iw/lvm_dialog_gui.py:1064
#: ../iw/partition_gui.py:358 ../iw/upgrade_swap_gui.py:148
#: ../textw/partition_text.py:1126 ../textw/upgrade_text.py:111
msgid "Mount Point"
msgstr "Loturagunea"

# ../todo.py:1586
#: ../packages.py:931
msgid "Space Needed"
msgstr "Diskoan Lekua behar da"

# ../todo.py:1583
#: ../packages.py:947
#, fuzzy
msgid ""
"You don't appear to have enough file nodes to install the packages you've "
"selected. You need more file nodes on the following file systems:\n"
"\n"
msgstr ""
"Hautatutako sortak ezartzeko diskoan behar haina lekurik ez dagoela dirudi. "
"Fitxategitza hauetan toki gehiagoren beharra dago:\n"
"\n"

# ../todo.py:1586
#: ../packages.py:952
#, fuzzy
msgid "Nodes Needed"
msgstr "Diskoan Lekua behar da"

# ../todo.py:1599
#: ../packages.py:963
msgid "Disk Space"
msgstr "Diskaren Zabaltegia"

# ../todo.py:1634
#: ../packages.py:1012
msgid "Post Install"
msgstr "Ezarketa Ondorengoa"

# ../todo.py:1635
#: ../packages.py:1013
msgid "Performing post install configuration..."
msgstr "Ezarketa ondorengo egokitzaketa lantzen..."

#: ../packages.py:1187
msgid ""
"\n"
"\n"
"The following packages were available in this version but NOT upgraded:\n"
msgstr ""

#: ../packages.py:1190
msgid ""
"\n"
"\n"
"The following packages were available in this version but NOT installed:\n"
msgstr ""

#: ../packages.py:1433
msgid "Warning! This is pre-release software!"
msgstr ""

#: ../packages.py:1434
#, python-format
msgid ""
"Thank you for downloading this pre-release of %s.\n"
"\n"
"This is not a final release and is not intended for use on production "
"systems.  The purpose of this release is to collect feedback from testers, "
"and it is not suitable for day to day usage.\n"
"\n"
"To report feedback, please visit:\n"
"\n"
"   http://bugzilla.redhat.com/bugzilla\n"
"\n"
"and file a report against '%s'.\n"
msgstr ""

# ../iw/installpath_gui.py:184
#: ../packages.py:1447
#, fuzzy
msgid "_Install anyway"
msgstr "Ezarketa"

#: ../partedUtils.py:185 ../textw/partition_text.py:498
msgid "Foreign"
msgstr ""

# ../libfdisk/fsedit.c:1412
#: ../partedUtils.py:274
#, fuzzy, python-format
msgid ""
"The device %s is LDL formatted instead of CDL formatted.  LDL formatted "
"DASDs are not supported for usage during an install of %s.  If you wish to "
"use this disk for installation, it must be re-initialized causing the loss "
"of ALL DATA on this drive.\n"
"\n"
"Would you like to reformat this DASD using CDL format?"
msgstr ""
"%s-ko zati-taula izurrauta dago. Disko zati berriak egiteko guztiak ezabatu "
"beharko dira, eta diskoko EDUKIN GUZTIA GALDUKO DA."

# ../libfdisk/fsedit.c:1412
#: ../partedUtils.py:304
#, fuzzy, python-format
msgid ""
"The partition table on device /dev/%s is of an unexpected type %s for your "
"architecture.  To use this disk for installation of %s, it must be re-"
"initialized causing the loss of ALL DATA on this drive.\n"
"\n"
"Would you like to initialize this drive?"
msgstr ""
"%s-ko zati-taula izurrauta dago. Disko zati berriak egiteko guztiak ezabatu "
"beharko dira, eta diskoko EDUKIN GUZTIA GALDUKO DA."

# ../todo.py:869 ../todo.py:897
#: ../partedUtils.py:628
#, fuzzy, python-format
msgid "Error mounting file system on %s: %s"
msgstr "%s-an ext2 fitxategitza lotzerakoan akatsa: %s"

# ../libfdisk/fsedit.c:1418
#: ../partedUtils.py:716
#, fuzzy
msgid "Initializing"
msgstr "Hasieratu"

#: ../partedUtils.py:717
#, python-format
msgid "Please wait while formatting drive %s...\n"
msgstr ""

# ../libfdisk/fsedit.c:1412
#: ../partedUtils.py:807 ../partedUtils.py:859
#, fuzzy, python-format
msgid ""
"The partition table on device %s was unreadable. To create new partitions it "
"must be initialized, causing the loss of ALL DATA on this drive.\n"
"\n"
"This operation will override any previous installation choices about which "
"drives to ignore.\n"
"\n"
"Would you like to initialize this drive, erasing ALL DATA?"
msgstr ""
"%s-ko zati-taula izurrauta dago. Disko zati berriak egiteko guztiak ezabatu "
"beharko dira, eta diskoko EDUKIN GUZTIA GALDUKO DA."

# ../libfdisk/fsedit.c:1041
#: ../partedUtils.py:977 ../textw/fdasd_text.py:100
msgid "No Drives Found"
msgstr "Disko Gogorrik ez da aurkitu"

# ../libfdisk/fsedit.c:1042
#: ../partedUtils.py:978
#, fuzzy
msgid ""
"An error has occurred - no valid devices were found on which to create new "
"file systems. Please check your hardware for the cause of this problem."
msgstr ""
"Akats bat gertatu da. Fitxategitza berriak sortzeko tramankulurik ez da "
"aurkitu. Arazo honen zergatia aztertzeko ordenagailuko 'hardware'-a ikuskatu "
"mesedez."

# ../iw/account_gui.py:63
#: ../partIntfHelpers.py:35
#, fuzzy
msgid "Please enter a volume group name."
msgstr "Mesedez, erabiltzailearen hitz-ezkutua sartu."

# ../textw/userauth_text.py:42
#: ../partIntfHelpers.py:39
#, fuzzy
msgid "Volume Group Names must be less than 128 characters"
msgstr ""
"Sistemako arduradunaren hitz-ezkutuak gutxienez 6 hizki (ikur) eduki behar "
"ditu."

#: ../partIntfHelpers.py:42
#, python-format
msgid "Error - the volume group name %s is not valid."
msgstr ""

# ../textw/lilo_text.py:150
#: ../partIntfHelpers.py:47
#, fuzzy
msgid ""
"Error - the volume group name contains illegal characters or spaces.  "
"Acceptable characters are letters, digits, '.' or '_'."
msgstr "Abiaguneko izenak ikur erabilkaitzak ditu."

# ../iw/account_gui.py:63
#: ../partIntfHelpers.py:57
#, fuzzy
msgid "Please enter a logical volume name."
msgstr "Mesedez, erabiltzailearen hitz-ezkutua sartu."

#: ../partIntfHelpers.py:61
msgid "Logical Volume Names must be less than 128 characters"
msgstr ""

#: ../partIntfHelpers.py:65
#, python-format
msgid "Error - the logical volume name %s is not valid."
msgstr ""

# ../textw/lilo_text.py:150
#: ../partIntfHelpers.py:71
#, fuzzy
msgid ""
"Error - the logical volume name contains illegal characters or spaces.  "
"Acceptable characters are letters, digits, '.' or '_'."
msgstr "Abiaguneko izenak ikur erabilkaitzak ditu."

# ../libfdisk/fsedit.c:936
#: ../partIntfHelpers.py:94
#, fuzzy
msgid ""
"The mount point is invalid.  Mount points must start with '/' and cannot end "
"with '/', and must contain printable characters and no spaces."
msgstr ""
"%s loturagunea baliogabea da.\n"
"\n"
"Loturaguneek ohizko hizkiak eduki dezakete soilik."

#: ../partIntfHelpers.py:101
msgid "Please specify a mount point for this partition."
msgstr ""

# ../libfdisk/gnomefsedit.c:1268
#: ../partIntfHelpers.py:109
#, fuzzy
msgid "This partition is holding the data for the hard drive install."
msgstr "Zati hau disko batekin behintzat llluto behar duzu."

# ../libfdisk/gnomefsedit.c:1268
#: ../partIntfHelpers.py:115
#, fuzzy, python-format
msgid "This partition is part of the RAID device /dev/md%s."
msgstr "Zati hau disko batekin behintzat llluto behar duzu."

# ../libfdisk/gnomefsedit.c:1268
#: ../partIntfHelpers.py:118
#, fuzzy
msgid "This partition is part of a RAID device."
msgstr "Zati hau disko batekin behintzat llluto behar duzu."

# ../libfdisk/gnomefsedit.c:1531
#: ../partIntfHelpers.py:123
#, fuzzy, python-format
msgid "This partition is part of the LVM volume group '%s'."
msgstr ""
"Ezin duzu \\\"/boot\\\" ezabatu baldin eta \\\"/\\\" RAID tramankulu batean "
"badago. Lehendabizi  \\\"/\\\" loturagunea RAID ez den tramankulu batera "
"aldatu."

# ../libfdisk/gnomefsedit.c:1531
#: ../partIntfHelpers.py:126
#, fuzzy
msgid "This partition is part of a LVM volume group."
msgstr ""
"Ezin duzu \\\"/boot\\\" ezabatu baldin eta \\\"/\\\" RAID tramankulu batean "
"badago. Lehendabizi  \\\"/\\\" loturagunea RAID ez den tramankulu batera "
"aldatu."

# ../xf86config.py:873
#: ../partIntfHelpers.py:141 ../partIntfHelpers.py:149
#: ../partIntfHelpers.py:156 ../partIntfHelpers.py:166
#: ../partIntfHelpers.py:183
#, fuzzy
msgid "Unable To Delete"
msgstr "Bideo xafla ezin ezagutu"

# ../iw/lilo_gui.py:247 ../iw/silo_gui.py:175 ../textw/lilo_text.py:82
# ../textw/silo_text.py:65
#: ../partIntfHelpers.py:142
#, fuzzy
msgid "You must first select a partition to delete."
msgstr "Abiatze disko-zatiko Lehen Sektorea"

#: ../partIntfHelpers.py:150
msgid "You cannot delete free space."
msgstr ""

# ../libfdisk/gnomefsedit.c:729 ../libfdisk/newtfsedit.c:837
#: ../partIntfHelpers.py:157
#, fuzzy
msgid "You cannot delete a partition of a LDL formatted DASD."
msgstr "Disko zati hau ezabatzea gura dozu?"

# ../libfdisk/gnomefsedit.c:1268
#: ../partIntfHelpers.py:167
#, fuzzy, python-format
msgid ""
"You cannot delete this partition, as it is an extended partition which "
"contains %s"
msgstr "Zati hau disko batekin behintzat llluto behar duzu."

# ../libfdisk/gnomefsedit.c:729 ../libfdisk/newtfsedit.c:837
#: ../partIntfHelpers.py:184
#, fuzzy
msgid ""
"You cannot delete this partition:\n"
"\n"
msgstr "Disko zati hau ezabatzea gura dozu?"

# ../iw/account_gui.py:186
#: ../partIntfHelpers.py:228 ../partIntfHelpers.py:519
#: ../iw/lvm_dialog_gui.py:730
#, fuzzy
msgid "Confirm Delete"
msgstr "Egiaztatu: "

# ../libfdisk/gnomefsedit.c:729 ../libfdisk/newtfsedit.c:837
#: ../partIntfHelpers.py:229
#, fuzzy, python-format
msgid "You are about to delete all partitions on the device '/dev/%s'."
msgstr "Disko zati hau ezabatzea gura dozu?"

# ../libfdisk/gnomefsedit.c:3543
#: ../partIntfHelpers.py:232 ../partIntfHelpers.py:520
#: ../iw/lvm_dialog_gui.py:733 ../iw/lvm_dialog_gui.py:1087
#: ../iw/osbootwidget.py:103 ../iw/partition_gui.py:1357
msgid "_Delete"
msgstr "_Ezabatu"

#: ../partIntfHelpers.py:290
msgid "Notice"
msgstr ""

#: ../partIntfHelpers.py:291
#, python-format
msgid ""
"The following partitions were not deleted because they are in use:\n"
"\n"
"%s"
msgstr ""

#: ../partIntfHelpers.py:307 ../partIntfHelpers.py:320
#: ../partIntfHelpers.py:346 ../partIntfHelpers.py:357
msgid "Unable To Edit"
msgstr ""

# ../loader/lang.c:287
#: ../partIntfHelpers.py:308
#, fuzzy
msgid "You must select a partition to edit"
msgstr "Hizkuntza bat Hautatu"

# ../libfdisk/gnomefsedit.c:778 ../libfdisk/newtfsedit.c:344
#: ../partIntfHelpers.py:320 ../partIntfHelpers.py:358
#, fuzzy
msgid ""
"You cannot edit this partition:\n"
"\n"
msgstr "Disko Zatiak Ezin Argitatu"

# ../libfdisk/gnomefsedit.c:1268
#: ../partIntfHelpers.py:347
#, fuzzy, python-format
msgid ""
"You cannot edit this partition, as it is an extended partition which "
"contains %s"
msgstr "Zati hau disko batekin behintzat llluto behar duzu."

# ../fstab.py:395 ../fstab.py:598 ../fstab.py:633 ../fstab.py:643
# ../fstab.py:667
#: ../partIntfHelpers.py:379
#, fuzzy
msgid "Format as Swap?"
msgstr "Diskoa Egituratzen"

#: ../partIntfHelpers.py:380
#, python-format
msgid ""
"/dev/%s has a partition type of 0x82 (Linux swap) but does not appear to be "
"formatted as a Linux swap partition.\n"
"\n"
"Would you like to format this partition as a swap partition?"
msgstr ""

#: ../partIntfHelpers.py:401
msgid ""
"You have chosen to use a pre-existing partition for this installation "
"without formatting it. We recommend that you format this partition to make "
"sure files from a previous operating system installation do not cause "
"problems with this installation of Linux. However, if this partition "
"contains files that you need to keep, such as home directories, then  "
"continue without formatting this partition."
msgstr ""

# ../fstab.py:395 ../fstab.py:598 ../fstab.py:633 ../fstab.py:643
# ../fstab.py:667
#: ../partIntfHelpers.py:409
#, fuzzy
msgid "Format?"
msgstr "Diskoa Egituratzen"

# ../libfdisk/gnomefsedit.c:797 ../libfdisk/gnomefsedit.c:803
# ../libfdisk/gnomefsedit.c:807 ../libfdisk/gnomefsedit.c:809
# ../libfdisk/newtfsedit.c:368 ../libfdisk/newtfsedit.c:374
# ../libfdisk/newtfsedit.c:378 ../libfdisk/newtfsedit.c:380
#: ../partIntfHelpers.py:409 ../iw/partition_gui.py:1010
#, fuzzy
msgid "_Modify Partition"
msgstr "Disko Zatia Argitatu"

#: ../partIntfHelpers.py:409
msgid "Do _Not Format"
msgstr ""

# ../iw/rootpartition_gui.py:313
#: ../partIntfHelpers.py:417
#, fuzzy
msgid "Error with Partitioning"
msgstr "Disko Zatiteka Eskuz egin"

#: ../partIntfHelpers.py:418
#, python-format
msgid ""
"The following critical errors exist with your requested partitioning scheme. "
"These errors must be corrected prior to continuing with your install of %s.\n"
"\n"
"%s"
msgstr ""

# ../iw/rootpartition_gui.py:247 ../iw/rootpartition_gui.py:297
# ../textw/partitioning_text.py:149
#: ../partIntfHelpers.py:432
#, fuzzy
msgid "Partitioning Warning"
msgstr "Berekasakako Disko Zatiketa"

#: ../partIntfHelpers.py:433
#, python-format
msgid ""
"The following warnings exist with your requested partition scheme.\n"
"\n"
"%s\n"
"\n"
"Would you like to continue with your requested partitioning scheme?"
msgstr ""

#: ../partIntfHelpers.py:447 ../iw/partition_gui.py:671
msgid ""
"The following pre-existing partitions have been selected to be formatted, "
"destroying all data."
msgstr ""

#: ../partIntfHelpers.py:450
msgid ""
"Select 'Yes' to continue and format these partitions, or 'No' to go back and "
"change these settings."
msgstr ""

# ../fstab.py:395 ../fstab.py:598 ../fstab.py:633 ../fstab.py:643
# ../fstab.py:667
#: ../partIntfHelpers.py:456
#, fuzzy
msgid "Format Warning"
msgstr "Diskoa Egituratzen"

#: ../partIntfHelpers.py:504
#, python-format
msgid ""
"You are about to delete the volume group \"%s\".\n"
"\n"
"ALL logical volumes in this volume group will be lost!"
msgstr ""

# ../libfdisk/gnomefsedit.c:2200
#: ../partIntfHelpers.py:508
#, fuzzy, python-format
msgid "You are about to delete the logical volume \"%s\"."
msgstr "RAID tramankulu bat hautatu behar duzu."

# ../libfdisk/gnomefsedit.c:2200
#: ../partIntfHelpers.py:511
#, fuzzy
msgid "You are about to delete a RAID device."
msgstr "RAID tramankulu bat hautatu behar duzu."

# ../libfdisk/gnomefsedit.c:729 ../libfdisk/newtfsedit.c:837
#: ../partIntfHelpers.py:514
#, fuzzy, python-format
msgid "You are about to delete the /dev/%s partition."
msgstr "Disko zati hau ezabatzea gura dozu?"

#: ../partIntfHelpers.py:517
msgid "The partition you selected will be deleted."
msgstr ""

# ../iw/account_gui.py:186
#: ../partIntfHelpers.py:527
#, fuzzy
msgid "Confirm Reset"
msgstr "Egiaztatu: "

# ../libfdisk/gnomefsedit.c:729 ../libfdisk/newtfsedit.c:837
#: ../partIntfHelpers.py:528
#, fuzzy
msgid ""
"Are you sure you want to reset the partition table to its original state?"
msgstr "Disko zati hau ezabatzea gura dozu?"

# ../text.py:483
#: ../partitioning.py:77
#, fuzzy
msgid "Installation cannot continue."
msgstr "Ezarketa hastera doa"

#: ../partitioning.py:78
msgid ""
"The partitioning options you have chosen have already been activated. You "
"can no longer return to the disk editing screen. Would you like to continue "
"with the installation process?"
msgstr ""

# ../iw/rootpartition_gui.py:48 ../textw/partitioning_text.py:213
#: ../partitioning.py:108
msgid "Low Memory"
msgstr "Memoria Gutxi"

# ../iw/rootpartition_gui.py:49 ../textw/partitioning_text.py:214
#: ../partitioning.py:109
#, fuzzy
msgid ""
"As you don't have much memory in this machine, we need to turn on swap space "
"immediately. To do this we'll have to write your new partition table to the "
"disk immediately. Is that OK?"
msgstr ""
"Ordenagailu honek memoria gutxi duenez, disko trukagunea piztutzera doa. Hau "
"egiteko, disko-zatiko taula berria diskoan idatzi beharrean aurkitzen da. "
"Hau zuzen al dago?"

#: ../partitions.py:756
#, python-format
msgid ""
"You have not defined a root partition (/), which is required for "
"installation of %s to continue."
msgstr ""

#: ../partitions.py:761
#, python-format
msgid ""
"Your root partition is less than 250 megabytes which is usually too small to "
"install %s."
msgstr ""

#: ../partitions.py:768
msgid ""
"You must create a /boot/efi partition of type FAT and a size of 50 megabytes."
msgstr ""

#: ../partitions.py:791
msgid "You must create a PPC PReP Boot partition."
msgstr ""

#: ../partitions.py:799 ../partitions.py:810
#, python-format
msgid ""
"Your %s partition is less than %s megabytes which is lower than recommended "
"for a normal %s install."
msgstr ""

# ../libfdisk/gnomefsedit.c:2231
#: ../partitions.py:839 ../partRequests.py:649
#, fuzzy
msgid "Bootable partitions can only be on RAID1 devices."
msgstr "Abiatzeko disko-zatiak (/boot) RAID-1.ean egon behar dute."

# ../libfdisk/gnomefsedit.c:2231
#: ../partitions.py:846
#, fuzzy
msgid "Bootable partitions cannot be on a logical volume."
msgstr "Abiatzeko disko-zatiak (/boot) RAID-1.ean egon behar dute."

#: ../partitions.py:857
msgid ""
"You have not specified a swap partition.  Although not strictly required in "
"all cases, it will significantly improve performance for most installations."
msgstr ""

#: ../partitions.py:864
#, python-format
msgid ""
"You have specified more than 32 swap devices.  The kernel for %s only "
"supports 32 swap devices."
msgstr ""

#: ../partitions.py:875
#, python-format
msgid ""
"You have allocated less swap space (%dM) than available RAM (%dM) on your "
"system.  This could negatively impact performance."
msgstr ""

# ../libfdisk/gnomefsedit.c:1268
#: ../partitions.py:1159
#, fuzzy
msgid "the partition in use by the installer."
msgstr "Zati hau disko batekin behintzat llluto behar duzu."

#: ../partitions.py:1162
msgid "a partition which is a member of a RAID array."
msgstr ""

#: ../partitions.py:1165
msgid "a partition which is a member of a LVM Volume Group."
msgstr ""

# ../libfdisk/fsedit.c:913
#: ../partRequests.py:233
#, fuzzy, python-format
msgid ""
"This mount point is invalid.  The %s directory must be on the / file system."
msgstr "%s direktorioak erro fitxategitzan egon beharko luke."

# ../libfdisk/gnomefsedit.c:2146
#: ../partRequests.py:236
#, fuzzy, python-format
msgid ""
"The mount point %s cannot be used.  It must be a symbolic link for proper "
"system operation.  Please select a different mount point."
msgstr ""
"Eskatutako loturagunea iadanik beste batek darabil. Loturagune egoki bat "
"hautatu mesedez."

# ../libfdisk/fsedit.c:913
#: ../partRequests.py:243
#, fuzzy
msgid "This mount point must be on a linux file system."
msgstr "%s direktorioak erro fitxategitzan egon beharko luke."

# ../libfdisk/gnomefsedit.c:2146
#: ../partRequests.py:264
#, fuzzy, python-format
msgid ""
"The mount point \"%s\" is already in use, please choose a different mount "
"point."
msgstr ""
"Eskatutako loturagunea iadanik beste batek darabil. Loturagune egoki bat "
"hautatu mesedez."

#: ../partRequests.py:278
#, python-format
msgid ""
"The size of the %s partition (%10.2f MB) exceeds the maximum size of %10.2f "
"MB."
msgstr ""

#: ../partRequests.py:465
#, python-format
msgid ""
"The size of the requested partition (size = %s MB) exceeds the maximum size "
"of %s MB."
msgstr ""

#: ../partRequests.py:470
#, python-format
msgid "The size of the requested partition is negative! (size = %s MB)"
msgstr ""

#: ../partRequests.py:474
msgid "Partitions can't start below the first cylinder."
msgstr ""

#: ../partRequests.py:477
msgid "Partitions can't end on a negative cylinder."
msgstr ""

#: ../partRequests.py:641
msgid "No members in RAID request, or not RAID level specified."
msgstr ""

#: ../partRequests.py:653
#, python-format
msgid "A RAID device of type %s requires at least %s members."
msgstr ""

#: ../partRequests.py:659
#, python-format
msgid ""
"This RAID device can have a maximum of %s spares. To have more spares you "
"will need to add members to the RAID device."
msgstr ""

#: ../rescue.py:123
msgid "Starting Interface"
msgstr ""

#: ../rescue.py:124
#, python-format
msgid "Attempting to start %s"
msgstr ""

# ../iw/network_gui.py:165 ../loader/loader.c:262
#: ../rescue.py:174
#, fuzzy
msgid "Setup Networking"
msgstr "Lan-Sarea"

#: ../rescue.py:175
msgid "Do you want to start the network interfaces on this system?"
msgstr ""

# ../text.py:1039
#: ../rescue.py:220 ../text.py:468
msgid "Cancelled"
msgstr "Ezeztatua"

# ../text.py:1040
#: ../rescue.py:221 ../text.py:469
msgid "I can't go to the previous step from here. You will have to try again."
msgstr "Aurreko urratsera joatea ezinezkoa da. Berriz saiatu beharko duzu."

#: ../rescue.py:237 ../rescue.py:272 ../rescue.py:426
msgid "When finished please exit from the shell and your system will reboot."
msgstr ""

# ../libfdisk/gnomefsedit.c:3538
#: ../rescue.py:256 ../rescue.py:325 ../rescue.py:333 ../rescue.py:404
#, fuzzy
msgid "Rescue"
msgstr "_Garbitu"

#: ../rescue.py:257
#, python-format
msgid ""
"The rescue environment will now attempt to find your Linux installation and "
"mount it under the directory %s.  You can then make any changes required to "
"your system.  If you want to proceed with this step choose 'Continue'.  You "
"can also choose to mount your file systems read-only instead of read-write "
"by choosing 'Read-Only'.\n"
"\n"
"If for some reason this process fails you can choose 'Skip' and this step "
"will be skipped and you will go directly to a command shell.\n"
"\n"
msgstr ""

# ../textw/partitioning_text.py:154 ../textw/partitioning_text.py:155
#: ../rescue.py:267 ../iw/partition_gui.py:573 ../loader2/cdinstall.c:109
#: ../loader2/cdinstall.c:117 ../loader2/driverdisk.c:337
msgid "Continue"
msgstr "Jarraitu"

# ../todo.py:550
#: ../rescue.py:267 ../rescue.py:276
#, fuzzy
msgid "Read-Only"
msgstr "Irakurtzen"

# ../textw/bootdisk_text.py:54 ../textw/bootdisk_text.py:62
# ../textw/bootdisk_text.py:73 ../textw/lilo_text.py:30
# ../textw/silo_text.py:25
#: ../rescue.py:267 ../rescue.py:269 ../textw/silo_text.py:36
#: ../textw/upgrade_text.py:123 ../loader2/cdinstall.c:254
#: ../loader2/cdinstall.c:256 ../loader2/method.c:406
msgid "Skip"
msgstr "Jauzi"

# ../text.py:266
#: ../rescue.py:299
#, fuzzy
msgid "System to Rescue"
msgstr "Sistemaren Eguneraketa"

# ../text.py:267
#: ../rescue.py:300
msgid "What partition holds the root partition of your installation?"
msgstr "Erro nagusia zein disko-zatitan ezarri behar da?"

# ../iw/congrats_gui.py:13 ../iw/congrats_gui.py:61
#: ../rescue.py:302 ../rescue.py:306
msgid "Exit"
msgstr "Irten"

#: ../rescue.py:326
msgid ""
"Your system had dirty file systems which you chose not to mount.  Press "
"return to get a shell from which you can fsck and mount your partitions.  "
"The system will reboot automatically when you exit from the shell."
msgstr ""

#: ../rescue.py:334
#, python-format
msgid ""
"Your system has been mounted under %s.\n"
"\n"
"Press <return> to get a shell. If you would like to make your system the "
"root environment, run the command:\n"
"\n"
"\tchroot %s\n"
"\n"
"The system will reboot automatically when you exit from the shell."
msgstr ""

#: ../rescue.py:405
#, python-format
msgid ""
"An error occurred trying to mount some or all of your system. Some of it may "
"be mounted under %s.\n"
"\n"
"Press <return> to get a shell. The system will reboot automatically when you "
"exit from the shell."
msgstr ""

# ../loader/loader.c:1390
#: ../rescue.py:411
#, fuzzy
msgid "Rescue Mode"
msgstr "Berreskuraketa Bidea"

#: ../rescue.py:412
msgid ""
"You don't have any Linux partitions. Press return to get a shell. The system "
"will reboot automatically when you exit from the shell."
msgstr ""

# ../loader/urls.c:239
#: ../rescue.py:423
#, fuzzy, python-format
msgid "Your system is mounted under the %s directory."
msgstr "Direktorio bat idatzi behar duzu."

# ../text.py:753
#: ../text.py:193
msgid "Help not available"
msgstr "Laguntza Eskuragarririk ez dago"

# ../text.py:754
#: ../text.py:194
#, fuzzy
msgid "No help is available for this step of the install."
msgstr "Aukera honentzako Laguntza eskuragarririk ez dago."

# ../text.py:809
#: ../text.py:283
msgid "Save Crash Dump"
msgstr "Akats Iraulketa Gorde"

# ../text.py:827 ../text.py:830
#: ../text.py:304 ../text.py:312
msgid "Save"
msgstr "Gorde"

# ../text.py:827 ../text.py:828
#: ../text.py:304 ../text.py:307 ../text.py:310
msgid "Debug"
msgstr "Akats-Azterketa"

# ../text.py:841
#: ../text.py:347
#, fuzzy, python-format
msgid "%s (C) 2004 Red Hat, Inc."
msgstr "Red Hat Linux (C) 2000 Red Hat, Inc."

# ../text.py:844
#: ../text.py:354
msgid ""
" <F1> for help | <Tab> between elements | <Space> selects | <F12> next screen"
msgstr ""
"<F1> Laguntza |  <Tab> Hautagaiartean higitu | <Hutsune Tekla> Hautatu | "
"<F12> hurrengo pantaila "

# ../text.py:846
#: ../text.py:356
msgid ""
"  <Tab>/<Alt-Tab> between elements   |  <Space> selects   |  <F12> next "
"screen"
msgstr ""
"  <Tab>/>Alt-Tab> Hautagaietan higitu | <Hutsunea> Hautatu | <F12> Hurrengoa"

# ../text.py:1002
#: ../upgradeclass.py:8
#, fuzzy
msgid "Upgrade Existing System"
msgstr "Sistema Eguneratu"

# ../iw/installpath_gui.py:186
#: ../upgradeclass.py:12
msgid "Upgrade"
msgstr "Eguneraketa"

# ../todo.py:857
#: ../upgrade.py:62
msgid "Searching"
msgstr "Bilatzen"

# ../todo.py:858
#: ../upgrade.py:63
#, fuzzy, python-format
msgid "Searching for %s installations..."
msgstr "Red Hat Linux-eko ezarketak bilatzen..."

# ../text.py:941 ../textw/partitioning_text.py:301
#: ../upgrade.py:115 ../upgrade.py:123
#, fuzzy
msgid "Dirty File Systems"
msgstr "Erro Fitxategitzaren Neurria"

# ../todo.py:941
#: ../upgrade.py:116
#, fuzzy, python-format
msgid ""
"The following file systems for your Linux system were not unmounted "
"cleanly.  Please boot your Linux installation, let the file systems be "
"checked and shut down cleanly to upgrade.\n"
"%s"
msgstr ""
"Zure Linux sistemako fitxategi sistema bat ez da txukuntasunez erauzia izan. "
"Linux sistema berpiztu beharko duzu, fitxategi sistemak egiaztatu eta "
"eguneratzeko, sistema era antolatu batean itzali."

# ../todo.py:941
#: ../upgrade.py:124
#, fuzzy, python-format
msgid ""
"The following file systems for your Linux system were not unmounted "
"cleanly.  Would you like to mount them anyway?\n"
"%s"
msgstr ""
"Zure Linux sistemako fitxategi sistema bat ez da txukuntasunez erauzia izan. "
"Linux sistema berpiztu beharko duzu, fitxategi sistemak egiaztatu eta "
"eguneratzeko, sistema era antolatu batean itzali."

# ../iw/xconfig_gui.py:15
#: ../upgrade.py:258 ../upgrade.py:264
#, fuzzy
msgid "Mount failed"
msgstr "Saiakerak huts egin du"

# ../todo.py:951
#: ../upgrade.py:259
#, fuzzy
msgid ""
"One or more of the file systems listed in the /etc/fstab on your Linux "
"system cannot be mounted. Please fix this problem and try to upgrade again."
msgstr ""
"Zure Linux sistemako /etc/fstab-en agertzen den fitxategi sistemetariko bat "
"ezin da lotu. Mesedez, honi irtenbide bat ematen saia zaitez, eta ondoren "
"eguneratu berriz."

# ../todo.py:951
#: ../upgrade.py:265
#, fuzzy
msgid ""
"One or more of the file systems listed in the /etc/fstab of your Linux "
"system are inconsistent and cannot be mounted.  Please fix this problem and "
"try to upgrade again."
msgstr ""
"Zure Linux sistemako /etc/fstab-en agertzen den fitxategi sistemetariko bat "
"ezin da lotu. Mesedez, honi irtenbide bat ematen saia zaitez, eta ondoren "
"eguneratu berriz."

# ../todo.py:989
#: ../upgrade.py:282
msgid ""
"The following files are absolute symbolic links, which we do not support "
"during an upgrade. Please change them to relative symbolic links and restart "
"the upgrade.\n"
"\n"
msgstr ""
"Datozen fitxategiak erabateko gainazaleko loturak (link) dira, eta "
"eguneraketa batetan ez \n"
"ditugu jasaten. Mesedez, hauek besterekiko gainazaleko loturetara alda "
"itzazu eta eguneraketa ber-abiatu.\n"
"\n"

#: ../upgrade.py:288
msgid "Absolute Symlinks"
msgstr ""

# ../todo.py:989
#: ../upgrade.py:299
#, fuzzy
msgid ""
"The following are directories which should instead be symbolic links, which "
"will cause problems with the upgrade.  Please return them to their original "
"state as symbolic links and restart the upgrade.\n"
"\n"
msgstr ""
"Datozen fitxategiak erabateko gainazaleko loturak (link) dira, eta "
"eguneraketa batetan ez \n"
"ditugu jasaten. Mesedez, hauek besterekiko gainazaleko loturetara alda "
"itzazu eta eguneraketa ber-abiatu.\n"
"\n"

# ../textw/lilo_text.py:144 ../textw/lilo_text.py:149
#: ../upgrade.py:305
#, fuzzy
msgid "Invalid Directories"
msgstr "Abiaketaren Izena Erabilkaitza"

#: ../upgrade.py:311
#, python-format
msgid "%s not found"
msgstr ""

# ../todo.py:964
#: ../upgrade.py:354
msgid "Finding"
msgstr "Bilatzen..."

# ../todo.py:965
#: ../upgrade.py:355
msgid "Finding packages to upgrade..."
msgstr "Eguneratuko diren sortak bilatzen..."

#: ../upgrade.py:367
msgid ""
"The installation program is unable to upgrade systems with a pre-rpm 4.x "
"database. Please install the errata rpm packages for your release as "
"described in the release notes and then run the upgrade procedure."
msgstr ""

# ../todo.py:993
#: ../upgrade.py:394
msgid "An error occurred when finding the packages to upgrade."
msgstr "Eguneratuko diren sortak bilatzerakoan akats bat gertatu da."

#: ../upgrade.py:422
#, python-format
msgid ""
"The arch of the release of %s you are upgrading to appears to be %s which "
"does not match your previously installed arch of %s.  This is likely to not "
"succeed.  Are you sure you wish to continue the upgrade process?"
msgstr ""

#: ../upgrade.py:475
#, python-format
msgid ""
"This system appears to have third party packages installed that overlap with "
"packages included in %s. Because these packages overlap, continuing the "
"upgrade process may cause them to stop functioning properly or may cause "
"other system instability.  Please see the release notes for more "
"information.\n"
"\n"
"Do you wish to continue the upgrade process?"
msgstr ""

#: ../upgrade.py:498
#, python-format
msgid ""
"This system does not have an /etc/redhat-release file.  It is possible that "
"this is not a %s system. Continuing with the upgrade process may leave the "
"system in an unusable state.  Do you wish to continue the upgrade process?"
msgstr ""

#: ../upgrade.py:544
#, python-format
msgid ""
"Upgrades for this version of %s are only supported from Red Hat Linux 6.2 or "
"higher.  This appears to be an older system.  Do you wish to continue the "
"upgrade process?"
msgstr ""

#: ../urlinstall.py:46
msgid "Connecting..."
msgstr ""

#: ../xsetup.py:55 ../iw/xconfig_gui.py:34 ../textw/xconfig_text.py:22
msgid "DDC Probed Monitor"
msgstr ""

# ../text.py:895 ../text.py:963 ../textw/userauth_text.py:9
#: ../iw/account_gui.py:25
#, fuzzy
msgid "Set Root Password"
msgstr "Sistemako Arduradunaren (root) Pasahitza"

# ../text.py:895 ../text.py:963 ../textw/userauth_text.py:9
#: ../iw/account_gui.py:35 ../iw/account_gui.py:43 ../iw/account_gui.py:50
#: ../iw/account_gui.py:59 ../textw/userauth_text.py:71
#, fuzzy
msgid "Error with Password"
msgstr "Sistemako Arduradunaren (root) Pasahitza"

#: ../iw/account_gui.py:36
msgid ""
"You must enter your root password and confirm it by typing it a second time "
"to continue."
msgstr ""

# ../textw/userauth_text.py:47 ../textw/userauth_text.py:117
#: ../iw/account_gui.py:44
#, fuzzy
msgid "The passwords you entered were different.  Please try again."
msgstr "Hitz-ezkutuak ezberdinak dira. Berriro saiatu, mesedez."

# ../textw/userauth_text.py:42
#: ../iw/account_gui.py:51
#, fuzzy
msgid "The root password must be at least six characters long."
msgstr ""
"Sistemako arduradunaren hitz-ezkutuak gutxienez 6 hizki (ikur) eduki behar "
"ditu."

#: ../iw/account_gui.py:60 ../textw/userauth_text.py:72
msgid ""
"Requested password contains non-ascii characters which are not allowed for "
"use in password."
msgstr ""

# ../textw/userauth_text.py:208
#: ../iw/account_gui.py:87
#, fuzzy
msgid "Enter the root (administrator) password for the system."
msgstr "Erabiltzaileari buruzko ezaugarriak idatzi."

# ../iw/account_gui.py:183
#: ../iw/account_gui.py:103
#, fuzzy
msgid "Root _Password: "
msgstr "Sistemako Arduradunaren (root) hitz-ezkutua:"

# ../iw/account_gui.py:186
#: ../iw/account_gui.py:106
#, fuzzy
msgid "_Confirm: "
msgstr "Egiaztatu: "

# ../iw/auth_gui.py:11 ../textw/userauth_text.py:289
#: ../iw/auth_gui.py:22 ../textw/userauth_text.py:337
msgid "Authentication Configuration"
msgstr "Egiaztaketa Egokitu"

# ../iw/auth_gui.py:75
#: ../iw/auth_gui.py:98
#, fuzzy
msgid "Enable _MD5 passwords"
msgstr "MD5 hitz-ezkutuak baimendu"

# ../iw/auth_gui.py:76
#: ../iw/auth_gui.py:99
#, fuzzy
msgid "Enable shado_w passwords"
msgstr "Ilunpeko Hitz-ezkutua baimendu"

# ../iw/auth_gui.py:79 ../textw/userauth_text.py:298
#: ../iw/auth_gui.py:102
#, fuzzy
msgid "Enable N_IS"
msgstr "NIS baimendu"

# ../iw/auth_gui.py:80
#: ../iw/auth_gui.py:103
#, fuzzy
msgid "Use _broadcast to find NIS server"
msgstr "NIS zerbitzaria aurkitzeko hedapena erabili"

# ../iw/auth_gui.py:92
#: ../iw/auth_gui.py:115
#, fuzzy
msgid "NIS _Domain: "
msgstr "NIS Jabetza: "

# ../iw/auth_gui.py:94
#: ../iw/auth_gui.py:118
#, fuzzy
msgid "NIS _Server: "
msgstr "NIS Zerbitzaria: "

# ../iw/auth_gui.py:118 ../textw/userauth_text.py:332
#: ../iw/auth_gui.py:142
#, fuzzy
msgid "Enable _LDAP"
msgstr "LDAP Baimendu"

# ../iw/auth_gui.py:139
#: ../iw/auth_gui.py:145
#, fuzzy
msgid "Use _TLS lookups"
msgstr "TLS bilaketa erabili"

# ../iw/auth_gui.py:121 ../textw/userauth_text.py:338
#: ../iw/auth_gui.py:146
#, fuzzy
msgid "LDAP _Server:"
msgstr "LDAP Zerbitzaria:"

# ../iw/auth_gui.py:123 ../textw/userauth_text.py:340
#: ../iw/auth_gui.py:149
#, fuzzy
msgid "LDAP _Base DN:"
msgstr "LDAP oinarriko DN:"

# ../iw/auth_gui.py:150 ../textw/userauth_text.py:357
#: ../iw/auth_gui.py:177
#, fuzzy
msgid "Enable _Kerberos"
msgstr "Kerberos  Baimendu"

# ../iw/auth_gui.py:154 ../textw/userauth_text.py:364
#: ../iw/auth_gui.py:181
#, fuzzy
msgid "R_ealm:"
msgstr "Arima:"

# ../iw/auth_gui.py:156 ../textw/userauth_text.py:366
#: ../iw/auth_gui.py:184
#, fuzzy
msgid "K_DC:"
msgstr "KDC:"

# ../iw/auth_gui.py:158 ../textw/userauth_text.py:368
#: ../iw/auth_gui.py:187
#, fuzzy
msgid "_Admin Server:"
msgstr "Admin. Zerbitzaria:"

# ../text.py:899 ../text.py:967
#: ../iw/auth_gui.py:216
#, fuzzy
msgid "Enable SMB _Authentication"
msgstr "Egiaztaketa"

# ../textw/userauth_text.py:30
#: ../iw/auth_gui.py:219
#, fuzzy
msgid "SMB _Server:"
msgstr "NIS Zerbitzaria:"

#: ../iw/auth_gui.py:222
msgid "SMB Work_group:"
msgstr ""

#: ../iw/auth_gui.py:250
msgid "NIS"
msgstr ""

#: ../iw/auth_gui.py:251
msgid "LDAP"
msgstr ""

# ../iw/auth_gui.py:150 ../textw/userauth_text.py:357
#: ../iw/auth_gui.py:252
#, fuzzy
msgid "Kerberos 5"
msgstr "Kerberos  Baimendu"

#: ../iw/auth_gui.py:253
msgid "SMB"
msgstr ""

# ../iw/rootpartition_gui.py:247 ../iw/rootpartition_gui.py:297
# ../textw/partitioning_text.py:149
#: ../iw/autopartition_gui.py:34 ../iw/partition_gui.py:1416
#: ../textw/partition_text.py:1210
msgid "Automatic Partitioning"
msgstr "Berekasakako Disko Zatiketa"

# ../loader/lang.c:287
#: ../iw/autopartition_gui.py:62 ../iw/partition_gui.py:1444
#, fuzzy, python-format
msgid "You need to select at least one hard drive to have %s installed onto."
msgstr "Hizkuntza bat Hautatu"

# ../iw/rootpartition_gui.py:247 ../iw/rootpartition_gui.py:297
# ../textw/partitioning_text.py:149
#: ../iw/autopartition_gui.py:104 ../iw/partition_gui.py:1486
#, fuzzy
msgid "I want to have automatic partitioning:"
msgstr "Berekasakako Disko Zatiketa"

# ../textw/lilo_text.py:85 ../textw/silo_text.py:103
#: ../iw/autopartition_gui.py:135 ../iw/partition_gui.py:1517
#, fuzzy
msgid "Select the drive(s) to use for this installation:"
msgstr "Abiagailua non ezartzea nahi duzu?"

#: ../iw/autopartition_gui.py:159 ../iw/partition_gui.py:1541
msgid "Re_view (and modify if needed) the partitions created"
msgstr ""

#: ../iw/blpasswidget.py:37
msgid ""
"A boot loader password prevents users from changing options passed to the "
"kernel.  For greater system security, it is recommended that you set a "
"password."
msgstr ""

# ../iw/account_gui.py:183
#: ../iw/blpasswidget.py:42
#, fuzzy
msgid "_Use a boot loader password"
msgstr "Sistemako Arduradunaren (root) hitz-ezkutua:"

# ../iw/account_gui.py:63
#: ../iw/blpasswidget.py:76
#, fuzzy
msgid "Change _password"
msgstr "Mesedez, erabiltzailearen hitz-ezkutua sartu."

# ../iw/account_gui.py:183
#: ../iw/blpasswidget.py:99
#, fuzzy
msgid "Enter Boot Loader Password"
msgstr "Sistemako Arduradunaren (root) hitz-ezkutua:"

#: ../iw/blpasswidget.py:105
msgid ""
"Enter a boot loader password and then confirm it.  (Note that your BIOS "
"keymap may be different than the actual keymap you are used to.)"
msgstr ""

# ../loader/urls.c:346 ../textw/userauth_text.py:24
#: ../iw/blpasswidget.py:112
#, fuzzy
msgid "_Password:"
msgstr "Hitz-ezkutua:"

# ../iw/account_gui.py:186
#: ../iw/blpasswidget.py:118
#, fuzzy
msgid "Con_firm:"
msgstr "Egiaztatu: "

# ../iw/account_gui.py:43
#: ../iw/blpasswidget.py:139
#, fuzzy
msgid "Passwords don't match"
msgstr "Sistemako Arduradunaren (root) hitz-ezkutuek ez datoz bat."

# ../iw/account_gui.py:43
#: ../iw/blpasswidget.py:140 ../textw/bootloader_text.py:447
#, fuzzy
msgid "Passwords do not match"
msgstr "Sistemako Arduradunaren (root) hitz-ezkutuek ez datoz bat."

#: ../iw/blpasswidget.py:149 ../textw/bootloader_text.py:457
msgid ""
"Your boot loader password is less than six characters.  We recommend a "
"longer boot loader password.\n"
"\n"
"Would you like to continue with this password?"
msgstr ""

# ../iw/bootdisk_gui.py:11
#: ../iw/bootdisk_gui.py:23
#, fuzzy
msgid "Boot Diskette Creation"
msgstr "Abiatze Diskoaren Sorrera"

#: ../iw/bootdisk_gui.py:54
#, python-format
msgid ""
"The boot diskette allows you to boot your %s system from a floppy diskette.  "
"A boot diskette allows you to boot your system in the event your bootloader "
"configuration stops working, if you chose not to install a boot loader, or "
"if your third-party boot loader does not support Linux.\n"
"\n"
"It is highly recommended you create a boot diskette.\n"
msgstr ""

#: ../iw/bootdisk_gui.py:70
msgid "_Yes, I would like to create a boot diskette"
msgstr ""

#: ../iw/bootdisk_gui.py:73
msgid "No, I _do not want to create a boot diskette"
msgstr ""

# ../iw/xconfig_gui.py:123
#: ../iw/bootloader_advanced_gui.py:27
#, fuzzy
msgid "Advanced Boot Loader Configuration"
msgstr "Monitorea Egokitu"

#: ../iw/bootloader_advanced_gui.py:43 ../textw/bootloader_text.py:142
msgid ""
"Forcing the use of LBA32 for your bootloader when not supported by the BIOS "
"can cause your machine to be unable to boot.  We highly recommend you create "
"a boot disk when asked later in the install process.\n"
"\n"
"Would you like to continue and force LBA32 mode?"
msgstr ""

#: ../iw/bootloader_advanced_gui.py:51
msgid "Force LBA32"
msgstr ""

#: ../iw/bootloader_advanced_gui.py:72
msgid "_Force LBA32 (not normally required)"
msgstr ""

#: ../iw/bootloader_advanced_gui.py:76
msgid ""
"If you wish to add default options to the boot command, enter them into the "
"'General kernel parameters' field."
msgstr ""

# ../iw/lilo_gui.py:261 ../iw/silo_gui.py:207
#: ../iw/bootloader_advanced_gui.py:82
#, fuzzy
msgid "_General kernel parameters"
msgstr "Kernel-eko agerbideak"

# ../iw/xconfig_gui.py:123
#: ../iw/bootloader_main_gui.py:30 ../textw/bootloader_text.py:53
#: ../textw/bootloader_text.py:125 ../textw/bootloader_text.py:184
#: ../textw/bootloader_text.py:307 ../textw/bootloader_text.py:399
#, fuzzy
msgid "Boot Loader Configuration"
msgstr "Monitorea Egokitu"

# ../iw/lilo_gui.py:307 ../iw/lilo_gui.py:343 ../iw/silo_gui.py:256
# ../iw/silo_gui.py:291 ../textw/lilo_text.py:113 ../textw/lilo_text.py:193
# ../textw/silo_text.py:132 ../textw/silo_text.py:196
#: ../iw/bootloader_main_gui.py:75
#, fuzzy
msgid "Change Boot Loader"
msgstr "Abiaketaren Izena"

#: ../iw/bootloader_main_gui.py:93
msgid ""
"You have selected not to install a boot loader on your system.  You will "
"have to create a boot disk to boot your system with this option.\n"
"\n"
"Would you like to continue and not install a boot loader?"
msgstr ""

# ../text.py:979
#: ../iw/bootloader_main_gui.py:105
#, fuzzy
msgid "C_ontinue with no boot loader"
msgstr "Sistemaren Ezarketa"

#: ../iw/bootloader_main_gui.py:131
msgid ""
"Please select the boot loader that the computer will use.  GRUB is the "
"default boot loader. However, if you do not wish to overwrite your current "
"boot loader, select \"Do not install a boot loader.\"  "
msgstr ""

#: ../iw/bootloader_main_gui.py:139
msgid "Use _GRUB as the boot loader"
msgstr ""

#: ../iw/bootloader_main_gui.py:143
msgid "Use _LILO as the boot loader"
msgstr ""

# ../text.py:979
#: ../iw/bootloader_main_gui.py:147
#, fuzzy
msgid "_Do not install a boot loader"
msgstr "Sistemaren Ezarketa"

#: ../iw/bootloader_main_gui.py:170
#, python-format
msgid "The %s boot loader will be installed on /dev/%s."
msgstr ""

#: ../iw/bootloader_main_gui.py:175
msgid "No boot loader will be installed."
msgstr ""

# ../todo.py:1558
#: ../iw/bootloader_main_gui.py:227
#, fuzzy
msgid "_Change boot loader"
msgstr "%s ezartzen.\n"

# ../iw/xconfig_gui.py:123
#: ../iw/bootloader_main_gui.py:255
#, fuzzy
msgid "Configure advanced boot loader _options"
msgstr "Monitorea Egokitu"

# ../iw/lilo_gui.py:236
#: ../iw/bootlocwidget.py:39
#, fuzzy
msgid "Install Boot Loader record on:"
msgstr "LILO abiatresna non ezarri:"

#: ../iw/bootlocwidget.py:70
msgid "_Change Drive Order"
msgstr ""

#: ../iw/bootlocwidget.py:84
msgid "Unable to Change Drive Order for LILO"
msgstr ""

#: ../iw/bootlocwidget.py:85
msgid "We do not support changing the drive order for use with LILO."
msgstr ""

#: ../iw/bootlocwidget.py:92
msgid "Edit Drive Order"
msgstr ""

#: ../iw/bootlocwidget.py:97
msgid ""
"Arrange the drives to be in the same order as used by the BIOS. Changing the "
"drive order may be useful if you have multiple SCSI adapters or both SCSI "
"and IDE adapters and want to boot from the SCSI device.\n"
"\n"
"Changing the drive order will change where the installation program locates "
"the Master Boot Record (MBR)."
msgstr ""

# ../iw/confirm_gui.py:16
#: ../iw/confirm_gui.py:57
msgid "About to Install"
msgstr "Ezarketari Buruz"

# ../libfdisk/gnomefsedit.c:3538
#: ../iw/confirm_gui.py:65 ../iw/confirm_gui.py:95 ../textw/confirm_text.py:35
#: ../textw/confirm_text.py:61
#, fuzzy
msgid "Reboot?"
msgstr "_Garbitu"

#: ../iw/confirm_gui.py:66 ../iw/confirm_gui.py:96 ../textw/confirm_text.py:36
#: ../textw/confirm_text.py:62
msgid "The system will be rebooted now."
msgstr ""

# ../iw/confirm_gui.py:35
#: ../iw/confirm_gui.py:79
#, fuzzy, python-format
msgid "Click next to begin installation of %s."
msgstr "Red Hat Linux-en ezarketa hasteko 'Hurrengoa' zaztatu"

#: ../iw/confirm_gui.py:80
#, python-format
msgid ""
"A complete log of the installation can be found in the file '%s' after "
"rebooting your system.\n"
"\n"
"A kickstart file containing the installation options selected can be found "
"in the file '%s' after rebooting the system."
msgstr ""

# ../iw/confirm_gui.py:13
#: ../iw/confirm_gui.py:87
msgid "About to Upgrade"
msgstr "Eguneraketari Buruz"

# ../iw/confirm_gui.py:33
#: ../iw/confirm_gui.py:108
#, fuzzy, python-format
msgid "Click next to begin upgrade of %s."
msgstr "Red Hat Linux-en eguneraketa hasteko 'Hurrengoa' zaztatu"

# ../iw/confirm_gui.py:40 ../text.py:496
#: ../iw/confirm_gui.py:109
#, fuzzy, python-format
msgid ""
"A complete log of the upgrade can be found in the file '%s' after rebooting "
"your system."
msgstr ""
"Ordenagailua berpiztu ondoren, ezarketaren zehaztasun eta gertaera guztiak /"
"tmp/upgrade.log -ean aurki dezakezu. Hau gordeta edukitzea ongi etorriko "
"zaizu."

# ../iw/congrats_gui.py:11 ../iw/congrats_gui.py:59
#: ../iw/congrats_gui.py:23
msgid "Congratulations"
msgstr "Zorionak"

# ../libfdisk/gnomefsedit.c:3538
#: ../iw/congrats_gui.py:29
#, fuzzy
msgid "Reboo_t"
msgstr "_Garbitu"

#: ../iw/congrats_gui.py:56
msgid ""
"Remove any installation media (diskettes or CD-ROMs) used during the "
"installation process and press the \"Reboot\" button to reboot your system.\n"
"\n"
msgstr ""

#: ../iw/congrats_gui.py:62
#, python-format
msgid ""
"Congratulations, the installation is complete.\n"
"\n"
"%s%s"
msgstr ""

# ../text.py:535
#: ../iw/congrats_gui.py:64
#, fuzzy
msgid ""
"For information on Errata (updates and bug fixes), visit:\n"
"\thttp://www.redhat.com/errata/\n"
"\n"
"For information on automatic updates through Red Hat Network, visit:\n"
"\thttp://rhn.redhat.com/\n"
"\n"
"For information on using and configuring the system, visit:\n"
"\thttp://www.redhat.com/docs/\n"
"\thttp://www.redhat.com/apps/support/\n"
"\n"
"To register the product for support, visit:\n"
"\thttp://www.redhat.com/apps/activate/\n"
"\n"
msgstr ""
"Egokitzaketa amaitu da, Zorionak!\n"
"\n"
"Bertsio honen eguneraketei buruzko berriak jasotzeko http://www.redhat.com "
"guneko Hutsegite atalean begiradatxo bat bota.\n"
"\n"
"Sistemaren egokitzaketei buruzko berri gehiago Red Hat Linux "
"Erabiltzailearen Aitzindari Ofizialean aurki dezakezu."

# ../iw/dependencies_gui.py:9
#: ../iw/dependencies_gui.py:21
msgid "Unresolved Dependencies"
msgstr "Burutu gabeko Menpekotasunak"

# ../iw/dependencies_gui.py:31 ../iw/package_gui.py:418
# ../textw/packages_text.py:12 ../textw/packages_text.py:275
#: ../iw/dependencies_gui.py:34 ../iw/package_gui.py:252
#: ../iw/package_gui.py:495 ../iw/package_gui.py:672
#: ../textw/packages_text.py:26 ../textw/packages_text.py:351
#, python-format
msgid "Total install size: %s"
msgstr "Ezarketaren Neurri Guztia: %s"

# ../iw/dependencies_gui.py:68 ../iw/progress_gui.py:175
# ../textw/packages_text.py:312
#: ../iw/dependencies_gui.py:74 ../iw/progress_gui.py:351
#: ../iw/progress_gui.py:601 ../textw/packages_text.py:382
msgid "Package"
msgstr "Sorta"

# ../iw/dependencies_gui.py:68 ../textw/packages_text.py:312
#: ../iw/dependencies_gui.py:76 ../textw/packages_text.py:382
msgid "Requirement"
msgstr "Betebeharrekoak"

# ../iw/dependencies_gui.py:86 ../textw/packages_text.py:327
#: ../iw/dependencies_gui.py:90
#, fuzzy
msgid "_Install packages to satisfy dependencies"
msgstr "Menpekotasunak gainditzeko sortak ezarri"

# ../iw/dependencies_gui.py:89 ../textw/packages_text.py:328
#: ../iw/dependencies_gui.py:93
#, fuzzy
msgid "_Do not install packages that have dependencies"
msgstr "Menpekotasunak dituzten programa sortarik ez ezarri."

# ../iw/dependencies_gui.py:93 ../textw/packages_text.py:329
#: ../iw/dependencies_gui.py:97
#, fuzzy
msgid "I_gnore package dependencies"
msgstr "Sorten Menpekotasunak Ahaztu"

# ../gui.py:373 ../iw/language_gui.py:10 ../text.py:62 ../text.py:881
# ../text.py:910
#: ../iw/desktop_choice_gui.py:25 ../textw/desktop_choice_text.py:24
#, fuzzy
msgid "Package Defaults"
msgstr "Hizkuntzaren Hautaketa"

#: ../iw/desktop_choice_gui.py:51
msgid ""
"The default installation environment includes our recommended package "
"selection, including:\n"
"\n"
msgstr ""

#: ../iw/desktop_choice_gui.py:53
#, python-format
msgid ""
"\n"
"\n"
"After installation, additional software can be added or removed using the "
"'system-config-packages' tool.\n"
"\n"
"If you are familiar with %s, you may have specific packages you would like "
"to install or avoid installing. Check the box below to customize your "
"installation."
msgstr ""

#: ../iw/desktop_choice_gui.py:65
msgid ""
"If you would like to change the default package set to be installed you can "
"choose to customize this below."
msgstr ""

# ../iw/progress_gui.py:36
#: ../iw/desktop_choice_gui.py:73
#, fuzzy
msgid "_Install default software packages"
msgstr "Sortak Ezartzen"

# ../iw/examine_gui.py:72
#: ../iw/desktop_choice_gui.py:74
#, fuzzy
msgid "_Customize software packages to be installed"
msgstr "Eguneratutzeko sortak Norberekatu"

# ../libfdisk/gnomefsedit.c:3168
#: ../iw/driveorderwidget.py:44
msgid "Drive"
msgstr "Diskoa"

# ../iw/progress_gui.py:176 ../iw/progress_gui.py:217
#: ../iw/driveorderwidget.py:44 ../iw/progress_gui.py:602
#: ../iw/progress_gui.py:685 ../textw/partition_text.py:1126
msgid "Size"
msgstr "Neurria"

# ../iw/keyboard_gui.py:72
#: ../iw/driveorderwidget.py:44
msgid "Model"
msgstr "Eredua"

# ../iw/examine_gui.py:10
#: ../iw/examine_gui.py:32
msgid "Upgrade Examine"
msgstr "Eguneraketa Aztertu"

# ../text.py:174
#: ../iw/examine_gui.py:59
#, fuzzy
msgid "_Upgrade an existing installation"
msgstr "Aurrez Ezarritakoa Eguneratu"

#: ../iw/examine_gui.py:61
#, python-format
msgid ""
"Choose this option if you would like to upgrade your existing %s system.  "
"This option will preserve the existing data on your drives."
msgstr ""

# ../iw/installpath_gui.py:184
#: ../iw/examine_gui.py:67
#, fuzzy, python-format
msgid "_Install %s"
msgstr "Ezarketa"

#: ../iw/examine_gui.py:69
msgid ""
"Choose this option to freshly install your system. Existing software and "
"data may be overwritten depending on your configuration choices."
msgstr ""

#: ../iw/examine_gui.py:129 ../iw/pixmapRadioButtonGroup_gui.py:197
msgid "The following installed system will be upgraded:"
msgstr ""

# ../loader/urls.c:244
#: ../iw/examine_gui.py:136
#, fuzzy
msgid "Unknown Linux system"
msgstr "Ostalari Ezezaguna"

#: ../iw/fdasd_gui.py:27
msgid "fdasd"
msgstr ""

# ../iw/fdisk_gui.py:109
#: ../iw/fdasd_gui.py:28
#, fuzzy
msgid "Select drive to run fdasd on"
msgstr "'fdisk'-ek zein disko landu behar du?"

#: ../iw/fdasd_gui.py:93
msgid ""
"Formatting the selected DASD device will destroy all contents of the device. "
"Do you really want to format the selected DASD device?"
msgstr ""

# ../iw/lilo_gui.py:189 ../iw/lilo_gui.py:331 ../iw/silo_gui.py:127
# ../iw/silo_gui.py:279 ../text.py:933 ../text.py:939
#: ../iw/fdisk_gui.py:26
#, fuzzy
msgid "Partitioning with fdisk"
msgstr "Disko Zatiketa"

# ../iw/fdisk_gui.py:109
#: ../iw/fdisk_gui.py:103
#, fuzzy
msgid "Select a drive to partition with fdisk:"
msgstr "'fdisk'-ek zein disko landu behar du?"

#: ../iw/firewall_gui.py:25 ../textw/firewall_text.py:28
msgid "Firewall"
msgstr ""

#: ../iw/firewall_gui.py:35 ../textw/firewall_text.py:195
msgid "Warning - No Firewall"
msgstr ""

#: ../iw/firewall_gui.py:36 ../textw/firewall_text.py:196
msgid ""
"If this system is attached directly to the Internet or is on a large public "
"network, it is recommended that a firewall be configured to help prevent "
"unauthorized access.  However, you have selected not to configure a "
"firewall.  Choose \"Proceed\" to continue without a firewall."
msgstr ""

# ../loader/net.c:34
#: ../iw/firewall_gui.py:43
#, fuzzy
msgid "_Configure Firewall"
msgstr "TCP/IP Egokitu"

#: ../iw/firewall_gui.py:43 ../iw/xconfig_gui.py:444
#: ../textw/firewall_text.py:203
msgid "_Proceed"
msgstr ""

#: ../iw/firewall_gui.py:131
#, python-format
msgid ""
"Invalid port given: %s.  The proper format is 'port:protocol', where port is "
"between 1 and 65535, and protocol is either 'tcp' or 'udp'.\n"
"\n"
"For example, '1234:udp'"
msgstr ""

# ../todo.py:857
#: ../iw/firewall_gui.py:135
#, fuzzy
msgid "Warning: Bad Token"
msgstr "Bilatzen"

#: ../iw/firewall_gui.py:161 ../textw/firewall_text.py:30
msgid ""
"A firewall can help prevent unauthorized access to your computer from the "
"outside world.  Would you like to enable a firewall?"
msgstr ""

#: ../iw/firewall_gui.py:169
msgid "N_o firewall"
msgstr ""

# ../gnome-map/gglobe-canvas.c:26
#: ../iw/firewall_gui.py:171
#, fuzzy
msgid "_Enable firewall"
msgstr "Antialias-a baimendu"

# ../text.py:997
#: ../iw/firewall_gui.py:173
#, fuzzy
msgid "_Custom firewall"
msgstr "Eguneraketa Norberekatua"

#: ../iw/firewall_gui.py:191
msgid "What services should be allowed to pass through the firewall?"
msgstr ""

#: ../iw/firewall_gui.py:199
msgid "_Allow incoming:"
msgstr ""

# ../comps/comps-master:140
#: ../iw/firewall_gui.py:224
#, fuzzy
msgid "Other _ports:"
msgstr "Inprimaketa Sistema"

#: ../iw/firewall_gui.py:232
msgid "If you would like to allow all traffic from a device, select it below."
msgstr ""

# ../libfdisk/gnomefsedit.c:2206
#: ../iw/firewall_gui.py:241
#, fuzzy
msgid "_Trusted devices:"
msgstr "RAID tramankulua beste batek darabil"

#: ../iw/firewall_gui.py:279
msgid "_Security Enhanced Linux (SELinux) Extensions:"
msgstr ""

# ../iw/keyboard_gui.py:120
#: ../iw/firewall_gui.py:285
#, fuzzy
msgid "Disabled"
msgstr "Tekla Hilak Eragotzi"

# ../todo.py:857
#: ../iw/firewall_gui.py:285
#, fuzzy
msgid "Warn"
msgstr "Bilatzen"

#: ../iw/firewall_gui.py:285 ../textw/firewall_text.py:265
msgid "Active"
msgstr ""

# ../text.py:194 ../text.py:915
#: ../iw/installpath_gui.py:34 ../textw/installpath_text.py:48
msgid "Installation Type"
msgstr "Ezarketa Mota"

# ../iw/network_gui.py:163
#: ../iw/ipwidget.py:92
#, fuzzy
msgid "IP Address is missing"
msgstr "IP Helbidea"

#: ../iw/ipwidget.py:97
msgid "IP Addresses must contain numbers between 1 and 255"
msgstr ""

#: ../iw/ipwidget.py:102 ../iw/ipwidget.py:104
msgid "IP Addresses must contain numbers between 0 and 255"
msgstr ""

# ../gui.py:373 ../iw/language_gui.py:10 ../text.py:62 ../text.py:881
# ../text.py:910
#: ../iw/language_gui.py:23 ../textw/language_text.py:38
msgid "Language Selection"
msgstr "Hizkuntzaren Hautaketa"

# ../text.py:63
#: ../iw/language_gui.py:62 ../textw/language_text.py:39 ../loader2/lang.c:372
msgid "What language would you like to use during the installation process?"
msgstr "Ezarketak dirauen bitartean, zein hizkuntza erabiltzea nahi duzu?"

# ../comps/comps-master:450
#: ../iw/language_support_gui.py:24
#, fuzzy
msgid "Additional Language Support"
msgstr "Ordenagailu Mugikorra Onartu"

# ../loader/lang.c:287
#: ../iw/language_support_gui.py:205
#, fuzzy
msgid "Select the _default language for the system:   "
msgstr "Hizkuntza bat Hautatu"

# ../text.py:63
#: ../iw/language_support_gui.py:219
#, fuzzy
msgid "Select _additional languages to install on the system:"
msgstr "Ezarketak dirauen bitartean, zein hizkuntza erabiltzea nahi duzu?"

# ../iw/package_gui.py:399
#: ../iw/language_support_gui.py:254
#, fuzzy
msgid "_Select All"
msgstr "Taldekide guztiak hautatu"

# ../iw/package_gui.py:399
#: ../iw/language_support_gui.py:262
#, fuzzy
msgid "Select Default _Only"
msgstr "Taldekide guztiak hautatu"

# ../libfdisk/gnomefsedit.c:3538
#: ../iw/language_support_gui.py:273
#, fuzzy
msgid "Rese_t"
msgstr "_Garbitu"

#: ../iw/lvm_dialog_gui.py:107 ../iw/lvm_dialog_gui.py:153
#: ../iw/lvm_dialog_gui.py:164 ../iw/lvm_dialog_gui.py:204
#: ../iw/lvm_dialog_gui.py:286 ../iw/lvm_dialog_gui.py:580
#: ../iw/lvm_dialog_gui.py:644 ../iw/lvm_dialog_gui.py:851
msgid "Not enough space"
msgstr ""

#: ../iw/lvm_dialog_gui.py:108
msgid ""
"The physical extent size cannot be changed because otherwise the space "
"required by the currently defined logical volumes will be increased to more "
"than the available space."
msgstr ""

#: ../iw/lvm_dialog_gui.py:117
msgid "Confirm Physical Extent Change"
msgstr ""

#: ../iw/lvm_dialog_gui.py:118
msgid ""
"This change in the value of the physical extent will require the sizes of "
"the current logical volume requests to be rounded up in size to an integer "
"multiple of the physical extent.\n"
"\n"
"This change will take affect immediately."
msgstr ""

# ../textw/partitioning_text.py:154 ../textw/partitioning_text.py:155
#: ../iw/lvm_dialog_gui.py:127 ../iw/lvm_dialog_gui.py:186
#: ../iw/network_gui.py:156 ../iw/network_gui.py:160 ../iw/network_gui.py:183
#, fuzzy
msgid "C_ontinue"
msgstr "Jarraitu"

#: ../iw/lvm_dialog_gui.py:154
#, python-format
msgid ""
"The physical extent size cannot be changed because the value selected (%"
"10.2f MB) is larger than the smallest physical volume (%10.2f MB) in the "
"volume group."
msgstr ""

#: ../iw/lvm_dialog_gui.py:165
#, python-format
msgid ""
"The physical extent size cannot be changed because the value selected (%"
"10.2f MB) is too large compared to the size of the smallest physical volume "
"(%10.2f MB) in the volume group."
msgstr ""

#: ../iw/lvm_dialog_gui.py:179
msgid "Too small"
msgstr ""

#: ../iw/lvm_dialog_gui.py:180
msgid ""
"This change in the value of the physical extent will waste substantial space "
"on one or more of the physical volumes in the volume group."
msgstr ""

#: ../iw/lvm_dialog_gui.py:205
#, python-format
msgid ""
"The physical extent size cannot be changed because the resulting maximum "
"logical volume size (%10.2f MB) is smaller than one or more of the currently "
"defined logical volumes."
msgstr ""

#: ../iw/lvm_dialog_gui.py:287
msgid ""
"You cannot remove this physical volume because otherwise the volume group "
"will be too small to hold the currently defined logical volumes."
msgstr ""

#: ../iw/lvm_dialog_gui.py:358
msgid "Make Logical Volume"
msgstr ""

#: ../iw/lvm_dialog_gui.py:361
#, python-format
msgid "Edit Logical Volume: %s"
msgstr ""

#: ../iw/lvm_dialog_gui.py:363
msgid "Edit Logical Volume"
msgstr ""

# ../libfdisk/gnomefsedit.c:824 ../libfdisk/gnomefsedit.c:1909
# ../libfdisk/newtfsedit.c:389
#: ../iw/lvm_dialog_gui.py:376 ../iw/partition_dialog_gui.py:286
#: ../iw/raid_dialog_gui.py:294
#, fuzzy
msgid "_Mount Point:"
msgstr "Loturagunea:"

# ../text.py:941 ../textw/partitioning_text.py:301
#: ../iw/lvm_dialog_gui.py:384
#, fuzzy
msgid "_File System Type:"
msgstr "Erro Fitxategitzaren Neurria"

# ../text.py:941 ../textw/partitioning_text.py:301
#: ../iw/lvm_dialog_gui.py:392 ../iw/partition_dialog_gui.py:305
#, fuzzy
msgid "Original File System Type:"
msgstr "Erro Fitxategitzaren Neurria"

# ../libfdisk/newtfsedit.c:486
#: ../iw/lvm_dialog_gui.py:397 ../iw/partition_dialog_gui.py:316
#: ../iw/raid_dialog_gui.py:315
msgid "Unknown"
msgstr "Ezezaguna"

#: ../iw/lvm_dialog_gui.py:403
msgid "_Logical Volume Name:"
msgstr ""

#: ../iw/lvm_dialog_gui.py:411
msgid "Logical Volume Name:"
msgstr ""

# ../libfdisk/gnomefsedit.c:866 ../libfdisk/newtfsedit.c:408
#: ../iw/lvm_dialog_gui.py:419 ../iw/partition_dialog_gui.py:362
#, fuzzy
msgid "_Size (MB):"
msgstr "Neurria (MB)"

# ../libfdisk/gnomefsedit.c:866 ../libfdisk/newtfsedit.c:408
#: ../iw/lvm_dialog_gui.py:425 ../iw/partition_dialog_gui.py:379
#: ../iw/partition_dialog_gui.py:422 ../textw/partition_text.py:339
#: ../textw/partition_text.py:422 ../textw/partition_text.py:509
#, fuzzy
msgid "Size (MB):"
msgstr "Neurria (MB)"

#: ../iw/lvm_dialog_gui.py:440
#, python-format
msgid "(Max size is %s MB)"
msgstr ""

# ../textw/packages_text.py:116
#: ../iw/lvm_dialog_gui.py:501
#, fuzzy
msgid "Illegal size"
msgstr "Guztira"

# ../textw/partitioning_text.py:319
#: ../iw/lvm_dialog_gui.py:502
#, fuzzy
msgid "The requested size as entered is not a valid number greater than 0."
msgstr "Idatzi beharrekoak zenbaki bat izan behar du."

# ../libfdisk/gnomefsedit.c:2992 ../todo.py:1586
#: ../iw/lvm_dialog_gui.py:535
#, fuzzy
msgid "Mount point in use"
msgstr "Loturagunea"

# ../libfdisk/gnomefsedit.c:2146
#: ../iw/lvm_dialog_gui.py:536
#, fuzzy, python-format
msgid "The mount point \"%s\" is in use, please pick another."
msgstr ""
"Eskatutako loturagunea iadanik beste batek darabil. Loturagune egoki bat "
"hautatu mesedez."

#: ../iw/lvm_dialog_gui.py:547
msgid "Illegal Logical Volume Name"
msgstr ""

#: ../iw/lvm_dialog_gui.py:566
msgid "Illegal logical volume name"
msgstr ""

# ../libfdisk/gnomefsedit.c:2207
#: ../iw/lvm_dialog_gui.py:567
#, fuzzy, python-format
msgid "The logical volume name \"%s\" is already in use. Please pick another."
msgstr ""
"\"/dev/%s\" tramankulua RAID bezala egokituta dago. Beste bat hautatu "
"mesedez."

#: ../iw/lvm_dialog_gui.py:581
#, python-format
msgid ""
"The current requested size (%10.2f MB) is larger than maximum logical volume "
"size (%10.2f MB). To increase this limit you can increase the Physical "
"Extent size for this Volume Group."
msgstr ""

#: ../iw/lvm_dialog_gui.py:621 ../iw/partition_dialog_gui.py:173
#: ../iw/partition_dialog_gui.py:185 ../iw/partition_dialog_gui.py:233
#: ../iw/raid_dialog_gui.py:221 ../textw/partition_text.py:850
#: ../textw/partition_text.py:872 ../textw/partition_text.py:1045
msgid "Error With Request"
msgstr ""

#: ../iw/lvm_dialog_gui.py:645 ../iw/lvm_dialog_gui.py:852
#, python-format
msgid ""
"The logical volumes you have configured require %g MB, but the volume group "
"only has %g MB.  Please either make the volume group larger or make the "
"logical volume(s) smaller."
msgstr ""

#: ../iw/lvm_dialog_gui.py:695
msgid "No free slots"
msgstr ""

#: ../iw/lvm_dialog_gui.py:696
#, python-format
msgid "You cannot create more than %s logical volumes per volume group."
msgstr ""

# ../todo.py:1599
#: ../iw/lvm_dialog_gui.py:702
#, fuzzy
msgid "No free space"
msgstr "Diskaren Zabaltegia"

#: ../iw/lvm_dialog_gui.py:703
msgid ""
"There is no room left in the volume group to create new logical volumes. To "
"add a logical volume you will need to reduce the size of one or more of the "
"currently existing logical volumes"
msgstr ""

# ../libfdisk/gnomefsedit.c:729 ../libfdisk/newtfsedit.c:837
#: ../iw/lvm_dialog_gui.py:731
#, fuzzy, python-format
msgid "Are you sure you want to Delete the logical volume \"%s\"?"
msgstr "Disko zati hau ezabatzea gura dozu?"

# ../textw/lilo_text.py:144 ../textw/lilo_text.py:149
#: ../iw/lvm_dialog_gui.py:863
#, fuzzy
msgid "Invalid Volume Group Name"
msgstr "Abiaketaren Izena Erabilkaitza"

#: ../iw/lvm_dialog_gui.py:876
msgid "Name in use"
msgstr ""

# ../libfdisk/gnomefsedit.c:2146
#: ../iw/lvm_dialog_gui.py:877
#, fuzzy, python-format
msgid "The volume group name \"%s\" is already in use. Please pick another."
msgstr ""
"Eskatutako loturagunea iadanik beste batek darabil. Loturagune egoki bat "
"hautatu mesedez."

#: ../iw/lvm_dialog_gui.py:921
msgid "Not enough physical volumes"
msgstr ""

#: ../iw/lvm_dialog_gui.py:922
msgid ""
"At least one unused physical volume partition is needed to create an LVM "
"Volume Group.\n"
"\n"
"Create a partition or RAID array of type \"physical volume (LVM)\" and then "
"select the \"LVM\" option again."
msgstr ""

# ../textw/lilo_text.py:144 ../textw/lilo_text.py:149
#: ../iw/lvm_dialog_gui.py:933
#, fuzzy
msgid "Make LVM Volume Group"
msgstr "Abiaketaren Izena Erabilkaitza"

# ../textw/lilo_text.py:144 ../textw/lilo_text.py:149
#: ../iw/lvm_dialog_gui.py:936
#, fuzzy, python-format
msgid "Edit LVM Volume Group: %s"
msgstr "Abiaketaren Izena Erabilkaitza"

# ../textw/lilo_text.py:144 ../textw/lilo_text.py:149
#: ../iw/lvm_dialog_gui.py:938
#, fuzzy
msgid "Edit LVM Volume Group"
msgstr "Abiaketaren Izena Erabilkaitza"

#: ../iw/lvm_dialog_gui.py:954
msgid "_Volume Group Name:"
msgstr ""

#: ../iw/lvm_dialog_gui.py:962
msgid "Volume Group Name:"
msgstr ""

#: ../iw/lvm_dialog_gui.py:971
msgid "_Physical Extent:"
msgstr ""

#: ../iw/lvm_dialog_gui.py:978
msgid "Physical Extent:"
msgstr ""

#: ../iw/lvm_dialog_gui.py:991
msgid "Physical Volumes to _Use:"
msgstr ""

# ../todo.py:1599
#: ../iw/lvm_dialog_gui.py:997
#, fuzzy
msgid "Used Space:"
msgstr "Diskaren Zabaltegia"

# ../todo.py:1599
#: ../iw/lvm_dialog_gui.py:1014
#, fuzzy
msgid "Free Space:"
msgstr "Diskaren Zabaltegia"

# ../textw/packages_text.py:116
#: ../iw/lvm_dialog_gui.py:1032
#, fuzzy
msgid "Total Space:"
msgstr "Guztira:"

#: ../iw/lvm_dialog_gui.py:1061
msgid "Logical Volume Name"
msgstr ""

# ../libfdisk/gnomefsedit.c:866 ../libfdisk/newtfsedit.c:408
#: ../iw/lvm_dialog_gui.py:1067 ../iw/partition_gui.py:363
msgid "Size (MB)"
msgstr "Neurria (MB)"

# ../iw/account_gui.py:270 ../libfdisk/newtfsedit.c:1444
# ../textw/userauth_text.py:195
#: ../iw/lvm_dialog_gui.py:1081 ../iw/osbootwidget.py:95
#, fuzzy
msgid "_Add"
msgstr "Gehitu"

# ../iw/account_gui.py:272 ../libfdisk/newtfsedit.c:1437
# ../libfdisk/newtfsedit.c:1445 ../textw/lilo_text.py:202
# ../textw/lilo_text.py:228 ../textw/partitioning_text.py:64
# ../textw/silo_text.py:205 ../textw/silo_text.py:227
# ../textw/userauth_text.py:196
#: ../iw/lvm_dialog_gui.py:1084 ../iw/network_gui.py:481
#: ../iw/osbootwidget.py:99 ../iw/partition_gui.py:1356
#, fuzzy
msgid "_Edit"
msgstr "Argitatu"

#: ../iw/lvm_dialog_gui.py:1099
msgid "Logical Volumes"
msgstr ""

# ../iw/mouse_gui.py:56 ../text.py:957 ../text.py:959
#: ../iw/mouse_gui.py:24
msgid "Mouse Configuration"
msgstr "Xagua Egokitzen"

# ../iw/mouse_gui.py:131 ../textw/mouse_text.py:7
#: ../iw/mouse_gui.py:78 ../textw/mouse_text.py:20
msgid "/dev/ttyS0 (COM1 under DOS)"
msgstr "/dev/ttyS0 (COM1 DOS-ean)"

# ../iw/mouse_gui.py:132 ../textw/mouse_text.py:8
#: ../iw/mouse_gui.py:79 ../textw/mouse_text.py:21
msgid "/dev/ttyS1 (COM2 under DOS)"
msgstr "/dev/ttyS1 (COM2 DOS-ean)"

# ../iw/mouse_gui.py:133 ../textw/mouse_text.py:9
#: ../iw/mouse_gui.py:80 ../textw/mouse_text.py:22
msgid "/dev/ttyS2 (COM3 under DOS)"
msgstr "/dev/ttyS2 (COM3 DOS-ean)"

# ../iw/mouse_gui.py:134 ../textw/mouse_text.py:10
#: ../iw/mouse_gui.py:81 ../textw/mouse_text.py:23
msgid "/dev/ttyS3 (COM4 under DOS)"
msgstr "/dev/ttyS3 (COM4 DOS-ean)"

# ../iw/lilo_gui.py:307 ../iw/mouse_gui.py:142 ../iw/silo_gui.py:256
# ../libfdisk/gnomefsedit.c:2993 ../textw/lilo_text.py:112
# ../textw/lilo_text.py:193 ../textw/mouse_text.py:25
# ../textw/silo_text.py:131 ../textw/silo_text.py:196
#: ../iw/mouse_gui.py:91 ../iw/osbootwidget.py:159
#, fuzzy
msgid "_Device"
msgstr "Tramankulua"

# ../iw/keyboard_gui.py:72
#: ../iw/mouse_gui.py:137
#, fuzzy
msgid "_Model"
msgstr "Eredua"

# ../iw/mouse_gui.py:136
#: ../iw/mouse_gui.py:235
#, fuzzy
msgid "_Emulate 3 buttons"
msgstr "3 Botoitxo Antzeztu"

#: ../iw/mouse_gui.py:250
msgid "Select the appropriate mouse for the system."
msgstr ""

# ../iw/network_gui.py:211
#: ../iw/network_gui.py:27 ../iw/network_gui.py:571
msgid "Gateway"
msgstr "Pasabidea"

# ../iw/network_gui.py:211
#: ../iw/network_gui.py:27 ../iw/network_gui.py:573
msgid "Primary DNS"
msgstr "Aurrenengo DNS-a"

# ../iw/network_gui.py:211
#: ../iw/network_gui.py:28 ../iw/network_gui.py:575
msgid "Secondary DNS"
msgstr "Bigarreneko DNS-a"

# ../iw/network_gui.py:211
#: ../iw/network_gui.py:28 ../iw/network_gui.py:577
#, fuzzy
msgid "Tertiary DNS"
msgstr "Hirugarreneko DNS-a"

# ../iw/network_gui.py:211
#: ../iw/network_gui.py:30
#, fuzzy
msgid "_Gateway"
msgstr "Pasabidea"

# ../iw/network_gui.py:211
#: ../iw/network_gui.py:30
#, fuzzy
msgid "_Primary DNS"
msgstr "Aurrenengo DNS-a"

# ../iw/network_gui.py:211
#: ../iw/network_gui.py:31
#, fuzzy
msgid "_Secondary DNS"
msgstr "Bigarreneko DNS-a"

# ../iw/network_gui.py:211
#: ../iw/network_gui.py:31
#, fuzzy
msgid "_Tertiary DNS"
msgstr "Hirugarreneko DNS-a"

# ../iw/network_gui.py:11 ../textw/network_text.py:94
#: ../iw/network_gui.py:35
msgid "Network Configuration"
msgstr "Sarearen Egokitzaketa"

# ../iw/rootpartition_gui.py:313
#: ../iw/network_gui.py:155 ../iw/network_gui.py:159 ../iw/network_gui.py:163
#: ../iw/network_gui.py:168 ../iw/network_gui.py:174 ../iw/network_gui.py:178
#: ../iw/network_gui.py:183
#, fuzzy
msgid "Error With Data"
msgstr "Disko Zatiteka Eskuz egin"

#: ../iw/network_gui.py:156
msgid ""
"You have not specified a hostname.  Depending on your network environment "
"this may cause problems later."
msgstr ""

#: ../iw/network_gui.py:160
#, python-format
msgid ""
"You have not specified the field \"%s\".  Depending on your network "
"environment this may cause problems later."
msgstr ""

#: ../iw/network_gui.py:164 ../textw/network_text.py:399
#, python-format
msgid ""
"The hostname \"%s\" is not valid for the following reason:\n"
"\n"
"%s"
msgstr ""

#: ../iw/network_gui.py:169
#, python-format
msgid ""
"An error occurred converting the value entered for \"%s\":\n"
"%s"
msgstr ""

#: ../iw/network_gui.py:175
#, python-format
msgid "A value is required for the field \"%s\"."
msgstr ""

# ../textw/partitioning_text.py:319
#: ../iw/network_gui.py:179
#, fuzzy
msgid "The IP information you have entered is invalid."
msgstr "Idatzi beharrekoak zenbaki bat izan behar du."

#: ../iw/network_gui.py:183
msgid ""
"You have no active network devices.  Your system will not be able to "
"communicate over a network by default without at least one device active.\n"
"\n"
"NOTE: If you have a PCMCIA-based network adapter you should leave it "
"inactive at this point. When you reboot your system the adapter will be "
"activated automatically."
msgstr ""

#: ../iw/network_gui.py:202
#, python-format
msgid "Edit Interface %s"
msgstr ""

# ../iw/network_gui.py:148
#: ../iw/network_gui.py:213
#, fuzzy
msgid "Configure using _DHCP"
msgstr "DHCP erabiliz Egokitzatu"

# ../iw/network_gui.py:154
#: ../iw/network_gui.py:219
#, fuzzy
msgid "_Activate on boot"
msgstr "Abiatzerakoan Piztu"

# ../iw/network_gui.py:163
#: ../iw/network_gui.py:228
#, fuzzy
msgid "_IP Address"
msgstr "IP Helbidea"

# ../iw/network_gui.py:164 ../loader/net.c:727
#: ../iw/network_gui.py:229
#, fuzzy
msgid "Net_mask"
msgstr "Sarearen Mozorroa"

# ../libfdisk/gnomefsedit.c:824 ../libfdisk/gnomefsedit.c:1909
# ../libfdisk/newtfsedit.c:389
#: ../iw/network_gui.py:232
#, fuzzy
msgid "_Point to Point (IP)"
msgstr "Loturagunea:"

# ../loader/net.c:34
#: ../iw/network_gui.py:256
#, fuzzy, python-format
msgid "Configure %s"
msgstr "TCP/IP Egokitu"

# ../iw/network_gui.py:154
#: ../iw/network_gui.py:424
#, fuzzy
msgid "Active on Boot"
msgstr "Abiatzerakoan Piztu"

# ../iw/lilo_gui.py:307 ../iw/mouse_gui.py:142 ../iw/silo_gui.py:256
# ../libfdisk/gnomefsedit.c:2993 ../textw/lilo_text.py:112
# ../textw/lilo_text.py:193 ../textw/mouse_text.py:25
# ../textw/silo_text.py:131 ../textw/silo_text.py:196
#: ../iw/network_gui.py:426 ../iw/osbootwidget.py:66
#: ../iw/partition_gui.py:357 ../iw/silo_gui.py:263
#: ../textw/bootloader_text.py:212 ../textw/bootloader_text.py:283
#: ../textw/mouse_text.py:38 ../textw/partition_text.py:1126
#: ../textw/silo_text.py:142 ../textw/silo_text.py:207
msgid "Device"
msgstr "Tramankulua"

# ../iw/network_gui.py:164 ../loader/net.c:727
#: ../iw/network_gui.py:428
#, fuzzy
msgid "IP/Netmask"
msgstr "Sarearen Mozorroa"

# ../loader/net.c:735
#: ../iw/network_gui.py:488
#, fuzzy
msgid "Network Devices"
msgstr "Sareko Tramankulua"

# ../iw/network_gui.py:210 ../loader/net.c:531 ../loader/net.c:729
# ../textw/network_text.py:141
#: ../iw/network_gui.py:498
#, fuzzy
msgid "Set the hostname:"
msgstr "Ostalariaren Izena"

#: ../iw/network_gui.py:502
msgid "_automatically via DHCP"
msgstr ""

#: ../iw/network_gui.py:508
msgid "_manually"
msgstr ""

#: ../iw/network_gui.py:514
msgid "(ex. \"host.domain.com\")"
msgstr ""

# ../iw/network_gui.py:210 ../loader/net.c:531 ../loader/net.c:729
# ../textw/network_text.py:141
#: ../iw/network_gui.py:521 ../loader2/net.c:647
msgid "Hostname"
msgstr "Ostalariaren Izena"

# ../loader/devices.c:77
#: ../iw/network_gui.py:582
#, fuzzy
msgid "Miscellaneous Settings"
msgstr "Denetatik"

#: ../iw/osbootwidget.py:42
msgid ""
"You can configure the boot loader to boot other operating systems. It will "
"allow you to select an operating system to boot from the list. To add "
"additional operating systems, which are not automatically detected, click "
"'Add.' To change the operating system booted by default, select 'Default' by "
"the desired operating system."
msgstr ""

# ../iw/lilo_gui.py:307 ../iw/silo_gui.py:256 ../textw/lilo_text.py:193
# ../textw/silo_text.py:196
#: ../iw/osbootwidget.py:66 ../iw/silo_gui.py:263
#: ../textw/bootloader_text.py:283 ../textw/silo_text.py:207
#: ../textw/xconfig_text.py:413 ../textw/xconfig_text.py:420
#: ../textw/xconfig_text.py:547 ../textw/xconfig_text.py:548
#: ../textw/xconfig_text.py:567 ../textw/xconfig_text.py:568
msgid "Default"
msgstr "Jatorrizkoa"

#: ../iw/osbootwidget.py:66
msgid "Label"
msgstr ""

#: ../iw/osbootwidget.py:132
msgid "Image"
msgstr ""

#: ../iw/osbootwidget.py:139
msgid ""
"Enter a label to be displayed in the boot loader menu. The device (or hard "
"drive and partition number) is the device from which it boots."
msgstr ""

#: ../iw/osbootwidget.py:151
msgid "_Label"
msgstr ""

# ../iw/lilo_gui.py:339 ../iw/silo_gui.py:287
#: ../iw/osbootwidget.py:195
#, fuzzy
msgid "Default Boot _Target"
msgstr "Jatorrizko abiagailua irudia"

# ../loader/lang.c:287
#: ../iw/osbootwidget.py:224
#, fuzzy
msgid "You must specify a label for the entry"
msgstr "Hizkuntza bat Hautatu"

# ../textw/lilo_text.py:150
#: ../iw/osbootwidget.py:233
#, fuzzy
msgid "Boot label contains illegal characters"
msgstr "Abiaguneko izenak ikur erabilkaitzak ditu."

#: ../iw/osbootwidget.py:257
msgid "Duplicate Label"
msgstr ""

# ../textw/userauth_text.py:13
#: ../iw/osbootwidget.py:258
#, fuzzy
msgid "This label is already in use for another boot entry."
msgstr "Erabiltzailearen Nortasuna iadanik badago. Beste bat aukeratu."

# ../libfdisk/gnomefsedit.c:2617
#: ../iw/osbootwidget.py:271
#, fuzzy
msgid "Duplicate Device"
msgstr "RAID tramankulua ezabatu?"

# ../textw/userauth_text.py:13
#: ../iw/osbootwidget.py:272
#, fuzzy
msgid "This device is already being used for another boot entry."
msgstr "Erabiltzailearen Nortasuna iadanik badago. Beste bat aukeratu."

# ../iw/account_gui.py:186
#: ../iw/osbootwidget.py:336
#, fuzzy
msgid "Cannot Delete"
msgstr "Egiaztatu: "

#: ../iw/osbootwidget.py:337
#, python-format
msgid ""
"This boot target cannot be deleted because it is for the %s system you are "
"about to install."
msgstr ""

# ../iw/package_gui.py:20
#: ../iw/package_gui.py:52 ../textw/packages_text.py:318
msgid "Individual Package Selection"
msgstr "Banakako Sorta Hautaketa"

# ../iw/progress_gui.py:217
#: ../iw/package_gui.py:66
#, fuzzy
msgid "All Packages"
msgstr "Sortak"

#: ../iw/package_gui.py:186
#, python-format
msgid ""
"Package: %s\n"
"Version: %s\n"
msgstr ""

#: ../iw/package_gui.py:356
msgid "_Tree View"
msgstr ""

#: ../iw/package_gui.py:358
msgid "_Flat View"
msgstr ""

# ../iw/dependencies_gui.py:68 ../iw/progress_gui.py:175
# ../textw/packages_text.py:312
#: ../iw/package_gui.py:373
#, fuzzy
msgid "_Package"
msgstr "Sorta"

# ../libfdisk/gnomefsedit.c:866 ../libfdisk/newtfsedit.c:408
#: ../iw/package_gui.py:375
#, fuzzy
msgid "_Size (MB)"
msgstr "Neurria (MB)"

# ../textw/packages_text.py:116
#: ../iw/package_gui.py:426
msgid "Total size: "
msgstr "Guztira:"

# ../iw/package_gui.py:399
#: ../iw/package_gui.py:429
#, fuzzy
msgid "Select _all in group"
msgstr "Taldekide guztiak hautatu"

# ../iw/package_gui.py:403
#: ../iw/package_gui.py:433
#, fuzzy
msgid "_Unselect all in group"
msgstr "Taldekide guztiak  ez hautatu"

# ../iw/package_gui.py:389 ../textw/packages_text.py:60
# ../textw/packages_text.py:241
#: ../iw/package_gui.py:470 ../textw/packages_text.py:63
msgid "Package Group Selection"
msgstr "Sorta Multzo Hautaketa"

#: ../iw/package_gui.py:677
msgid "Minimal"
msgstr ""

#: ../iw/package_gui.py:739
#, python-format
msgid "Details for '%s'"
msgstr ""

#: ../iw/package_gui.py:748
msgid ""
"A package group can have both Base and Optional package members.  Base "
"packages are always selected as long as the package group is selected.\n"
"\n"
"Select the optional packages to be installed:"
msgstr ""

# ../iw/progress_gui.py:217
#: ../iw/package_gui.py:791
#, fuzzy
msgid "Base Packages"
msgstr "Sortak"

# ../iw/progress_gui.py:217
#: ../iw/package_gui.py:821
#, fuzzy
msgid "Optional Packages"
msgstr "Sortak"

# ../gui.py:369 ../gui.py:607
#: ../iw/package_gui.py:1031
#, fuzzy
msgid "Details"
msgstr "Amaitu"

# ../iw/package_gui.py:494 ../textw/packages_text.py:54
#: ../iw/package_gui.py:1125
#, fuzzy
msgid "_Select individual packages"
msgstr "Banakako Sortak Hautatu"

#: ../iw/partition_dialog_gui.py:58
msgid "Additional Size Options"
msgstr ""

# ../textw/partitioning_text.py:318 ../textw/partitioning_text.py:324
# ../textw/partitioning_text.py:331
#: ../iw/partition_dialog_gui.py:63
#, fuzzy
msgid "_Fixed size"
msgstr "Neurri Okerra"

#: ../iw/partition_dialog_gui.py:65
msgid "Fill all space _up to (MB):"
msgstr ""

#: ../iw/partition_dialog_gui.py:75
msgid "Fill to maximum _allowable size"
msgstr ""

#: ../iw/partition_dialog_gui.py:174
msgid "The end cylinder must be greater than the start cylinder."
msgstr ""

# ../iw/lilo_gui.py:189 ../iw/lilo_gui.py:331 ../iw/silo_gui.py:127
# ../iw/silo_gui.py:279 ../text.py:933 ../text.py:939
#: ../iw/partition_dialog_gui.py:263 ../textw/partition_text.py:651
#, fuzzy
msgid "Add Partition"
msgstr "Disko Zatiketa"

# ../libfdisk/gnomefsedit.c:797 ../libfdisk/gnomefsedit.c:803
# ../libfdisk/gnomefsedit.c:807 ../libfdisk/gnomefsedit.c:809
# ../libfdisk/newtfsedit.c:368 ../libfdisk/newtfsedit.c:374
# ../libfdisk/newtfsedit.c:378 ../libfdisk/newtfsedit.c:380
#: ../iw/partition_dialog_gui.py:266
#, fuzzy, python-format
msgid "Edit Partition: /dev/%s"
msgstr "Disko Zatia Argitatu"

# ../libfdisk/gnomefsedit.c:797 ../libfdisk/gnomefsedit.c:803
# ../libfdisk/gnomefsedit.c:807 ../libfdisk/gnomefsedit.c:809
# ../libfdisk/newtfsedit.c:368 ../libfdisk/newtfsedit.c:374
# ../libfdisk/newtfsedit.c:378 ../libfdisk/newtfsedit.c:380
#: ../iw/partition_dialog_gui.py:268
msgid "Edit Partition"
msgstr "Disko Zatia Argitatu"

# ../text.py:941 ../textw/partitioning_text.py:301
#: ../iw/partition_dialog_gui.py:295 ../iw/raid_dialog_gui.py:302
#, fuzzy
msgid "File System _Type:"
msgstr "Erro Fitxategitzaren Neurria"

# ../libfdisk/gnomefsedit.c:1033 ../libfdisk/newtfsedit.c:519
#: ../iw/partition_dialog_gui.py:328
#, fuzzy
msgid "Allowable _Drives:"
msgstr "Disko Gogor Zillegituak:"

# ../libfdisk/gnomefsedit.c:3168
#: ../iw/partition_dialog_gui.py:341
#, fuzzy
msgid "Drive:"
msgstr "Diskoa"

# ../text.py:941 ../textw/partitioning_text.py:301
#: ../iw/partition_dialog_gui.py:350
#, fuzzy
msgid "Original File System Label:"
msgstr "Erro Fitxategitzaren Neurria"

#: ../iw/partition_dialog_gui.py:385
msgid "_Start Cylinder:"
msgstr ""

#: ../iw/partition_dialog_gui.py:403
msgid "_End Cylinder:"
msgstr ""

# ../libfdisk/gnomefsedit.c:3409
#: ../iw/partition_dialog_gui.py:454
#, fuzzy
msgid "Force to be a _primary partition"
msgstr "Izendatubariko Disko-zatiak daude..."

# ../iw/lilo_gui.py:192 ../iw/lilo_gui.py:332 ../iw/silo_gui.py:132
# ../iw/silo_gui.py:280 ../libfdisk/gnomefsedit.c:2996
#: ../iw/partition_gui.py:359 ../iw/silo_gui.py:140 ../iw/silo_gui.py:287
#: ../textw/partition_text.py:1126
msgid "Type"
msgstr "Mota"

# ../fstab.py:395 ../fstab.py:598 ../fstab.py:633 ../fstab.py:643
# ../fstab.py:667
#: ../iw/partition_gui.py:362
#, fuzzy
msgid "Format"
msgstr "Diskoa Egituratzen"

# ../iw/progress_gui.py:217
#: ../iw/partition_gui.py:364 ../textw/partition_text.py:1126
#, fuzzy
msgid "Start"
msgstr "Egoera"

#: ../iw/partition_gui.py:365 ../textw/partition_text.py:1126
msgid "End"
msgstr ""

# ../libfdisk/gnomefsedit.c:2992 ../todo.py:1586
#: ../iw/partition_gui.py:402
#, fuzzy
msgid ""
"Mount Point/\n"
"RAID/Volume"
msgstr "Loturagunea"

# ../libfdisk/gnomefsedit.c:866 ../libfdisk/newtfsedit.c:408
#: ../iw/partition_gui.py:404
#, fuzzy
msgid ""
"Size\n"
"(MB)"
msgstr "Neurria (MB)"

# ../iw/lilo_gui.py:189 ../iw/lilo_gui.py:331 ../iw/silo_gui.py:127
# ../iw/silo_gui.py:279 ../text.py:933 ../text.py:939
#: ../iw/partition_gui.py:547 ../textw/partition_text.py:1120
#, fuzzy
msgid "Partitioning"
msgstr "Disko Zatiketa"

#: ../iw/partition_gui.py:639
msgid ""
"The following critical errors exist with your requested partitioning scheme."
msgstr ""

#: ../iw/partition_gui.py:642
#, python-format
msgid ""
"These errors must be corrected prior to continuing with your install of %s."
msgstr ""

# ../iw/lilo_gui.py:189 ../iw/lilo_gui.py:331 ../iw/silo_gui.py:127
# ../iw/silo_gui.py:279 ../text.py:933 ../text.py:939
#: ../iw/partition_gui.py:648
#, fuzzy
msgid "Partitioning Errors"
msgstr "Disko Zatiketa"

#: ../iw/partition_gui.py:654
msgid "The following warnings exist with your requested partition scheme."
msgstr ""

# ../iw/welcome_gui.py:80
#: ../iw/partition_gui.py:656
#, fuzzy
msgid "Would you like to continue with your requested partitioning scheme?"
msgstr "Zure sistema egokitzea nahi?"

# ../iw/rootpartition_gui.py:247 ../iw/rootpartition_gui.py:297
# ../textw/partitioning_text.py:149
#: ../iw/partition_gui.py:661
#, fuzzy
msgid "Partitioning Warnings"
msgstr "Berekasakako Disko Zatiketa"

# ../fstab.py:395 ../fstab.py:598 ../fstab.py:633 ../fstab.py:643
# ../fstab.py:667
#: ../iw/partition_gui.py:683
#, fuzzy
msgid "Format Warnings"
msgstr "Diskoa Egituratzen"

# ../fstab.py:395 ../fstab.py:598 ../fstab.py:633 ../fstab.py:643
# ../fstab.py:667
#: ../iw/partition_gui.py:688
#, fuzzy
msgid "_Format"
msgstr "Diskoa Egituratzen"

#: ../iw/partition_gui.py:723
msgid "LVM Volume Groups"
msgstr ""

# ../libfdisk/gnomefsedit.c:2199
#: ../iw/partition_gui.py:758
#, fuzzy
msgid "RAID Devices"
msgstr "RAID tramankulurik ez da ageri"

# ../loader/loader.c:327 ../loader/loader.c:352
# ../textw/partitioning_text.py:64
#: ../iw/partition_gui.py:786 ../iw/partition_gui.py:907
#: ../textw/partition_text.py:93 ../textw/partition_text.py:151
#, fuzzy
msgid "None"
msgstr "Amaituta"

# ../loader/loader.c:656
#: ../iw/partition_gui.py:804 ../loader2/hdinstall.c:462
msgid "Hard Drives"
msgstr "Disko Gogorrak"

# ../todo.py:1599
#: ../iw/partition_gui.py:870 ../textw/partition_text.py:133
#: ../textw/partition_text.py:172
#, fuzzy
msgid "Free space"
msgstr "Diskaren Zabaltegia"

#: ../iw/partition_gui.py:872 ../textw/partition_text.py:135
msgid "Extended"
msgstr ""

#: ../iw/partition_gui.py:874 ../textw/partition_text.py:137
msgid "software RAID"
msgstr ""

# ../libfdisk/gnomefsedit.c:3171
#: ../iw/partition_gui.py:909
#, fuzzy
msgid "Free"
msgstr "Erabiligabekoa (M)"

# ../libfdisk/gnomefsedit.c:3409
#: ../iw/partition_gui.py:999 ../textw/partition_text.py:220
#, fuzzy, python-format
msgid "Could not allocate requested partitions: %s."
msgstr "Izendatubariko Disko-zatiak daude..."

# ../todo.py:857
#: ../iw/partition_gui.py:1008
#, fuzzy, python-format
msgid "Warning: %s."
msgstr "Bilatzen"

# ../text.py:887 ../text.py:955
#: ../iw/partition_gui.py:1190 ../iw/partition_gui.py:1204
#, fuzzy
msgid "Not supported"
msgstr "Sarearen Egituraketa"

#: ../iw/partition_gui.py:1191
msgid "LVM is NOT supported on this platform."
msgstr ""

#: ../iw/partition_gui.py:1205
msgid "Software RAID is NOT supported on this platform."
msgstr ""

# ../text.py:753
#: ../iw/partition_gui.py:1212
#, fuzzy
msgid "No RAID minor device numbers available"
msgstr "Laguntza Eskuragarririk ez dago"

#: ../iw/partition_gui.py:1213
msgid ""
"A software RAID device cannot be created because all of the available RAID "
"minor device numbers have been used."
msgstr ""

# ../libfdisk/gnomefsedit.c:558 ../libfdisk/gnomefsedit.c:853
#: ../iw/partition_gui.py:1227
#, fuzzy
msgid "RAID Options"
msgstr "<RAID Zatia>"

#: ../iw/partition_gui.py:1238
#, python-format
msgid ""
"Software RAID allows you to combine several disks into a larger RAID "
"device.  A RAID device can be configured to provide additional speed and "
"reliability compared to using an individual drive.  For more information on "
"using RAID devices please consult the %s documentation.\n"
"\n"
"You currently have %s software RAID partition(s) free to use.\n"
"\n"
msgstr ""

#: ../iw/partition_gui.py:1249
msgid ""
"To use RAID you must first create at least two partitions of type 'software "
"RAID'.  Then you can create a RAID device which can be formatted and "
"mounted.\n"
"\n"
msgstr ""

# ../loader/loader.c:276
#: ../iw/partition_gui.py:1255
#, fuzzy
msgid "What do you want to do now?"
msgstr "Zein tramankulu mota gehitzea gura dozu?"

# ../libfdisk/gnomefsedit.c:558 ../libfdisk/gnomefsedit.c:853
#: ../iw/partition_gui.py:1264
#, fuzzy
msgid "Create a software RAID _partition."
msgstr "<RAID Zatia>"

#: ../iw/partition_gui.py:1267
#, python-format
msgid "Create a RAID _device [default=/dev/md%s]."
msgstr ""

#: ../iw/partition_gui.py:1271
#, python-format
msgid "Clone a _drive to create a RAID device [default=/dev/md%s]."
msgstr ""

#: ../iw/partition_gui.py:1310
msgid "Couldn't Create Drive Clone Editor"
msgstr ""

# ../loader/loader.c:1028
#: ../iw/partition_gui.py:1311
#, fuzzy
msgid "The drive clone editor could not be created for some reason."
msgstr "Zerbitzaritik direktorio hori ezin izan dut lotu"

# ../iw/account_gui.py:276
#: ../iw/partition_gui.py:1355
#, fuzzy
msgid "Ne_w"
msgstr "Berria"

# ../libfdisk/gnomefsedit.c:3538
#: ../iw/partition_gui.py:1358
#, fuzzy
msgid "Re_set"
msgstr "_Garbitu"

# ../libfdisk/gnomefsedit.c:270
#: ../iw/partition_gui.py:1359
#, fuzzy
msgid "R_AID"
msgstr "<RAID>"

#: ../iw/partition_gui.py:1360
msgid "_LVM"
msgstr ""

#: ../iw/partition_gui.py:1401
msgid "Hide RAID device/LVM Volume _Group members"
msgstr ""

#: ../iw/partition_ui_helpers_gui.py:87 ../iw/partition_ui_helpers_gui.py:108
#: ../iw/partition_ui_helpers_gui.py:110 ../textw/partition_text.py:243
#: ../textw/partition_text.py:245 ../textw/partition_text.py:247
#: ../textw/partition_text.py:272
msgid "<Not Applicable>"
msgstr ""

# ../iw/rootpartition_gui.py:314
#: ../iw/partition_ui_helpers_gui.py:241
#, fuzzy
msgid "How would you like to prepare the file system on this partition?"
msgstr ""
"\n"
"Mesedez, disko gogorra zatitzeko erabili beharreko disko zatitzailea "
"aukeratu."

# ../libfdisk/newtfsedit.c:1656
#: ../iw/partition_ui_helpers_gui.py:249
#, fuzzy
msgid "Leave _unchanged (preserve data)"
msgstr "Aldaketak Gorde"

# ../libfdisk/newtfsedit.c:1571
#: ../iw/partition_ui_helpers_gui.py:255
#, fuzzy
msgid "_Format partition as:"
msgstr "Erro disko-zatirik ez dago"

# ../libfdisk/newtfsedit.c:1571
#: ../iw/partition_ui_helpers_gui.py:278
#, fuzzy
msgid "Mi_grate partition to:"
msgstr "Erro disko-zatirik ez dago"

# ../textw/partitioning_text.py:254
#: ../iw/partition_ui_helpers_gui.py:301
#, fuzzy
msgid "Check for _bad blocks?"
msgstr "Tangulu (bloke) txarrak begiztatu"

#: ../iw/partition_ui_helpers_gui.py:336
#, python-format
msgid ""
"Partitions of type '%s' must be constrained to a single drive.  This is done "
"by selecting the drive in the 'Allowable Drives' checklist."
msgstr ""

# ../iw/lilo_gui.py:189 ../iw/lilo_gui.py:331 ../iw/silo_gui.py:127
# ../iw/silo_gui.py:279 ../text.py:933 ../text.py:939
#: ../iw/partmethod_gui.py:25 ../textw/partmethod_text.py:24
#, fuzzy
msgid "Disk Partitioning Setup"
msgstr "Disko Zatiketa"

# ../text.py:937
#: ../iw/partmethod_gui.py:53
#, fuzzy
msgid "_Automatically partition"
msgstr "Disko Zatiketa Berekasa egin"

# ../iw/rootpartition_gui.py:335
#: ../iw/partmethod_gui.py:56
#, fuzzy
msgid "Manually partition with _Disk Druid"
msgstr "Eskuzko disko zatiketa Disk Driud-ekin"

#: ../iw/progress_gui.py:41
#, python-format
msgid "%s MB"
msgstr ""

#: ../iw/progress_gui.py:44
#, python-format
msgid "%s KB"
msgstr ""

# ../iw/progress_gui.py:126
#: ../iw/progress_gui.py:47
#, fuzzy, python-format
msgid "%s Byte"
msgstr "%s KByte"

# ../iw/progress_gui.py:126
#: ../iw/progress_gui.py:49
#, fuzzy, python-format
msgid "%s Bytes"
msgstr "%s KByte"

# ../iw/progress_gui.py:36
#: ../iw/progress_gui.py:53 ../iw/progress_gui.py:397
msgid "Installing Packages"
msgstr "Sortak Ezartzen"

# ../text.py:656
#: ../iw/progress_gui.py:167
#, fuzzy, python-format
msgid "Remaining time: %s minutes"
msgstr "Gainerakoa: "

#: ../iw/progress_gui.py:183
#, python-format
msgid "Downloading %s"
msgstr ""

# ../todo.py:1558
#: ../iw/progress_gui.py:223
#, fuzzy, python-format
msgid "Installing %s-%s-%s.%s (%s)"
msgstr "%s ezartzen.\n"

# ../iw/progress_gui.py:177
#: ../iw/progress_gui.py:352 ../iw/progress_gui.py:603
msgid "Summary"
msgstr "Laburpena"

# ../iw/progress_gui.py:217
#: ../iw/progress_gui.py:379 ../iw/progress_gui.py:643
#: ../textw/progress_text.py:130
#, fuzzy
msgid "Status: "
msgstr "Egoera"

#: ../iw/progress_gui.py:419 ../textw/progress_text.py:65
#, python-format
msgid "Downloading - %s"
msgstr ""

# ../iw/progress_gui.py:222
#: ../iw/progress_gui.py:478 ../iw/progress_gui.py:672
msgid "Total"
msgstr "Guztira"

# ../iw/progress_gui.py:224
#: ../iw/progress_gui.py:484 ../iw/progress_gui.py:674
msgid "Remaining"
msgstr "Gainerakoa"

# ../todo.py:1558
#: ../iw/progress_gui.py:516
#, fuzzy, python-format
msgid "Installing %s-%s-%s.%s"
msgstr "%s ezartzen.\n"

# ../text.py:969
#: ../iw/progress_gui.py:653
#, fuzzy
msgid "Package Progress: "
msgstr "Sorta Taldea"

# ../text.py:639
#: ../iw/progress_gui.py:658
#, fuzzy
msgid "Total Progress:   "
msgstr "Guztira  :"

# ../iw/progress_gui.py:217
#: ../iw/progress_gui.py:685
msgid "Status"
msgstr "Egoera"

# ../iw/progress_gui.py:217
#: ../iw/progress_gui.py:685
msgid "Packages"
msgstr "Sortak"

# ../iw/progress_gui.py:217
#: ../iw/progress_gui.py:685
msgid "Time"
msgstr "Denbora"

#: ../iw/raid_dialog_gui.py:261
msgid ""
"At least two unused software RAID partitions are needed to create a RAID "
"device.\n"
"\n"
"First create at least two partitions of type \"software RAID\", and then "
"select the \"RAID\" option again."
msgstr ""

# ../libfdisk/gnomefsedit.c:3556
#: ../iw/raid_dialog_gui.py:275 ../iw/raid_dialog_gui.py:680
#: ../textw/partition_text.py:907
#, fuzzy
msgid "Make RAID Device"
msgstr "RAID Tramankulua _Sortu"

# ../libfdisk/gnomefsedit.c:1988
#: ../iw/raid_dialog_gui.py:278
#, fuzzy, python-format
msgid "Edit RAID Device: /dev/md%s"
msgstr "RAID Tramankulua: /dev/"

# ../libfdisk/gnomefsedit.c:2199
#: ../iw/raid_dialog_gui.py:280 ../textw/partition_text.py:905
#, fuzzy
msgid "Edit RAID Device"
msgstr "RAID tramankulurik ez da ageri"

# ../libfdisk/gnomefsedit.c:2199
#: ../iw/raid_dialog_gui.py:321
#, fuzzy
msgid "RAID _Device:"
msgstr "RAID tramankulurik ez da ageri"

# ../libfdisk/gnomefsedit.c:2011
#: ../iw/raid_dialog_gui.py:339
#, fuzzy
msgid "RAID _Level:"
msgstr "RAID Mota:"

# ../libfdisk/gnomefsedit.c:2011
#: ../iw/raid_dialog_gui.py:381
#, fuzzy
msgid "_RAID Members:"
msgstr "RAID Mota:"

#: ../iw/raid_dialog_gui.py:398
msgid "Number of _spares:"
msgstr ""

# ../libfdisk/newtfsedit.c:1571
#: ../iw/raid_dialog_gui.py:408
#, fuzzy
msgid "_Format partition?"
msgstr "Erro disko-zatirik ez dago"

#: ../iw/raid_dialog_gui.py:487
msgid ""
"The source drive has no partitions to be cloned.  You must first define "
"partitions of type 'software RAID' on this drive before it can be cloned."
msgstr ""

# ../libfdisk/gnomefsedit.c:1232 ../libfdisk/newtfsedit.c:693
#: ../iw/raid_dialog_gui.py:491 ../iw/raid_dialog_gui.py:497
#: ../iw/raid_dialog_gui.py:509 ../iw/raid_dialog_gui.py:522
#, fuzzy
msgid "Source Drive Error"
msgstr "Neurrian Akatsa"

#: ../iw/raid_dialog_gui.py:498
msgid ""
"The source drive selected has partitions on it which are not of type "
"'software RAID'.\n"
"\n"
"These partitions will have to be removed before this drive can be cloned. "
msgstr ""

#: ../iw/raid_dialog_gui.py:510
#, python-format
msgid ""
"The source drive selected has partitions which are not constrained to the "
"drive /dev/%s.\n"
"\n"
"These partitions will have to be removed or restricted to this drive before "
"this drive can be cloned. "
msgstr ""

#: ../iw/raid_dialog_gui.py:523
msgid ""
"The source drive selected has software RAID partition(s) which are members "
"of an active software RAID device.\n"
"\n"
"These partitions will have to be removed before this drive can be cloned."
msgstr ""

# ../libfdisk/gnomefsedit.c:1251 ../libfdisk/gnomefsedit.c:2278
# ../libfdisk/newtfsedit.c:712
#: ../iw/raid_dialog_gui.py:536 ../iw/raid_dialog_gui.py:542
#: ../iw/raid_dialog_gui.py:555
#, fuzzy
msgid "Target Drive Error"
msgstr "Disko Trukagunearen Neurri Okerra"

# ../iw/examine_gui.py:44
#: ../iw/raid_dialog_gui.py:537
#, fuzzy
msgid "Please select the target drives for the clone operation."
msgstr "Mesedez, erro fitxategitza daukan tramankulua hautatu."

#: ../iw/raid_dialog_gui.py:543
#, python-format
msgid "The source drive /dev/%s cannot be selected as a target drive as well."
msgstr ""

#: ../iw/raid_dialog_gui.py:556
#, python-format
msgid ""
"The target drive /dev/%s has a partition which cannot be removed for the "
"following reason:\n"
"\n"
"\"%s\"\n"
"\n"
"This partition must be removed before this drive can be a target."
msgstr ""

# ../loader/devices.c:504
#: ../iw/raid_dialog_gui.py:617
#, fuzzy
msgid "Please select a source drive."
msgstr "Mesedez, kontrolatzailedun %s disketea orain sartu."

#: ../iw/raid_dialog_gui.py:637
#, python-format
msgid ""
"The drive /dev/%s will now be cloned to the following drives:\n"
"\n"
msgstr ""

#: ../iw/raid_dialog_gui.py:642
msgid ""
"\n"
"\n"
"WARNING! ALL DATA ON THE TARGET DRIVES WILL BE DESTROYED."
msgstr ""

# ../fstab.py:395 ../fstab.py:598 ../fstab.py:633 ../fstab.py:643
# ../fstab.py:667
#: ../iw/raid_dialog_gui.py:645
#, fuzzy
msgid "Final Warning"
msgstr "Diskoa Egituratzen"

# ../libfdisk/gnomefsedit.c:1033 ../libfdisk/newtfsedit.c:519
#: ../iw/raid_dialog_gui.py:647
#, fuzzy
msgid "Clone Drives"
msgstr "Disko Gogor Zillegituak:"

#: ../iw/raid_dialog_gui.py:656
msgid "There was an error clearing the target drives.  Cloning failed."
msgstr ""

#: ../iw/raid_dialog_gui.py:690
msgid ""
"Clone Drive Tool\n"
"\n"
"This tool allows you to significantly reduce the amount of effort required "
"to setup RAID arrays.  The idea is to take a source drive which has been "
"prepared with the desired partitioning layout, and clone this layout onto "
"other similar sized drives.  Then a RAID device can be created.\n"
"\n"
"NOTE: The source drive must have partitions which are restricted to be on "
"that drive only, and can only contain unused software RAID partitions.  "
"Other partition types are not allowed.\n"
"\n"
"EVERYTHING on the target drive(s) will be destroyed by this process."
msgstr ""

# ../libfdisk/gnomefsedit.c:3168
#: ../iw/raid_dialog_gui.py:710
#, fuzzy
msgid "Source Drive:"
msgstr "Diskoa"

# ../loader/loader.c:656
#: ../iw/raid_dialog_gui.py:718
#, fuzzy
msgid "Target Drive(s):"
msgstr "Disko Gogorrak"

# ../libfdisk/gnomefsedit.c:3168
#: ../iw/raid_dialog_gui.py:726
#, fuzzy
msgid "Drives"
msgstr "Diskoa"

# ../gui.py:745
#: ../iw/release_notes_viewer_gui.py:142
msgid "Release Notes"
msgstr "Oharrak Zabaldu"

#: ../iw/release_notes_viewer_gui.py:146
msgid "Unable to load file!"
msgstr ""

# ../iw/silo_gui.py:20
#: ../iw/silo_gui.py:28
msgid "Silo Configuration"
msgstr "Silo-ren Egokitzaketa"

# ../iw/lilo_gui.py:189 ../iw/lilo_gui.py:331 ../iw/silo_gui.py:127
# ../iw/silo_gui.py:279 ../text.py:933 ../text.py:939
#: ../iw/silo_gui.py:135 ../iw/silo_gui.py:286 ../iw/upgrade_swap_gui.py:148
#: ../textw/upgrade_text.py:112
msgid "Partition"
msgstr "Disko Zatiketa"

# ../iw/silo_gui.py:163
#: ../iw/silo_gui.py:172
msgid "Install SILO boot record on:"
msgstr "SILO abiatresna ezarri:"

# ../iw/silo_gui.py:180
#: ../iw/silo_gui.py:189
msgid "Create PROM alias"
msgstr "PROM-eko izenordea sortu"

# ../iw/silo_gui.py:203
#: ../iw/silo_gui.py:212
msgid "Set default PROM boot device to linux"
msgstr "PROM abiagailuan Linux jatorrizkotzat jarri"

# ../iw/lilo_gui.py:261 ../iw/silo_gui.py:207
#: ../iw/silo_gui.py:216
msgid "Kernel parameters"
msgstr "Kernel-eko agerbideak"

# ../iw/lilo_gui.py:292 ../iw/silo_gui.py:225
#: ../iw/silo_gui.py:234
msgid "Create boot disk"
msgstr "Abiatze disketea sortu"

# ../iw/silo_gui.py:235
#: ../iw/silo_gui.py:244
msgid "Do not install SILO"
msgstr "SILO-rik ez ezarri"

# ../iw/lilo_gui.py:307 ../iw/silo_gui.py:256 ../textw/lilo_text.py:193
# ../textw/silo_text.py:196
#: ../iw/silo_gui.py:263 ../textw/silo_text.py:207
msgid "Partition type"
msgstr "Disko-zati mota"

# ../iw/lilo_gui.py:307 ../iw/lilo_gui.py:343 ../iw/silo_gui.py:256
# ../iw/silo_gui.py:291 ../textw/lilo_text.py:113 ../textw/lilo_text.py:193
# ../textw/silo_text.py:132 ../textw/silo_text.py:196
#: ../iw/silo_gui.py:263 ../iw/silo_gui.py:298 ../textw/bootloader_text.py:213
#: ../textw/bootloader_text.py:283 ../textw/silo_text.py:143
#: ../textw/silo_text.py:207
msgid "Boot label"
msgstr "Abiaketaren Izena"

# ../iw/lilo_gui.py:339 ../iw/silo_gui.py:287
#: ../iw/silo_gui.py:294
msgid "Default boot image"
msgstr "Jatorrizko abiagailua irudia"

# ../iw/timezone_gui.py:31 ../textw/timezone_text.py:89
#: ../iw/timezone_gui.py:28 ../textw/timezone_text.py:102
msgid "Time Zone Selection"
msgstr "Ordutegi Kokapenaren Hautaketa"

# ../iw/timezone_gui.py:164 ../iw/timezone_gui.py:165
#: ../iw/timezone_gui.py:67 ../textw/timezone_text.py:96
#, fuzzy
msgid "System clock uses _UTC"
msgstr "Ordutegiak UTC erabiltzen du"

# ../iw/examine_gui.py:44
#: ../iw/timezone_gui.py:75
#, fuzzy
msgid "Please select the nearest city in your timezone:"
msgstr "Mesedez, erro fitxategitza daukan tramankulua hautatu."

# ../iw/timezone_gui.py:227
#: ../iw/timezone_map_gui.py:126
#, fuzzy
msgid "_Location"
msgstr "Lurraldea"

#: ../iw/timezone_map_gui.py:128
msgid "Description"
msgstr ""

# ../iw/xconfig_gui.py:123
#: ../iw/upgrade_bootloader_gui.py:27 ../textw/upgrade_bootloader_text.py:72
#, fuzzy
msgid "Upgrade Boot Loader Configuration"
msgstr "Monitorea Egokitu"

# ../iw/xconfig_gui.py:123
#: ../iw/upgrade_bootloader_gui.py:68
#, fuzzy
msgid "_Update boot loader configuration"
msgstr "Monitorea Egokitu"

#: ../iw/upgrade_bootloader_gui.py:69
msgid "This will update your current boot loader."
msgstr ""

#: ../iw/upgrade_bootloader_gui.py:72 ../textw/upgrade_bootloader_text.py:49
#, python-format
msgid ""
"The installer has detected the %s boot loader currently installed on %s."
msgstr ""

#: ../iw/upgrade_bootloader_gui.py:76
msgid "This is the recommended option."
msgstr ""

#: ../iw/upgrade_bootloader_gui.py:80 ../textw/upgrade_bootloader_text.py:57
msgid ""
"The installer is unable to detect the boot loader currently in use on your "
"system."
msgstr ""

# ../iw/lilo_gui.py:292 ../iw/silo_gui.py:225
#: ../iw/upgrade_bootloader_gui.py:89
#, fuzzy
msgid "_Create new boot loader configuration"
msgstr "Abiatze disketea sortu"

#: ../iw/upgrade_bootloader_gui.py:91
msgid ""
"This will let you create a new boot loader configuration.  If you wish to "
"switch boot loaders, you should choose this."
msgstr ""

# ../iw/lilo_gui.py:307 ../iw/lilo_gui.py:343 ../iw/silo_gui.py:256
# ../iw/silo_gui.py:291 ../textw/lilo_text.py:113 ../textw/lilo_text.py:193
# ../textw/silo_text.py:132 ../textw/silo_text.py:196
#: ../iw/upgrade_bootloader_gui.py:98
#, fuzzy
msgid "_Skip boot loader updating"
msgstr "Abiaketaren Izena"

#: ../iw/upgrade_bootloader_gui.py:99
msgid ""
"This will make no changes to boot loader configuration.  If you are using a "
"third party boot loader, you should choose this."
msgstr ""

# ../loader/loader.c:276
#: ../iw/upgrade_bootloader_gui.py:111
#, fuzzy
msgid "What would you like to do?"
msgstr "Zein tramankulu mota gehitzea gura dozu?"

# ../text.py:941 ../textw/partitioning_text.py:301
#: ../iw/upgrade_migratefs_gui.py:30 ../textw/upgrade_text.py:34
#, fuzzy
msgid "Migrate File Systems"
msgstr "Erro Fitxategitzaren Neurria"

#: ../iw/upgrade_migratefs_gui.py:55 ../textw/upgrade_text.py:36
#, python-format
msgid ""
"This release of %s supports the ext3 journalling file system.  It has "
"several benefits over the ext2 file system traditionally shipped in %s.  It "
"is possible to migrate the ext2 formatted partitions to ext3 without data "
"loss.\n"
"\n"
"Which of these partitions would you like to migrate?"
msgstr ""

# ../libfdisk/newtfsedit.c:208
#: ../iw/upgrade_swap_gui.py:31
#, fuzzy
msgid "Upgrade Swap Partition"
msgstr "Raid Disko Zatia"

#: ../iw/upgrade_swap_gui.py:101
#, python-format
msgid ""
"The 2.4 kernel needs significantly more swap than older kernels, as much as "
"twice as much swap space as RAM on the system.  You currently have %dMB of "
"swap configured, but you may create additional swap space on one of your "
"file systems now."
msgstr ""

#: ../iw/upgrade_swap_gui.py:108
#, python-format
msgid ""
"\n"
"\n"
"The installer has detected %s MB of RAM.\n"
msgstr ""

#: ../iw/upgrade_swap_gui.py:120
msgid "I _want to create a swap file"
msgstr ""

#: ../iw/upgrade_swap_gui.py:129
msgid "Select the _partition to put the swap file on:"
msgstr ""

# ../todo.py:1599
#: ../iw/upgrade_swap_gui.py:148
#, fuzzy
msgid "Free Space (MB)"
msgstr "Diskaren Zabaltegia"

#: ../iw/upgrade_swap_gui.py:166
#, python-format
msgid ""
"It is recommended that your swap file be at least %d MB.  Please enter a "
"size for the swap file:"
msgstr ""

# ../iw/rootpartition_gui.py:179
#: ../iw/upgrade_swap_gui.py:181
#, fuzzy
msgid "Swap file _size (MB):"
msgstr "Disko trukagunearen neurria:"

#: ../iw/upgrade_swap_gui.py:191
msgid "I _don't want to create a swap file"
msgstr ""

#: ../iw/upgrade_swap_gui.py:201
msgid ""
"It is stongly recommended that you create a swap file.  Failure to do so "
"could cause the installer to abort abnormally.  Are you sure that you wish "
"to continue?"
msgstr ""

#: ../iw/upgrade_swap_gui.py:209 ../textw/upgrade_text.py:178
msgid "The swap file must be between 1 and 2000 MB in size."
msgstr ""

#: ../iw/upgrade_swap_gui.py:216 ../textw/upgrade_text.py:173
msgid ""
"There is not enough space on the device you selected for the swap partition."
msgstr ""

# ../iw/xconfig_gui.py:11 ../xf86config.py:880 ../xf86config.py:882
#: ../iw/xconfig_gui.py:35 ../textw/xconfig_text.py:23
#, fuzzy
msgid "Unprobed Monitor"
msgstr "Monitorea"

# ../iw/xconfig_gui.py:23 ../iw/xconfig_gui.py:467
#: ../iw/xconfig_gui.py:51
#, fuzzy
msgid "Customize Graphical Configuration"
msgstr "Grafiko Egituraketa Norberekatu"

# ../iw/xconfig_gui.py:214
#: ../iw/xconfig_gui.py:251
#, fuzzy
msgid "_Color Depth:"
msgstr "Kolore Sakonera:"

#: ../iw/xconfig_gui.py:260 ../textw/xconfig_text.py:106
msgid "256 Colors (8 Bit)"
msgstr ""

#: ../iw/xconfig_gui.py:261 ../textw/xconfig_text.py:107
msgid "High Color (16 Bit)"
msgstr ""

#: ../iw/xconfig_gui.py:262 ../textw/xconfig_text.py:108
msgid "True Color (24 Bit)"
msgstr ""

# ../iw/xconfig_gui.py:242
#: ../iw/xconfig_gui.py:282
#, fuzzy
msgid "_Screen Resolution:"
msgstr "Pantailaren Zehaztasuna:"

# ../iw/xconfig_gui.py:336
#: ../iw/xconfig_gui.py:338
msgid "Please choose your default desktop environment:"
msgstr "Mesedez, atseginen duzun idazmahai gunea hautatu:"

# ../iw/xconfig_gui.py:376
#: ../iw/xconfig_gui.py:340
msgid "Your desktop environment is:"
msgstr "Zure idazmahai gunea hau da:"

# ../comps/comps-master:239
#: ../iw/xconfig_gui.py:355
#, fuzzy
msgid "GNO_ME"
msgstr "GNOME"

# ../comps/comps-master:304
#: ../iw/xconfig_gui.py:357
#, fuzzy
msgid "_KDE"
msgstr "KDE"

# ../iw/xconfig_gui.py:428
#: ../iw/xconfig_gui.py:388
msgid "Please choose your login type:"
msgstr "Mesedez, zure sarrera (login) mota hautatu:"

# ../gui.py:365 ../gui.py:605
#: ../iw/xconfig_gui.py:395
#, fuzzy
msgid "_Text"
msgstr "Hurrengoa"

# ../iw/xconfig_gui.py:471
#: ../iw/xconfig_gui.py:396
#, fuzzy
msgid "_Graphical"
msgstr "Era Grafikoan abiatu"

# ../iw/xconfig_gui.py:123
#: ../iw/xconfig_gui.py:413 ../textw/xconfig_text.py:416
msgid "Monitor Configuration"
msgstr "Monitorea Egokitu"

#: ../iw/xconfig_gui.py:438 ../textw/xconfig_text.py:467
msgid "Monitor Unspecified"
msgstr ""

#: ../iw/xconfig_gui.py:439 ../textw/xconfig_text.py:468
msgid ""
"You have not selected a monitor type.  It is recommended you choose the "
"closest matching model in order to have the highest possible display quality."
msgstr ""

#: ../iw/xconfig_gui.py:445
msgid "_Choose monitor type"
msgstr ""

#: ../iw/xconfig_gui.py:625
msgid ""
"In most cases, the monitor can be automatically detected. If the detected "
"settings are not correct for the monitor, select the right settings."
msgstr ""

# ../iw/xconfig_gui.py:857 ../iw/xconfig_gui.py:1653
#: ../iw/xconfig_gui.py:740 ../iw/xconfig_gui.py:1103
#, fuzzy
msgid "Restore _original values"
msgstr "Jatorrizko balioak berreskuratu"

# ../iw/xconfig_gui.py:229
#: ../iw/xconfig_gui.py:748
#, fuzzy
msgid "Hori_zontal Sync:"
msgstr "Zeharkako Maiztasun Muga"

# ../iw/xconfig_gui.py:238
#: ../iw/xconfig_gui.py:751
#, fuzzy
msgid "_Vertical Sync:"
msgstr "Goitibeherako Maiztasun Muga"

#: ../iw/xconfig_gui.py:758
msgid "kHz"
msgstr ""

#: ../iw/xconfig_gui.py:761
msgid "Hz"
msgstr ""

# ../comps/comps-master:363
#: ../iw/xconfig_gui.py:781
#, fuzzy
msgid "Graphical Interface (X) Configuration"
msgstr "Margoketa Tresnak"

# ../libfdisk/newtfsedit.c:486
#: ../iw/xconfig_gui.py:811
#, fuzzy
msgid "Unknown video card"
msgstr "Ezezaguna"

#: ../iw/xconfig_gui.py:812
#, python-format
msgid ""
"An error has occurred selecting the video card %s. Please report this error "
"to bugzilla.redhat.com."
msgstr ""

# ../xf86config.py:873
#: ../iw/xconfig_gui.py:838 ../textw/xconfig_text.py:684
#, fuzzy
msgid "Unspecified video card"
msgstr "Bideo xafla ezin ezagutu"

#: ../iw/xconfig_gui.py:839 ../textw/xconfig_text.py:685
msgid ""
"You need to pick a video card before X configuration can continue.  If you "
"want to skip X configuration entirely choose the 'Skip X Configuration' "
"button."
msgstr ""

#: ../iw/xconfig_gui.py:974 ../textw/xconfig_text.py:637
msgid ""
"Your system will be setup to use the frame buffer driver for the X Window "
"System.  If you do not want to setup the X Window System, choose 'Skip X "
"Configuration' below."
msgstr ""

# ../iw/xconfig_gui.py:350
#: ../iw/xconfig_gui.py:983
msgid ""
"Your video ram size can not be autodetected.  Choose your video ram size "
"from the choices below:"
msgstr ""
"Bideo xaflako memoriaren neurria ezin atzeman. Hurrengo zerrendatik aukeratu "
"beharko duzu:"

# ../iw/xconfig_gui.py:361 ../iw/xconfig_gui.py:382
#: ../iw/xconfig_gui.py:990
#, fuzzy
msgid ""
"In most cases, the video hardware can be automatically detected. If the "
"detected settings are not correct for the hardware, select the right "
"settings."
msgstr ""
"Bideo xaflako 'hardware'-aren frogaketa ttipi bategaz ongien datorkion "
"egokitzaketa ezagutu daiteke (gehienetan bederen)."

# ../iw/xconfig_gui.py:10 ../xf86config.py:867
#: ../iw/xconfig_gui.py:1078
#, fuzzy
msgid "_Video card RAM: "
msgstr "Bideo Xaflaren RAM-a:"

# ../iw/xconfig_gui.py:472
#: ../iw/xconfig_gui.py:1107
#, fuzzy
msgid "_Skip X configuration"
msgstr "X-en Egokitzaketaz Ahaztu"

# ../iw/xconfig_gui.py:123
#: ../iw/zipl_gui.py:32
#, fuzzy
msgid "z/IPL Boot Loader Configuration"
msgstr "Monitorea Egokitu"

#: ../iw/zipl_gui.py:75
msgid "The z/IPL boot loader will be installed on your system."
msgstr ""

#: ../iw/zipl_gui.py:77
msgid ""
"The z/IPL Boot Loader will now be installed on your system.\n"
"\n"
"The root partition will be the one you selected previously in the partition "
"setup.\n"
"\n"
"The kernel used to start the machine will be the one to be installed by "
"default.\n"
"\n"
"If you wish to make changes later after the installation feel free to change "
"the /etc/zipl.conf configuration file.\n"
"\n"
"You can now enter any additional kernel parameters which your machine or "
"your setup may require."
msgstr ""

# ../iw/lilo_gui.py:261 ../iw/silo_gui.py:207
#: ../iw/zipl_gui.py:104 ../textw/zipl_text.py:60
#, fuzzy
msgid "Kernel Parameters"
msgstr "Kernel-eko agerbideak"

# ../iw/lilo_gui.py:261 ../iw/silo_gui.py:207
#: ../iw/zipl_gui.py:107 ../iw/zipl_gui.py:110
#, fuzzy
msgid "Chandev Parameters"
msgstr "Kernel-eko agerbideak"

#: ../textw/bootdisk_text.py:24
#, python-format
msgid ""
"The boot diskette allows you to boot your %s system from a floppy diskette.  "
"A boot diskette allows you to boot your system in the event your bootloader "
"configuration stops working.\n"
"\n"
"It is highly recommended you create a boot diskette.\n"
"\n"
"Would you like to create a boot diskette?"
msgstr ""

# ../text.py:980 ../text.py:982 ../text.py:1003 ../text.py:1005
#: ../textw/bootdisk_text.py:31
#, fuzzy
msgid "Boot Diskette"
msgstr "Abiatze Diskoa"

# ../loader/loader.c:276
#: ../textw/bootloader_text.py:29
#, fuzzy
msgid "Which boot loader would you like to use?"
msgstr "Zein tramankulu mota gehitzea gura dozu?"

#: ../textw/bootloader_text.py:45
msgid "Use GRUB Boot Loader"
msgstr ""

#: ../textw/bootloader_text.py:47
msgid "Use LILO Boot Loader"
msgstr ""

# ../iw/lilo_gui.py:307 ../iw/lilo_gui.py:343 ../iw/silo_gui.py:256
# ../iw/silo_gui.py:291 ../textw/lilo_text.py:113 ../textw/lilo_text.py:193
# ../textw/silo_text.py:132 ../textw/silo_text.py:196
#: ../textw/bootloader_text.py:50
#, fuzzy
msgid "No Boot Loader"
msgstr "Abiaketaren Izena"

# ../iw/lilo_gui.py:307 ../iw/lilo_gui.py:343 ../iw/silo_gui.py:256
# ../iw/silo_gui.py:291 ../textw/lilo_text.py:113 ../textw/lilo_text.py:193
# ../textw/silo_text.py:132 ../textw/silo_text.py:196
#: ../textw/bootloader_text.py:72
#, fuzzy
msgid "Skip Boot Loader"
msgstr "Abiaketaren Izena"

#: ../textw/bootloader_text.py:73
msgid ""
"You have elected to not install any boot loader. It is strongly recommended "
"that you install a boot loader unless you have an advanced need.  A boot "
"loader is almost always required in order to reboot your system into Linux "
"directly from the hard drive.\n"
"\n"
"Are you sure you want to skip boot loader installation?"
msgstr ""

# ../textw/lilo_text.py:18 ../textw/silo_text.py:14
#: ../textw/bootloader_text.py:110 ../textw/silo_text.py:25
msgid ""
"A few systems will need to pass special options to the kernel at boot time "
"for the system to function properly. If you need to pass boot options to the "
"kernel, enter them now. If you don't need any or aren't sure, leave this "
"blank."
msgstr ""
"Abiatze unean, sistema gutxi batzuek jokabide zuzena eduki dezaten, beraien "
"kernel-ei zenbait aukera berezi bidali behar zaizkie. Kernel-ari abiatze "
"aukerak laga behar badizkiozu, oraintxe idatzi. Ziur ez bazaude, hau txuriz "
"utzi."

#: ../textw/bootloader_text.py:119
msgid "Force use of LBA32 (not normally required)"
msgstr ""

# ../textw/lilo_text.py:85 ../textw/silo_text.py:103
#: ../textw/bootloader_text.py:185
#, fuzzy
msgid "Where do you want to install the boot loader?"
msgstr "Abiagailua non ezartzea nahi duzu?"

# ../textw/lilo_text.py:117 ../textw/silo_text.py:136
# ../textw/silo_text.py:157
#: ../textw/bootloader_text.py:217 ../textw/silo_text.py:147
#: ../textw/silo_text.py:168
msgid "Clear"
msgstr "Garbitu"

# ../textw/silo_text.py:144
#: ../textw/bootloader_text.py:225 ../textw/silo_text.py:155
msgid "Edit Boot Label"
msgstr "Abiaketaren Izena Argitatu"

# ../textw/lilo_text.py:144 ../textw/lilo_text.py:149
#: ../textw/bootloader_text.py:243 ../textw/bootloader_text.py:248
msgid "Invalid Boot Label"
msgstr "Abiaketaren Izena Erabilkaitza"

# ../textw/lilo_text.py:145
#: ../textw/bootloader_text.py:244
msgid "Boot label may not be empty."
msgstr "Abiagunearen izena ezin da hutsik egon."

# ../textw/lilo_text.py:150
#: ../textw/bootloader_text.py:249
msgid "Boot label contains illegal characters."
msgstr "Abiaguneko izenak ikur erabilkaitzak ditu."

# ../iw/account_gui.py:272 ../libfdisk/newtfsedit.c:1437
# ../libfdisk/newtfsedit.c:1445 ../textw/lilo_text.py:202
# ../textw/lilo_text.py:228 ../textw/partitioning_text.py:64
# ../textw/silo_text.py:205 ../textw/silo_text.py:227
# ../textw/userauth_text.py:196
#: ../textw/bootloader_text.py:298 ../textw/fdisk_text.py:41
#: ../textw/partition_text.py:1131 ../textw/silo_text.py:216
#: ../textw/silo_text.py:238 ../textw/userauth_text.py:237
msgid "Edit"
msgstr "Argitatu"

# ../textw/silo_text.py:208
#: ../textw/bootloader_text.py:302
#, fuzzy, python-format
msgid ""
"The boot manager %s uses can boot other operating systems as well. You need "
"to tell me what partitions you would like to be able to boot and what label "
"you want to use for each of them."
msgstr ""
"LILO abiagailua beste zenbait Sistema Eragile abiatzeko erabil daiteke. "
"Horretarako, abiatu daitekeen beste disko zatiak eta bakoitzari dagokion "
"izena aipatzeaz nahikoa da. Ohituraz, Sistema Eragile bakoitzaren izena "
"ematen da."

#: ../textw/bootloader_text.py:315
msgid ""
" <Space> selects button | <F2> select default boot entry | <F12> next screen>"
msgstr ""

#: ../textw/bootloader_text.py:394
msgid ""
"A boot loader password prevents users from passing arbitrary options to the "
"kernel.  For highest security, we recommend setting a password, but this is "
"not necessary for more casual users."
msgstr ""

# ../textw/userauth_text.py:291
#: ../textw/bootloader_text.py:404
#, fuzzy
msgid "Use a GRUB Password"
msgstr "Ilunpeko Hitz-ezkutua Eraibli"

# ../iw/account_gui.py:183
#: ../textw/bootloader_text.py:416
#, fuzzy
msgid "Boot Loader Password:"
msgstr "Sistemako Arduradunaren (root) hitz-ezkutua:"

# ../iw/account_gui.py:186
#: ../textw/bootloader_text.py:417
#, fuzzy
msgid "Confirm:"
msgstr "Egiaztatu: "

# ../iw/account_gui.py:43
#: ../textw/bootloader_text.py:446
#, fuzzy
msgid "Passwords Do Not Match"
msgstr "Sistemako Arduradunaren (root) hitz-ezkutuek ez datoz bat."

# ../iw/account_gui.py:41
#: ../textw/bootloader_text.py:451
#, fuzzy
msgid "Password Too Short"
msgstr "Sistemako Arduradunaren (root) hitz-ezkutua motzegia da."

# ../iw/account_gui.py:41
#: ../textw/bootloader_text.py:452
#, fuzzy
msgid "Boot loader password is too short"
msgstr "Sistemako Arduradunaren (root) hitz-ezkutua motzegia da."

# ../iw/language_gui.py:39 ../loader/lang.c:287
#: ../textw/complete_text.py:27
#, fuzzy
msgid ""
"Press <Enter> to end the installation process.\n"
"\n"
msgstr "Ezarketa egiterakoan zein hizkuntza erabiltzea nahi duzu?"

#: ../textw/complete_text.py:28
msgid "<Enter> to exit"
msgstr ""

#: ../textw/complete_text.py:30
msgid ""
"Remove any installation media (diskettes or CD-ROMs) used during the "
"installation process and press <Enter> to reboot your system.\n"
"\n"
msgstr ""

#: ../textw/complete_text.py:34
msgid "<Enter> to reboot"
msgstr ""

#: ../textw/complete_text.py:38
#, python-format
msgid ""
"Congratulations, your %s installation is complete.\n"
"\n"
"%s%s"
msgstr ""

# ../text.py:535
#: ../textw/complete_text.py:41
#, fuzzy, python-format
msgid ""
"For information on errata (updates and bug fixes), visit http://www.redhat."
"com/errata/.\n"
"\n"
"Information on using your system is available in the %s manuals at http://"
"www.redhat.com/docs/."
msgstr ""
"Egokitzaketa amaitu da, Zorionak!\n"
"\n"
"Bertsio honen eguneraketei buruzko berriak jasotzeko http://www.redhat.com "
"guneko Hutsegite atalean begiradatxo bat bota.\n"
"\n"
"Sistemaren egokitzaketei buruzko berri gehiago Red Hat Linux "
"Erabiltzailearen Aitzindari Ofizialean aurki dezakezu."

# ../text.py:513 ../text.py:534
#: ../textw/complete_text.py:47
msgid "Complete"
msgstr "Osatuta"

# ../libfdisk/gnomefsedit.c:3538
#: ../textw/complete_text.py:48
#, fuzzy
msgid "Reboot"
msgstr "_Garbitu"

# ../text.py:483
#: ../textw/confirm_text.py:22
msgid "Installation to begin"
msgstr "Ezarketa hastera doa"

# ../iw/confirm_gui.py:44 ../text.py:484
#: ../textw/confirm_text.py:23
#, fuzzy, python-format
msgid ""
"A complete log of your installation will be in %s after rebooting your "
"system. You may want to keep this file for later reference."
msgstr ""
"Ordenagailua berpiztu ondoren, ezarketaren zehaztasun eta gertaera guztiak /"
"tmp/install.log -ean aurki dezakezu. Hau gordeta edukitzea ongi etorriko "
"zaizu."

# ../gui.py:366 ../gui.py:604 ../libfdisk/newtfsedit.c:1438
# ../libfdisk/newtfsedit.c:1446 ../loader/cdrom.c:34 ../loader/devices.c:93
# ../loader/devices.c:215 ../loader/devices.c:312 ../loader/lang.c:578
# ../loader/loader.c:277 ../loader/loader.c:656 ../loader/loader.c:693
# ../loader/loader.c:852 ../loader/loader.c:944 ../loader/loader.c:1398
# ../loader/net.c:164 ../loader/net.c:249 ../loader/net.c:334
# ../loader/urls.c:155 ../loader/urls.c:376 ../text.py:57 ../text.py:68
# ../text.py:120 ../text.py:123 ../text.py:196 ../text.py:251 ../text.py:269
# ../text.py:272 ../text.py:291 ../text.py:294 ../text.py:316 ../text.py:319
# ../text.py:376 ../text.py:379 ../text.py:405 ../text.py:409 ../text.py:418
# ../text.py:487 ../text.py:489 ../text.py:499 ../text.py:501
# ../textw/bootdisk_text.py:30 ../textw/constants_text.py:10
# ../textw/lilo_text.py:31 ../textw/lilo_text.py:87 ../textw/lilo_text.py:95
# ../textw/lilo_text.py:203 ../textw/mouse_text.py:27
# ../textw/mouse_text.py:28 ../textw/mouse_text.py:55
# ../textw/mouse_text.py:81 ../textw/network_text.py:92
# ../textw/network_text.py:141 ../textw/network_text.py:144
# ../textw/packages_text.py:55 ../textw/packages_text.py:236
# ../textw/packages_text.py:347 ../textw/packages_text.py:353
# ../textw/partitioning_text.py:24 ../textw/partitioning_text.py:65
# ../textw/partitioning_text.py:257 ../textw/partitioning_text.py:309
# ../textw/silo_text.py:26 ../textw/silo_text.py:99 ../textw/silo_text.py:206
# ../textw/timezone_text.py:69 ../textw/userauth_text.py:30
# ../textw/userauth_text.py:165 ../textw/userauth_text.py:196
# ../textw/userauth_text.py:287
#: ../textw/confirm_text.py:26 ../textw/confirm_text.py:28
#: ../textw/confirm_text.py:52 ../textw/confirm_text.py:54
#: ../textw/constants_text.py:44 ../textw/silo_text.py:110
#: ../textw/userauth_text.py:202 ../loader2/cdinstall.c:381
#: ../loader2/driverdisk.c:250 ../loader2/driverdisk.c:265
#: ../loader2/driverselect.c:73 ../loader2/driverselect.c:187
#: ../loader2/driverselect.c:213 ../loader2/hdinstall.c:462
#: ../loader2/hdinstall.c:516 ../loader2/kbd.c:125 ../loader2/loader.c:322
#: ../loader2/loader.c:806 ../loader2/loader.c:828 ../loader2/net.c:174
#: ../loader2/net.c:433 ../loader2/net.c:868 ../loader2/nfsinstall.c:54
#: ../loader2/urls.c:254 ../loader2/urls.c:444
msgid "Back"
msgstr "Atzera"

# ../text.py:495
#: ../textw/confirm_text.py:48
msgid "Upgrade to begin"
msgstr "Eguneraketaren Hasiera"

# ../iw/confirm_gui.py:40 ../text.py:496
#: ../textw/confirm_text.py:49
#, fuzzy, python-format
msgid ""
"A complete log of your upgrade will be in %s after rebooting your system. "
"You may want to keep this file for later reference."
msgstr ""
"Ordenagailua berpiztu ondoren, ezarketaren zehaztasun eta gertaera guztiak /"
"tmp/upgrade.log -ean aurki dezakezu. Hau gordeta edukitzea ongi etorriko "
"zaizu."

#: ../textw/desktop_choice_text.py:27
#, python-format
msgid ""
"The default installation environment includes our recommended package "
"selection.  After installation, additional software can be added or removed "
"using the 'system-config-packages' tool.\n"
"\n"
"However %s ships with many more applications, and you may customize the "
"selection of software installed if you want."
msgstr ""

# ../iw/xconfig_gui.py:23 ../iw/xconfig_gui.py:467
#: ../textw/desktop_choice_text.py:37
#, fuzzy
msgid "Customize software selection"
msgstr "X Norberari Egokitua"

# ../iw/fdisk_gui.py:109
#: ../textw/fdasd_text.py:31
#, fuzzy
msgid "Choose a disk to run fdasd or dasdfmt on"
msgstr "'fdisk'-ek zein disko landu behar du?"

# ../gui.py:365 ../gui.py:605
#: ../textw/fdasd_text.py:32
#, fuzzy
msgid "Next"
msgstr "Hurrengoa"

# ../libfdisk/gnomefsedit.c:797 ../libfdisk/gnomefsedit.c:803
# ../libfdisk/gnomefsedit.c:807 ../libfdisk/gnomefsedit.c:809
# ../libfdisk/newtfsedit.c:368 ../libfdisk/newtfsedit.c:374
# ../libfdisk/newtfsedit.c:378 ../libfdisk/newtfsedit.c:380
#: ../textw/fdasd_text.py:32
#, fuzzy
msgid "Edit Partitions"
msgstr "Disko Zatia Argitatu"

# ../fstab.py:395 ../fstab.py:598 ../fstab.py:633 ../fstab.py:643
# ../fstab.py:667
#: ../textw/fdasd_text.py:33
#, fuzzy
msgid "Format DASD"
msgstr "Diskoa Egituratzen"

# ../textw/partitioning_text.py:15 ../textw/partitioning_text.py:58
#: ../textw/fdasd_text.py:50 ../textw/fdisk_text.py:39
msgid "Disk Setup"
msgstr "Diskoaren Egituraketa"

# ../todo.py:993
#: ../textw/fdasd_text.py:74
#, fuzzy, python-format
msgid "An error occurred while running %s on drive %s."
msgstr "Eguneratuko diren sortak bilatzerakoan akats bat gertatu da."

#: ../textw/fdasd_text.py:85
#, python-format
msgid ""
"Running dasdfmt means the loss of \n"
"ALL DATA on drive %s.\n"
"\n"
"Do you really want this?"
msgstr ""

# ../libfdisk/fsedit.c:1042
#: ../textw/fdasd_text.py:101
#, fuzzy
msgid ""
"An error has occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem or use "
"dasdfmt.\n"
"\n"
"Back to the fdasd screen?"
msgstr ""
"Akats bat gertatu da. Fitxategitza berriak sortzeko tramankulurik ez da "
"aurkitu. Arazo honen zergatia aztertzeko ordenagailuko 'hardware'-a ikuskatu "
"mesedez."

# ../iw/fdisk_gui.py:109
#: ../textw/fdisk_text.py:40
#, fuzzy
msgid "Choose a disk to run fdisk on"
msgstr "'fdisk'-ek zein disko landu behar du?"

# ../text.py:997
#: ../textw/firewall_text.py:26
#, fuzzy
msgid "Customize"
msgstr "Eguneraketa Norberekatua"

# ../gnome-map/gglobe-canvas.c:26
#: ../textw/firewall_text.py:47
#, fuzzy
msgid "Enable firewall"
msgstr "Antialias-a baimendu"

#: ../textw/firewall_text.py:50
msgid "No firewall"
msgstr ""

# ../libfdisk/gnomefsedit.c:2206
#: ../textw/firewall_text.py:69
#, fuzzy
msgid "Trusted Devices:"
msgstr "RAID tramankulua beste batek darabil"

#: ../textw/firewall_text.py:79
msgid "Allow incoming:"
msgstr ""

#: ../textw/firewall_text.py:84
msgid "SSH"
msgstr ""

# ../iw/account_gui.py:274 ../libfdisk/newtfsedit.c:1445
# ../textw/userauth_text.py:195
#: ../textw/firewall_text.py:86 ../loader2/telnetd.c:80
#: ../loader2/telnetd.c:122
#, fuzzy
msgid "Telnet"
msgstr "Ezabatu"

#: ../textw/firewall_text.py:88
msgid "WWW (HTTP)"
msgstr ""

#: ../textw/firewall_text.py:90
msgid "Mail (SMTP)"
msgstr ""

# ../loader/loader.c:1126 ../loader/loader.c:1135
#: ../textw/firewall_text.py:92
msgid "FTP"
msgstr "FTP"

# ../comps/comps-master:140
#: ../textw/firewall_text.py:96
#, fuzzy
msgid "Other ports"
msgstr "Inprimaketa Sistema"

# ../textw/lilo_text.py:144 ../textw/lilo_text.py:149
#: ../textw/firewall_text.py:122 ../textw/firewall_text.py:185
#: ../textw/language_text.py:145
#, fuzzy
msgid "Invalid Choice"
msgstr "Abiaketaren Izena Erabilkaitza"

#: ../textw/firewall_text.py:123
msgid "You cannot customize a disabled firewall."
msgstr ""

# ../text.py:905
#: ../textw/firewall_text.py:128
#, fuzzy
msgid "Firewall Configuration - Customize"
msgstr "Egokitzaketa Osatua"

#: ../textw/firewall_text.py:130
msgid ""
"You can customize your firewall in two ways. First, you can select to allow "
"all traffic from certain network interfaces. Second, you can allow certain "
"protocols explicitly through the firewall. In a comma separated list, "
"specify additional ports in the form 'service:protocol' such as 'imap:tcp'. "
msgstr ""

# ../loader/urls.c:245
#: ../textw/firewall_text.py:186
#, fuzzy, python-format
msgid "Warning: %s is not a valid port."
msgstr "%s Ostalariaren izena baliogabea da."

#: ../textw/firewall_text.py:251
msgid "Security Enhanced Linux"
msgstr ""

#: ../textw/firewall_text.py:253
msgid ""
"Security Enhanced Linux (SELinux) provides stricter access controls to "
"improve the security of your system.  How would you like this support "
"enabled?"
msgstr ""

#: ../textw/firewall_text.py:261
msgid "Disable SELinux"
msgstr ""

#: ../textw/firewall_text.py:263
msgid "Warn on violations"
msgstr ""

# ../text.py:195
#: ../textw/installpath_text.py:49
msgid "What type of system would you like to install?"
msgstr "Zein sistema mota ezartzea gura dozu?"

# ../text.py:118 ../text.py:883 ../text.py:912
#: ../textw/keyboard_text.py:36
msgid "Keyboard Selection"
msgstr "Teklatu Hautaketa"

# ../text.py:119
#: ../textw/keyboard_text.py:37
msgid "Which model keyboard is attached to this computer?"
msgstr "Zure ordenagailuak zein atzoldi (teklatu) mota dauka?"

# ../iw/package_gui.py:399
#: ../textw/language_text.py:108
#, fuzzy
msgid "Select All"
msgstr "Taldekide guztiak hautatu"

# ../libfdisk/gnomefsedit.c:3538
#: ../textw/language_text.py:108
#, fuzzy
msgid "Reset"
msgstr "_Garbitu"

#: ../textw/language_text.py:110
msgid "Choose additional languages that you would like to use on this system:"
msgstr ""

# ../comps/comps-master:450
#: ../textw/language_text.py:114
#, fuzzy
msgid "Language Support"
msgstr "Ordenagailu Mugikorra Onartu"

# ../loader/lang.c:287
#: ../textw/language_text.py:146
#, fuzzy
msgid "You must select at least one language to install."
msgstr "Hizkuntza bat Hautatu"

# ../loader/lang.c:287
#: ../textw/language_text.py:189
#, fuzzy
msgid "Default Language"
msgstr "Hizkuntza bat Hautatu"

# ../loader/lang.c:287
#: ../textw/language_text.py:190
#, fuzzy
msgid "Choose the default language for this system: "
msgstr "Hizkuntza bat Hautatu"

# ../textw/mouse_text.py:26
#: ../textw/mouse_text.py:39
msgid "What device is your mouse located on?"
msgstr "Zure xagua non kokatuta dago?"

# ../textw/mouse_text.py:57
#: ../textw/mouse_text.py:71
msgid "Which model mouse is attached to this computer?"
msgstr "Zure ordenagailuak zein xagu mota dauka?"

# ../textw/mouse_text.py:68
#: ../textw/mouse_text.py:82
msgid "Emulate 3 Buttons?"
msgstr "3 Botoien Antzezketa egin?"

# ../textw/mouse_text.py:71
#: ../textw/mouse_text.py:85
msgid "Mouse Selection"
msgstr "Xagu Hautaketa"

# ../loader/net.c:254
#: ../textw/network_text.py:30
#, fuzzy
msgid "Invalid IP string"
msgstr "IP -ren balio erabilkaitza"

# ../textw/partitioning_text.py:319
#: ../textw/network_text.py:31
#, fuzzy, python-format
msgid "The entered IP '%s' is not a valid IP."
msgstr "Idatzi beharrekoak zenbaki bat izan behar du."

# ../iw/network_gui.py:163
#: ../textw/network_text.py:68
#, fuzzy
msgid "IP Address"
msgstr "IP Helbidea"

# ../iw/network_gui.py:164 ../loader/net.c:727
#: ../textw/network_text.py:69
msgid "Netmask"
msgstr "Sarearen Mozorroa"

#: ../textw/network_text.py:71
msgid "Point to Point (IP)"
msgstr ""

# ../loader/net.c:735
#: ../textw/network_text.py:83
#, fuzzy, python-format
msgid "Network Device: %s"
msgstr "Sareko Tramankulua"

#: ../textw/network_text.py:89
#, python-format
msgid "Description: %s"
msgstr ""

# ../iw/network_gui.py:148
#: ../textw/network_text.py:94
#, fuzzy
msgid "Configure using DHCP"
msgstr "DHCP erabiliz Egokitzatu"

# ../iw/network_gui.py:154
#: ../textw/network_text.py:107
msgid "Activate on boot"
msgstr "Abiatzerakoan Piztu"

# ../iw/network_gui.py:11 ../textw/network_text.py:94
#: ../textw/network_text.py:130
#, fuzzy, python-format
msgid "Network Configuration for %s"
msgstr "Sarearen Egokitzaketa"

# ../textw/network_text.py:111
#: ../textw/network_text.py:163
msgid "Invalid information"
msgstr "Argibide baliogabea"

# ../textw/network_text.py:112
#: ../textw/network_text.py:164
msgid "You must enter valid IP information to continue"
msgstr "Jarraitzeko, IP helbide baliagarri bat idatzi"

# ../iw/network_gui.py:211
#: ../textw/network_text.py:245
#, fuzzy
msgid "Gateway:"
msgstr "Pasabidea"

# ../iw/network_gui.py:211
#: ../textw/network_text.py:255
#, fuzzy
msgid "Primary DNS:"
msgstr "Aurrenengo DNS-a"

# ../iw/network_gui.py:211
#: ../textw/network_text.py:260
#, fuzzy
msgid "Secondary DNS:"
msgstr "Bigarreneko DNS-a"

# ../iw/network_gui.py:211
#: ../textw/network_text.py:265
#, fuzzy
msgid "Tertiary DNS:"
msgstr "Hirugarreneko DNS-a"

# ../loader/devices.c:77
#: ../textw/network_text.py:272
#, fuzzy
msgid "Miscellaneous Network Settings"
msgstr "Denetatik"

# ../text.py:937
#: ../textw/network_text.py:340
#, fuzzy
msgid "automatically via DHCP"
msgstr "Disko Zatiketa Berekasa egin"

# ../text.py:935
#: ../textw/network_text.py:344
#, fuzzy
msgid "manually"
msgstr "Disko Zatiteka eskuz egin"

# ../textw/network_text.py:137
#: ../textw/network_text.py:363
msgid "Hostname Configuration"
msgstr "Ostalariaren Egokitzaketa"

#: ../textw/network_text.py:366
msgid ""
"If your system is part of a larger network where hostnames are assigned by "
"DHCP, select automatically via DHCP. Otherwise, select manually and enter in "
"a hostname for your system. If you do not, your system will be known as "
"'localhost.'"
msgstr ""

# ../textw/lilo_text.py:144 ../textw/lilo_text.py:149
#: ../textw/network_text.py:392 ../textw/network_text.py:398
#, fuzzy
msgid "Invalid Hostname"
msgstr "Abiaketaren Izena Erabilkaitza"

#: ../textw/network_text.py:393
msgid "You have not specified a hostname."
msgstr ""

# ../iw/package_gui.py:494 ../textw/packages_text.py:54
#: ../textw/packages_text.py:56
msgid "Select individual packages"
msgstr "Banakako Sortak Hautatu"

# ../textw/packages_text.py:249
#: ../textw/packages_text.py:73
#, fuzzy
msgid ""
"<Space>,<+>,<-> selection   |   <F2> Group Details   |   <F12> next screen"
msgstr ""
"<Hutsune tekla>, <+>, <-> hautatu | <F1> laguntza | <F2> Programa Sortaren "
"Azalpena"

# ../text.py:969
#: ../textw/packages_text.py:117
#, fuzzy
msgid "Package Group Details"
msgstr "Sorta Taldea"

# ../textw/packages_text.py:91
#: ../textw/packages_text.py:172
msgid "Package :"
msgstr "Prog. Sorta:"

# ../textw/packages_text.py:96
#: ../textw/packages_text.py:177
msgid "Size    :"
msgstr "Neurria : "

# ../iw/package_gui.py:135 ../textw/packages_text.py:97
#: ../textw/packages_text.py:178
#, python-format
msgid "%.1f KBytes"
msgstr "%.1f KByte"

# ../textw/packages_text.py:116
#: ../textw/packages_text.py:197
msgid "Total size"
msgstr "Guztira"

# ../textw/packages_text.py:249
#: ../textw/packages_text.py:326
msgid ""
"   <Space>,<+>,<-> selection   |   <F1> help   |   <F2> package description"
msgstr ""
"<Hutsune tekla>, <+>, <-> hautatu | <F1> laguntza | <F2> Programa Sortaren "
"Azalpena"

# ../text.py:973 ../textw/packages_text.py:304
#: ../textw/packages_text.py:374
msgid "Package Dependencies"
msgstr "Sorten Menpekotasuna"

# ../textw/packages_text.py:306
#: ../textw/packages_text.py:376
#, fuzzy
msgid ""
"Some of the packages you have selected to install require packages you have "
"not selected. If you just select OK all of those required packages will be "
"installed."
msgstr ""
"Zuk aukeratutako sorta batzuek aukeratubarik dagozen beste batzuren beharra "
"daukate. 'Onartu' sakatuz beharrezkoak direnak ere ezarriko dira."

# ../iw/dependencies_gui.py:86 ../textw/packages_text.py:327
#: ../textw/packages_text.py:397
msgid "Install packages to satisfy dependencies"
msgstr "Menpekotasunak gainditzeko sortak ezarri"

# ../iw/dependencies_gui.py:89 ../textw/packages_text.py:328
#: ../textw/packages_text.py:398
msgid "Do not install packages that have dependencies"
msgstr "Menpekotasunak dituzten programa sortarik ez ezarri."

# ../iw/dependencies_gui.py:93 ../textw/packages_text.py:329
#: ../textw/packages_text.py:399
msgid "Ignore package dependencies"
msgstr "Sorten Menpekotasunak Ahaztu"

#: ../textw/partition_text.py:39
msgid "Must specify a value"
msgstr ""

#: ../textw/partition_text.py:42
msgid "Requested value is not an integer"
msgstr ""

#: ../textw/partition_text.py:44
msgid "Requested value is too large"
msgstr ""

# ../libfdisk/gnomefsedit.c:2199
#: ../textw/partition_text.py:98
#, fuzzy, python-format
msgid "RAID Device %s"
msgstr "RAID tramankulurik ez da ageri"

# ../todo.py:857
#: ../textw/partition_text.py:223
#, fuzzy, python-format
msgid "Warning: %s"
msgstr "Bilatzen"

# ../libfdisk/gnomefsedit.c:797 ../libfdisk/gnomefsedit.c:803
# ../libfdisk/gnomefsedit.c:807 ../libfdisk/gnomefsedit.c:809
# ../libfdisk/newtfsedit.c:368 ../libfdisk/newtfsedit.c:374
# ../libfdisk/newtfsedit.c:378 ../libfdisk/newtfsedit.c:380
#: ../textw/partition_text.py:224
#, fuzzy
msgid "Modify Partition"
msgstr "Disko Zatia Argitatu"

# ../text.py:943
#: ../textw/partition_text.py:224
#, fuzzy
msgid "Add anyway"
msgstr "Disko-Trukagunea"

# ../libfdisk/gnomefsedit.c:824 ../libfdisk/gnomefsedit.c:1909
# ../libfdisk/newtfsedit.c:389
#: ../textw/partition_text.py:262
msgid "Mount Point:"
msgstr "Loturagunea:"

# ../text.py:941 ../textw/partitioning_text.py:301
#: ../textw/partition_text.py:283
#, fuzzy
msgid "File System type:"
msgstr "Erro Fitxategitzaren Neurria"

# ../libfdisk/gnomefsedit.c:1033 ../libfdisk/newtfsedit.c:519
#: ../textw/partition_text.py:317
msgid "Allowable Drives:"
msgstr "Disko Gogor Zillegituak:"

# ../textw/partitioning_text.py:318 ../textw/partitioning_text.py:324
# ../textw/partitioning_text.py:331
#: ../textw/partition_text.py:373
#, fuzzy
msgid "Fixed Size:"
msgstr "Neurri Okerra"

#: ../textw/partition_text.py:375
msgid "Fill maximum size of (MB):"
msgstr ""

#: ../textw/partition_text.py:379
msgid "Fill all available space:"
msgstr ""

#: ../textw/partition_text.py:402
msgid "Start Cylinder:"
msgstr ""

#: ../textw/partition_text.py:415
msgid "End Cylinder:"
msgstr ""

# ../libfdisk/gnomefsedit.c:2011
#: ../textw/partition_text.py:439
#, fuzzy
msgid "RAID Level:"
msgstr "RAID Mota:"

# ../libfdisk/gnomefsedit.c:2011
#: ../textw/partition_text.py:457
#, fuzzy
msgid "RAID Members:"
msgstr "RAID Mota:"

#: ../textw/partition_text.py:476
msgid "Number of spares?"
msgstr ""

# ../text.py:941 ../textw/partitioning_text.py:301
#: ../textw/partition_text.py:490
#, fuzzy
msgid "File System Type:"
msgstr "Erro Fitxategitzaren Neurria"

# ../text.py:941 ../textw/partitioning_text.py:301
#: ../textw/partition_text.py:503
#, fuzzy
msgid "File System Label:"
msgstr "Erro Fitxategitzaren Neurria"

# ../text.py:941 ../textw/partitioning_text.py:301
#: ../textw/partition_text.py:514
#, fuzzy
msgid "File System Option:"
msgstr "Erro Fitxategitzaren Neurria"

#: ../textw/partition_text.py:517 ../textw/partition_text.py:755
#: ../textw/partition_text.py:992
#, python-format
msgid "Format as %s"
msgstr ""

#: ../textw/partition_text.py:519 ../textw/partition_text.py:757
#: ../textw/partition_text.py:994
#, python-format
msgid "Migrate to %s"
msgstr ""

# ../libfdisk/newtfsedit.c:1656
#: ../textw/partition_text.py:521 ../textw/partition_text.py:759
#: ../textw/partition_text.py:996
#, fuzzy
msgid "Leave unchanged"
msgstr "Aldaketak Gorde"

# ../text.py:945
#: ../textw/partition_text.py:537 ../textw/partition_text.py:732
#: ../textw/partition_text.py:972
#, fuzzy
msgid "File System Options"
msgstr "Fitxategitza Moldatzen"

# ../iw/rootpartition_gui.py:314
#: ../textw/partition_text.py:540
#, fuzzy
msgid ""
"Please choose how you would like to prepare the file system on this "
"partition."
msgstr ""
"\n"
"Mesedez, disko gogorra zatitzeko erabili beharreko disko zatitzailea "
"aukeratu."

# ../textw/partitioning_text.py:254
#: ../textw/partition_text.py:548
#, fuzzy
msgid "Check for bad blocks"
msgstr "Tangulu (bloke) txarrak begiztatu"

#: ../textw/partition_text.py:552
msgid "Leave unchanged (preserve data)"
msgstr ""

#: ../textw/partition_text.py:561
msgid "Format as:"
msgstr ""

#: ../textw/partition_text.py:581
msgid "Migrate to:"
msgstr ""

#: ../textw/partition_text.py:693
msgid "Force to be a primary partition"
msgstr ""

# ../text.py:887 ../text.py:955
#: ../textw/partition_text.py:710
#, fuzzy
msgid "Not Supported"
msgstr "Sarearen Egituraketa"

#: ../textw/partition_text.py:711
msgid "LVM Volume Groups can only be edited in the graphical installer."
msgstr ""

# ../textw/network_text.py:111
#: ../textw/partition_text.py:787 ../textw/partition_text.py:840
#, fuzzy
msgid "Invalid Entry for Partition Size"
msgstr "Argibide baliogabea"

#: ../textw/partition_text.py:799
msgid "Invalid Entry for Maximum Size"
msgstr ""

#: ../textw/partition_text.py:818
msgid "Invalid Entry for Starting Cylinder"
msgstr ""

#: ../textw/partition_text.py:832
msgid "Invalid Entry for End Cylinder"
msgstr ""

# ../libfdisk/gnomefsedit.c:558 ../libfdisk/gnomefsedit.c:853
#: ../textw/partition_text.py:945
#, fuzzy
msgid "No RAID partitions"
msgstr "<RAID Zatia>"

#: ../textw/partition_text.py:946
msgid "At least two software RAID partitions are needed."
msgstr ""

# ../libfdisk/newtfsedit.c:1571
#: ../textw/partition_text.py:958
#, fuzzy
msgid "Format partition?"
msgstr "Erro disko-zatirik ez dago"

# ../textw/network_text.py:111
#: ../textw/partition_text.py:1020
#, fuzzy
msgid "Invalid Entry for RAID Spares"
msgstr "Argibide baliogabea"

# ../libfdisk/fsedit.c:1014
#: ../textw/partition_text.py:1033
#, fuzzy
msgid "Too many spares"
msgstr "Disko Gogor Gehiegi"

#: ../textw/partition_text.py:1034
msgid "The maximum number of spares with a RAID0 array is 0."
msgstr ""

# ../iw/account_gui.py:276
#: ../textw/partition_text.py:1130
msgid "New"
msgstr "Berria"

# ../iw/account_gui.py:274 ../libfdisk/newtfsedit.c:1445
# ../textw/userauth_text.py:195
#: ../textw/partition_text.py:1132 ../textw/userauth_text.py:236
msgid "Delete"
msgstr "Ezabatu"

# ../libfdisk/gnomefsedit.c:270
#: ../textw/partition_text.py:1133
#, fuzzy
msgid "RAID"
msgstr "<RAID>"

# ../libfdisk/newtfsedit.c:1452
#: ../textw/partition_text.py:1136
#, fuzzy
msgid ""
"    F1-Help     F2-New      F3-Edit   F4-Delete    F5-Reset    F12-OK        "
msgstr ""
"   F1-Laguntza   F2-Gehitu   F3-Argitatu   F4-Ezabatu   F5-Garbitu   F12-"
"Onartu"

# ../libfdisk/newtfsedit.c:1571
#: ../textw/partition_text.py:1165
msgid "No Root Partition"
msgstr "Erro disko-zatirik ez dago"

# ../libfdisk/newtfsedit.c:1593
#: ../textw/partition_text.py:1166
#, fuzzy
msgid "Must have a / partition to install on."
msgstr "Ezarketak aurrera jarraitu dezan, trukagune zatia kokatu behar duzu."

# ../textw/lilo_text.py:85 ../textw/silo_text.py:103
#: ../textw/partition_text.py:1233
#, fuzzy
msgid "Which drive(s) do you want to use for this installation?"
msgstr "Abiagailua non ezartzea nahi duzu?"

# ../libfdisk/gnomefsedit.c:2449
#: ../textw/partmethod_text.py:26
#, fuzzy
msgid "Autopartition"
msgstr "Bere kasa Zatikatu"

# ../iw/rootpartition_gui.py:37 ../textw/partitioning_text.py:23
#: ../textw/partmethod_text.py:27
msgid "Disk Druid"
msgstr "Disk Druid"

# ../text.py:605
#: ../textw/progress_text.py:98
msgid "Package Installation"
msgstr "Sortaren Ezarketa"

# ../text.py:607
#: ../textw/progress_text.py:100
#, fuzzy
msgid " Name   : "
msgstr "Izena : "

# ../text.py:608
#: ../textw/progress_text.py:101
#, fuzzy
msgid " Size   : "
msgstr "Neurria : "

# ../text.py:609
#: ../textw/progress_text.py:102
#, fuzzy
msgid " Summary: "
msgstr "Azalpena: "

# ../text.py:635
#: ../textw/progress_text.py:147
msgid "    Packages"
msgstr "    Sortak"

# ../text.py:636
#: ../textw/progress_text.py:148
#, fuzzy
msgid "      Bytes"
msgstr "       Byte"

# ../text.py:637
#: ../textw/progress_text.py:149
msgid "        Time"
msgstr "    Denbora"

# ../text.py:639
#: ../textw/progress_text.py:151
msgid "Total    :"
msgstr "Guztira  :"

# ../text.py:646
#: ../textw/progress_text.py:158
msgid "Completed:   "
msgstr "Osatua:   "

# ../text.py:656
#: ../textw/progress_text.py:168
msgid "Remaining:  "
msgstr "Gainerakoa: "

# ../text.py:923 ../textw/silo_text.py:28 ../textw/silo_text.py:101
# ../textw/silo_text.py:213
#: ../textw/silo_text.py:39 ../textw/silo_text.py:112
#: ../textw/silo_text.py:224
msgid "SILO Configuration"
msgstr "SILO-ren Egokitzaketa"

# ../textw/silo_text.py:66
#: ../textw/silo_text.py:77
msgid "Create PROM alias `linux'"
msgstr "PROM-ean 'linux' gaitzizena sortu"

# ../textw/silo_text.py:67
#: ../textw/silo_text.py:78
msgid "Set default PROM boot device"
msgstr "PROM-ean jatorrizko abiagailua ezarri"

# ../textw/lilo_text.py:85 ../textw/silo_text.py:103
#: ../textw/silo_text.py:114
msgid "Where do you want to install the bootloader?"
msgstr "Abiagailua non ezartzea nahi duzu?"

# ../textw/silo_text.py:208
#: ../textw/silo_text.py:219
msgid ""
"The boot manager Red Hat uses can boot other operating systems as well. You "
"need to tell me what partitions you would like to be able to boot and what "
"label you want to use for each of them."
msgstr ""
"LILO abiagailua beste zenbait Sistema Eragile abiatzeko erabil daiteke. "
"Horretarako, abiatu daitekeen beste disko zatiak eta bakoitzari dagokion "
"izena aipatzeaz nahikoa da. Ohituraz, Sistema Eragile bakoitzaren izena "
"ematen da."

# ../textw/timezone_text.py:71
#: ../textw/timezone_text.py:79
msgid "What time zone are you located in?"
msgstr "Zein ordutegi eremutan kokatuta zaude?"

# ../iw/xconfig_gui.py:123
#: ../textw/upgrade_bootloader_text.py:53
#: ../textw/upgrade_bootloader_text.py:60
#, fuzzy
msgid "Update boot loader configuration"
msgstr "Monitorea Egokitu"

# ../iw/lilo_gui.py:307 ../iw/lilo_gui.py:343 ../iw/silo_gui.py:256
# ../iw/silo_gui.py:291 ../textw/lilo_text.py:113 ../textw/lilo_text.py:193
# ../textw/silo_text.py:132 ../textw/silo_text.py:196
#: ../textw/upgrade_bootloader_text.py:64
#, fuzzy
msgid "Skip boot loader updating"
msgstr "Abiaketaren Izena"

# ../iw/lilo_gui.py:292 ../iw/silo_gui.py:225
#: ../textw/upgrade_bootloader_text.py:66
#, fuzzy
msgid "Create new boot loader configuration"
msgstr "Abiatze disketea sortu"

#: ../textw/upgrade_text.py:94
#, python-format
msgid ""
"The 2.4 kernel needs significantly more swap than older kernels, as much as "
"twice as much swap space as RAM on the system. You currently have %dMB of "
"swap configured, but you may create additional swap space on one of your "
"file systems now."
msgstr ""

# ../todo.py:1599
#: ../textw/upgrade_text.py:112
#, fuzzy
msgid "Free Space"
msgstr "Diskaren Zabaltegia"

#: ../textw/upgrade_text.py:127
msgid "RAM detected (MB):"
msgstr ""

# ../libfdisk/gnomefsedit.c:866 ../libfdisk/newtfsedit.c:408
#: ../textw/upgrade_text.py:130
#, fuzzy
msgid "Suggested size (MB):"
msgstr "Neurria (MB)"

# ../iw/rootpartition_gui.py:179
#: ../textw/upgrade_text.py:133
#, fuzzy
msgid "Swap file size (MB):"
msgstr "Disko trukagunearen neurria:"

# ../text.py:943
#: ../textw/upgrade_text.py:141
#, fuzzy
msgid "Add Swap"
msgstr "Disko-Trukagunea"

# ../textw/partitioning_text.py:319
#: ../textw/upgrade_text.py:166
#, fuzzy
msgid "The value you entered is not a valid number."
msgstr "Idatzi beharrekoak zenbaki bat izan behar du."

# ../text.py:194 ../text.py:915
#: ../textw/upgrade_text.py:205
#, fuzzy
msgid "Reinstall System"
msgstr "Ezarketa Mota"

# ../text.py:266
#: ../textw/upgrade_text.py:207
msgid "System to Upgrade"
msgstr "Sistemaren Eguneraketa"

#: ../textw/upgrade_text.py:208
msgid ""
"One or more existing Linux installations have been found on your system.\n"
"\n"
"Please choose one to upgrade, or select 'Reinstall System' to freshly "
"install your system."
msgstr ""

# ../text.py:283
#: ../textw/upgrade_text.py:245
msgid "Customize Packages to Upgrade"
msgstr "Eguneratzeko Sortak Norberekatu"

# ../text.py:284
#: ../textw/upgrade_text.py:246
msgid ""
"The packages you have installed, and any other packages which are needed to "
"satisfy their dependencies, have been selected for installation. Would you "
"like to customize the set of packages that will be upgraded?"
msgstr ""
"Ezarritako sortak, eta beraien arteko menpekotasuna betetzeko beharrezkoak "
"direnak, eguneratu izan daitezenaren zotza jarri zaie. Beste sortik "
"eguneratzea nahi al duzu?"

# ../text.py:895 ../text.py:963 ../textw/userauth_text.py:9
#: ../textw/userauth_text.py:29
msgid "Root Password"
msgstr "Sistemako Arduradunaren (root) Pasahitza"

# ../textw/userauth_text.py:11
#: ../textw/userauth_text.py:31
msgid ""
"Pick a root password. You must type it twice to ensure you know what it is "
"and didn't make a mistake in typing. Remember that the root password is a "
"critical part of system security!"
msgstr ""
"Sistema-arduradunaren hitz-ezkutua idatzi. Zuzen idatzi dela ziurtatzeko, "
"hitz-ezkutua birritan idatzi behar da. Gogoratu sistemako arduradunaren hitz-"
"ezkutua sistemaren babeserako oso garrantzitsua dela."

# ../loader/urls.c:346 ../textw/userauth_text.py:24
#: ../textw/userauth_text.py:44 ../loader2/urls.c:434
msgid "Password:"
msgstr "Hitz-ezkutua:"

# ../iw/account_gui.py:252 ../textw/userauth_text.py:83
#: ../textw/userauth_text.py:45
#, fuzzy
msgid "Password (confirm):"
msgstr "Hitz-Ezkutua (egiaztatu)"

# ../textw/userauth_text.py:41 ../textw/userauth_text.py:108
#: ../textw/userauth_text.py:61 ../textw/userauth_text.py:138
msgid "Password Length"
msgstr "Hitz-ezkutuaren Luzera"

# ../textw/userauth_text.py:42
#: ../textw/userauth_text.py:62
msgid "The root password must be at least 6 characters long."
msgstr ""
"Sistemako arduradunaren hitz-ezkutuak gutxienez 6 hizki (ikur) eduki behar "
"ditu."

# ../textw/userauth_text.py:46 ../textw/userauth_text.py:116
#: ../textw/userauth_text.py:66 ../textw/userauth_text.py:146
msgid "Password Mismatch"
msgstr "Hitz-ezkutuak ez datoz bat"

# ../textw/userauth_text.py:47 ../textw/userauth_text.py:117
#: ../textw/userauth_text.py:67 ../textw/userauth_text.py:147
msgid "The passwords you entered were different. Please try again."
msgstr "Hitz-ezkutuak ezberdinak dira. Berriro saiatu, mesedez."

# ../textw/userauth_text.py:72
#: ../textw/userauth_text.py:102
msgid "Edit User"
msgstr "Erabiltzailea Argitatu"

# ../textw/userauth_text.py:75
#: ../textw/userauth_text.py:105
msgid "Add User"
msgstr "Erabiltzailea Gehitu"

# ../textw/userauth_text.py:184
#: ../textw/userauth_text.py:110
#, fuzzy
msgid "User Name"
msgstr "Erabiltzailearen izena"

# ../iw/account_gui.py:248 ../textw/userauth_text.py:82
#: ../textw/userauth_text.py:111
msgid "Password"
msgstr "Hitz-ezkutua"

# ../iw/account_gui.py:252 ../textw/userauth_text.py:83
#: ../textw/userauth_text.py:112
msgid "Password (confirm)"
msgstr "Hitz-Ezkutua (egiaztatu)"

# ../iw/account_gui.py:261 ../iw/account_gui.py:291
# ../textw/userauth_text.py:81 ../textw/userauth_text.py:184
#: ../textw/userauth_text.py:113 ../textw/userauth_text.py:222
msgid "Full Name"
msgstr "Izen Osoa"

# ../textw/userauth_text.py:184
#: ../textw/userauth_text.py:125
#, fuzzy
msgid "Bad User Name"
msgstr "Erabiltzailearen izena"

# ../textw/userauth_text.py:96
#: ../textw/userauth_text.py:126
#, fuzzy
msgid "User names must contain only characters A-Z, a-z, and 0-9."
msgstr ""
"Erabiltzailearen nortasunak 8 hizki baino gitxiago eduki behar ditu. Hizkiok "
"A-Z, a-z eta 0-9 artekoak bakarrik izan daitezke"

# ../textw/userauth_text.py:103
#: ../textw/userauth_text.py:133
#, fuzzy
msgid "Missing User Name"
msgstr "Erabiltzailearen Nortasuna Desagertuta dago"

# ../textw/userauth_text.py:104
#: ../textw/userauth_text.py:134
#, fuzzy
msgid "You must provide a user name"
msgstr "Erabiltzailearen nortasuna idatzi behar duzu"

# ../textw/userauth_text.py:109
#: ../textw/userauth_text.py:139
msgid "The password must be at least 6 characters long."
msgstr "Hitz-ezkutuak gitxienik 6 hizki (ikur) eduki behar ditu."

# ../textw/userauth_text.py:125 ../textw/userauth_text.py:133
#: ../textw/userauth_text.py:155 ../textw/userauth_text.py:162
#: ../textw/userauth_text.py:170
msgid "User Exists"
msgstr "Erabiltzaile hau iadanik badago"

# ../textw/userauth_text.py:126
#: ../textw/userauth_text.py:156
msgid ""
"The root user is already configured. You don't need to add this user here."
msgstr ""
"Jadanik sistemako Arduraduna egokitua dago. Hemen  erabiltzaile hori ezin "
"duzu gehitu."

# ../textw/userauth_text.py:126
#: ../textw/userauth_text.py:163
#, fuzzy
msgid ""
"This system user is already configured. You don't need to add this user here."
msgstr ""
"Jadanik sistemako Arduraduna egokitua dago. Hemen  erabiltzaile hori ezin "
"duzu gehitu."

# ../textw/userauth_text.py:13
#: ../textw/userauth_text.py:171
msgid "This user id already exists.  Choose another."
msgstr "Erabiltzailearen Nortasuna iadanik badago. Beste bat aukeratu."

# ../textw/userauth_text.py:161
#: ../textw/userauth_text.py:198
msgid ""
"You should use a normal user account for most activities on your system. By "
"not using the root account casually, you'll reduce the chance of disrupting "
"your system's configuration."
msgstr ""
"Sisteman ohizko lanak egiteko erabiltzaile arrunt bat bezala sartu behar "
"duzu. 'root'-aren kontua sistemako eguneraketa edo arazoak konpotzerakoan "
"bakarrik erabili ezkero, sistemaren izurraketa arriskua leundu egiten da."

# ../text.py:897 ../text.py:965 ../textw/userauth_text.py:172
#: ../textw/userauth_text.py:209
msgid "User Account Setup"
msgstr "Erabiltzailearen Egituraketa"

# ../textw/userauth_text.py:17
#: ../textw/userauth_text.py:211
#, fuzzy
msgid ""
"What other user accounts would you like to have on the system? You should "
"have at least one non-root account for normal work, but multi-user systems "
"can have any number of accounts set up."
msgstr ""
"Zein erabiltzaileren kontua ezartzea gura dozu? Sistemako arduradunaren "
"kontuaz gain, ohizko lanak egiteko, beste bat edukitza komeni zaizu. Nahi "
"duzun hainbat erabiltzaileen kontu ireki ditzakezu."

# ../textw/userauth_text.py:184
#: ../textw/userauth_text.py:222
msgid "User name"
msgstr "Erabiltzailearen izena"

# ../iw/account_gui.py:270 ../libfdisk/newtfsedit.c:1444
# ../textw/userauth_text.py:195
#: ../textw/userauth_text.py:236
msgid "Add"
msgstr "Gehitu"

# ../textw/userauth_text.py:208
#: ../textw/userauth_text.py:249
msgid "Enter the information for the user."
msgstr "Erabiltzaileari buruzko ezaugarriak idatzi."

# ../textw/userauth_text.py:220
#: ../textw/userauth_text.py:267
msgid "Change the information for this user."
msgstr "Erabiltzaile honen ezaugarriak aldatu."

# ../textw/userauth_text.py:291
#: ../textw/userauth_text.py:339
msgid "Use Shadow Passwords"
msgstr "Ilunpeko Hitz-ezkutua Eraibli"

# ../textw/userauth_text.py:293
#: ../textw/userauth_text.py:341
msgid "Enable MD5 Passwords"
msgstr "MD5 Hitz-ezkutua baimendu"

# ../iw/auth_gui.py:79 ../textw/userauth_text.py:298
#: ../textw/userauth_text.py:346
msgid "Enable NIS"
msgstr "NIS baimendu"

# ../textw/userauth_text.py:304
#: ../textw/userauth_text.py:352
msgid "NIS Domain:"
msgstr "NIS Jabetza:"

# ../textw/userauth_text.py:30
#: ../textw/userauth_text.py:354
msgid "NIS Server:"
msgstr "NIS Zerbitzaria:"

# ../textw/userauth_text.py:308
#: ../textw/userauth_text.py:356
msgid "or use:"
msgstr "edo hau erabili:"

# ../textw/userauth_text.py:311
#: ../textw/userauth_text.py:359
msgid "Request server via broadcast"
msgstr "Zerbitzaria hedapenaren bitartez bilatu"

# ../iw/auth_gui.py:118 ../textw/userauth_text.py:332
#: ../textw/userauth_text.py:380
msgid "Enable LDAP"
msgstr "LDAP Baimendu"

# ../iw/auth_gui.py:121 ../textw/userauth_text.py:338
#: ../textw/userauth_text.py:386
msgid "LDAP Server:"
msgstr "LDAP Zerbitzaria:"

# ../iw/auth_gui.py:123 ../textw/userauth_text.py:340
#: ../textw/userauth_text.py:388
msgid "LDAP Base DN:"
msgstr "LDAP oinarriko DN:"

# ../textw/userauth_text.py:35
#: ../textw/userauth_text.py:398
msgid "Use TLS connections"
msgstr "TLS elkarloturak erabili"

# ../iw/auth_gui.py:150 ../textw/userauth_text.py:357
#: ../textw/userauth_text.py:409
msgid "Enable Kerberos"
msgstr "Kerberos  Baimendu"

# ../iw/auth_gui.py:154 ../textw/userauth_text.py:364
#: ../textw/userauth_text.py:416
msgid "Realm:"
msgstr "Arima:"

# ../iw/auth_gui.py:156 ../textw/userauth_text.py:366
#: ../textw/userauth_text.py:418
msgid "KDC:"
msgstr "KDC:"

# ../iw/auth_gui.py:158 ../textw/userauth_text.py:368
#: ../textw/userauth_text.py:420
msgid "Admin Server:"
msgstr "Admin. Zerbitzaria:"

#: ../textw/welcome_text.py:22
#, python-format
msgid "%s"
msgstr ""

# ../iw/welcome_gui.py:11 ../iw/welcome_gui.py:38 ../text.py:879
# ../text.py:914
#: ../textw/welcome_text.py:23
#, fuzzy, python-format
msgid ""
"Welcome to %s!\n"
"\n"
msgstr "Ongietorria"

# ../iw/xconfig_gui.py:214
#: ../textw/xconfig_text.py:35
#, fuzzy
msgid "Color Depth"
msgstr "Kolore Sakonera:"

#: ../textw/xconfig_text.py:36
msgid "Please select the color depth you would like to use:"
msgstr ""

# ../iw/xconfig_gui.py:242
#: ../textw/xconfig_text.py:59
#, fuzzy
msgid "Resolution"
msgstr "Pantailaren Zehaztasuna:"

#: ../textw/xconfig_text.py:60
msgid "Please select the resolution you would like to use:"
msgstr ""

# ../iw/xconfig_gui.py:263 ../text.py:975 ../text.py:983
#: ../textw/xconfig_text.py:131
#, fuzzy
msgid "X Customization"
msgstr "X Egokitzaketa"

#: ../textw/xconfig_text.py:134
msgid "Select the color depth and video mode you want to use for your system. "
msgstr ""

# ../iw/xconfig_gui.py:214
#: ../textw/xconfig_text.py:138
msgid "Color Depth:"
msgstr "Kolore Sakonera:"

# ../image.py:78
#: ../textw/xconfig_text.py:142 ../textw/xconfig_text.py:149
#: ../textw/xconfig_text.py:427 ../textw/xconfig_text.py:438
#: ../textw/xconfig_text.py:657 ../textw/xconfig_text.py:664
#, fuzzy
msgid "Change"
msgstr "Aldatu 'CDROM'-a"

# ../iw/xconfig_gui.py:242
#: ../textw/xconfig_text.py:145
#, fuzzy
msgid "Resolution:"
msgstr "Pantailaren Zehaztasuna:"

# ../iw/xconfig_gui.py:522
#: ../textw/xconfig_text.py:155
msgid "Default Desktop:"
msgstr "Jatorrizko Idazmahaia:"

# ../comps/comps-master:239
#: ../textw/xconfig_text.py:159 ../textw/xconfig_text.py:168
msgid "GNOME"
msgstr "GNOME"

# ../comps/comps-master:304
#: ../textw/xconfig_text.py:161 ../textw/xconfig_text.py:170
msgid "KDE"
msgstr "KDE"

# ../loader/lang.c:287
#: ../textw/xconfig_text.py:176
#, fuzzy
msgid "Default Login:"
msgstr "Hizkuntza bat Hautatu"

# ../iw/xconfig_gui.py:471
#: ../textw/xconfig_text.py:178
#, fuzzy
msgid "Graphical"
msgstr "Era Grafikoan abiatu"

# ../gui.py:365 ../gui.py:605
#: ../textw/xconfig_text.py:180
#, fuzzy
msgid "Text"
msgstr "Hurrengoa"

# ../iw/xconfig_gui.py:11 ../xf86config.py:880 ../xf86config.py:882
#: ../textw/xconfig_text.py:228
msgid "Monitor"
msgstr "Monitorea"

# ../iw/examine_gui.py:44
#: ../textw/xconfig_text.py:229
#, fuzzy
msgid "Please select the monitor attached to your system."
msgstr "Mesedez, erro fitxategitza daukan tramankulua hautatu."

# ../iw/xconfig_gui.py:229
#: ../textw/xconfig_text.py:254
#, fuzzy
msgid "horizontal"
msgstr "Zeharkako Maiztasun Muga"

# ../iw/xconfig_gui.py:238
#: ../textw/xconfig_text.py:257
#, fuzzy
msgid "vertical"
msgstr "Goitibeherako Maiztasun Muga"

# ../textw/lilo_text.py:144 ../textw/lilo_text.py:149
#: ../textw/xconfig_text.py:261
#, fuzzy
msgid "Invalid Sync Rates"
msgstr "Abiaketaren Izena Erabilkaitza"

#: ../textw/xconfig_text.py:262
#, python-format
msgid ""
"The %s sync rate is invalid:\n"
"\n"
"      %s\n"
"\n"
"A valid sync rate can be of the form:\n"
"\n"
"      31.5                   a single number\n"
"    50.1-90.2                a range of numbers\n"
"31.5,35.0,39.3-40.0          a list of numbers/ranges\n"
msgstr ""

#: ../textw/xconfig_text.py:276
msgid "Monitor Sync Rates"
msgstr ""

#: ../textw/xconfig_text.py:281
msgid ""
"Please enter the sync rates for your monitor. \n"
"\n"
"NOTE - it is not usually necessary to edit sync rates manually, and care "
"should be taken to make sure the values entered are accurate."
msgstr ""

#: ../textw/xconfig_text.py:286
msgid "HSync Rate: "
msgstr ""

#: ../textw/xconfig_text.py:291
msgid "VSync Rate: "
msgstr ""

#: ../textw/xconfig_text.py:419
#, python-format
msgid ""
"Select the monitor for your system.  Use the '%s' button to reset to the "
"probed values."
msgstr ""

# ../iw/xconfig_gui.py:11 ../xf86config.py:880 ../xf86config.py:882
#: ../textw/xconfig_text.py:423
#, fuzzy
msgid "Monitor:"
msgstr "Monitorea"

#: ../textw/xconfig_text.py:430
msgid "HSync Rate:"
msgstr ""

#: ../textw/xconfig_text.py:440
msgid "VSync Rate:"
msgstr ""

#: ../textw/xconfig_text.py:473
msgid "Choose monitor type"
msgstr ""

#: ../textw/xconfig_text.py:473
msgid "Proceed"
msgstr ""

# ../iw/xconfig_gui.py:10 ../xf86config.py:867
#: ../textw/xconfig_text.py:543
msgid "Video Card"
msgstr "Bideo Xafla"

#: ../textw/xconfig_text.py:544
#, python-format
msgid ""
"Please select the video card present in your system.  Choose '%s' to reset "
"the selection to the card the installer detected in your system."
msgstr ""

# ../iw/xconfig_gui.py:12 ../xf86config.py:869
#: ../textw/xconfig_text.py:562
#, fuzzy
msgid "Video RAM"
msgstr "Bideo memoria"

#: ../textw/xconfig_text.py:563
#, python-format
msgid ""
"Please select the amount of video RAM present on your video card. Choose '%"
"s' to reset the selection to the amount the installer detected on your card."
msgstr ""

# ../iw/xconfig_gui.py:472
#: ../textw/xconfig_text.py:629
msgid "Skip X Configuration"
msgstr "X-en Egokitzaketaz Ahaztu"

# ../iw/keyboard_gui.py:16
#: ../textw/xconfig_text.py:631
#, fuzzy
msgid "Video Card Configuration"
msgstr "Teklatu Egokitzaketa"

#: ../textw/xconfig_text.py:645
msgid "Select the video card and video RAM for your system."
msgstr ""

# ../iw/xconfig_gui.py:10 ../xf86config.py:867
#: ../textw/xconfig_text.py:647
#, fuzzy
msgid "Video Card:"
msgstr "Bideo Xafla"

# ../libfdisk/newtfsedit.c:486
#: ../textw/xconfig_text.py:652
#, fuzzy
msgid "Unknown card"
msgstr "Ezezaguna"

# ../iw/xconfig_gui.py:10 ../xf86config.py:867
#: ../textw/xconfig_text.py:660
#, fuzzy
msgid "Video RAM:"
msgstr "Bideo Xaflaren RAM-a:"

#: ../textw/zipl_text.py:24
msgid ""
"The z/IPL Boot Loader will be installed on your system after installation is "
"complete. You can now enter any additional kernel and chandev parameters "
"which your machine or your setup may require."
msgstr ""

# ../text.py:923 ../textw/silo_text.py:28 ../textw/silo_text.py:101
# ../textw/silo_text.py:213
#: ../textw/zipl_text.py:56
#, fuzzy
msgid "z/IPL Configuration"
msgstr "SILO-ren Egokitzaketa"

#: ../textw/zipl_text.py:64 ../textw/zipl_text.py:68
msgid "Chandev line "
msgstr ""

# ../text.py:997
#: ../installclasses/custom.py:11
#, fuzzy
msgid "_Custom"
msgstr "Eguneraketa Norberekatua"

#: ../installclasses/custom.py:13
msgid ""
"Select this installation type to gain complete control over the installation "
"process, including software package selection and partitioning."
msgstr ""

# ../iw/xconfig_gui.py:522
#: ../installclasses/personal_desktop.py:11
#, fuzzy
msgid "_Personal Desktop"
msgstr "Jatorrizko Idazmahaia:"

#: ../installclasses/personal_desktop.py:13
msgid ""
"Perfect for personal computers or laptops, select this installation type to "
"install a graphical desktop environment and create a system ideal for home "
"or desktop use."
msgstr ""

#: ../installclasses/personal_desktop.py:18
msgid ""
"\tDesktop shell (GNOME)\n"
"\tOffice suite (OpenOffice.org)\n"
"\tWeb browser (Mozilla) \n"
"\tEmail (Evolution)\n"
"\tInstant messaging\n"
"\tSound and video applications\n"
"\tGames\n"
msgstr ""

# ../libfdisk/gnomefsedit.c:2517 ../libfdisk/gnomefsedit.c:253
#: ../installclasses/server.py:11
#, fuzzy
msgid "_Server"
msgstr "Zerbitzaria"

#: ../installclasses/server.py:13
msgid ""
"Select this installation type if you would like to set up file sharing, "
"print sharing, and Web services. Additional services can also be enabled, "
"and you can choose whether or not to install a graphical environment."
msgstr ""

# ../installclasses/workstation.py:7 ../libfdisk/gnomefsedit.c:2537
#: ../installclasses/workstation.py:8
#, fuzzy
msgid "_Workstation"
msgstr "Lantokia (Lanestazioa)"

#: ../installclasses/workstation.py:10
msgid ""
"This option installs a graphical desktop environment with tools for software "
"development and system administration. "
msgstr ""

#: ../installclasses/workstation.py:14
msgid ""
"\tDesktop shell (GNOME)\n"
"\tOffice suite (OpenOffice.org)\n"
"\tWeb browser (Mozilla) \n"
"\tEmail (Evolution)\n"
"\tInstant messaging\n"
"\tSound and video applications\n"
"\tGames\n"
"\tSoftware Development Tools\n"
"\tAdministration Tools\n"
msgstr ""

#: ../loader2/cdinstall.c:88 ../loader2/cdinstall.c:109
#: ../loader2/mediacheck.c:272
msgid "Media Check"
msgstr ""

# ../gui.py:365 ../gui.py:605
#: ../loader2/cdinstall.c:88 ../loader2/cdinstall.c:91
#: ../loader2/cdinstall.c:109 ../loader2/cdinstall.c:117
#: ../loader2/method.c:406
#, fuzzy
msgid "Test"
msgstr "Hurrengoa"

#: ../loader2/cdinstall.c:88 ../loader2/cdinstall.c:92
msgid "Eject CD"
msgstr ""

#: ../loader2/cdinstall.c:89
#, c-format
msgid ""
"Choose \"%s\" to test the CD currently in the drive, or \"%s\" to eject the "
"CD and insert another for testing."
msgstr ""

#: ../loader2/cdinstall.c:110
#, c-format
msgid ""
"If you would like to test additional media, insert the next CD and press \"%s"
"\". You do not have to test all CDs, although it is recommended you do so at "
"least once.\n"
"\n"
"To begin the installation process insert CD #1 into the drive and press \"%s"
"\"."
msgstr ""

# ../loader/loader.c:853
#: ../loader2/cdinstall.c:133 ../loader2/cdinstall.c:375
#, fuzzy, c-format
msgid ""
"The %s CD was not found in any of your CDROM drives. Please insert the %s CD "
"and press %s to retry."
msgstr ""
"Zure 'CDROM' tramankuluetariko inon Red Hat Linux-eko 'CDROM'-ik ez dut "
"aurkitzen. Berriz saiatzeko, Red Hat-eko 'CD' bat sartu eta \"Onartu"
"\"zapaldu."

# ../libfdisk/fsedit.c:1041
#: ../loader2/cdinstall.c:253
#, fuzzy
msgid "CD Found"
msgstr "Disko Gogorrik ez da aurkitu"

#: ../loader2/cdinstall.c:255
#, c-format
msgid ""
"To begin testing the CD media before installation press %s.\n"
"\n"
"Choose %s to skip the media test and start the installation."
msgstr ""

# ../loader/loader.c:853
#: ../loader2/cdinstall.c:370
#, fuzzy, c-format
msgid ""
"No %s CD was found which matches your boot media.  Please insert the %s CD "
"and press %s to retry."
msgstr ""
"Zure 'CDROM' tramankuluetariko inon Red Hat Linux-eko 'CDROM'-ik ez dut "
"aurkitzen. Berriz saiatzeko, Red Hat-eko 'CD' bat sartu eta \"Onartu"
"\"zapaldu."

# ../libfdisk/fsedit.c:1041
#: ../loader2/cdinstall.c:380
#, fuzzy
msgid "CD Not Found"
msgstr "Disko Gogorrik ez da aurkitu"

#: ../loader2/cdinstall.c:447
msgid "Cannot find kickstart file on CDROM."
msgstr ""

# ../loader/loader.c:439 ../loader/loader.c:441
#: ../loader2/driverdisk.c:119 ../loader2/firewire.c:50
msgid "Loading"
msgstr "Gaineratzen"

# ../loader/devices.c:237
#: ../loader2/driverdisk.c:119
#, fuzzy
msgid "Reading driver disk..."
msgstr "Diskoa lotzerakoan porrot egin du."

# ../loader/devices.c:503
#: ../loader2/driverdisk.c:244
#, fuzzy
msgid "Driver Disk Source"
msgstr "Disko Tramankulua"

# ../loader/loader.c:941
#: ../loader2/driverdisk.c:245
#, fuzzy
msgid ""
"You have multiple devices which could serve as sources for a driver disk.  "
"Which would you like to use?"
msgstr "Zure sistemak sareko tramankulu asko ditu. Zein ezartzea nahi duzu?"

# ../loader/devices.c:216
#: ../loader2/driverdisk.c:263
#, fuzzy, c-format
msgid "Insert your driver disk into /dev/%s and press \"OK\" to continue."
msgstr ""
" Kontrolatzailearen disketea sartu eta jarraitzeko \"Onartu\" botoitxoa "
"zapaldu."

# ../loader/devices.c:503
#: ../loader2/driverdisk.c:265
#, fuzzy
msgid "Insert Driver Disk"
msgstr "Disko Tramankulua"

# ../loader/devices.c:237
#: ../loader2/driverdisk.c:280
msgid "Failed to mount driver disk."
msgstr "Diskoa lotzerakoan porrot egin du."

# ../text.py:935
#: ../loader2/driverdisk.c:336
#, fuzzy
msgid "Manually choose"
msgstr "Disko Zatiteka eskuz egin"

#: ../loader2/driverdisk.c:337
msgid "Load another disk"
msgstr ""

#: ../loader2/driverdisk.c:338
msgid ""
"No devices of the appropriate type were found on this driver disk.  Would "
"you like to manually select the driver, continue anyway, or load another "
"driver disk?"
msgstr ""

# ../loader/devices.c:503
#: ../loader2/driverdisk.c:380
#, fuzzy
msgid "Driver disk"
msgstr "Disko Tramankulua"

# ../loader/devices.c:209
#: ../loader2/driverdisk.c:381
msgid "Do you have a driver disk?"
msgstr "Kontrolatzaileen diskorik bai?"

# ../loader/devices.c:503
#: ../loader2/driverdisk.c:391
#, fuzzy
msgid "More Driver Disks?"
msgstr "Disko Tramankulua"

# ../loader/devices.c:209
#: ../loader2/driverdisk.c:392
#, fuzzy
msgid "Do you wish to load any more driver disks?"
msgstr "Kontrolatzaileen diskorik bai?"

# ../loader/kickstart.c:58 ../loader/kickstart.c:68 ../loader/kickstart.c:107
#: ../loader2/driverdisk.c:442 ../loader2/driverdisk.c:475
#: ../loader2/hdinstall.c:599 ../loader2/kickstart.c:106
#: ../loader2/kickstart.c:116 ../loader2/kickstart.c:159
#: ../loader2/modules.c:919 ../loader2/net.c:729 ../loader2/net.c:752
#: ../loader2/nfsinstall.c:247 ../loader2/urlinstall.c:431
#: ../loader2/urlinstall.c:440 ../loader2/urlinstall.c:451
msgid "Kickstart Error"
msgstr "Kickstart-en akatsa"

# ../loader/net.c:644
#: ../loader2/driverdisk.c:443
#, fuzzy, c-format
msgid "Unknown driver disk kickstart source: %s"
msgstr "%s kickstart-eko %s sare aginduak argumentu okerra"

# ../loader/net.c:644
#: ../loader2/driverdisk.c:476
#, fuzzy, c-format
msgid ""
"The following invalid argument was specified for the kickstart driver disk "
"command: %s:%s"
msgstr "%s kickstart-eko %s sare aginduak argumentu okerra"

# ../loader/devices.c:86
#: ../loader2/driverselect.c:60
#, fuzzy, c-format
msgid ""
"Please enter any parameters which you wish to pass to the %s module "
"separated by spaces.  If you don't know what parameters to supply, skip this "
"screen by pressing the \"OK\" button.  A list of available options can be "
"obtained by pressing the F1 key."
msgstr ""
"Modulu honek bere eragiketei eragin diezaioketen agerbideak (parametroak) "
"jaso ditzake. Zein agerbide (parametro) eman behar zaizkion ez badakizu, "
"hurrengo pantalaira joateko \"Onartu\" botoitxoa orain zapaldu."

# ../loader/devices.c:91
#: ../loader2/driverselect.c:83
#, fuzzy
msgid "Enter Module Parameters"
msgstr "Moduluaren Agerbideak"

# ../libfdisk/fsedit.c:1041
#: ../loader2/driverselect.c:186
#, fuzzy
msgid "No drivers found"
msgstr "Disko Gogorrik ez da aurkitu"

# ../loader/devices.c:209
#: ../loader2/driverselect.c:186
#, fuzzy
msgid "Load driver disk"
msgstr "Kontrolatzaileen diskorik bai?"

#: ../loader2/driverselect.c:187
msgid ""
"No drivers were found to manually insert.  Would you like to use a driver "
"disk?"
msgstr ""

# ../loader/devices.c:304
#: ../loader2/driverselect.c:206
#, fuzzy
msgid ""
"Please select the driver below which you wish to load.  If it does not "
"appear and you have a driver disk, press F2."
msgstr ""
"Zein kontrolatzailerekin saiatu behar dut? Behar duzun kontrolatzailea "
"zerrenda honetan ez bada agertzen, eta driver diskete bat baldin badaukazu, "
"F2 zapaldu, mesedez."

# ../loader/devices.c:313
#: ../loader2/driverselect.c:214
#, fuzzy
msgid "Specify optional module arguments"
msgstr "Moduarentzako agerbideak zehaztu"

# ../iw/fdisk_gui.py:109
#: ../loader2/driverselect.c:234
#, fuzzy
msgid "Select Device Driver to Load"
msgstr "'fdisk'-ek zein disko landu behar du?"

# ../loader/windows.c:47
#: ../loader2/firewire.c:50 ../loader2/windows.c:65
#, c-format
msgid "Loading %s driver..."
msgstr "%s kontrolatzailea bereganatzen..."

#: ../loader2/hdinstall.c:238 ../loader2/hdinstall.c:291
#: ../loader2/nfsinstall.c:193 ../loader2/urlinstall.c:145
#, c-format
msgid ""
"The %s installation tree in that directory does not seem to match your boot "
"media."
msgstr ""

# ../libfdisk/fsedit.c:1355 ../libfdisk/fsedit.c:1435
#: ../loader2/hdinstall.c:355
#, fuzzy
msgid ""
"An error occured reading the install from the ISO images. Please check your "
"ISO images and try again."
msgstr "%s-ko zati-taula irakurtzean akats bat gertatu da. Akatsa hau izan da:"

# ../loader/loader.c:657
#: ../loader2/hdinstall.c:463
msgid ""
"You don't seem to have any hard drives on your system! Would you like to "
"configure additional devices?"
msgstr ""
"Badirudi zure sisteman disko gogorrik ez dagoela. Beste tramankuluren "
"bategokitzerik nahi dozu?"

# ../loader/loader.c:671
#: ../loader2/hdinstall.c:479
#, fuzzy, c-format
msgid ""
"What partition and directory on that partition hold the CD (iso9660) images "
"for %s? If you don't see the disk drive you're using listed here, press F2 "
"to configure additional devices."
msgstr ""
"Zein disko-zatik eta horko zein direktoriotan dago Red Hat Linux-entzako "
"behar diren CD (iso9660)-ko irudiak? Zerrenda honetan beharrezko "
"tramankulurik ez bada agertzen F2 zapaldu eta beste tramankuluren bat "
"egokitu."

# ../loader/loader.c:685
#: ../loader2/hdinstall.c:501
msgid "Directory holding images:"
msgstr "Irudiak dauzkan direktorioa:"

# ../loader/loader.c:705
#: ../loader2/hdinstall.c:528
msgid "Select Partition"
msgstr "Disko-zatia Hautatu"

# ../loader/loader.c:753
#: ../loader2/hdinstall.c:568
#, fuzzy, c-format
msgid "Device %s does not appear to contain %s CDROM images."
msgstr "%s tramankulua Red Hat Linux-eko CDROM irudietan ez da ageri."

# ../loader/net.c:644
#: ../loader2/hdinstall.c:600
#, fuzzy, c-format
msgid "Bad argument to HD kickstart method command %s: %s"
msgstr "%s kickstart-eko %s sare aginduak argumentu okerra"

# ../image.py:53
#: ../loader2/hdinstall.c:650
#, fuzzy
msgid "Cannot find kickstart file on hard drive."
msgstr "Ezarketaren irudia disko gogrrera bidaltzen..."

# ../loader/lang.c:57
#: ../loader2/kbd.c:123
msgid "Keyboard Type"
msgstr "Teklatu Mota"

# ../loader/lang.c:577
#: ../loader2/kbd.c:124
msgid "What type of keyboard do you have?"
msgstr "Zein teklatu mota daukazu?"

# ../loader/kickstart.c:59
#: ../loader2/kickstart.c:107
#, fuzzy, c-format
msgid "Error opening kickstart file %s: %s"
msgstr "%s kickstart fitxategia irekitzean %s akatsa gertatu da"

# ../loader/kickstart.c:69
#: ../loader2/kickstart.c:117
#, c-format
msgid "Error reading contents of kickstart file %s: %s"
msgstr "%s kickstart fitxategiaren edukinak irakurtzean %s akatsa"

# ../loader/kickstart.c:108
#: ../loader2/kickstart.c:160
#, fuzzy, c-format
msgid "Error in %s on line %d of kickstart file %s."
msgstr "%d. lerroan akatsa ( %s kickstart fitxategian)."

# ../loader/loader.c:2027
#: ../loader2/kickstart.c:259
msgid "Cannot find ks.cfg on boot floppy."
msgstr "Abiatze disketean 'ks.cfg' ezin izan da aurkitu."

# ../iw/welcome_gui.py:11 ../iw/welcome_gui.py:38 ../text.py:879
# ../text.py:914
#: ../loader2/lang.c:52 ../loader2/loader.c:168
#, fuzzy, c-format
msgid "Welcome to %s"
msgstr "Ongietorria"

# ../loader/lang.c:338 ../loader/loader.c:148
#: ../loader2/lang.c:53 ../loader2/loader.c:174
msgid ""
"  <Tab>/<Alt-Tab> between elements  | <Space> selects | <F12> next screen "
msgstr ""
"  <Tab>/<Alt-Tab> Hautagaiartean higitu | <Hutsune Tekla> Hautatu | <F12> "
"hurrengo pantaila "

# ../loader/lang.c:287
#: ../loader2/lang.c:371
msgid "Choose a Language"
msgstr "Hizkuntza bat Hautatu"

# ../loader/loader.c:121
#: ../loader2/loader.c:103
msgid "Local CDROM"
msgstr "Bertoko 'CDROM'-a"

# ../loader/loader.c:129
#: ../loader2/loader.c:105
msgid "Hard drive"
msgstr "Disko Gogorra"

# ../loader/loader.c:12
#: ../loader2/loader.c:106
msgid "NFS image"
msgstr "NFS irudia"

# ../loader/loader.c:2135
#: ../loader2/loader.c:317
#, fuzzy
msgid "Update Disk Source"
msgstr "Eguneraketako diskoa"

# ../loader/loader.c:941
#: ../loader2/loader.c:318
#, fuzzy
msgid ""
"You have multiple devices which could serve as sources for an update disk.  "
"Which would you like to use?"
msgstr "Zure sistemak sareko tramankulu asko ditu. Zein ezartzea nahi duzu?"

# ../loader/loader.c:2136
#: ../loader2/loader.c:333
#, fuzzy, c-format
msgid "Insert your updates disk into /dev/%s and press \"OK\" to continue."
msgstr "Jarraitzeko eguneraketa diskete bat sartu eta \"Onartu\" zapaldu."

# ../loader/loader.c:2135
#: ../loader2/loader.c:335
msgid "Updates Disk"
msgstr "Eguneraketako diskoa"

# ../loader/devices.c:237
#: ../loader2/loader.c:347
#, fuzzy
msgid "Failed to mount updates disk"
msgstr "Diskoa lotzerakoan porrot egin du."

# ../loader/loader.c:2149
#: ../loader2/loader.c:350
msgid "Updates"
msgstr "Eguneraketak"

# ../loader/loader.c:2149
#: ../loader2/loader.c:350
msgid "Reading anaconda updates..."
msgstr "'Anaconda'-ren eguneraketak irakurtzen..."

#: ../loader2/loader.c:371
msgid ""
"No hard drives have been found.  You probably need to manually choose device "
"drivers for the installation to succeed.  Would you like to select drivers "
"now?"
msgstr ""

# ../loader/lang.c:287
#: ../loader2/loader.c:625
#, fuzzy, c-format
msgid "You do not have enough RAM to install %s on this machine."
msgstr "Hizkuntza bat Hautatu"

# ../loader/loader.c:1390
#: ../loader2/loader.c:798
msgid "Rescue Method"
msgstr "Berreskuraketa Bidea"

# ../loader/loader.c:1391
#: ../loader2/loader.c:799
msgid "Installation Method"
msgstr "Ezarketa Bidea"

# ../loader/loader.c:1393
#: ../loader2/loader.c:801
msgid "What type of media contains the rescue image?"
msgstr "Berreskuratze irudia zein tramankulutan dago?"

# ../loader/loader.c:1395
#: ../loader2/loader.c:803
msgid "What type of media contains the packages to be installed?"
msgstr "Ezarketako Sortak zein tramankulutan daude?"

# ../libfdisk/fsedit.c:1041
#: ../loader2/loader.c:827
#, fuzzy
msgid "No driver found"
msgstr "Disko Gogorrik ez da aurkitu"

# ../iw/fdisk_gui.py:109
#: ../loader2/loader.c:827
#, fuzzy
msgid "Select driver"
msgstr "'fdisk'-ek zein disko landu behar du?"

# ../loader/devices.c:209
#: ../loader2/loader.c:828
#, fuzzy
msgid "Use a driver disk"
msgstr "Kontrolatzaileen diskorik bai?"

#: ../loader2/loader.c:829
msgid ""
"Unable to find any devices of the type needed for this installation type.  "
"Would you like to manually select your driver or use a driver disk?"
msgstr ""

# ../loader/loader.c:325
#: ../loader2/loader.c:989
#, fuzzy
msgid "The following devices have been found on your system."
msgstr "Zure sisteman ondoko tramankulu hauek aurkitu dira:"

# ../loader/loader.c:353
#: ../loader2/loader.c:991
#, fuzzy
msgid ""
"No device drivers have been loaded for your system.  Would you like to load "
"any now?"
msgstr ""
"Zure sistemako tramankuluentzako kontrolatzaile berezirik ez da gaineratu. "
"Nahi duzu batenbat gaineratzea?"

# ../loader/devices.c:207 ../loader/devices.c:214 ../loader/devices.c:333
# ../loader/loader.c:275 ../loader/loader.c:336 ../loader/loader.c:352
#: ../loader2/loader.c:995
msgid "Devices"
msgstr "Tramankuluak"

# ../loader/loader.c:327 ../loader/loader.c:352
# ../textw/partitioning_text.py:64
#: ../loader2/loader.c:996
msgid "Done"
msgstr "Amaituta"

# ../loader/loader.c:327 ../loader/loader.c:352
#: ../loader2/loader.c:997
msgid "Add Device"
msgstr "Tramankulua Gehitu"

#: ../loader2/loader.c:1097
#, c-format
msgid "loader has already been run.  Starting shell."
msgstr ""

# ../loader/loader.c:2149
#: ../loader2/loader.c:1457
#, fuzzy, c-format
msgid "Running anaconda, the %s rescue mode - please wait...\n"
msgstr "'Anaconda'-ren eguneraketak irakurtzen..."

# ../loader/loader.c:2149
#: ../loader2/loader.c:1459
#, fuzzy, c-format
msgid "Running anaconda, the %s system installer - please wait...\n"
msgstr "'Anaconda'-ren eguneraketak irakurtzen..."

#: ../loader2/mediacheck.c:256
msgid ""
"Unable to read the disc checksum from the primary volume descriptor.  This "
"probably means the disc was created without adding the checksum."
msgstr ""

#: ../loader2/mediacheck.c:264
#, c-format
msgid "Checking \"%s\"..."
msgstr ""

#: ../loader2/mediacheck.c:266
#, c-format
msgid "Checking media now..."
msgstr ""

# ../loader/loader.c:1136
#: ../loader2/mediacheck.c:312
#, fuzzy, c-format
msgid "Unable to find install image %s"
msgstr "Ezarketako bigarren irudia lortzea ezinezkoa izan dal."

#: ../loader2/mediacheck.c:322
msgid ""
"FAIL.\n"
"\n"
"The image which was just tested has errors. This could be due to a corrupt "
"download or a bad disc.  If applicable, please clean the disc and try "
"again.  If this test continues to fail you should not continue the install."
msgstr ""

#: ../loader2/mediacheck.c:333
msgid ""
"PASS.\n"
"\n"
"It is OK to install from this media."
msgstr ""

#: ../loader2/mediacheck.c:337
msgid ""
"NA.\n"
"\n"
"No checksum information available, unable to verify media."
msgstr ""

#: ../loader2/mediacheck.c:341
msgid "Media Check Result"
msgstr ""

#: ../loader2/mediacheck.c:345
#, c-format
msgid ""
"of the image:\n"
"\n"
"%s\n"
"\n"
msgstr ""

#: ../loader2/mediacheck.c:349
#, c-format
msgid "The media check %sis complete, and the result is: %s\n"
msgstr ""

# ../loader/loader.c:2073
#: ../loader2/method.c:151 ../loader2/method.c:360 ../loader2/method.c:445
#, c-format
msgid "Failed to read directory %s: %s"
msgstr "%s direktorioa irakurtzean %s akatsa"

#: ../loader2/method.c:403
#, c-format
msgid ""
"Would you like to perform a checksum test of the ISO image:\n"
"\n"
"   %s?"
msgstr ""

#: ../loader2/method.c:406
msgid "Checksum Test"
msgstr ""

# ../loader/net.c:644
#: ../loader2/modules.c:920
#, fuzzy, c-format
msgid "Bad argument to device kickstart method command %s: %s"
msgstr "%s kickstart-eko %s sare aginduak argumentu okerra"

# ../loader/urls.c:169
#: ../loader2/net.c:45
#, fuzzy, c-format
msgid ""
"Please enter the following information:\n"
"\n"
"    o the name or IP number of your %s server\n"
"    o the directory on that server containing\n"
"      %s for your architecture\n"
msgstr ""
"Datozten ezaugarriak bete itzazu mesedez:\n"
"\n"
"    o web zerbitzariaren IP helbidea edo Izena\n"
"    o Red Hat Linux-eko Ezarketako fitxategiak dituen\n"
"      zerbitzariaren direktorioa\n"

# ../loader/net.c:239
#: ../loader2/net.c:164
msgid "Nameserver IP"
msgstr "Izen Zerbitzariaren IP -a"

# ../loader/net.c:243 ../loader/net.c:725
#: ../loader2/net.c:168
msgid "Nameserver"
msgstr "Zerbitzari Izena"

# ../loader/net.c:244
#: ../loader2/net.c:169
msgid ""
"Your dynamic IP request returned IP configuration information, but it did "
"not include a DNS nameserver. If you know what your nameserver is, please "
"enter it now. If you don't have this information, you can leave this field "
"blank and the install will continue."
msgstr ""
"IP dinamikoaren eskaerak IP egokitzaketaren berriak dakarki, baina DNS "
"zerbitzariarenik ez. Zein zerbitzari den jakin ezkero, idatz ezazu orain. "
"Une honetan horren berririk ez badakizu atal hori hutsean utzi eta "
"ezarketarekin jarraitu."

# ../loader/net.c:254
#: ../loader2/net.c:179
msgid "Invalid IP Information"
msgstr "IP -ren balio erabilkaitza"

# ../loader/net.c:255
#: ../loader2/net.c:180
msgid "You entered an invalid IP address."
msgstr "IP helbide erabilkaitza idatzi duzu."

# ../loader/net.c:388 ../loader/net.c:659
#: ../loader2/net.c:229 ../loader2/net.c:487
msgid "Dynamic IP"
msgstr "IP Dinamikoa"

# ../loader/net.c:389 ../loader/net.c:660
#: ../loader2/net.c:230 ../loader2/net.c:488
#, fuzzy, c-format
msgid "Sending request for IP information for %s..."
msgstr "IP argibide eskaera bidaltzen..."

# ../loader/net.c:278
#: ../loader2/net.c:377
msgid ""
"Please enter the IP configuration for this machine. Each item should be "
"entered as an IP address in dotted-decimal notation (for example, 1.2.3.4)."
msgstr ""
"Ordenagailu honentzako IP egokitzaketa idatzi. Zenbaki bakoitza IP helbide "
"bat bezala idatzi behar da, kakotxez banatutako hamartar eran (adbz,  "
"1.2.34.5)."

# ../loader/net.c:284 ../textw/network_text.py:69
#: ../loader2/net.c:383
msgid "IP address:"
msgstr "IP Helbidea:"

# ../loader/net.c:287 ../textw/network_text.py:70
#: ../loader2/net.c:386
msgid "Netmask:"
msgstr "Sareko Mozorroa:"

# ../loader/net.c:290 ../textw/network_text.py:71
#: ../loader2/net.c:389
msgid "Default gateway (IP):"
msgstr "Jatorrizko Pasabidea (IP):"

# ../loader/net.c:293 ../textw/network_text.py:72
#: ../loader2/net.c:392
msgid "Primary nameserver:"
msgstr "Izen-Zerbitzari (DNS) Nagusia:"

# ../loader/net.c:320
#: ../loader2/net.c:419
msgid "Use dynamic IP configuration (BOOTP/DHCP)"
msgstr "IP dinamiko egokitzaketa erabili (BOOTP/DHCP)"

# ../loader/net.c:34
#: ../loader2/net.c:447
msgid "Configure TCP/IP"
msgstr "TCP/IP Egokitu"

# ../loader/net.c:379
#: ../loader2/net.c:478
msgid "Missing Information"
msgstr "Azalpenak Galdu dira"

# ../loader/net.c:380
#: ../loader2/net.c:479
msgid "You must enter both a valid IP address and a netmask."
msgstr "IP helbide eta sare-mozorro baliagarriak idatzi behar dituzu."

# ../loader/net.c:532
#: ../loader2/net.c:648
msgid "Determining host name and domain..."
msgstr "Ostalariaren izen eta jabetza zehazten..."

# ../loader/net.c:644
#: ../loader2/net.c:730
#, fuzzy, c-format
msgid "Bad argument to kickstart network command %s: %s"
msgstr "%s kickstart-eko %s sare aginduak argumentu okerra"

# ../loader/net.c:677
#: ../loader2/net.c:753
#, c-format
msgid "Bad bootproto %s specified in network command"
msgstr "Sare aginduan zehaztutako %s abiatze hizketa-araua okerra"

# ../loader/loader.c:940
#: ../loader2/net.c:864
msgid "Networking Device"
msgstr "Sareko Tramankulua"

# ../loader/loader.c:941
#: ../loader2/net.c:865
msgid ""
"You have multiple network devices on this system. Which would you like to "
"install through?"
msgstr "Zure sistemak sareko tramankulu asko ditu. Zein ezartzea nahi duzu?"

# ../loader/net.c:149
#: ../loader2/nfsinstall.c:44
msgid "NFS server name:"
msgstr "NFS zerbitzariaren izena:"

# ../loader/net.c:152 ../loader/urls.c:191
#: ../loader2/nfsinstall.c:47 ../loader2/urls.c:285
#, fuzzy, c-format
msgid "%s directory:"
msgstr "Red Hat-en direktorioa:"

# ../loader/net.c:158
#: ../loader2/nfsinstall.c:53
msgid "NFS Setup"
msgstr "NFS-ren Egituraketa"

# ../loader/loader.c:1023
#: ../loader2/nfsinstall.c:197
#, fuzzy, c-format
msgid "That directory does not seem to contain a %s installation tree."
msgstr "Badirudi direktorio horrek Red Hat-eko ezarketa zuhaitzik ez daukala."

# ../loader/loader.c:1028
#: ../loader2/nfsinstall.c:210
#, fuzzy
msgid "That directory could not be mounted from the server."
msgstr "Zerbitzaritik direktorio hori ezin izan dut lotu"

# ../loader/net.c:644
#: ../loader2/nfsinstall.c:248
#, fuzzy, c-format
msgid "Bad argument to NFS kickstart method command %s: %s"
msgstr "%s kickstart-eko %s sare aginduak argumentu okerra"

#: ../loader2/telnetd.c:80
msgid "Waiting for telnet connection..."
msgstr ""

# ../loader/loader.c:2149
#: ../loader2/telnetd.c:122
#, fuzzy
msgid "Running anaconda via telnet..."
msgstr "'Anaconda'-ren eguneraketak irakurtzen..."

# ../loader/urls.c:88 ../loader/urls.c:95
#: ../loader2/urlinstall.c:67
#, fuzzy, c-format
msgid "Unable to retrieve %s://%s/%s/%s."
msgstr "%s ezin izan da lortu: %s"

# ../loader/loader.c:1127
#: ../loader2/urlinstall.c:137
#, fuzzy
msgid "Unable to retrieve the install image."
msgstr "Ezarketako lehen irudia lortzea ezinezkoa izan da."

# ../xserver.py:26
#: ../loader2/urlinstall.c:272
#, fuzzy
msgid "Media Detected"
msgstr "Xagurik ez da topatu"

#: ../loader2/urlinstall.c:273
msgid "Local installation media detected..."
msgstr ""

# ../loader/net.c:644
#: ../loader2/urlinstall.c:432
#, fuzzy, c-format
msgid "Bad argument to Url kickstart method command %s: %s"
msgstr "%s kickstart-eko %s sare aginduak argumentu okerra"

#: ../loader2/urlinstall.c:441
msgid "Must supply a --url argument to Url kickstart method."
msgstr ""

# ../libfdisk/newtfsedit.c:486
#: ../loader2/urlinstall.c:452
#, fuzzy, c-format
msgid "Unknown Url method %s"
msgstr "Ezezaguna"

# ../loader/urls.c:79
#: ../loader2/urls.c:172
#, c-format
msgid "Failed to log into %s: %s"
msgstr "%s ezin izan da sartu: %s"

# ../loader/urls.c:88 ../loader/urls.c:95
#: ../loader2/urls.c:182 ../loader2/urls.c:190
#, c-format
msgid "Failed to retrieve %s: %s"
msgstr "%s ezin izan da lortu: %s"

# ../loader/urls.c:100
#: ../loader2/urls.c:196
msgid "Retrieving"
msgstr "Berreskuratzen"

# ../loader/urls.c:187
#: ../loader2/urls.c:280
msgid "FTP site name:"
msgstr "FTP lekuaren Izena:"

# ../loader/urls.c:188
#: ../loader2/urls.c:281
msgid "Web site name:"
msgstr "Web lekuaren Izena:"

# ../loader/urls.c:206
#: ../loader2/urls.c:300
msgid "Use non-anonymous ftp"
msgstr "FTP ez-anonimoa erabili"

# ../loader/urls.c:223
#: ../loader2/urls.c:309
msgid "FTP Setup"
msgstr "FTP Egituratu"

# ../loader/urls.c:224
#: ../loader2/urls.c:310
msgid "HTTP Setup"
msgstr "HTTP Egituratu"

# ../loader/urls.c:234
#: ../loader2/urls.c:320
msgid "You must enter a server name."
msgstr "Zerbitzariaren izena idatzi behar duzu."

# ../loader/urls.c:239
#: ../loader2/urls.c:325
msgid "You must enter a directory."
msgstr "Direktorio bat idatzi behar duzu."

# ../loader/urls.c:244
#: ../loader2/urls.c:330
msgid "Unknown Host"
msgstr "Ostalari Ezezaguna"

# ../loader/urls.c:245
#: ../loader2/urls.c:331
#, c-format
msgid "%s is not a valid hostname."
msgstr "%s Ostalariaren izena baliogabea da."

# ../loader/urls.c:316
#: ../loader2/urls.c:404
msgid ""
"If you are using non anonymous ftp, enter the account name and password you "
"wish to use below."
msgstr ""
"Ftp ez-anonimoa erabiltzen ari bazara, kontuaren izena eta hitz-ezkutua "
"idatzi."

# ../loader/urls.c:322
#: ../loader2/urls.c:409
msgid ""
"If you are using a HTTP proxy server enter the name of the HTTP proxy server "
"to use."
msgstr ""
"HTTP proxy zerbitzaria erabiltzen ari bazara, erabili beharreko HTTP proxy "
"zerbitzariaren izena idatzi."

# ../loader/urls.c:343
#: ../loader2/urls.c:431
msgid "Account name:"
msgstr "Kontuaren izena:"

# ../loader/windows.c:46
#: ../loader2/windows.c:64
msgid "Loading SCSI driver"
msgstr "SCSI kontrolatzailea bereganatzen"

#. generated from zone.tab
msgid "Acre"
msgstr ""

#. generated from zone.tab
msgid "Alagoas, Sergipe"
msgstr ""

#. generated from zone.tab
msgid "Alaska Time"
msgstr ""

#. generated from zone.tab
msgid "Alaska Time - Alaska panhandle"
msgstr ""

#. generated from zone.tab
msgid "Alaska Time - Alaska panhandle neck"
msgstr ""

#. generated from zone.tab
msgid "Alaska Time - west Alaska"
msgstr ""

#. generated from zone.tab
msgid "Aleutian Islands"
msgstr ""

#. generated from zone.tab
msgid "Amapa, E Para"
msgstr ""

#. generated from zone.tab
msgid "Amundsen-Scott Station, South Pole"
msgstr ""

#. generated from zone.tab
msgid "Aqtobe (Aktobe)"
msgstr ""

#. generated from zone.tab
msgid "Atlantic islands"
msgstr ""

#. generated from zone.tab
msgid "Atlantic Time - E Labrador"
msgstr ""

#. generated from zone.tab
msgid ""
"Atlantic Time - Nova Scotia (most places), NB, W Labrador, E Quebec & PEI"
msgstr ""

#. generated from zone.tab
msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971"
msgstr ""

#. generated from zone.tab
msgid "Atyrau (Atirau, Gur'yev), Mangghystau (Mankistau)"
msgstr ""

#. generated from zone.tab
msgid "Azores"
msgstr ""

#. generated from zone.tab
msgid "Bahia"
msgstr ""

#. generated from zone.tab
msgid "Bayan-Olgiy, Govi-Altai, Hovd, Uvs, Zavkhan"
msgstr ""

#. generated from zone.tab
msgid "Canary Islands"
msgstr ""

#. generated from zone.tab
msgid "Casey Station, Bailey Peninsula"
msgstr ""

#. generated from zone.tab
msgid "Catamarca (CT)"
msgstr ""

#. generated from zone.tab
msgid "central China - Gansu, Guizhou, Sichuan, Yunnan, etc."
msgstr ""

#. generated from zone.tab
msgid "central Crimea"
msgstr ""

#. generated from zone.tab
msgid "Central Standard Time - Saskatchewan - midwest"
msgstr ""

#. generated from zone.tab
msgid "Central Standard Time - Saskatchewan - most locations"
msgstr ""

#. generated from zone.tab
msgid "Central Time"
msgstr ""

#. generated from zone.tab
msgid "Central Time - Campeche, Yucatan"
msgstr ""

#. generated from zone.tab
msgid "Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas"
msgstr ""

#. generated from zone.tab
msgid "Central Time - Manitoba & west Ontario"
msgstr ""

#. generated from zone.tab
msgid "Central Time - Michigan - Wisconsin border"
msgstr ""

#. generated from zone.tab
msgid "Central Time - most locations"
msgstr ""

#. generated from zone.tab
msgid "Central Time - North Dakota - Oliver County"
msgstr ""

#. generated from zone.tab
msgid "Central Time - Quintana Roo"
msgstr ""

#. generated from zone.tab
msgid "Central Time - Rainy River & Fort Frances, Ontario"
msgstr ""

#. generated from zone.tab
msgid "Central Time - west Nunavut"
msgstr ""

#. generated from zone.tab
msgid "Ceuta & Melilla"
msgstr ""

#. generated from zone.tab
msgid "Chatham Islands"
msgstr ""

#. generated from zone.tab
msgid "Davis Station, Vestfold Hills"
msgstr ""

#. generated from zone.tab
msgid "Dornod, Sukhbaatar"
msgstr ""

#. generated from zone.tab
msgid "Dumont-d'Urville Base, Terre Adelie"
msgstr ""

#. generated from zone.tab
msgid "E Amazonas"
msgstr ""

#. generated from zone.tab
msgid "E Argentina (BA, DF, SC, TF)"
msgstr ""

#. generated from zone.tab
msgid "east China - Beijing, Guangdong, Shanghai, etc."
msgstr ""

#. generated from zone.tab
msgid "east coast, north of Scoresbysund"
msgstr ""

#. generated from zone.tab
msgid "east Dem. Rep. of Congo"
msgstr ""

#. generated from zone.tab
msgid "Easter Island & Sala y Gomez"
msgstr ""

#. generated from zone.tab
msgid "Eastern Standard Time - central Nunavut"
msgstr ""

#. generated from zone.tab
msgid "Eastern Standard Time - east Nunavut"
msgstr ""

#. generated from zone.tab
msgid "Eastern Standard Time - Indiana - Crawford County"
msgstr ""

#. generated from zone.tab
msgid "Eastern Standard Time - Indiana - most locations"
msgstr ""

#. generated from zone.tab
msgid "Eastern Standard Time - Indiana - Starke County"
msgstr ""

#. generated from zone.tab
msgid "Eastern Standard Time - Indiana - Switzerland County"
msgstr ""

#. generated from zone.tab
msgid "Eastern Standard Time - Pangnirtung, Nunavut"
msgstr ""

#. generated from zone.tab
msgid "Eastern Time"
msgstr ""

#. generated from zone.tab
msgid "Eastern Time - Kentucky - Louisville area"
msgstr ""

#. generated from zone.tab
msgid "Eastern Time - Kentucky - Wayne County"
msgstr ""

#. generated from zone.tab
msgid "Eastern Time - Michigan - most locations"
msgstr ""

#. generated from zone.tab
msgid "Eastern Time - Ontario - most locations"
msgstr ""

#. generated from zone.tab
msgid ""
"Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973"
msgstr ""

#. generated from zone.tab
msgid "Eastern Time - Quebec - most locations"
msgstr ""

#. generated from zone.tab
msgid "Eastern Time - Thunder Bay, Ontario"
msgstr ""

#. generated from zone.tab
msgid "east & south Borneo, Celebes, Bali, Nusa Tengarra, west Timor"
msgstr ""

#. generated from zone.tab
msgid "east Uzbekistan"
msgstr ""

#. generated from zone.tab
msgid "Galapagos Islands"
msgstr ""

#. generated from zone.tab
msgid "Gambier Islands"
msgstr ""

#. generated from zone.tab
msgid "Gilbert Islands"
msgstr ""

#. generated from zone.tab
msgid "Great Britain"
msgstr ""

#. generated from zone.tab
msgid "Hawaii"
msgstr ""

#. generated from zone.tab
msgid "Heilongjiang"
msgstr ""

#. generated from zone.tab
msgid "Irian Jaya & the Moluccas"
msgstr ""

#. generated from zone.tab
msgid "Jan Mayen"
msgstr ""

#. generated from zone.tab
msgid "Java & Sumatra"
msgstr ""

#. generated from zone.tab
msgid "Johnston Atoll"
msgstr ""

#. generated from zone.tab
msgid "Jujuy (JY)"
msgstr ""

#. generated from zone.tab
msgid "Kosrae"
msgstr ""

#. generated from zone.tab
msgid "Kwajalein"
msgstr ""

#. generated from zone.tab
msgid "Line Islands"
msgstr ""

#. generated from zone.tab
msgid "Lord Howe Island"
msgstr ""

#. generated from zone.tab
msgid "Madeira Islands"
msgstr ""

# ../iw/progress_gui.py:224
#. generated from zone.tab
#, fuzzy
msgid "mainland"
msgstr "Gainerakoa"

#. generated from zone.tab
msgid "Marquesas Islands"
msgstr ""

#. generated from zone.tab
msgid "Mato Grosso"
msgstr ""

#. generated from zone.tab
msgid "Mato Grosso do Sul"
msgstr ""

#. generated from zone.tab
msgid "Mawson Station, Holme Bay"
msgstr ""

#. generated from zone.tab
msgid "McMurdo Station, Ross Island"
msgstr ""

#. generated from zone.tab
msgid "Mendoza (MZ)"
msgstr ""

#. generated from zone.tab
msgid "Midway Islands"
msgstr ""

#. generated from zone.tab
msgid "Moscow+00 - west Russia"
msgstr ""

#. generated from zone.tab
msgid "Moscow+01 - Caspian Sea"
msgstr ""

#. generated from zone.tab
msgid "Moscow-01 - Kaliningrad"
msgstr ""

#. generated from zone.tab
msgid "Moscow+02 - Urals"
msgstr ""

#. generated from zone.tab
msgid "Moscow+03 - Novosibirsk"
msgstr ""

#. generated from zone.tab
msgid "Moscow+03 - west Siberia"
msgstr ""

#. generated from zone.tab
msgid "Moscow+04 - Yenisei River"
msgstr ""

#. generated from zone.tab
msgid "Moscow+05 - Lake Baikal"
msgstr ""

#. generated from zone.tab
msgid "Moscow+06 - Lena River"
msgstr ""

#. generated from zone.tab
msgid "Moscow+07 - Amur River"
msgstr ""

#. generated from zone.tab
msgid "Moscow+07 - Sakhalin Island"
msgstr ""

#. generated from zone.tab
msgid "Moscow+08 - Magadan"
msgstr ""

#. generated from zone.tab
msgid "Moscow+09 - Kamchatka"
msgstr ""

#. generated from zone.tab
msgid "Moscow+10 - Bering Sea"
msgstr ""

# ../installclasses/workstation.py:7 ../libfdisk/gnomefsedit.c:2537
#. generated from zone.tab
#, fuzzy
msgid "most locations"
msgstr "Lantokia (Lanestazioa)"

#. generated from zone.tab
msgid "most locations (CB,CC,CH,CN,ER,FM,LP,LR,MN,NQ,RN,SA,SE,SF,SJ,SL,TM)"
msgstr ""

#. generated from zone.tab
msgid "Mountain Standard Time - Arizona"
msgstr ""

#. generated from zone.tab
msgid ""
"Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia"
msgstr ""

#. generated from zone.tab
msgid "Mountain Standard Time - Sonora"
msgstr ""

#. generated from zone.tab
msgid "Mountain Time"
msgstr ""

#. generated from zone.tab
msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan"
msgstr ""

#. generated from zone.tab
msgid "Mountain Time - central Northwest Territories"
msgstr ""

#. generated from zone.tab
msgid "Mountain Time - Chihuahua"
msgstr ""

#. generated from zone.tab
msgid "Mountain Time - Navajo"
msgstr ""

#. generated from zone.tab
msgid "Mountain Time - S Baja, Nayarit, Sinaloa"
msgstr ""

#. generated from zone.tab
msgid "Mountain Time - south Idaho & east Oregon"
msgstr ""

#. generated from zone.tab
msgid "Mountain Time - west Northwest Territories"
msgstr ""

#. generated from zone.tab
msgid "NE Brazil (MA, PI, CE, RN, PB)"
msgstr ""

#. generated from zone.tab
msgid "Newfoundland Island"
msgstr ""

#. generated from zone.tab
msgid "New South Wales - most locations"
msgstr ""

#. generated from zone.tab
msgid "New South Wales - Yancowinna"
msgstr ""

#. generated from zone.tab
msgid "northeast Mali"
msgstr ""

#. generated from zone.tab
msgid "Northern Ireland"
msgstr ""

#. generated from zone.tab
msgid "Northern Territory"
msgstr ""

# ../gnome-map/gglobe-canvas.c:103
#. generated from zone.tab
#, fuzzy
msgid "Pacific Time"
msgstr "Pazifiko Ingurua"

#. generated from zone.tab
msgid "Pacific Time - north Yukon"
msgstr ""

#. generated from zone.tab
msgid "Pacific Time - south Yukon"
msgstr ""

#. generated from zone.tab
msgid "Pacific Time - west British Columbia"
msgstr ""

#. generated from zone.tab
msgid "Palmer Station, Anvers Island"
msgstr ""

#. generated from zone.tab
msgid "peninsular Malaysia"
msgstr ""

#. generated from zone.tab
msgid "Pernambuco"
msgstr ""

#. generated from zone.tab
msgid "Phoenix Islands"
msgstr ""

#. generated from zone.tab
msgid "Ponape (Pohnpei)"
msgstr ""

#. generated from zone.tab
msgid "Queensland - Holiday Islands"
msgstr ""

#. generated from zone.tab
msgid "Queensland - most locations"
msgstr ""

#. generated from zone.tab
msgid "Qyzylorda (Kyzylorda, Kzyl-Orda)"
msgstr ""

#. generated from zone.tab
msgid "Roraima"
msgstr ""

#. generated from zone.tab
msgid "Rothera Station, Adelaide Island"
msgstr ""

# ../text.py:899 ../text.py:967
#. generated from zone.tab
#, fuzzy
msgid "Ruthenia"
msgstr "Egiaztaketa"

#. generated from zone.tab
msgid "Sabah & Sarawak"
msgstr ""

#. generated from zone.tab
msgid "Scoresbysund / Ittoqqortoormiit"
msgstr ""

#. generated from zone.tab
msgid "Society Islands"
msgstr ""

# ../gnome-map/gglobe-canvas.c:102
#. generated from zone.tab
#, fuzzy
msgid "South Australia"
msgstr "Hego Amerika"

#. generated from zone.tab
msgid "southwest Mali"
msgstr ""

#. generated from zone.tab
msgid "southwest Xinjiang Uyghur"
msgstr ""

#. generated from zone.tab
msgid "S & SE Brazil (GO, DF, MG, ES, RJ, SP, PR, SC, RS)"
msgstr ""

#. generated from zone.tab
msgid "Svalbard"
msgstr ""

#. generated from zone.tab
msgid "Syowa Station, E Ongul I"
msgstr ""

#. generated from zone.tab
msgid "Tasmania"
msgstr ""

#. generated from zone.tab
msgid "Thule / Pituffik"
msgstr ""

#. generated from zone.tab
msgid "Tibet & most of Xinjiang Uyghur"
msgstr ""

# ../iw/timezone_gui.py:227
#. generated from zone.tab
#, fuzzy
msgid "Tocantins"
msgstr "Lurraldea"

#. generated from zone.tab
msgid "Truk (Chuuk)"
msgstr ""

#. generated from zone.tab
msgid "Victoria"
msgstr ""

#. generated from zone.tab
msgid "Vostok Station, S Magnetic Pole"
msgstr ""

#. generated from zone.tab
msgid "Wake Island"
msgstr ""

#. generated from zone.tab
msgid "W Amazonas"
msgstr ""

#. generated from zone.tab
msgid "west & central Borneo"
msgstr ""

#. generated from zone.tab
msgid "west Dem. Rep. of Congo"
msgstr ""

#. generated from zone.tab
msgid "Western Australia"
msgstr ""

#. generated from zone.tab
msgid "West Kazakhstan"
msgstr ""

#. generated from zone.tab
msgid "west Uzbekistan"
msgstr ""

#. generated from zone.tab
msgid "W Para, Rondonia"
msgstr ""

#. generated from zone.tab
msgid "Yap"
msgstr ""

#. generated from zone.tab
msgid "Zaporozh'ye, E Lugansk"
msgstr ""

#. generated from lang-table
msgid "Bengali"
msgstr ""

# ../fstab.py:553 ../todo.py:531
#. generated from lang-table
#, fuzzy
msgid "Catalan"
msgstr "Sortzen"

#. generated from lang-table
msgid "Chinese(Simplified)"
msgstr ""

#. generated from lang-table
msgid "Chinese(Traditional)"
msgstr ""

# ../fstab.py:553 ../todo.py:531
#. generated from lang-table
#, fuzzy
msgid "Croatian"
msgstr "Sortzen"

#. generated from lang-table
msgid "Czech"
msgstr ""

# ../gui.py:369 ../gui.py:607
#. generated from lang-table
#, fuzzy
msgid "Danish"
msgstr "Amaitu"

#. generated from lang-table
msgid "Dutch"
msgstr ""

# ../gui.py:369 ../gui.py:607
#. generated from lang-table
#, fuzzy
msgid "English"
msgstr "Amaitu"

# ../iw/progress_gui.py:224
#. generated from lang-table
#, fuzzy
msgid "Estonian"
msgstr "Gainerakoa"

# ../gui.py:369 ../gui.py:607
#. generated from lang-table
#, fuzzy
msgid "Finnish"
msgstr "Amaitu"

#. generated from lang-table
msgid "French"
msgstr ""

# ../todo.py:857
#. generated from lang-table
#, fuzzy
msgid "German"
msgstr "Bilatzen"

#. generated from lang-table
msgid "Hungarian"
msgstr ""

#. generated from lang-table
msgid "Icelandic"
msgstr ""

#. generated from lang-table
msgid "Italian"
msgstr ""

#. generated from lang-table
msgid "Japanese"
msgstr ""

#. generated from lang-table
msgid "Korean"
msgstr ""

#. generated from lang-table
msgid "Malay"
msgstr ""

#. generated from lang-table
msgid "Norwegian"
msgstr ""

# ../todo.py:857
#. generated from lang-table
#, fuzzy
msgid "Persian"
msgstr "Bilatzen"

# ../textw/userauth_text.py:308
#. generated from lang-table
#, fuzzy
msgid "Portuguese"
msgstr "edo hau erabili:"

# ../textw/userauth_text.py:308
#. generated from lang-table
#, fuzzy
msgid "Portuguese(Brazilian)"
msgstr "edo hau erabili:"

#. generated from lang-table
msgid "Russian"
msgstr ""

# ../todo.py:857
#. generated from lang-table
#, fuzzy
msgid "Slovenian"
msgstr "Bilatzen"

# ../gui.py:369 ../gui.py:607
#. generated from lang-table
#, fuzzy
msgid "Spanish"
msgstr "Amaitu"

#. generated from lang-table
msgid "Swedish"
msgstr ""

#. generated from lang-table
msgid "Turkish"
msgstr ""

#. generated from lang-table
msgid "Ukrainian"
msgstr ""

#. generated from lang-table
msgid "Welsh"
msgstr ""

#. generated from lang-table
msgid "Zulu"
msgstr ""

# ../installclasses/workstation.py:7 ../libfdisk/gnomefsedit.c:2537
#, fuzzy
#~ msgid "Workstation Defaults"
#~ msgstr "Lantokia (Lanestazioa)"

# ../text.py:308
#, fuzzy
#~ msgid ""
#~ "Welcome to %s!\n"
#~ "\n"
#~ "This installation process is outlined in detail in the Official %s "
#~ "Installation Guide available from Red Hat, Inc. If you have access to "
#~ "this manual, you should read the installation section before continuing.\n"
#~ "\n"
#~ "If you have purchased Official %s, be sure to register your purchase "
#~ "through our web site, http://www.redhat.com/."
#~ msgstr ""
#~ "Red Hat Linux-era Ongietorria!\n"
#~ "\n"
#~ "Ezarketa lanaren azalpenak, Red Hat Software-en eskutik, Red Hat Linux-"
#~ "eko Aitzindari Ofizialean zehatz-mehatz argertzen dira. Aitzindari hau "
#~ "eskuragarria baduzu, aurrera jarraitu aurretik irakur ezazu. On egingo "
#~ "dizu.\n"
#~ "\n"
#~ "Red Hat Linux Ofizialaz jabetu bazara, http://www.redhat.com/ -en "
#~ "bitartez, beronen harpidetza egiteaz ziurta zaitez."

# ../gui.py:372 ../gui.py:635
#~ msgid "Online Help"
#~ msgstr "Zuzeneko Laguntza"

# ../iw/installpath_gui.py:92
#, fuzzy
#~ msgid "_Install BETA"
#~ msgstr "Ezarketa Mota"

# ../iw/network_gui.py:210 ../loader/net.c:531 ../loader/net.c:729
# ../textw/network_text.py:141
#, fuzzy
#~ msgid "Set hostname"
#~ msgstr "Ostalariaren Izena"

# ../iw/welcome_gui.py:11 ../iw/welcome_gui.py:38 ../text.py:879
# ../text.py:914
#~ msgid "Welcome"
#~ msgstr "Ongietorria"

# ../textw/timezone_text.py:86
#~ msgid "Hardware clock set to GMT?"
#~ msgstr "Ordua GTM oinarriarekin ezarri?"

# ../iw/account_gui.py:41
#, fuzzy
#~ msgid "Enter a boot loader password and then confirm it."
#~ msgstr "Sistemako Arduradunaren (root) hitz-ezkutua motzegia da."

# ../iw/xconfig_gui.py:522
#, fuzzy
#~ msgid "Personal Desktop Defaults"
#~ msgstr "Jatorrizko Idazmahaia:"

# ../iw/lilo_gui.py:20
#, fuzzy
#~ msgid "Firewall Configuration"
#~ msgstr "Lilo Egokitzaketa"

# ../iw/account_gui.py:36
#~ msgid "Root password accepted."
#~ msgstr "Sistemako Arduradunaren (root) hitz-ezkutua onartu da."

# ../iw/account_gui.py:41
#~ msgid "Root password is too short."
#~ msgstr "Sistemako Arduradunaren (root) hitz-ezkutua motzegia da."

# ../iw/account_gui.py:43
#~ msgid "Root passwords do not match."
#~ msgstr "Sistemako Arduradunaren (root) hitz-ezkutuek ez datoz bat."

# ../iw/examine_gui.py:72
#, fuzzy
#~ msgid "_Customize packages to be upgraded"
#~ msgstr "Eguneratutzeko sortak Norberekatu"

# ../textw/partitioning_text.py:254
#, fuzzy
#~ msgid "Check for _bad blocks"
#~ msgstr "Tangulu (bloke) txarrak begiztatu"

# ../libfdisk/gnomefsedit.c:3538
#~ msgid "_Reset"
#~ msgstr "_Garbitu"

# ../libfdisk/gnomefsedit.c:2206
#, fuzzy
#~ msgid "Make _RAID"
#~ msgstr "RAID tramankulua beste batek darabil"

# ../iw/timezone_gui.py:227
#~ msgid "Location"
#~ msgstr "Lurraldea"

# ../iw/timezone_gui.py:213
#, fuzzy
#~ msgid "Use _daylight saving time (US only)"
#~ msgstr "Udako ordutegia erabili (EEUU soilik)"

# ../iw/timezone_gui.py:228
#~ msgid "UTC Offset"
#~ msgstr "UTC Lekutu"

# ../textw/network_text.py:64
#~ msgid "Use bootp/dhcp"
#~ msgstr "'bootp/dhcp' Erabili"

# ../loader/net.c:293 ../textw/network_text.py:72
#~ msgid "Secondary nameserver:"
#~ msgstr "BVigarren izen-Zerbitzaria:"

# ../loader/net.c:293 ../textw/network_text.py:72
#, fuzzy
#~ msgid "Tertiary nameserver:"
#~ msgstr "Hirugarren Izen-Zerbitzariaa:"

# ../textw/network_text.py:138
#~ msgid ""
#~ "The hostname is the name of your computer.  If your computer is attached "
#~ "to a network, this may be assigned by your network administrator."
#~ msgstr ""
#~ "Ostalari izena zure ordenagailuaren izena da. Zure ordenagailua sare "
#~ "batera lotuta badago, orduan bere izena zure sareko arduradunak ezarri "
#~ "beharko du."

# ../libfdisk/newtfsedit.c:1452
#, fuzzy
#~ msgid ""
#~ "    F1-Help                 F3-Edit   F4-Delete    F5-Reset    F12-"
#~ "OK        "
#~ msgstr ""
#~ "   F1-Laguntza   F2-Gehitu   F3-Argitatu   F4-Ezabatu   F5-Garbitu   F12-"
#~ "Onartu"

# ../todo.py:980
#~ msgid "Rebuild of RPM database failed. You may be out of disk space?"
#~ msgstr "RPM datu basearen sorreran akatsa. Diskoan lekurik ba al dago?"

# ../gui.py:365 ../gui.py:605
#, fuzzy
#~ msgid "T_ext"
#~ msgstr "Hurrengoa"

# ../loader/cdrom.c:32
#~ msgid "CDROM type"
#~ msgstr "'CDROM' mota"

# ../loader/cdrom.c:32
#~ msgid "What type of CDROM do you have?"
#~ msgstr "Zein 'CDROM' mota daukazu?"

# ../loader/cdrom.c:89
#~ msgid "Initializing CDROM..."
#~ msgstr "'CDROM'-a hasieratzen"

# ../loader/devices.c:86
#, fuzzy
#~ msgid ""
#~ "This module can take parameters which affects its operation. If you don't "
#~ "know what parameters to supply, just skip this screen by pressing the \"OK"
#~ "\" button now."
#~ msgstr ""
#~ "Modulu honek bere eragiketei eragin diezaioketen agerbideak (parametroak) "
#~ "jaso ditzake. Zein agerbide (parametro) eman behar zaizkion ez badakizu, "
#~ "hurrengo pantalaira joateko \"Onartu\" botoitxoa orain zapaldu."

# ../loader/devices.c:91
#~ msgid "Module Parameters"
#~ msgstr "Moduluaren Agerbideak"

# ../loader/devices.c:216
#, fuzzy
#~ msgid "Insert your driver disk and press \"OK\" to continue."
#~ msgstr ""
#~ " Kontrolatzailearen disketea sartu eta jarraitzeko \"Onartu\" botoitxoa "
#~ "zapaldu."

# ../loader/devices.c:244
#, fuzzy
#~ msgid ""
#~ "The floppy disk you inserted is not a valid driver disk for this release "
#~ "of %s."
#~ msgstr ""
#~ "Sartu dozun kontrolatzaile disketeak Red Hat Linux argitaketa honentzako "
#~ "ez du balio."

# ../loader/devices.c:304
#~ msgid ""
#~ "Which driver should I try?. If the driver you need does not appear in "
#~ "this list, and you have a separate driver disk, please press F2."
#~ msgstr ""
#~ "Zein kontrolatzailerekin saiatu behar dut? Behar duzun kontrolatzailea "
#~ "zerrenda honetan ez bada agertzen, eta driver diskete bat baldin "
#~ "badaukazu, F2 zapaldu, mesedez."

# ../loader/devices.c:313
#~ msgid "Specify module parameters"
#~ msgstr "Moduarentzako agerbideak zehaztu"

# ../loader/devices.c:410
#~ msgid "Failed to insert %s module."
#~ msgstr "%s modulua  ezin izan da sartu."

# ../loader/kickstart.c:59
#~ msgid "Error opening: kickstart file %s: %s"
#~ msgstr "%s kickstart fitxategia irekitzean %s akatsa gertatu da"

# ../loader/loader.c:262
#~ msgid "SCSI"
#~ msgstr "SCSI"

# ../loader/loader.c:276
#~ msgid "What kind of device would you like to add"
#~ msgstr "Zein tramankulu mota gehitzea gura dozu?"

# ../loader/loader.c:325
#, fuzzy
#~ msgid "The following devices have been found on your system:"
#~ msgstr "Zure sisteman ondoko tramankulu hauek aurkitu dira:"

# ../loader/loader.c:353
#, fuzzy
#~ msgid ""
#~ "No special device drivers have been loaded for your system. Would you "
#~ "like to load any now?"
#~ msgstr ""
#~ "Zure sistemako tramankuluentzako kontrolatzaile berezirik ez da "
#~ "gaineratu. Nahi duzu batenbat gaineratzea?"

# ../loader/loader.c:1023
#~ msgid "That directory does not seem to contain a Red Hat installation tree."
#~ msgstr ""
#~ "Badirudi direktorio horrek Red Hat-eko ezarketa zuhaitzik ez daukala."

# ../loader/loader.c:1028
#, fuzzy
#~ msgid "That directory could not be mounted from the server"
#~ msgstr "Zerbitzaritik direktorio hori ezin izan dut lotu"

# ../iw/package_gui.py:436
#, fuzzy
#~ msgid "File %s/%s not found on server."
#~ msgstr "Fitxategia ez da aurkitu"

# ../loader/loader.c:1126 ../loader/loader.c:1135
#~ msgid "HTTP"
#~ msgstr "HTTP"

# ../loader/loader.c:1127
#~ msgid "Unable to retrieve the first install image"
#~ msgstr "Ezarketako lehen irudia lortzea ezinezkoa izan da."

# ../loader/loader.c:1166
#~ msgid "FTP and HTTP installs require 20MB or more of system memory."
#~ msgstr ""
#~ "FTP eta HTTP-ren bitarteko ezarketek sisteman 20MB memoria edo gehiago "
#~ "behar dituzte."

# ../loader/loader.c:2136
#~ msgid "Insert your updates disk and press \"OK\" to continue."
#~ msgstr "Jarraitzeko eguneraketa diskete bat sartu eta \"Onartu\" zapaldu."

# ../loader/devices.c:244
#, fuzzy
#~ msgid ""
#~ "The floppy disk you inserted is not a valid update disk for this release "
#~ "of %s."
#~ msgstr ""
#~ "Sartu dozun kontrolatzaile disketeak Red Hat Linux argitaketa honentzako "
#~ "ez du balio."

# ../loader/loader.c:2144
#~ msgid "Failed to mount floppy disk."
#~ msgstr "Disketea lotzerakoan porrot egin du."

# ../loader/devices.c:456
#~ msgid "Failed to mount driver disk: %s."
#~ msgstr "%s disko gogorra ezin izan da lotu"

# ../loader/devices.c:476
#~ msgid "The wrong diskette was inserted."
#~ msgstr "Dsikete okerrekoa sartu duzu."

# ../loader/devices.c:504
#~ msgid "Please insert the %s driver disk now."
#~ msgstr "Mesedez, kontrolatzailedun %s disketea orain sartu."

# ../loader/net.c:389 ../loader/net.c:660
#~ msgid "Sending request for IP information..."
#~ msgstr "IP argibide eskaera bidaltzen..."

# ../loader/net.c:643 ../loader/net.c:676
#~ msgid "kickstart"
#~ msgstr "kickstart"

# ../loader/net.c:644
#~ msgid "bad argument to kickstart network command %s: %s"
#~ msgstr "%s kickstart-eko %s sare aginduak argumentu okerra"

# ../loader/net.c:719
#~ msgid "Boot protocol to use"
#~ msgstr "Erabili beharreko abiatze hizketa-araua"

# ../loader/net.c:721
#~ msgid "Network gateway"
#~ msgstr "Sare pasabidea"

# ../loader/net.c:723
#~ msgid "IP address"
#~ msgstr "IP helbidea"

# ../loader/net.c:732
#~ msgid "Domain name"
#~ msgstr "Jabetzaren Izena"

# ../loader/net.c:735
#~ msgid "Network device"
#~ msgstr "Sareko Tramankulua"

# ../iw/auth_gui.py:139
#, fuzzy
#~ msgid "No DNS lookups"
#~ msgstr "TLS bilaketa erabili"

# ../loader/net.c:807
#~ msgid ""
#~ " <Tab>/<Alt-Tab> between elements   |   <Space> selects  |   <F12> next "
#~ "screen"
#~ msgstr ""
#~ " <Tab>/<Alt-Tab> Hautagaiartean Higitu | <Hutsune Tekla> Hautatu | <F12> "
#~ "datorren pantaila"

# ../loader/net.c:808
#~ msgid "netconfig %s  (C) 1999 Red Hat, Inc."
#~ msgstr "netconfig %s (C) 1999 Red Hat, Inc."

# ../loader/net.c:81
#~ msgid "Network configuration"
#~ msgstr "Sarea Egokitu"

# ../loader/net.c:811
#~ msgid "Would you like to set up networking?"
#~ msgstr "Sarea Egokitzea nahi dozu?"

# ../loader/loader.c:2467
#~ msgid "PC Card"
#~ msgstr "PC Xafla"

# ../loader/loader.c:2467
#~ msgid "Initializing PC Card Devices..."
#~ msgstr "PC Xafla-tramankuluak hasieratzen..."

# ../loader/pcmcia.c:91
#~ msgid "PCMCIA"
#~ msgstr "PCMCIA"

# ../loader/devices.c:504
#~ msgid "Please insert your PCMCIA driver disk into your floppy drive now."
#~ msgstr "Mesedez, zure PCMCIA-ren kontrolatzailedun disketea orain sartu."

# ../loader/devices.c:237
#~ msgid "Failed to mount disk."
#~ msgstr "Diskoa lotzerakoan porrot egin du."

# ../loader/pcmcia.c:119
#~ msgid "That floppy does not look like a Red Hat PCMCIA driver disk."
#~ msgstr "Diskete horrek Red Hat PCMCIA kontrolatzailearen antzik ez dauka."

# ../loader/urls.c:211
#~ msgid "Use proxy server"
#~ msgstr "Proxy zerbitzaria erabili"

# ../loader/urls.c:35
#~ msgid "FTP Proxy:"
#~ msgstr "FTP Proxy-a:"

# ../loader/urls.c:353
#~ msgid "HTTP Proxy:"
#~ msgstr "HTTP PRoxy-a:"

# ../loader/urls.c:357
#~ msgid "FTP Proxy Port:"
#~ msgstr "FTP Proxy Kaia:"

# ../loader/urls.c:358
#~ msgid "HTTP Proxy Port:"
#~ msgstr "HTTP Proxy Kaia:"

# ../xserver.py:27
#~ msgid ""
#~ "Your mouse was not automatically detected.  To proceed in the graphical "
#~ "installation mode, please proceed to the next screen and provide your "
#~ "mouse information. You may also use text mode installation which does not "
#~ "require a mouse."
#~ msgstr ""
#~ "Ezartzaileak bere kasa ezin izan du zure xagua nabarmendu. Ezarketa era "
#~ "grafiko batean egitekotan hurrengo pantailarra joan eta xaguaren "
#~ "ezaugarriak zehaztu itzazu. Nahiz izan ezkero, ezarketa testu eran egin "
#~ "dezakezu, horretarako xagurik ez bait da behar."

# ../xserver.py:33 ../xserver.py:34
#~ msgid "Use text mode"
#~ msgstr "Testu era erabili"

# ../loader/loader.c:325
#, fuzzy
#~ msgid ""
#~ "The following root partitions have been found on your system.  FIXME: I "
#~ "NEED BETTER TEXT HERE."
#~ msgstr "Zure sisteman ondoko tramankulu hauek aurkitu dira:"

# ../loader/loader.c:325
#, fuzzy
#~ msgid ""
#~ "The following root partitions have been found on your system. FIXME: I "
#~ "NEED BETTER TEXT HERE."
#~ msgstr "Zure sisteman ondoko tramankulu hauek aurkitu dira:"

# ../xf86config.py:873
#, fuzzy
#~ msgid "Unable to probe"
#~ msgstr "Bideo xafla ezin ezagutu"

# ../iw/account_gui.py:15
#~ msgid "Account Configuration"
#~ msgstr "Kontuaren Egokitzaketa"

# ../iw/account_gui.py:56
#~ msgid "User password accepted."
#~ msgstr "Erabiltzailearen hitz-ezkutua onartu da."

# ../iw/account_gui.py:61
#~ msgid "Root account can not be added here."
#~ msgstr "Hemen Sistemako arduradunaren konturik ezin da sortu."

# ../iw/account_gui.py:61
#, fuzzy
#~ msgid "System accounts can not be added here."
#~ msgstr "Hemen Sistemako arduradunaren konturik ezin da sortu."

# ../iw/account_gui.py:63
#~ msgid "Please enter user password."
#~ msgstr "Mesedez, erabiltzailearen hitz-ezkutua sartu."

# ../iw/account_gui.py:65
#~ msgid "User password is too short."
#~ msgstr "Erabiltzailearen hitz-ezkutua motzegia da."

# ../iw/account_gui.py:67
#~ msgid "User passwords do not match."
#~ msgstr "Erabiltzailearen hitzezkutuek ez datoz bat."

# ../textw/userauth_text.py:75
#, fuzzy
#~ msgid "Add a New User"
#~ msgstr "Erabiltzailea Gehitu"

# ../text.py:897 ../text.py:965 ../textw/userauth_text.py:172
#, fuzzy
#~ msgid "Add a User Account"
#~ msgstr "Erabiltzailearen Egituraketa"

# ../iw/account_gui.py:63
#, fuzzy
#~ msgid "Enter a user _name:"
#~ msgstr "Mesedez, erabiltzailearen hitz-ezkutua sartu."

# ../iw/account_gui.py:63
#, fuzzy
#~ msgid "Enter a user _password:"
#~ msgstr "Mesedez, erabiltzailearen hitz-ezkutua sartu."

# ../iw/account_gui.py:252 ../textw/userauth_text.py:83
#, fuzzy
#~ msgid "Pass_word (confirm):"
#~ msgstr "Hitz-Ezkutua (egiaztatu)"

# ../iw/account_gui.py:261 ../iw/account_gui.py:291
# ../textw/userauth_text.py:81 ../textw/userauth_text.py:184
#, fuzzy
#~ msgid "_Full Name:"
#~ msgstr "Izen Osoa"

# ../iw/account_gui.py:63
#, fuzzy
#~ msgid "Please enter user name"
#~ msgstr "Mesedez, erabiltzailearen hitz-ezkutua sartu."

# ../iw/account_gui.py:244 ../iw/account_gui.py:291
#~ msgid "Account Name"
#~ msgstr "Kontuaren Izena"

# ../iw/examine_gui.py:35
#, fuzzy
#~ msgid ""
#~ "You don't have any Linux partitions.\n"
#~ "You can't upgrade this sytem!"
#~ msgstr ""
#~ "Linux-entzako diska-zatirik ez da aurkitu.\n"
#~ " Systema hau ezin da eguneratu!"

# ../iw/examine_gui.py:44
#~ msgid "Please select the device containing the root filesystem: "
#~ msgstr "Mesedez, erro fitxategitza daukan tramankulua hautatu."

# ../todo.py:858
#, fuzzy
#~ msgid "Upgrading the %s installation on partition /dev/%s"
#~ msgstr "Red Hat Linux-eko ezarketak bilatzen..."

# ../iw/rootpartition_gui.py:347
#, fuzzy
#~ msgid "Manually partition with _fdisk (experts only)"
#~ msgstr "Eskuzko disko zatiketa, fdisk-ekin [Adituak soilik]"

# ../iw/xconfig_gui.py:318
#, fuzzy
#~ msgid "   _Test Setting   "
#~ msgstr "  Egokitzaketa Honekin Saiatu  "

# ../iw/fdisk_gui.py:12 ../textw/partitioning_text.py:23
#~ msgid "fdisk"
#~ msgstr "fdisk"

# ../text.py:249
#~ msgid "You don't have any Linux partitions. You can't upgrade this system!"
#~ msgstr "Linux-eko disko-zatirik ez daukazu. Ezin ba eguneratu!"

# ../libfdisk/newtfsedit.c:208
#, fuzzy
#~ msgid "Upgrade Partition"
#~ msgstr "Raid Disko Zatia"

# ../text.py:895 ../text.py:963 ../textw/userauth_text.py:9
#, fuzzy
#~ msgid "No password"
#~ msgstr "Sistemako Arduradunaren (root) Pasahitza"

# ../iw/account_gui.py:63
#, fuzzy
#~ msgid "Change _Password"
#~ msgstr "Mesedez, erabiltzailearen hitz-ezkutua sartu."

# ../iw/account_gui.py:183
#, fuzzy
#~ msgid "_Use a Boot Loader Password"
#~ msgstr "Sistemako Arduradunaren (root) hitz-ezkutua:"

# ../text.py:895 ../text.py:963 ../textw/userauth_text.py:9
#, fuzzy
#~ msgid "Set _Password"
#~ msgstr "Sistemako Arduradunaren (root) Pasahitza"

# ../iw/lilo_gui.py:261 ../iw/silo_gui.py:207
#, fuzzy
#~ msgid "General kernel parameters"
#~ msgstr "Kernel-eko agerbideak"

# ../iw/lilo_gui.py:339 ../iw/silo_gui.py:287
#, fuzzy
#~ msgid "Default Boot Target"
#~ msgstr "Jatorrizko abiagailua irudia"

# ../textw/lilo_text.py:126
#~ msgid "Edit Boot Label Please"
#~ msgstr "Abiaketaren Izena Argitatu"

# ../comps/comps-master:3
#~ msgid "Base"
#~ msgstr "Oinarria"

# ../comps/comps-master:140
#, fuzzy
#~ msgid "Printing Support"
#~ msgstr "Inprimaketa Sistema"

#, fuzzy
#~ msgid "Classic X Window System"
#~ msgstr "X Lehio Sistema"

#~ msgid "X Window System"
#~ msgstr "X Lehio Sistema"

# ../comps/comps-master:450
#~ msgid "Laptop Support"
#~ msgstr "Ordenagailu Mugikorra Onartu"

# ../comps/comps-master:409
#, fuzzy
#~ msgid "Sound and Multimedia Support"
#~ msgstr "Multimedia"

# ../text.py:887 ../text.py:955
#, fuzzy
#~ msgid "Network Support"
#~ msgstr "Sarearen Egituraketa"

# ../comps/comps-master:450
#, fuzzy
#~ msgid "Dialup Support"
#~ msgstr "Ordenagailu Mugikorra Onartu"

# ../comps/comps-master:363
#, fuzzy
#~ msgid "Graphics and Image Manipulation"
#~ msgstr "Margoketa Tresnak"

# ../loader/net.c:243 ../loader/net.c:725
#~ msgid "News Server"
#~ msgstr "Berrien (News) Zerbitzaria"

# ../textw/userauth_text.py:30
#, fuzzy
#~ msgid "NFS File Server"
#~ msgstr "NFS Zerbitzaria"

# ../libfdisk/gnomefsedit.c:2517 ../libfdisk/gnomefsedit.c:253
#, fuzzy
#~ msgid "Windows File Server"
#~ msgstr "Web Zerbitzaria"

# ../comps/comps-master:622
#~ msgid "Anonymous FTP Server"
#~ msgstr "FTP Zerbitzari Anonimoa"

# ../textw/userauth_text.py:30
#, fuzzy
#~ msgid "SQL Database Server"
#~ msgstr "SQL Zerbitzaria"

# ../libfdisk/gnomefsedit.c:2517 ../libfdisk/gnomefsedit.c:253
#~ msgid "Web Server"
#~ msgstr "Web Zerbitzaria"

# ../loader/net.c:243 ../loader/net.c:725
#~ msgid "DNS Name Server"
#~ msgstr "DNS Izen Zerbitzaria"

# ../iw/network_gui.py:11 ../textw/network_text.py:94
#, fuzzy
#~ msgid "Network Managed Workstation"
#~ msgstr "Lantoki Sare Kudeatzailea"

# ../comps/comps-master:669
#, fuzzy
#~ msgid "Authoring and Publishing"
#~ msgstr "Egilea/Argitaketa"

# ../comps/comps-master:691
#~ msgid "Emacs"
#~ msgstr "Emacs"

# ../comps/comps-master:857
#~ msgid "Utilities"
#~ msgstr "Hainbat Tresna"

# ../comps/comps-master:450
#, fuzzy
#~ msgid "Legacy Application Support"
#~ msgstr "Ordenagailu Mugikorra Onartu"

# ../iw/lilo_gui.py:261 ../iw/silo_gui.py:207
#, fuzzy
#~ msgid "Software Development"
#~ msgstr "Kernel-eko Garapenak"

# ../iw/lilo_gui.py:261 ../iw/silo_gui.py:207
#~ msgid "Kernel Development"
#~ msgstr "Kernel-eko Garapenak"

# ../iw/account_gui.py:274 ../libfdisk/newtfsedit.c:1445
# ../textw/userauth_text.py:195
#, fuzzy
#~ msgid "delete"
#~ msgstr "Ezabatu"

# ../libfdisk/gnomefsedit.c:3556
#, fuzzy
#~ msgid "Make LVM Device"
#~ msgstr "RAID Tramankulua _Sortu"

# ../loader/loader.c:327 ../loader/loader.c:352
#, fuzzy
#~ msgid "Edit LVM Device"
#~ msgstr "Tramankulua Gehitu"

# ../installclasses/workstation.py:7 ../libfdisk/gnomefsedit.c:2537
#, fuzzy
#~ msgid "Developer Workstation"
#~ msgstr "Telefonodun Lantokia"

# ../textw/userauth_text.py:184
#, fuzzy
#~ msgid "User _Name:"
#~ msgstr "Erabiltzailearen izena"

# ../text.py:979
#, fuzzy
#~ msgid "Do not install a boot loader"
#~ msgstr "Sistemaren Ezarketa"

# ../iw/confirm_gui.py:44 ../text.py:484
#, fuzzy
#~ msgid ""
#~ "A complete log of your installation will be in /root/install.log after "
#~ "rebooting your system. You may want to keep this file for later "
#~ "reference. A kickstart file representing the choices you have made will "
#~ "be in /root/anaconda-ks.cfg."
#~ msgstr ""
#~ "Ordenagailua berpiztu ondoren, ezarketaren zehaztasun eta gertaera "
#~ "guztiak /tmp/install.log -ean aurki dezakezu. Hau gordeta edukitzea ongi "
#~ "etorriko zaizu."

# ../iw/congrats_gui.py:81
#, fuzzy
#~ msgid ""
#~ "Congratulations, your %s installation is complete.\n"
#~ "\n"
#~ "Remove any floppy diskettes you used during the installation process and "
#~ "press <Enter> to reboot your system. \n"
#~ "\n"
#~ "%sFor information on errata (updates and bug fixes), visit http://www."
#~ "redhat.com/errata.\n"
#~ "\n"
#~ "Information on using and configuring your system is available in the %s "
#~ "manuals at http://www.redhat.com/docs."
#~ msgstr ""
#~ "Zorionak, egokitzaketa osatuta dago.\n"
#~ "\n"
#~ "Red Hat Linux-eko bertsio honen zuzenketen berri http://www.redhat.com "
#~ "web gunean aurkituko duzu.\n"
#~ "\n"
#~ "Zure sistemaren egokitzaketari buruzko azalpen gehiago, ezarketa ondoren "
#~ "agertuko zaizun Red Hat Linux Ofizialeko Erabiltzilearen Aitzindarian "
#~ "aurkitu ahal izango duzu."

# ../iw/xconfig_gui.py:428
#, fuzzy
#~ msgid "Please choose your security level:  "
#~ msgstr "Mesedez, zure sarrera (login) mota hautatu:"

# ../iw/package_gui.py:399
#, fuzzy
#~ msgid "_Select all"
#~ msgstr "Taldekide guztiak hautatu"

# ../textw/mouse_text.py:57
#, fuzzy
#~ msgid "Which _model mouse is attached to the computer?"
#~ msgstr "Zure ordenagailuak zein xagu mota dauka?"

# ../iw/xconfig_gui.py:370
#, fuzzy
#~ msgid ""
#~ "If the probed settings do not match your hardware, select the correct "
#~ "hardware settings below:"
#~ msgstr ""
#~ "Frogaketen emaitzak zure 'hardware'-arekin bat ez badator, "
#~ "ondorengoetatik egokien datorkizuna hautatu:"

# ../comps/comps-master:450
#~ msgid "Laptop"
#~ msgstr "Ordenagailu Mugikorra"

# ../libfdisk/gnomefsedit.c:1267 ../libfdisk/gnomefsedit.c:1284
#~ msgid "Close"
#~ msgstr "Itxi"

# ../libfdisk/gnomefsedit.c:1531
#, fuzzy
#~ msgid ""
#~ "You cannot remove this partition, as it is an extended partition which "
#~ "contains %s"
#~ msgstr ""
#~ "Ezin duzu \\\"/boot\\\" ezabatu baldin eta \\\"/\\\" RAID tramankulu "
#~ "batean badago. Lehendabizi  \\\"/\\\" loturagunea RAID ez den tramankulu "
#~ "batera aldatu."

# ../xf86config.py:873
#, fuzzy
#~ msgid "Unable to Edit"
#~ msgstr "Bideo xafla ezin ezagutu"

# ../libfdisk/gnomefsedit.c:1278
#, fuzzy
#~ msgid ""
#~ "You have chosen to format a pre-existing partition.  This will destroy "
#~ "all data that was previously on it.\n"
#~ "\n"
#~ "Are you sure you want to do this?"
#~ msgstr ""
#~ "Disko bakar bati izendatubariko RAID zati bat egoktitu diozu.\n"
#~ "Horrela gertatzea nahi al duzu?"

# ../libfdisk/newtfsedit.c:486
#, fuzzy
#~ msgid "Unknown Card"
#~ msgstr "Ezezaguna"

# ../iw/xconfig_gui.py:12 ../xf86config.py:869
#~ msgid "Video Ram"
#~ msgstr "Bideo memoria"

# ../xf86config.py:871
#~ msgid "X server"
#~ msgstr "X zerbitzaria"

# ../xf86config.py:873
#~ msgid "Unable to detect video card"
#~ msgstr "Bideo xafla ezin ezagutu"

# ../iw/bootdisk_gui.py:68
#~ msgid "Skip boot disk creation"
#~ msgstr "Abiatze diskorik ez sortu"

# ../iw/xconfig_gui.py:123
#, fuzzy
#~ msgid "Boot Loader Password Configuration"
#~ msgstr "Monitorea Egokitu"

# ../iw/account_gui.py:36
#, fuzzy
#~ msgid "Password accepted."
#~ msgstr "Sistemako Arduradunaren (root) hitz-ezkutua onartu da."

# ../iw/account_gui.py:41
#, fuzzy
#~ msgid "Password is too short."
#~ msgstr "Sistemako Arduradunaren (root) hitz-ezkutua motzegia da."

# ../iw/account_gui.py:43
#, fuzzy
#~ msgid "Passwords do not match."
#~ msgstr "Sistemako Arduradunaren (root) hitz-ezkutuek ez datoz bat."

# ../textw/userauth_text.py:291
#, fuzzy
#~ msgid "Use a GRUB Password?"
#~ msgstr "Ilunpeko Hitz-ezkutua Eraibli"

# ../loader/urls.c:245
#, fuzzy
#~ msgid " is an invalid port."
#~ msgstr "%s Ostalariaren izena baliogabea da."

# ../iw/format_gui.py:12
#~ msgid "Choose partitions to Format"
#~ msgstr "Egituratzeko disko-zatia aukeratu"

# ../iw/keyboard_gui.py:16
#~ msgid "Keyboard Configuration"
#~ msgstr "Teklatu Egokitzaketa"

# ../text.py:119
#, fuzzy
#~ msgid "Which model keyboard is attached to the computer?"
#~ msgstr "Zure ordenagailuak zein atzoldi (teklatu) mota dauka?"

# ../iw/keyboard_gui.py:91
#~ msgid "Layout"
#~ msgstr "Aurkezpena"

# ../iw/keyboard_gui.py:110
#~ msgid "Dead Keys"
#~ msgstr "Tekla Hilak"

# ../iw/keyboard_gui.py:119
#~ msgid "Enable dead keys"
#~ msgstr "Tekla Hilak Baimendu"

# ../iw/keyboard_gui.py:129
#~ msgid "Test your selection here:"
#~ msgstr "Hautatutakoarekin hemen saiatu:"

# ../iw/mouse_gui.py:142
#~ msgid "Port"
#~ msgstr "Kaia"

# ../iw/network_gui.py:166
#~ msgid "Broadcast"
#~ msgstr "Hedapena"

# ../iw/package_gui.py:352
#~ msgid "Total install size: "
#~ msgstr "Beharrezko lekua:"

# ../iw/account_gui.py:276
#, fuzzy
#~ msgid "_New"
#~ msgstr "Berria"

# ../iw/timezone_gui.py:156
#~ msgid "View:"
#~ msgstr "Begiztatu:"

# ../iw/welcome_gui.py:80
#~ msgid "Would you like to configure your system?"
#~ msgstr "Zure sistema egokitzea nahi?"

# ../comps/comps-master:140
#, fuzzy
#~ msgid "Other"
#~ msgstr "Inprimaketa Sistema"

# ../textw/bootdisk_text.py:13
#, fuzzy
#~ msgid ""
#~ "A custom boot disk provides a way of booting into your Linux system "
#~ "without depending on the normal boot loader. This is useful if you don't "
#~ "want to install lilo on your system, another operating system removes "
#~ "lilo, or lilo doesn't work with your hardware configuration. A custom "
#~ "boot disk can also be used with the Red Hat rescue image, making it much "
#~ "easier to recover from severe system failures.\n"
#~ "\n"
#~ "Would you like to create a boot disk for your system?"
#~ msgstr ""
#~ "Abiatze disketeak zure Linux-a abiatzeko beste ezohizko bide bat "
#~ "eskeintzen dizu. Hots,  ziurtasuneko bidea. Zure ordenagailuan LILO "
#~ "ezartzerik ez baduzu nahi, beste sistema eragile batek LILOezabatzen badu "
#~ "edo ordenagailuak LILO-rik ez badu onartzen, abiatzeko era hau oso "
#~ "erabilgarria egingo zaizu. Ordenagailuko akats gordin baten aurrean, "
#~ "berau konpontzeko asmoz, abiatze eta berreskuraketa disketeak batera "
#~ "erabil ditzakezu.\n"
#~ "\n"
#~ "Zure sistemarentzako abiatze disketea sortzerik nahi duzu?"

# ../iw/congrats_gui.py:81
#, fuzzy
#~ msgid ""
#~ "Congratulations, your %s installation is complete.\n"
#~ "\n"
#~ "Remove any floppy diskettes you used during the installation process and "
#~ "press <Enter> to reboot your system. \n"
#~ "\n"
#~ "%sFor information on errata (updates and bug fixes), visit http://www."
#~ "redhat.com/errata.\n"
#~ "\n"
#~ "Information on using your system is available in the Red Hat Linux "
#~ "manuals at http://www.redhat.com/docs."
#~ msgstr ""
#~ "Zorionak, egokitzaketa osatuta dago.\n"
#~ "\n"
#~ "Red Hat Linux-eko bertsio honen zuzenketen berri http://www.redhat.com "
#~ "web gunean aurkituko duzu.\n"
#~ "\n"
#~ "Zure sistemaren egokitzaketari buruzko azalpen gehiago, ezarketa ondoren "
#~ "agertuko zaizun Red Hat Linux Ofizialeko Erabiltzilearen Aitzindarian "
#~ "aurkitu ahal izango duzu."

# ../textw/userauth_text.py:95
#~ msgid "Bad User ID"
#~ msgstr "Erabiltzailearen Nortasuna Oker dago"

# ../text.py:327
#, fuzzy
#~ msgid ""
#~ "Welcome to %s!\n"
#~ "\n"
#~ "You have entered reconfiguration mode, which will allow you to configure "
#~ "site-specific options of your computer.\n"
#~ "\n"
#~ "To exit without changing your setup select the Cancel button below."
#~ msgstr ""
#~ "Red Hat Linux-era Ongietorria!\n"
#~ "\n"
#~ "Berregokituratze eran sartu zara: ordenagailuko ezaugarri zehatzak "
#~ "egokitzen uzten dizu.\n"
#~ "\n"
#~ "Egokitzaketa aldatu barik irteteko, 'Etsi' botoitxoa zapaldu."

# ../loader/cdrom.c:26
#~ msgid "Other CDROM"
#~ msgstr "Beste 'CDROM'-a"

# ../loader/net.c:159
#, fuzzy
#~ msgid ""
#~ "Please enter the following information:\n"
#~ "\n"
#~ "    o the name or IP number of your NFS server\n"
#~ "    o the directory on that server containing\n"
#~ "      %s for your architecture"
#~ msgstr ""
#~ "Mesedez, datozten ezaugarriak bete:n\n"
#~ "    o NFS zerbitzariaren IP zenbakia edo izena\n"
#~ "    o Red Hat Linux-eko fitxategiak dituen\n"
#~ "      zerbitzariaren direktorioa"

# ../gnome-map/gglobe-canvas.c:2
#~ msgid "Map Image to display"
#~ msgstr "Irudia pantailaratu"

# ../gnome-map/gglobe-canvas.c:25
#~ msgid "Width of map (in pixels)"
#~ msgstr "Maparen Zabaleroa (pixeletan)"

# ../gnome-map/gglobe-canvas.c:100
#~ msgid "World"
#~ msgstr "Lurra"

# ../gnome-map/gglobe-canvas.c:101
#~ msgid "North America"
#~ msgstr "Ipar Amerika"

# ../gnome-map/gglobe-canvas.c:102
#~ msgid "South America"
#~ msgstr "Hego Amerika"

# ../gnome-map/gglobe-canvas.c:104
#~ msgid "Europe"
#~ msgstr "Europa"

# ../gnome-map/gglobe-canvas.c:105
#~ msgid "Africa"
#~ msgstr "Afrika"

# ../gnome-map/gglobe-canvas.c:106
#~ msgid "Asia"
#~ msgstr "Asia"

# ../gnome-map/gglobe-canvas.c:713 ../gnome-map/timezonemapmodule.c:698
#~ msgid "Cannot load timezone data"
#~ msgstr "Ordu eremuen datuak ezin bereganatu"

# ../gnome-map/gglobe-canvas.c:719 ../gnome-map/timezonemapmodule.c:731
#~ msgid "gglobe-canvas"
#~ msgstr "Lurraren Mapa"

# ../gnome-map/gglobe-canvas.c:764
#~ msgid "View: "
#~ msgstr "Begiztatu:"

# ../iw/welcome_gui.py:11 ../iw/welcome_gui.py:38 ../text.py:879
# ../text.py:914
#, fuzzy
#~ msgid "Welcome to "
#~ msgstr "Ongietorria"

# ../loader/loader.c:657
#, fuzzy
#~ msgid ""
#~ "? If you don't see the disk drive you're using listed here, press F2 to "
#~ "configure additional devices."
#~ msgstr ""
#~ "Badirudi zure sisteman disko gogorrik ez dagoela. Beste tramankuluren "
#~ "bategokitzerik nahi dozu?"

# ../loader/urls.c:160
#, fuzzy
#~ msgid ""
#~ "Please enter the following information:\n"
#~ "\n"
#~ "    o the name or IP number of your FTP server\n"
#~ "    o the directory on that server containing\n"
#~ "      "
#~ msgstr ""
#~ "Datozten ezaugarriak bete itzazu mesedez:\n"
#~ "\n"
#~ "    o FTP zerbitzariaren IP zenbakia edo Izena\n"
#~ "    o Red Hat Linux-eko Ezarketa fitxategiak dituen\n"
#~ "      zerbitzariaren direktorioa\n"

# ../gui.py:571
#~ msgid "Red Hat Linux Installer"
#~ msgstr "Red Hat Linux-eko Ezartzailea"

# ../textw/userauth_text.py:25
#~ msgid "Password (again):"
#~ msgstr "Hitz-ezkutua (berriro):"

# ../textw/userauth_text.py:80
#~ msgid "User ID"
#~ msgstr "Erabiltzailearen Nortasuna"

# ../text.py:307 ../text.py:326
#~ msgid "Red Hat Linux"
#~ msgstr "Red Hat Linux"

# ../loader/lang.c:337 ../loader/loader.c:146
#~ msgid "Welcome to Red Hat Linux"
#~ msgstr "Red Hat Linux-era Ongietorria"

# ../libfdisk/fsedit.c:912 ../libfdisk/fsedit.c:919 ../libfdisk/fsedit.c:926
# ../libfdisk/fsedit.c:935 ../libfdisk/fsedit.c:962 ../libfdisk/fsedit.c:975
# ../libfdisk/fsedit.c:985 ../libfdisk/fsedit.c:1014
# ../libfdisk/fsedit.c:1024 ../libfdisk/fsedit.c:1041
# ../libfdisk/fsedit.c:1451 ../libfdisk/gnomefsedit.c:778
# ../libfdisk/gnomefsedit.c:813 ../libfdisk/gnomefsedit.c:1161
# ../libfdisk/gnomefsedit.c:1198 ../libfdisk/gnomefsedit.c:1232
# ../libfdisk/gnomefsedit.c:1251 ../libfdisk/gnomefsedit.c:1405
# ../libfdisk/gnomefsedit.c:1480 ../libfdisk/gnomefsedit.c:1530
# ../libfdisk/gnomefsedit.c:1593 ../libfdisk/gnomefsedit.c:1611
# ../libfdisk/gnomefsedit.c:1891 ../libfdisk/gnomefsedit.c:1900
# ../libfdisk/gnomefsedit.c:2137 ../libfdisk/gnomefsedit.c:2145
# ../libfdisk/gnomefsedit.c:2189 ../libfdisk/gnomefsedit.c:2199
# ../libfdisk/gnomefsedit.c:2206 ../libfdisk/gnomefsedit.c:2221
# ../libfdisk/gnomefsedit.c:2230 ../libfdisk/gnomefsedit.c:2239
# ../libfdisk/gnomefsedit.c:2278 ../libfdisk/gnomefsedit.c:2407
# ../libfdisk/gnomefsedit.c:2449 ../libfdisk/newtfsedit.c:168
# ../libfdisk/newtfsedit.c:344 ../libfdisk/newtfsedit.c:572
# ../libfdisk/newtfsedit.c:634 ../libfdisk/newtfsedit.c:667
# ../libfdisk/newtfsedit.c:693 ../libfdisk/newtfsedit.c:712
# ../libfdisk/newtfsedit.c:810 ../libfdisk/newtfsedit.c:1438
# ../libfdisk/newtfsedit.c:1446 ../libfdisk/newtfsedit.c:1571
# ../libfdisk/newtfsedit.c:1592 ../libfdisk/newtfsedit.c:1618
# ../libfdisk/newtfsedit.c:1701 ../loader/urls.c:78 ../loader/urls.c:87
# ../loader/urls.c:94 ../loader/urls.c:244 ../text.py:57 ../text.py:59
# ../text.py:418 ../textw/constants_text.py:10 ../textw/lilo_text.py:117
# ../textw/lilo_text.py:202 ../textw/mouse_text.py:27
# ../textw/silo_text.py:136 ../textw/silo_text.py:149
# ../textw/silo_text.py:205
#~ msgid "Ok"
#~ msgstr "Onartu"

# ../libfdisk/fsedit.c:395
#~ msgid "partitioning did not meet requirements"
#~ msgstr "disko zatiketak eskatutakoak ez ditu betetzen"

# ../libfdisk/fsedit.c:913
#~ msgid "The %s directory must be on the root filesystem."
#~ msgstr "%s direktorioak erro fitxategitzan egon beharko luke."

# ../libfdisk/fsedit.c:920
#~ msgid ""
#~ "The mount point %s is illegal.\n"
#~ "\n"
#~ "Mount points must begin with a leading /."
#~ msgstr ""
#~ "%s loturagunea baliogabea da.\n"
#~ "\n"
#~ "Loturaguneek / ikurrarekin hasi behar dute."

# ../libfdisk/fsedit.c:927
#~ msgid ""
#~ "The mount point %s is illegal.\n"
#~ "\n"
#~ "Mount points may not end with a /."
#~ msgstr ""
#~ "%s loturagunea baliogabea da.\n"
#~ "\n"
#~ "Loturaguneek / ikurrarekin ezin dute amaitu."

# ../libfdisk/fsedit.c:936
#~ msgid ""
#~ "The mount point %s is illegal.\n"
#~ "\n"
#~ "Mount points may only printable characters."
#~ msgstr ""
#~ "%s loturagunea baliogabea da.\n"
#~ "\n"
#~ "Loturaguneek ohizko hizkiak eduki dezakete soilik."

# ../libfdisk/fsedit.c:944
#~ msgid ""
#~ "You've asked to put your root (/) filesystem on a DOS-style FAT "
#~ "partition. You can do this, but you may not use any other filesystems for "
#~ "your Linux system. Additionally, there will be a speed penalty for not "
#~ "using Linux-native partitions. Do you want to continue?"
#~ msgstr ""
#~ "Zure erro (/) fitxategitza FAT erako disko zati baten gainean kokatzea "
#~ "erabaki duzu. Adar jotzen? Hobeto da Linux sistemak beste motatako "
#~ "fitxategitzarik ez badu erabiltzen. Gainera, Linux motako disko zatiak ez "
#~ "erabiltzeak sistemaren abiadura ikaragarri moteltzen du. Jarraitzea nahi "
#~ "dozu?"

# ../libfdisk/fsedit.c:963
#~ msgid ""
#~ "The mount point %s is illegal.\n"
#~ "\n"
#~ "System partitions must be on Linux Native partitions."
#~ msgstr ""
#~ "%s loturagunea baliogabea da.\n"
#~ "\n"
#~ "Sistemako zatiak Linux Motako zatietan lotu behar dira."

# ../libfdisk/fsedit.c:976
#~ msgid "On this platform, /boot must be on a DOS-compatible filesystem %x."
#~ msgstr ""
#~ "Plataforma honetan, /boot-ek  DOS-ekin konpatiblea den %x fitxategitza "
#~ "batean egon behar du"

# ../libfdisk/fsedit.c:986
#~ msgid ""
#~ "The mount point %s is illegal.\n"
#~ "\n"
#~ "/usr must be on a Linux Native partition or an NFS volume."
#~ msgstr ""
#~ "%s loturagunea baliogabea da.\n"
#~ "\n"
#~ "/usr Linux Motako zatian, edo NFS bitartez, lotuta egon behar du."

# ../libfdisk/fsedit.c:1014
#~ msgid "Too Many Drives"
#~ msgstr "Disko Gogor Gehiegi"

# ../libfdisk/fsedit.c:1015
#~ msgid ""
#~ "You have more drives than this program supports. Please use the standard "
#~ "fdisk program to setup your drives and please notify Red Hat Software "
#~ "that you saw this message."
#~ msgstr ""
#~ "Programa honek erabil dezakeen baino disko gogor gehiago dauzkazu. Disko "
#~ "zatiketak egiteko 'fdisk' programa erabili, mesedez. Sisteman mezu hau "
#~ "agertu zaizula esanez Red Hat Software-ari ohartarazi iezaiozu. Mila "
#~ "Esker."

# ../libfdisk/fsedit.c:1024
#~ msgid "Error Creating Device Nodes"
#~ msgstr "Tramankuluen loturaguneak sortzerakoan akatsa"

# ../libfdisk/fsedit.c:1025
#~ msgid ""
#~ "An error has occurred while trying to create device nodes for the hard "
#~ "drives in your system.  This may be because you have run out of disk "
#~ "space on the /tmp partition."
#~ msgstr ""
#~ "Zure sistemako disko gogorrentzat loturaguneak sortzean akatsa gertatu "
#~ "da. Horren zergatia /tmp daukan disko zatia lekurik gabe gelditzea izan "
#~ "daiteke."

# ../libfdisk/fsedit.c:1042
#~ msgid ""
#~ "An error has occurred - no valid devices were found on which to create "
#~ "new filesystems.  Please check your hardware for the cause of this "
#~ "problem."
#~ msgstr ""
#~ "Akats bat gertatu da. Fitxategitza berriak sortzeko tramankulurik ez da "
#~ "aurkitu. Arazo honen zergatia aztertzeko ordenagailuko 'hardware'-a "
#~ "ikuskatu mesedez."

# ../libfdisk/fsedit.c:1418 ../libfdisk/fsedit.c:1439
#~ msgid "Skip Drive"
#~ msgstr "Diskoa Ahaztu"

# ../libfdisk/fsedit.c:1412
#~ msgid ""
#~ "The partition table on device %s is corrupted.  To create new partitions "
#~ "it must be initialized, causing the loss of ALL DATA on this drive."
#~ msgstr ""
#~ "%s-ko zati-taula izurrauta dago. Disko zati berriak egiteko guztiak "
#~ "ezabatu beharko dira, eta diskoko EDUKIN GUZTIA GALDUKO DA."

# ../libfdisk/fsedit.c:1417
#~ msgid "Bad Partition Table"
#~ msgstr "Zati-taula okerra"

# ../libfdisk/fsedit.c:1451
#~ msgid "BSD Disklabel"
#~ msgstr "BSD Diskoaren Izena"

# ../libfdisk/fsedit.c:1451
#~ msgid ""
#~ "A disk with a BSD disklabel has been found. The Red Hat installation only "
#~ "supports BSD Disklabels in read-only mode, so you must use a custom "
#~ "install and fdisk (instead of Disk Druid) for machines with BSD "
#~ "Disklabels."
#~ msgstr ""
#~ "BSD disko txarteldun bat aurkitu da. Red Hat-eko ezarketa tresnak BSD "
#~ "disko txarteldunak irakurteran soilik erabiltzeko gai da. Hori dela eta, "
#~ "norberekatutako ezarketa mota hautatu beharko duzu. Horretaz gain, BSD "
#~ "disko txarteldunak daukaten ordenagailuetan Disk Druid-en ordez fdisk "
#~ "erabili behar duzu."

# ../libfdisk/fsedit.c:1481
#~ msgid "System error %d"
#~ msgstr "Sistemako %d akatsa"

# ../libfdisk/fsedit.c:1490 ../libfdisk/fsedit.c:1492
#~ msgid "Fdisk Error"
#~ msgstr "Fdisk-eko Akatsa"

# ../libfdisk/gnomefsedit.c:550 ../libfdisk/gnomefsedit.c:851
#~ msgid "<Swap Partition>"
#~ msgstr "<Disko-Trukagune Zatia>"

# ../libfdisk/newtfsedit.c:1571
#, fuzzy
#~ msgid "Root partition"
#~ msgstr "Erro disko-zatirik ez dago"

# ../libfdisk/gnomefsedit.c:728 ../libfdisk/newtfsedit.c:836
#~ msgid "Delete Partition"
#~ msgstr "Disko Zatia Ezabatu"

# ../libfdisk/gnomefsedit.c:779 ../libfdisk/newtfsedit.c:345
#~ msgid ""
#~ "You have defined the '/' filesystem on a non-ext2 partition, so you "
#~ "cannot edit other partitions."
#~ msgstr ""
#~ "'/' fitxategitza ext2 motakoa ez den disko zatian zehaztu duzu, hori dela "
#~ "eta, beste disko zatirik ezin duzu argitatu."

# ../libfdisk/gnomefsedit.c:866 ../libfdisk/newtfsedit.c:408
#~ msgid "Size (Megs):"
#~ msgstr "Neurria (MB):"

# ../libfdisk/gnomefsedit.c:898
#~ msgid "Use remaining space?"
#~ msgstr "Erabili gebako leku huts osoa hartu?"

# ../libfdisk/gnomefsedit.c:917 ../libfdisk/newtfsedit.c:440
#~ msgid "Allocation Status:"
#~ msgstr "Esleipenaren Egoera:"

# ../libfdisk/gnomefsedit.c:921 ../libfdisk/newtfsedit.c:442
#~ msgid "Successful"
#~ msgstr "Egokia"

# ../libfdisk/gnomefsedit.c:924 ../libfdisk/newtfsedit.c:444
#~ msgid "Failed"
#~ msgstr "Porrot"

# ../libfdisk/gnomefsedit.c:936 ../libfdisk/newtfsedit.c:449
#~ msgid "Failure Reason:"
#~ msgstr "Porrotaren Zergatia:"

# ../libfdisk/gnomefsedit.c:950 ../libfdisk/gnomefsedit.c:1943
#~ msgid "Partition Type:"
#~ msgstr "Disko Zati Mota:"

# ../libfdisk/gnomefsedit.c:1136 ../libfdisk/gnomefsedit.c:2137
# ../libfdisk/newtfsedit.c:610
#~ msgid "No Mount Point"
#~ msgstr "Loturagunerik Ez dago"

# ../libfdisk/gnomefsedit.c:1137 ../libfdisk/newtfsedit.c:611
#~ msgid ""
#~ "You have not selected a mount point for this partition. Are you sure you "
#~ "want to do this?"
#~ msgstr ""
#~ "Disko-Zati honentzako loturagunerik ez duzu hautatu. Benetan horrela "
#~ "izatea nahi al dozu?"

# ../libfdisk/gnomefsedit.c:1161 ../libfdisk/gnomefsedit.c:1198
# ../libfdisk/gnomefsedit.c:2145 ../libfdisk/newtfsedit.c:634
# ../libfdisk/newtfsedit.c:667
#~ msgid "Mount Point Error"
#~ msgstr "Loturagunean Akatsa"

# ../libfdisk/gnomefsedit.c:1162 ../libfdisk/newtfsedit.c:635
#~ msgid ""
#~ "You have tried to assign the '/' mount point to a FAT-style partition.  "
#~ "You cannot do this now because mount points have been assigned to ext2 "
#~ "partitions also.  Clear those mount points and then you will be able to "
#~ "assign '/' to this partition."
#~ msgstr ""
#~ "FAT motako disko zati batean '/' loturagunea zehazten saiatu zara. "
#~ "Ezinezkoa da ordea, zeren eta ext2 motako disko zatiei jarri bait zaie "
#~ "loturaguneak. Loturagune hauek ezabatu, eta '/' nahi duzun disko zatian "
#~ "ezarri ahal izango duzu."

# ../libfdisk/gnomefsedit.c:1199 ../libfdisk/newtfsedit.c:668
#~ msgid ""
#~ "The mount point requested is either an illegal path or is already in use. "
#~ "Please select a valid mount point."
#~ msgstr ""
#~ "Eskatutako loturagunearen bidea txarto dago edo iadanik beste batek "
#~ "darabil. Loturagune baliagarri bat hautatu, mesedez."

# ../libfdisk/gnomefsedit.c:1233 ../libfdisk/newtfsedit.c:694
#~ msgid ""
#~ "The size requested is illegal. Make sure the size is greater and zero "
#~ "(0), and is specified int decimal (base 10) format."
#~ msgstr ""
#~ "Eskatutako neurria txarto dago. Neurria zero (0) baino handiagoa eta "
#~ "hamartar erako zenbakia dela ziurtatu zaitez. "

# ../libfdisk/gnomefsedit.c:1252 ../libfdisk/gnomefsedit.c:227
# ../libfdisk/newtfsedit.c:713
#~ msgid ""
#~ "You have created a swap partition which is too large. The maximum size of "
#~ "a swap partition is %ld Megabytes."
#~ msgstr ""
#~ "Disko Trukagune handiegi bat sortu duzu. Gehieneko neurria %ld MByte-"
#~ "takoa izan daiteke."

# ../libfdisk/gnomefsedit.c:1266
#~ msgid "No Drives Specified"
#~ msgstr "Tramankulu zehazturik ez dago"

# ../libfdisk/gnomefsedit.c:1268
#~ msgid "You must constrain this partition to at least one drive."
#~ msgstr "Zati hau disko batekin behintzat llluto behar duzu."

# ../libfdisk/gnomefsedit.c:1276 ../libfdisk/gnomefsedit.c:1283
#~ msgid "No RAID Drive Constraint"
#~ msgstr "RAID diskoa Izendatubarik dago"

# ../libfdisk/gnomefsedit.c:1278
#~ msgid ""
#~ "You have configured a RAID partition without constraining the partition "
#~ "to a single drive.\n"
#~ " Are you sure you want to do this?"
#~ msgstr ""
#~ "Disko bakar bati izendatubariko RAID zati bat egoktitu diozu.\n"
#~ "Horrela gertatzea nahi al duzu?"

# ../libfdisk/gnomefsedit.c:1285
#~ msgid ""
#~ "You have configured a RAID partition without constraining the partition "
#~ "to a single drive. Please select one drive to constrain this partition to."
#~ msgstr ""
#~ "Disko bakar bati izendatubariko RAID zati bat egokitu diozu. Izendatu "
#~ "beharreko diskoa hautatu."

# ../libfdisk/gnomefsedit.c:1405 ../libfdisk/newtfsedit.c:810
#~ msgid "Cannot Add Partitions"
#~ msgstr "Zehaztugabeko Disko Zatiak"

# ../libfdisk/gnomefsedit.c:1406 ../libfdisk/newtfsedit.c:811
#~ msgid ""
#~ "You have defined the '/' filesystem on a non-ext2 partition, so you "
#~ "cannot add other partitions."
#~ msgstr ""
#~ "'/' fitxategitza ext2 motakoa ez den disko zatian zehaztu duzu, beraz, "
#~ "beste disko zatirik ezin duzu gehitu."

# ../libfdisk/gnomefsedit.c:1480
#~ msgid "RAID Entry Incomplete"
#~ msgstr "RAID-eko Sarrera Osatubarik"

# ../libfdisk/gnomefsedit.c:1481
#~ msgid ""
#~ "The raid device /dev/%s now contains partitions which are unallocated. "
#~ "The raid device /dev/%s will now be decomposed into its component "
#~ "partitions. Please recompose the raid device with allocated partitions."
#~ msgstr ""
#~ "/dev/%s RAID tramankuluak zati bat edo beste oker izendatutakoak dauzka. /"
#~ "dev/%s tramankulua bere jatorrizko egoerara itzuliko da. Berriro egokitu, "
#~ "mesedez."

# ../libfdisk/gnomefsedit.c:1530
#~ msgid "Cannot Remove /boot"
#~ msgstr "/boot ezin ezabatu"

# ../libfdisk/gnomefsedit.c:1531
#~ msgid ""
#~ "You cannot remove \"/boot\" if \"/\" is on a RAID device.  Switch \"/\" "
#~ "to a non-RAID device first."
#~ msgstr ""
#~ "Ezin duzu \\\"/boot\\\" ezabatu baldin eta \\\"/\\\" RAID tramankulu "
#~ "batean badago. Lehendabizi  \\\"/\\\" loturagunea RAID ez den tramankulu "
#~ "batera aldatu."

# ../libfdisk/gnomefsedit.c:1593 ../libfdisk/gnomefsedit.c:1612
# ../libfdisk/newtfsedit.c:136 ../libfdisk/newtfsedit.c:1638
#~ msgid "Unallocated Partitions"
#~ msgstr "Zehaztugabeko Disko Zatiak"

# ../libfdisk/gnomefsedit.c:1597 ../libfdisk/gnomefsedit.c:1607
# ../libfdisk/newtfsedit.c:140
#~ msgid ""
#~ "There are currently unallocated partition(s) present in the list of "
#~ "requested partitions. The unallocated partition(s) are shown below, along "
#~ "with the reason they were not allocated."
#~ msgstr ""
#~ "Eskatutako disko-zatietan izendatubariko hainbat zati daude. "
#~ "Izendatubariko zatiak, izendatubarik egotearen zergatiarekin batera, "
#~ "beheraxeago zerrendatzen dira."

# ../libfdisk/gnomefsedit.c:1891
#~ msgid "Cannot Edit Raid"
#~ msgstr "RAID ezin argitatu"

# ../libfdisk/gnomefsedit.c:1892
#~ msgid ""
#~ "You have defined the '/' filesystem on a non-ext2 partition, so you "
#~ "cannot edit RAID devices."
#~ msgstr ""
#~ "'/' ext2 motakoa ez den disko zatian zehaztu duzu, beraz, ezingo duzu "
#~ "RAID tramankulurik argitatu."

# ../libfdisk/gnomefsedit.c:2011
#~ msgid "RAID Type:"
#~ msgstr "RAID Mota:"

# ../libfdisk/gnomefsedit.c:2048
#~ msgid "Partitions For RAID Array:"
#~ msgstr "RAID multzoaren zatiketak:"

# ../libfdisk/gnomefsedit.c:2138
#~ msgid "You have not selected a mount point. A mount point is required."
#~ msgstr "Loturagunerik hautatubarik dago. Loturagune bat behar da."

# ../libfdisk/gnomefsedit.c:2182
#~ msgid ""
#~ "The bootable raid device can only include partitions from the first two "
#~ "drives on your system.\n"
#~ "\n"
#~ "These drives are: "
#~ msgstr ""
#~ "Abiakorra den RAID tramankuluak sistemako lehen bi disko zati bakarrik "
#~ "eduki dezake.\n"
#~ "\n"
#~ "Diskoak hauek dira: "

# ../libfdisk/gnomefsedit.c:2189
#~ msgid "Booting From RAID Warning"
#~ msgstr "RAID-etik abiaketaren Oharra"

# ../libfdisk/gnomefsedit.c:2200
#~ msgid "You need to selected a RAID device."
#~ msgstr "RAID tramankulu bat hautatu behar duzu."

# ../libfdisk/gnomefsedit.c:2206
#~ msgid "Used Raid Device"
#~ msgstr "RAID tramankulua beste batek darabil"

# ../libfdisk/gnomefsedit.c:2220
#~ msgid "Not Enough Partitions"
#~ msgstr "Behar haina disko zatirik ez daude"

# ../libfdisk/gnomefsedit.c:2222
#~ msgid ""
#~ "You have not configured enough partitions for the RAID type you have "
#~ "selected."
#~ msgstr ""
#~ "Hautatutako RAID motarentzat behar haina egokituriko disko zatirik ez "
#~ "dago."

# ../libfdisk/gnomefsedit.c:2229
#~ msgid "Illegal /boot RAID Type"
#~ msgstr "/boot-entzako RAID mota hau desegokia da"

# ../libfdisk/gnomefsedit.c:2231
#~ msgid "Boot partitions (/boot) are only allowed on RAID-1."
#~ msgstr "Abiatzeko disko-zatiak (/boot) RAID-1.ean egon behar dute."

# ../libfdisk/gnomefsedit.c:2238
#~ msgid "Illegal RAID mountpoint"
#~ msgstr "RAID-arentzako loturagune desegokia da"

# ../libfdisk/gnomefsedit.c:2240
#~ msgid ""
#~ "RAID partitions cannot be mounted as root (/) on Alpha without a /boot "
#~ "partition (non-RAID) as well."
#~ msgstr "Alpha batean RAID-zati batek erro (/) bezala lotuta ezin du egon."

# ../libfdisk/gnomefsedit.c:2323
#~ msgid ""
#~ "The partition %s is a pre-existing partition in the set of partitions for "
#~ "this RAID device.  The mount point is set to /boot. Are you sure that it "
#~ "is possible to boot from this partition?"
#~ msgstr ""
#~ "%s zatia RAID tramankuluko zati multzoko aurrez zegoen zati bat da. "
#~ "Loturagunea /boot bezala jarria da. Ziur al zaude zati honetatik abiatu "
#~ "daitekeela?"

# ../libfdisk/gnomefsedit.c:2330
#~ msgid "Use Pre-existing Partition?"
#~ msgstr "Aurrez zegoen Zatia Erabili?"

# ../libfdisk/gnomefsedit.c:2407
#~ msgid "Cannot Add RAID Devices"
#~ msgstr "RAID tramankulurik ez da ageri"

# ../libfdisk/gnomefsedit.c:2408
#~ msgid ""
#~ "You have defined the '/' filesystem on a non-ext2 partition, so you "
#~ "cannot add RAID devices."
#~ msgstr ""
#~ "'/' ext2 motakoa ez den disko zati batean zehaztu duzu, hori dela eta "
#~ "ezingo duzu RAID tramankulurik gehitu."

# ../libfdisk/gnomefsedit.c:2449
#~ msgid "Auto-Partition"
#~ msgstr "Bere kasa Zatikatu"

# ../libfdisk/gnomefsedit.c:2456
#~ msgid "Using Existing Disk Space"
#~ msgstr "Diskako leku hutsa erabiltzen"

# ../libfdisk/gnomefsedit.c:2475
#~ msgid "Remove Linux partitions"
#~ msgstr "Linux disko-zatiak ezabatu"

# ../libfdisk/gnomefsedit.c:2486
#~ msgid "Use existing free space"
#~ msgstr "Diskoko leku hutsa erabili"

# ../libfdisk/gnomefsedit.c:2498
#~ msgid "Intended Use"
#~ msgstr "Erabilkeraren Asmoa"

# ../libfdisk/gnomefsedit.c:2618
#~ msgid "Are you sure you want to remove this RAID device?"
#~ msgstr "RAID tramankulu hau ezabatzera zoazela ziur zaude?"

# ../libfdisk/gnomefsedit.c:2669 ../libfdisk/newtfsedit.c:1741
#~ msgid "Reset Partition Table"
#~ msgstr "Disko-zatien Taula Berrezarri"

# ../libfdisk/gnomefsedit.c:2671 ../libfdisk/newtfsedit.c:1743
#~ msgid "Reset partition table to original contents? "
#~ msgstr "Disko-zatien taula jatorrizko balioekin ezartzea nahi al duzu?"

# ../libfdisk/gnomefsedit.c:2707 ../libfdisk/gnomefsedit.c:2758
#~ msgid "<Swap>"
#~ msgstr "<Disko Trukagunea>"

# ../libfdisk/gnomefsedit.c:270
#~ msgid "<RAID>"
#~ msgstr "<RAID>"

# ../libfdisk/gnomefsedit.c:2711
#~ msgid "<not set>"
#~ msgstr "<egituratubarik>"

# ../libfdisk/gnomefsedit.c:2994
#~ msgid "Requested"
#~ msgstr "Betebeharrekoak"

# ../libfdisk/gnomefsedit.c:299
#~ msgid "Actual"
#~ msgstr "Oraingoa"

# ../libfdisk/gnomefsedit.c:3169
#~ msgid "Geom [C/H/S]"
#~ msgstr "Geometria [Z/B/S]"

# ../libfdisk/gnomefsedit.c:317
#~ msgid "Total (M)"
#~ msgstr "Guztira"

# ../libfdisk/gnomefsedit.c:3171
#~ msgid "Free (M)"
#~ msgstr "Erabiligabekoa (M)"

# ../libfdisk/gnomefsedit.c:317
#~ msgid "Used (M)"
#~ msgstr "Erabilia (M)"

# ../libfdisk/gnomefsedit.c:3173
#~ msgid "Used (%)"
#~ msgstr "Erabilia (%)"

# ../libfdisk/gnomefsedit.c:3409
#~ msgid "Unallocated Partitions Exist..."
#~ msgstr "Izendatubariko Disko-zatiak daude..."

# ../libfdisk/gnomefsedit.c:3415 ../libfdisk/gnomefsedit.c:3429
#~ msgid ""
#~ "You must assign a root (/) partition to a Linux native partition (ext2) "
#~ "or a RAID partition for the install to proceed."
#~ msgstr ""
#~ "Erro (/) disko-zatia Linux motako (ext2) disko-zati batean izendatu behar "
#~ "duzu, edo ezarketarekin jarraitzeko RAID-zati bat eduki behar duzu."

# ../libfdisk/gnomefsedit.c:3500
#~ msgid "Partitions"
#~ msgstr "Disko-zatiak"

# ../libfdisk/gnomefsedit.c:3530
#~ msgid "_Add..."
#~ msgstr "_Gehitu..."

# ../libfdisk/gnomefsedit.c:3537
#~ msgid "_Edit..."
#~ msgstr "_Argitatu..."

# ../libfdisk/gnomefsedit.c:3556
#~ msgid "_Make RAID Device"
#~ msgstr "RAID Tramankulua _Sortu"

# ../libfdisk/gnomefsedit.c:3566
#~ msgid "Auto Partition"
#~ msgstr "Berekasakako Disko Zatiketa"

# ../libfdisk/gnomefsedit.c:3575
#~ msgid "Drive Summary"
#~ msgstr "Diskoen Laburpena"

# ../libfdisk/newtfsedit.c:202
#~ msgid "Swap Partition"
#~ msgstr "Disko Trukagune Zatia"

# ../libfdisk/newtfsedit.c:208
#~ msgid "Raid Partition"
#~ msgstr "Raid Disko Zatia"

# ../libfdisk/newtfsedit.c:363
#~ msgid "Edit New Partition"
#~ msgstr "Disko Zatia Berria Argitatu"

# ../libfdisk/newtfsedit.c:428
#~ msgid "Use remaining space?:"
#~ msgstr "Diskoan soberan dagoen lekua erabili?:"

# ../libfdisk/newtfsedit.c:472
#~ msgid "Type:"
#~ msgstr "Mota:"

# ../libfdisk/newtfsedit.c:1422
#~ msgid "Current Disk Partitions"
#~ msgstr "Oraingo Disko Zatiak"

# ../libfdisk/newtfsedit.c:1452
#~ msgid ""
#~ "    F1-Help     F2-Add      F3-Edit   F4-Delete    F5-Reset    F12-"
#~ "Ok        "
#~ msgstr ""
#~ "   F1-Laguntza   F2-Gehitu   F3-Argitatu   F4-Ezabatu   F5-Garbitu   F12-"
#~ "Onartu"

# ../libfdisk/newtfsedit.c:1455
#~ msgid "Drive Summaries"
#~ msgstr "Diskoen Laburpenak"

# ../libfdisk/newtfsedit.c:1457
#~ msgid "  Drive      Geom [C/H/S]      Total    Used    Free"
#~ msgstr "  Diskoa    Geom [Z/B/S]     Guztira Erabilia ErabilGabea"

# ../libfdisk/newtfsedit.c:157
#~ msgid ""
#~ "You must assign a root (/) partition to a Linux native partition (ext2) "
#~ "for the install to proceed."
#~ msgstr ""
#~ "Ezarketak jarraitu dezan, erro (/) disko-zatia Linux motako (ext2) disko-"
#~ "zati batean jarri behar duzu."

# ../libfdisk/newtfsedit.c:1591
#~ msgid "No Swap Partition"
#~ msgstr "Disko Trukagune Zatirik ez dago"

# ../libfdisk/newtfsedit.c:1593
#~ msgid "You must assign a swap partition for the install to proceed."
#~ msgstr ""
#~ "Ezarketak aurrera jarraitu dezan, trukagune zatia kokatu behar duzu."

# ../libfdisk/newtfsedit.c:161
#~ msgid "No /boot/efi Partition"
#~ msgstr "/boot/efi disko zatirik ez dago"

# ../libfdisk/newtfsedit.c:1619
#~ msgid ""
#~ "You must assign the mount point /boot/efi to a FAT-style primary "
#~ "partition for the install to proceed."
#~ msgstr ""
#~ "Ezarketak aurrera jarraitu dezan, /boot/efi loturagunea FAT motako "
#~ "lehengai (primary)  disko zatiarekin lotu behar duzu."

# ../libfdisk/newtfsedit.c:1640
#~ msgid ""
#~ "There are unallocated partitions left. If you quit now they will not be "
#~ "written to the disk.\n"
#~ "\n"
#~ "Are you sure you want to exit?"
#~ msgstr ""
#~ "Izendatubariko zenbait disko-zati aurkitu dira. Orain etsi ezkero, "
#~ "diskoan ez dira idatziak izango.\n"
#~ "\n"
#~ "Ziur zaude irtetzea nahi duzula?"

# ../libfdisk/newtfsedit.c:1656
#~ msgid "Save Changes"
#~ msgstr "Aldaketak Gorde"

# ../libfdisk/newtfsedit.c:1658
#~ msgid "Save changes to partition table(s)?"
#~ msgstr "Aldaketak Disko-Zatien Taulan gorde?"

# ../libfdisk/newtfsedit.c:1702
#~ msgid "You may only delete NFS mounts."
#~ msgstr "NFS loturak bakarrik ezabatu ditzakezu"

# ../iw/account_gui.py:43
#, fuzzy
#~ msgid "Passwords do not match.asdfasdfdsafasdfdf"
#~ msgstr "Sistemako Arduradunaren (root) hitz-ezkutuek ez datoz bat."

# ../iw/xconfig_gui.py:13
#~ msgid "Horizontal Frequency Range"
#~ msgstr "Zeharkako Maiztasun Muga"

# ../iw/xconfig_gui.py:14
#~ msgid "Vertical Frequency Range"
#~ msgstr "Goitibeherako Maiztasun Muga"

# ../libfdisk/gnomefsedit.c:2206
#, fuzzy
#~ msgid "Make Raid Device"
#~ msgstr "RAID tramankulua beste batek darabil"

# ../libfdisk/gnomefsedit.c:3409
#, fuzzy
#~ msgid "Could not allocated requested partitions: %s."
#~ msgstr "Izendatubariko Disko-zatiak daude..."

# ../comps/comps-master:608
#, fuzzy
#~ msgid "Samba Server:"
#~ msgstr "SMB (Samba) Zerbitzaria"

# ../text.py:895 ../text.py:963 ../textw/userauth_text.py:9
#, fuzzy
#~ msgid "GRUB Password"
#~ msgstr "Sistemako Arduradunaren (root) Pasahitza"

# ../iw/account_gui.py:183
#, fuzzy
#~ msgid "Bootloader Password: "
#~ msgstr "Sistemako Arduradunaren (root) hitz-ezkutua:"

# ../text.py:820
#~ msgid ""
#~ "An internal error occurred in the installation program. Please report "
#~ "this error to Red Hat (through the bugzilla.redhat.com web site) as soon "
#~ "as possible. The information on this failure may be saved to a floppy "
#~ "disk, and will help Red Hat in fixing the problem.\n"
#~ "\n"
#~ msgstr ""
#~ "Ezarketa programan barruko akats bat gertatu da. Akatsaren kopia bat ahal "
#~ "den azkarren Red Hat-era ( bugzilla.redhat.com web gunearen bitartez) "
#~ "bidali, mesedez. Akats honen ezaugarriei buruzko informazioa diskete "
#~ "batean gorde daiteke, eta Red Hat-i arazo hau konpontzen lagunduko dio.\n"
#~ "\n"

# ../text.py:945
#, fuzzy
#~ msgid "Filesystem Missing"
#~ msgstr "Fitxategitza Moldatzen"

# ../libfdisk/gnomefsedit.c:1268
#, fuzzy
#~ msgid "You cannot edit partitions without a filesystem type."
#~ msgstr "Zati hau disko batekin behintzat llluto behar duzu."

# ../iw/lilo_gui.py:189 ../iw/lilo_gui.py:331 ../iw/silo_gui.py:127
# ../iw/silo_gui.py:279 ../text.py:933 ../text.py:939
#, fuzzy
#~ msgid "Navigation"
#~ msgstr "Disko Zatiketa"

# ../iw/account_gui.py:39
#, fuzzy
#~ msgid "Please enter a password for the root user."
#~ msgstr "Mesedez, sistemako arduradunaren hitz ezkutua sartu."

# ../iw/congrats_gui.py:33 ../text.py:514
#, fuzzy
#~ msgid ""
#~ "Congratulations, installation is complete.\n"
#~ "\n"
#~ "Press return to reboot, and be sure to remove your boot medium after the "
#~ "system reboots, or your system will rerun the install. For information on "
#~ "fixes which are available for this release of Red Hat Linux, consult the "
#~ "Errata available from http://www.redhat.com/errata.\n"
#~ "\n"
#~ "Information on configuring and using your Red Hat Linux system is "
#~ "contained in the Red Hat Linux manuals."
#~ msgstr ""
#~ "Ezarketa amaitu da, Zorionak!\n"
#~ "\n"
#~ "Ordenagailua berpizteko, disketea edo CDROM-a ordenagailutik atera ostean "
#~ "lerro-itzulera sakatu. Red Hat Linux-eko hedapen honen bertsioaren "
#~ "eguneraketen berri gehiago edukitzeko http://www.redhat.com/errata "
#~ "ataleko Utsegite ('Errata') atala ikuskatu.\n"
#~ "\n"
#~ "Red Hat Linux-en egokitzaketa eta erabilkeraren berri Red Hat Linux-eko "
#~ "eskuliburuetan aurkituko duzu."

# ../libfdisk/newtfsedit.c:1593
#, fuzzy
#~ msgid "You must first select an existing partition or free space to edit."
#~ msgstr ""
#~ "Ezarketak aurrera jarraitu dezan, trukagune zatia kokatu behar duzu."

# ../textw/partitioning_text.py:15 ../textw/partitioning_text.py:58
#, fuzzy
#~ msgid "Automatic Disk Setup"
#~ msgstr "Diskoaren Egituraketa"

# ../textw/partitioning_text.py:16
#, fuzzy
#~ msgid ""
#~ "Autopartitioning sets up your partitioning in a reasonable way depending "
#~ "on your installation type and then gives you a chance to customize this "
#~ "setup.\n"
#~ "\n"
#~ "Disk Druid is a tool designed for partitioning and setting up mount "
#~ "points.  It is designed to be easier to use than Linux's traditional disk "
#~ "partitioning software, fdisk, as well as more powerful.  However, there "
#~ "are some cases where fdisk may be preferred.\n"
#~ "\n"
#~ "Which tool would you like to use?"
#~ msgstr ""
#~ "'Disk Druid' diskoak zatikatzeko eta loturaguneak zehazteko tresna bat "
#~ "da. Linux-eko 'fdisk' ohizko programa baino askoz ere errazago "
#~ "erabiltzeko burutua dago. Dena den, batzuetan 'fdisk'  erabiltzea "
#~ "onuragarriagoa gerta daiteke.\n"
#~ "\n"
#~ "Zein tresna erabiltzea nahi duzu?"

# ../iw/xconfig_gui.py:263 ../text.py:975 ../text.py:983
#~ msgid "X Configuration"
#~ msgstr "X Egokitzaketa"

# ../textw/bootdisk_text.py:32
#~ msgid ""
#~ "\n"
#~ "On SMCC made Ultra machines floppy booting probably does not work\n"
#~ "\n"
#~ msgstr ""
#~ "\n"
#~ "Ziurrenik, abiatze disketea SMCC-ren 'Ultra Machine'-tan ez dela ibiliko\n"
#~ "\n"

# ../textw/bootdisk_text.py:35 ../textw/bootdisk_text.py:56
#~ msgid "Bootdisk"
#~ msgstr "Abiatzeko disketea"

# ../textw/bootdisk_text.py:57
# ../textw/bootdisk_text.py:5u
#~ msgid ""
#~ "If you have the install floppy in your drive, first remove it. Then "
#~ "insert a blank floppy in the first floppy drive. All data on this disk "
#~ "will be erased during creation of the boot disk."
#~ msgstr ""
#~ "Diskete-tramankuluan diskete bat egon ezkero, kendu. Gero, diskete "
#~ "tramankulu nagusian diskete garbi bat sartu. Disketeko edukin guztia "
#~ "ezabatua izango da."

# ../loader/loader.c:1395
#, fuzzy
#~ msgid "Choose the languages to be installed:"
#~ msgstr "Ezarketako Sortak zein tramankulutan daude?"

# ../loader/lang.c:287
#, fuzzy
#~ msgid "Choose the default language: "
#~ msgstr "Hizkuntza bat Hautatu"

# ../libfdisk/newtfsedit.c:1571
#, fuzzy
#~ msgid "Add partition"
#~ msgstr "Erro disko-zatirik ez dago"

# ../libfdisk/newtfsedit.c:1591
#, fuzzy
#~ msgid "Not a Partition"
#~ msgstr "Disko Trukagune Zatirik ez dago"

# ../libfdisk/gnomefsedit.c:1531
#, fuzzy
#~ msgid "You cannot remove this partition as it is part of a RAID device"
#~ msgstr ""
#~ "Ezin duzu \\\"/boot\\\" ezabatu baldin eta \\\"/\\\" RAID tramankulu "
#~ "batean badago. Lehendabizi  \\\"/\\\" loturagunea RAID ez den tramankulu "
#~ "batera aldatu."

# ../libfdisk/gnomefsedit.c:2475
#, fuzzy
#~ msgid "Remove no partitions"
#~ msgstr "Linux disko-zatiak ezabatu"

# ../installclasses/custom.py:
#~ msgid "Custom System"
#~ msgstr "Norberekatutako Sistema"

# ../installclasses/server.py:8
#~ msgid "Server System"
#~ msgstr "Zerbitzari Sistema"

# ../fstab.py:216
#~ msgid ""
#~ "The kernel is unable to read your new partitioning information, probably "
#~ "because you modified extended partitions. While this is not critical, you "
#~ "must reboot your machine before proceeding. Insert the Red Hat boot disk "
#~ "now and press \"Ok\" to reboot your system.\n"
#~ msgstr ""
#~ "Kernel-ak disko zatikeketa berriaren buruzkorik ezin du irakurri, "
#~ "zatiketa zabaldua (extended) aldatu duzulako, agian. Larria ez den "
#~ "biartean aurrera jarraitu aurretik ordenagailua berpiztu ezazu. Sartu Red "
#~ "Hat Linux-eko diskete abiarazlea eta sistema berpizteko \"Onartu\" "
#~ "zapaldu.\n"

# ../textw/partitioning_text.py:308
#, fuzzy
#~ msgid "Swap Space"
#~ msgstr "Disko trukegunearen Edukiera"

# ../fstab.py:396
#, fuzzy
#~ msgid "Creating swap space..."
#~ msgstr "/dev/%s -eko disko-trukegunea egituratzen..."

# ../fstab.py:396
#, fuzzy
#~ msgid "Formatting swap space..."
#~ msgstr "/dev/%s -eko disko-trukegunea egituratzen..."

# ../fstab.py:406
#~ msgid "Error creating swap on device "
#~ msgstr "Diskoan Trukegunea sortzerakoan akatsa"

# ../fstab.py:507
#~ msgid "Error unmounting %s: %s"
#~ msgstr "%s erauztean akatsa:%s"

# ../fstab.py:553
#~ msgid "Creating RAID devices..."
#~ msgstr "Raid tramankuluak sortzen..."

# ../fstab.py:656
#~ msgid "Loopback"
#~ msgstr "Atzera Itzuli"

# ../fstab.py:657
#~ msgid "Creating loopback filesystem on device /dev/%s..."
#~ msgstr "/dev/%s-n atzera itzultzeko fitxategitza sortzen..."

# ../gui.py:575
#~ msgid "Red Hat Linux Install Shell"
#~ msgstr "Red Hat Linux-eko Ezarketako Agindu-Geruza (shell)"

# ../gui.py:587
#~ msgid "Red Hat Linux Install Shell on %s"
#~ msgstr "Red Hat Linux-eko Ezarketa Agindu-Geruza %s-ean"

# ../text.py:374
#~ msgid "X probe results"
#~ msgstr "X frogaketaren emaitzak"

# ../text.py:394 ../text.py:414
#~ msgid "Unlisted Card"
#~ msgstr "Xafla Zerrendatubarik"

# ../text.py:402
#~ msgid "Video Card Selection"
#~ msgstr "Bideo-Xafla Hautaketa"

# ../text.py:403
#~ msgid "Which video card do you have?"
#~ msgstr "Zein bideo xafla daukazu?"

# ../text.py:416
#~ msgid "X Server Selection"
#~ msgstr "X-Zerbitzaria Hautaketa"

# ../text.py:416
#~ msgid "Choose a server"
#~ msgstr "Zerbitzaria Hautatu"

# ../text.py:885 ../text.py:953
#~ msgid "Hostname Setup"
#~ msgstr "Ostalariaren Egituraketa"

# ../text.py:893 ../text.py:961
#~ msgid "Time Zone Setup"
#~ msgstr "Ordutegi Kokapenaren Egituraketa"

# ../text.py:905
#~ msgid "Configuration Complete"
#~ msgstr "Egokitzaketa Osatua"

# ../text.py:929 ../textw/lilo_text.py:33 ../textw/lilo_text.py:84
# ../textw/lilo_text.py:213
#~ msgid "LILO Configuration"
#~ msgstr "LILO-ren Egokitzaketa"

# ../text.py:943
#~ msgid "Swap"
#~ msgstr "Disko-Trukagunea"

# ../text.py:971 ../text.py:999
#~ msgid "Individual Packages"
#~ msgstr "Bakarkako Sortak"

# ../text.py:985
#~ msgid "Installation Complete"
#~ msgstr "Ezarketa Osatua"

# ../text.py:990
#~ msgid "Examine System"
#~ msgstr "Sistema Aztertu"

# ../textw/partitioning_text.py:308
#, fuzzy
#~ msgid "System Swap Space"
#~ msgstr "Disko trukegunearen Edukiera"

# ../text.py:997
#~ msgid "Customize Upgrade"
#~ msgstr "Eguneraketa Norberekatua"

# ../text.py:1000
#~ msgid "Upgrade Begins"
#~ msgstr "Eguneraketa Hasi"

# ../text.py:1006
#~ msgid "Upgrade Complete"
#~ msgstr "Eguneraketa Osatua"

# ../xf86config.py:882
#~ msgid "Plug and Play Monitor"
#~ msgstr "Ipini eta Jostatu erako Monitorea"

# ../xf86config.py:884
#~ msgid "Horizontal frequency range"
#~ msgstr "Zeharretako maiztasun mugak"

# ../xf86config.py:886
#~ msgid "Vertical frequency range"
#~ msgstr "Goitibeherako maiztasun mugak"

# ../iw/confirm_gui.py:13
#, fuzzy
#~ msgid "Aborting upgrade"
#~ msgstr "Eguneraketari Buruz"

# ../iw/format_gui.py:66
#~ msgid "Check for bad blocks while formatting"
#~ msgstr "Egituraketa egitean tangulu (bloke) txarrak begiztatu"

# ../iw/lilo_gui.py:20
#~ msgid "Lilo Configuration"
#~ msgstr "Lilo Egokitzaketa"

# ../iw/lilo_gui.py:251 ../textw/lilo_text.py:24
#~ msgid "Use linear mode (needed for some SCSI drives)"
#~ msgstr "Lerro era erabili (SCSI batzuentzat beharrezkoa)"

# ../iw/installpath_gui.py:184
#~ msgid "Install LILO"
#~ msgstr "LILO Ezarri"

# ../iw/package_gui.py:528
#, fuzzy
#~ msgid ""
#~ "The following error occurred while retreiving hdlist file:\n"
#~ "\n"
#~ "%s\n"
#~ "\n"
#~ "Installer will exit now."
#~ msgstr ""
#~ "fitxategi-buruen (headers)  zerrendako fitxategia eskuratzean akatsa "
#~ "gertatu da. Litekeena da ezarketaren lekunea (disko, cd edo beste bat) "
#~ "edo irudia izorratua egota. Ezartzailea oraintxe bertan behera (irten) "
#~ "egingo du."

# ../iw/package_gui.py:528
#, fuzzy
#~ msgid ""
#~ "An error has occurred while retreiving the hdlist file.  The installation "
#~ "media or image is probably corrupt.  Installer will exit now."
#~ msgstr ""
#~ "fitxategi-buruen (headers)  zerrendako fitxategia eskuratzean akatsa "
#~ "gertatu da. Litekeena da ezarketaren lekunea (disko, cd edo beste bat) "
#~ "edo irudia izorratua egota. Ezartzailea oraintxe bertan behera (irten) "
#~ "egingo du."

# ../iw/rootpartition_gui.py:145 ../textw/partitioning_text.py:302
#~ msgid ""
#~ "You've chosen to put your root filesystem in a file on an already-"
#~ "existing DOS or Windows filesystem. How large, in megabytes, should would "
#~ "you like the root filesystem to be, and how much swap space would you "
#~ "like? They must total less then %d megabytes in size."
#~ msgstr ""
#~ "Zure erro fitxategitza DOS edo WINDOWS-eko fitxategi batean jartzea "
#~ "aukeratu duzu. Erro fitxategitzak eta disko trukaguneak zein neurri eduki "
#~ "behar dute ('MegaByte'-tan)? Guztira %d MegaByte baino txikiagoa izan "
#~ "behar du."

# ../iw/rootpartition_gui.py:174
#~ msgid "Root filesystem size:"
#~ msgstr "Erro fitxategitzaren neurria:"

# ../iw/rootpartition_gui.py:179
#~ msgid "Swap space size:"
#~ msgstr "Disko trukagunearen neurria:"

# ../iw/rootpartition_gui.py:305
#~ msgid "Automatic Partitioning Failed"
#~ msgstr "Berekasakako Disko Zatiketak Kale egin du"

# ../iw/rootpartition_gui.py:306
#~ msgid ""
#~ "\n"
#~ "There is not sufficient disk space in order to automatically partition "
#~ "your disk. You will need to manually partition your disks for Red Hat "
#~ "Linux to install.\n"
#~ "\n"
#~ "Please choose the tool you would like to use to partition your system for "
#~ "Red Hat Linux."
#~ msgstr ""
#~ "\n"
#~ "Ezartzaileak bere kasa zure disko gogorra zatikatzeko behar den haina "
#~ "lekurik ez du. Ezarketa egiteko eskuz zatikatu beharko duzu.\n"
#~ "\n"
#~ "Mesedez, disko gogor zatitzaliea aukeratu."

# ../iw/rootpartition_gui.py:313
#~ msgid "Manual Partitioning"
#~ msgstr "Disko Zatiteka Eskuz egin"

# ../iw/rootpartition_gui.py:328
#~ msgid "Automatically partition and REMOVE DATA"
#~ msgstr "Berekasa diskoa zatitu eta DATUAK EZABATUko ditu"

# ../iw/xconfig_gui.py:96
#~ msgid "Bits per Pixel"
#~ msgstr "Bit Pixeleko"

# ../iw/xconfig_gui.py:391
#~ msgid "Autoprobe results:"
#~ msgstr "Autofrogaketaren emaitzak:"

# ../textw/bootdisk_text.py:54 ../textw/bootdisk_text.py:62
# ../textw/bootdisk_text.py:73 ../textw/lilo_text.py:30
# ../textw/silo_text.py:25
#, fuzzy
#~ msgid "Skip LILO"
#~ msgstr "Jauzi"

# ../textw/partitioning_text.py:59
#~ msgid ""
#~ "To install Red Hat Linux, you must have at least one partition of 150 MB "
#~ "dedicated to Linux. We suggest placing that partition on one of the first "
#~ "two hard drives in your system so you can boot into Linux with LILO."
#~ msgstr ""
#~ "Red Hat Linux ezartzeko, Linux-entzako 150 MByte-dun disko-zati bat behar "
#~ "duzu bederen. Disko-zati hori ordenagailuko lehen bi disko gogorretariko "
#~ "batean kokatuta egotea komenigarria dela esan behar da. Era honetan, LILO "
#~ "abiagailua erabiliz, Linux abiatzeko gai izango da."

# ../iw/rootpartition_gui.py:299 ../textw/partitioning_text.py:150
#, fuzzy
#~ msgid ""
#~ "%s\n"
#~ "\n"
#~ "If you don't want to do this, you can continue with this install by "
#~ "partitioning manually, or you can go back and perform a fully customized "
#~ "installation."
#~ msgstr ""
#~ "%s\n"
#~ "\n"
#~ "Hau egiterik ez baduzu nahi, eta ezarketarekin jarraitzeko asmoz, disko "
#~ "zatiketa zerorrek egin dezakezu. Atzerantz itzul zaitezke, eta zure "
#~ "nahietara egokitutako ezarketa landu dezakezu."

# ../textw/partitioning_text.py:154
#~ msgid "Manually partition"
#~ msgstr "Disko Zatiketa Zuk Egin"

# ../textw/partitioning_text.py:234
#~ msgid ""
#~ "What partitions would you like to format? We strongly suggest formatting "
#~ "all of the system partitions, including /, /usr, and /var. There is no "
#~ "need to format /home or /usr/local if they have already been configured "
#~ "during a previous install."
#~ msgstr ""
#~ "Zein disko-zati egituratzea nahi duzu? Gure aholkua: sistemako disko-zati "
#~ "guztiak egituratzea, /, /usr eta /var barne. Beste hauek berriz, /home "
#~ "eta /usr/local aurrez ezarritakoak badira zer egituratu beharrik ez "
#~ "daukate."

# ../textw/partitioning_text.py:259
#~ msgid "Choose Partitions to Format"
#~ msgstr "Egituratu beharreko Disko-zatiak Hautatu"

# ../textw/partitioning_text.py:307
#~ msgid "Root filesystem size"
#~ msgstr "Erro fitxategitzaren neurria"

# ../textw/partitioning_text.py:308
#~ msgid "Swap space"
#~ msgstr "Disko trukegunearen Edukiera"

# ../textw/partitioning_text.py:319
#~ msgid "The size you enter must be a number."
#~ msgstr "Idatzi beharrekoak zenbaki bat izan behar du."

# ../textw/partitioning_text.py:325
#~ msgid ""
#~ "The total size must be smaller then the amount of free space on the disk, "
#~ "which is %d megabytes."
#~ msgstr ""
#~ "Neurri osoa diskoak hutsik daukan edukiaren neurriaren baino txikiagoa "
#~ "izan behar du. Erabiligabekoa %d MByte-takoa da."

# ../textw/partitioning_text.py:332
#~ msgid ""
#~ "Neither the root file system size nor the swap space size may be greater "
#~ "then 2000 megabytes."
#~ msgstr ""
#~ "Ez root fitxategitza ez swap-ek duen lekuaren  neurriak ezin 2000 "
#~ "MegaByte baino handiagoa izan."

# ../installclasses/workstation.py:30
#, fuzzy
#~ msgid ""
#~ "Automatic partitioning will erase any preexisting Linux installations on "
#~ "your system."
#~ msgstr "Aurrez ezarritako edozein Linux disko-zatia ezabatzera doa"

# ../installclasses/server.py:34
#, fuzzy
#~ msgid ""
#~ "Automatic partitioning will erase ALL DATA on your hard drive to make "
#~ "room for your Linux installation."
#~ msgstr ""
#~ "Linux ezarketarentzat tokia egiteko asmoz, disko gogorreko EDUKIN GUZTIA "
#~ "ezabatzera doa"

# ../loader/loader.c:494
#~ msgid "Loading %s ramdisk..."
#~ msgstr "%s Ramdisk bereganatzen..."

# ../loader/loader.c:504
#~ msgid "Error loading ramdisk."
#~ msgstr "RAM diskoa gaineratzean akatsa."

# ../comps/comps-master:321
#~ msgid "Mail/WWW/News Tools"
#~ msgstr "e-posta/WWW/News tresnak"

# ../comps/comps-master:352
#~ msgid "DOS/Windows Connectivity"
#~ msgstr "DOS/Windows-ekin harremanak"

# ../comps/comps-master:382
#~ msgid "Games"
#~ msgstr "Jokuak"

# ../iw/network_gui.py:11 ../textw/network_text.py:94
#~ msgid "Networked Workstation"
#~ msgstr "Sareadun Lantokia"

# ../comps/comps-master:615
#~ msgid "IPX/Netware(tm) Connectivity"
#~ msgstr "IPX/Netware(tm) Bateraketa"

# ../comps/comps-master:712
#~ msgid "Development"
#~ msgstr "Garapenak"

# ../todo.py:858
#, fuzzy
#~ msgid "Upgrading the Red Hat Linux installation on partition /dev/"
#~ msgstr "Red Hat Linux-eko ezarketak bilatzen..."

# ../libfdisk/newtfsedit.c:208
#, fuzzy
#~ msgid "Going to upgrade partition /dev/"
#~ msgstr "Raid Disko Zatia"

# ../gnome-map/gglobe-canvas.c:781 ../gnome-map/timezonemapmodule.c:766
# ../gnome-map/timezonemapmodule.c:768 ../iw/timezone_gui.py:139
#~ msgid "America/New_York"
#~ msgstr "Amerika/New_York"

# ../comps/comps-master:304
#~ msgid "IDE"
#~ msgstr "IDE"

# ../loader/cdrom.c:89
#~ msgid "Initializing IDE modules..."
#~ msgstr "IDE moduluak hasieratzen"

# ../iw/xconfig_gui.py:108 ../iw/xconfig_gui.py:462
#~ msgid "Test this configuration"
#~ msgstr "Egokitzaketa honekin saiatu"

# ../libfdisk/gnomefsedit.c:1929
#~ msgid "<Swap Partition"
#~ msgstr "<Disko Trukagunea"