summaryrefslogtreecommitdiffstats
path: root/perl-install/mygtk2.pm
blob: de0a6081076e971a050498986514512327309813 (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
package mygtk2;

use diagnostics;
use strict;
use lang;

our @ISA = qw(Exporter);
our @EXPORT = qw(gtknew gtkset gtkadd gtkval_register gtkval_modify);

use c;
use log;
use common;

use Gtk2;
use Gtk2::Gdk::Keysyms;

unless ($::no_ugtk_init) {
    !check_for_xserver() and print("Cannot be run in console mode.\n"), c::_exit(0);
    $::one_message_has_been_translated and warn("N() was called from $::one_message_has_been_translated BEFORE gtk2 initialisation, replace it with a N_() AND a translate() later.\n"), c::_exit(1);

    Gtk2->init;
    c::bind_textdomain_codeset($_, 'UTF8') foreach 'libDrakX', @::textdomains;
    $::need_utf8_i18n = 1;
}
Gtk2->croak_execeptions if (!$::no_ugtk_init || $::isInstall) && 0.95 < $Gtk2::VERSION;



sub gtknew {
    my $class = shift;
    if (@_ % 2 != 0) {
	internal_error("gtknew $class: bad options @_");
    }
    if (my $r = find { ref $_->[0] } group_by2(@_)) {
	internal_error("gtknew $class: $r should be a string in @_");
    }
    _gtk(undef, $class, 'gtknew', @_);
}

sub gtkset {
    my $w = shift;
    my $class = ref($w);
    if (@_ % 2 != 0) {
	internal_error("gtkset $class: bad options @_");
    }
    if (my $r = find { ref $_->[0] } group_by2(@_)) {
	internal_error("gtkset $class: $r should be a string in @_");
    }
    $class =~ s/^Gtk2::(Gdk::)?// or internal_error("gtkset unknown class $class");
    
    _gtk($w, $class, 'gtkset', @_);
}

sub gtkadd {
    my $w = shift;
    my $class = ref($w);
    if (@_ % 2 != 0) {
	internal_error("gtkadd $class: bad options @_");
    }
    if (my $r = find { ref $_->[0] } group_by2(@_)) {
	internal_error("gtkadd $class: $r should be a string in @_");
    }
    $class =~ s/^Gtk2::(Gdk::)?// or internal_error("gtkadd unknown class $class");
    
    _gtk('gtkadd', $w, $class, @_);
}


my %refs;

sub gtkval_register {
    my ($w, $ref, $sub) = @_;
    $w->{_ref} = $ref;
    $w->signal_connect(destroy => sub { 
	delete $refs{$ref}{$w};
	delete $refs{$ref} if !%{$refs{$ref}};
    });
    push @{$refs{$ref}{$w}}, [ $sub, $w ];
}
sub gtkval_modify {
    my ($ref, $val, @to_skip) = @_;
    $$ref = $val;
    foreach (map { @$_ } values %{$refs{$ref} || {}}) {	
	my ($f, @para) = @$_;
	$f->(@para) if !member($f, @to_skip);
    }
}

my $global_tooltips;

sub _gtk {
    my ($w, $class, $action, %opts) = @_;

    if (my $f = $mygtk2::{"_gtk__$class"}) {
	$w = $f->($w, \%opts, $class, $action);
    } else {
	internal_error("$action $class: unknown class");
    }

    $w->set_size_request(delete $opts{width} || -1, delete $opts{height} || -1) if exists $opts{width} || exists $opts{height};
    if (my $position = delete $opts{position}) {
	$w->set_uposition($position->[0], $position->[1]);
    }
    $w->set_name(delete $opts{widget_name}) if exists $opts{widget_name};
    $w->can_focus(delete $opts{can_focus}) if exists $opts{can_focus};
    $w->can_default(delete $opts{can_default}) if exists $opts{can_default};
    $w->grab_focus if delete $opts{grab_focus};
    (delete $opts{size_group})->add_widget($w) if $opts{size_group};
    if (my $tip = delete $opts{tip}) {
	$global_tooltips ||= Gtk2::Tooltips->new;
	$global_tooltips->set_tip($w, $tip);
    }

    if (%opts && !$opts{allow_unknown_options}) {
	internal_error("$action $class: unknown option(s) " . join(', ', keys %opts));
    }
    $w;
}


sub _gtk__Button       { &_gtk_any_Button }
sub _gtk__ToggleButton { &_gtk_any_Button }
sub _gtk__CheckButton  { &_gtk_any_Button }
sub _gtk_any_Button {
    my ($w, $opts, $class) = @_;

    if (!$opts->{image}) {
	add2hash_($opts, { mnemonic => 1 });
    }

    if (!$w) {
	$w = $opts->{image} ? "Gtk2::$class"->new :
	  delete $opts->{mnemonic} ? "Gtk2::$class"->new_with_mnemonic(delete $opts->{text} || '') :
	    "Gtk2::$class"->new_with_label(delete $opts->{text} || '');

	$w->{format} = delete $opts->{format} if exists $opts->{format};
    }

    if (my $image = delete $opts->{image}) {
	$w->add($image);
	$image->show;
    }
    $w->set_sensitive(delete $opts->{sensitive}) if exists $opts->{sensitive};
    $w->set_relief(delete $opts->{relief}) if exists $opts->{relief};

    if (my $text_ref = delete $opts->{text_ref}) {
	my $set = sub {
	    eval { $w->set_label(may_apply($w->{format}, $$text_ref)) };
	};
	gtkval_register($w, $text_ref, $set);
	$set->();
    }

    if ($class eq 'Button') {
	$w->signal_connect(clicked => delete $opts->{clicked}) if exists $opts->{clicked};
    } else {
	if (my $active_ref = delete $opts->{active_ref}) {
	    my $set = sub { $w->set_active($$active_ref) };
	    $w->signal_connect(toggled => sub {
		gtkval_modify($active_ref, $w->get_active, $set);
	    });
	    gtkval_register($w, $active_ref, $set);
	    gtkval_register($w, $active_ref, delete $opts->{toggled}) if exists $opts->{toggled};
	    $set->();
	} else {
	    $w->set_active(delete $opts->{active}) if exists $opts->{active};
	    $w->signal_connect(toggled => delete $opts->{toggled}) if exists $opts->{toggled};
	}
    }
    $w;
}

sub _gtk__CheckMenuItem {
    my ($w, $opts, $class) = @_;

    if (!$w) {
	add2hash_($opts, { mnemonic => 1 });

	$w = $opts->{image} || !exists $opts->{text} ? "Gtk2::$class"->new :
	  delete $opts->{mnemonic} ? "Gtk2::$class"->new_with_label(delete $opts->{text}) :
	    "Gtk2::$class"->new_with_mnemonic(delete $opts->{text});
    }

    $w->set_active(delete $opts->{active}) if exists $opts->{active};
    $w->signal_connect(toggled => delete $opts->{toggled}) if exists $opts->{toggled};
    $w;
}

sub _gtk___SpinButton {
    my ($w, $opts) = @_;

    if (!$w) {
	$opts->{adjustment} ||= do {
	    add2hash_($opts, { step_increment => 1, page_increment => 5, page_size => 1, value => delete $opts->{lower} });
	    Gtk2::Adjustment->new(delete $opts->{value}, delete $opts->{lower}, delete $opts->{upper}, delete $opts->{step_increment}, delete $opts->{page_increment}, delete $opts->{page_size});
	};
	$w = Gtk2::SpinButton->new(delete $opts->{adjustment}, delete $opts->{climb_rate} || 0, delete $opts->{digits} || 0);
    }

    $w->signal_connect(value_changed => delete $opts->{value_changed}) if exists $opts->{value_changed};
    $w;
}

sub _gtk__HScale {
    my ($w, $opts) = @_;

    if (!$w) {
	$opts->{adjustment} ||= do {
	    add2hash_($opts, { step_increment => 1, page_increment => 5, page_size => 1, value => delete $opts->{lower} });
	    Gtk2::Adjustment->new(delete $opts->{value}, delete $opts->{lower}, (delete $opts->{upper}) + 1, delete $opts->{step_increment}, delete $opts->{page_increment}, delete $opts->{page_size});
	};
	$w = Gtk2::HScale->new(delete $opts->{adjustment});
    }

    $w->signal_connect(value_changed => delete $opts->{value_changed}) if exists $opts->{value_changed};
    $w;
}

sub _gtk__VSeparator { &_gtk_any_simple }
sub _gtk__HSeparator { &_gtk_any_simple }
sub _gtk__Calendar   { &_gtk_any_simple }

sub _gtk__DrawingArea {
    my ($w, $opts) = @_;

    if (!$w) {
	$w = Gtk2::DrawingArea->new;
    }
    $w->signal_connect(expose_event => delete $opts->{expose_event}) if exists $opts->{expose_event};
    $w;
}

sub _gtk__Pixbuf {
    my ($w, $opts) = @_;

    if (!$w) {
	my $name = delete $opts->{file} or internal_error("missing file");
	my $file = _find_imgfile($name) or internal_error("can not find $name");
	$w = Gtk2::Gdk::Pixbuf->new_from_file($file);
    }
    $w;
}

sub _gtk__Image {
    my ($w, $opts, $class) = @_;

    if (!$w) {
	$w = "Gtk2::$class"->new;
	$w->{format} = delete $opts->{format} if exists $opts->{format};
    }

    if (my $name = delete $opts->{file}) {
	my $file = _find_imgfile(may_apply($w->{format}, $name)) or internal_error("can not find $name");
	$w->set_from_file($file);
    } elsif (my $file_ref = delete $opts->{file_ref}) {
	my $set = sub {
	    my $file = _find_imgfile(may_apply($w->{format}, $$file_ref)) or internal_error("can not find $$file_ref");
	    $w->set_from_file($file);
	};
	gtkval_register($w, $file_ref, $set);
	$set->();
    }
    $w;
}

sub _gtk__WrappedLabel {
    my ($w, $opts) = @_;
    
    $opts->{line_wrap} = 1;
    _gtk__Label($w, $opts);
}

sub _gtk__Label {
    my ($w, $opts) = @_;

    if ($w) {
	$w->set_text(delete $opts->{text}) if exists $opts->{text};
    } else {
	$w = exists $opts->{text} ? Gtk2::Label->new(delete $opts->{text}) : Gtk2::Label->new;
	$w->set_justify(delete $opts->{justify}) if exists $opts->{justify};
	$w->set_line_wrap(delete $opts->{line_wrap}) if exists $opts->{line_wrap};
	$w->set_alignment(@{delete $opts->{alignment}}) if exists $opts->{alignment};
	$w->modify_font(Gtk2::Pango::FontDescription->from_string(delete $opts->{font})) if exists $opts->{font};
    }

    $w->set_markup(delete $opts->{text_markup}) if exists $opts->{text_markup};
    $w;
}

sub _gtk__Entry {
    my ($w, $opts) = @_;

    if (!$w) {
	$w = Gtk2::Entry->new;
	$w->set_editable(delete $opts->{editable}) if exists $opts->{editable};
    }

    $w->set_text(delete $opts->{text}) if exists $opts->{text};
    $w->signal_connect(key_press_event => delete $opts->{key_press_event}) if exists $opts->{key_press_event};
    $w;
}

sub _gtk__TextView {
    my ($w, $opts) = @_;
	
    if (!$w) {
	$w = Gtk2::TextView->new;
	$w->set_editable(delete $opts->{editable}) if exists $opts->{editable};
	$w->set_wrap_mode(delete $opts->{wrap_mode}) if exists $opts->{wrap_mode};
	$w->set_cursor_visible(delete $opts->{cursor_visible}) if exists $opts->{cursor_visible};
    }

    _text_insert($w, delete $opts->{text}) if exists $opts->{text};
    $w;
}

sub _gtk__ComboBox {
    my ($w, $opts, $_class, $action) = @_;

    if (!$w) {
	$w = Gtk2::ComboBox->new_text;
	$w->{format} = delete $opts->{format} if exists $opts->{format};

    }
    if (exists $opts->{list}) {
	$w->{list} = delete $opts->{list};
	$w->{formatted_list} = $w->{format} ? [ map { $w->{format}($_) } @{$w->{list}} ] : $w->{list};
	$w->append_text($_) foreach @{$w->{formatted_list}};
    }

    if ($action eq 'gtknew') {
	if (my $text_ref = delete $opts->{text_ref}) {
	    my $set = sub {
		my $val = may_apply($w->{format}, $$text_ref);
		eval { $w->set_active(find_index { $_ eq $val } @{$w->{formatted_list}}) };
	    };
	    $w->signal_connect(changed => sub {
		gtkval_modify($text_ref, $w->{list}[$w->get_active], $set);
	    });
	    gtkval_register($w, $text_ref, $set);
	    gtkval_register($w, $text_ref, delete $opts->{changed}) if exists $opts->{changed};
	    $set->();
	} else {
	    my $val = delete $opts->{text};
	    eval { $w->set_active(find_index { $_ eq $val } @{$w->{formatted_list}}) } if defined $val;
	    $w->signal_connect(changed => delete $opts->{changed}) if exists $opts->{changed};
	}
    }
    $w;
}

sub _gtk__ScrolledWindow {
    my ($w, $opts, $_class, $action) = @_;
	
    if (!$w) {
	$w = Gtk2::ScrolledWindow->new(undef, undef);
	$w->set_policy(delete $opts->{h_policy} || 'automatic', delete $opts->{v_policy} || 'automatic');
    }

    if (my $child = delete $opts->{child}) {
	if (member(ref($child), qw(Gtk2::Layout Gtk2::Text Gtk2::TextView Gtk2::TreeView))) {
	    $w->add($child);
	} else {
	    $w->add_with_viewport($child);
	}
	$child->set_focus_vadjustment($w->get_vadjustment) if $child->can('set_focus_vadjustment');
	$child->set_left_margin(6) if ref($child) =~ /Gtk2::TextView/;
	$child->show;

	$w->child->set_shadow_type(delete $opts->{shadow_type}) if exists $opts->{shadow_type};

	if ($action eq 'gtknew' && ref($child) =~ /Gtk2::TextView|Gtk2::TreeView/) {
	    $w = gtknew('Frame', shadow_type => 'in', child => $w);
	}
    }
    $w;
}

sub _gtk__Frame {
    my ($w, $opts) = @_;

    if ($w) {
	$w->set_label(delete $opts->{text}) if exists $opts->{text};
    } else {
	$w = Gtk2::Frame->new(delete $opts->{text});
	$w->set_border_width(delete $opts->{border_width}) if exists $opts->{border_width};
	$w->set_shadow_type(delete $opts->{shadow_type}) if exists $opts->{shadow_type};
    }

    if (my $child = delete $opts->{child}) {
	$w->add($child);
	$child->show;
    }
    $w;
}

sub _gtk__Window { &_gtk_any_Window }
sub _gtk__Dialog { &_gtk_any_Window }
sub _gtk__Plug   { &_gtk_any_Window }
sub _gtk_any_Window {
    my ($w, $opts, $class) = @_;

    if (!$w) {
	if ($class eq 'Window') {
	    $w = "Gtk2::$class"->new(delete $opts->{type} || 'toplevel');
	} elsif ($class eq 'Plug') {
	    $opts->{socket_id} or internal_error("can not create a Plug without a socket_id");
	    $w = "Gtk2::$class"->new(delete $opts->{socket_id});
	} else {
	    $w = "Gtk2::$class"->new;
	}

	$w->set_modal(delete $opts->{modal}) if exists $opts->{modal};
	$w->set_transient_for(delete $opts->{transient_for}) if exists $opts->{transient_for};
	$w->set_border_width(delete $opts->{border_width}) if exists $opts->{border_width};
	$w->set_shadow_type(delete $opts->{shadow_type}) if exists $opts->{shadow_type};
	$w->set_position(delete $opts->{position_policy}) if exists $opts->{position_policy};
	if (my $name = delete $opts->{icon}) {
	    my $f = _find_imgfile($name) or internal_error("can not find $name");
	    $w->set_icon(gtknew('Pixbuf', file => $f));
	}
    }
    $w->set_title(delete $opts->{title}) if exists $opts->{title};

    if (my $child = delete $opts->{child}) {
	$w->add($child);
	$child->show;
    }
    $w;
}

sub _gtk__FileSelection {
    my ($w, $opts) = @_;

    if (!$w) {
	$w = Gtk2::FileSelection->new(delete $opts->{title} || '');
	gtkset($w->ok_button, %{delete $opts->{ok_button}}) if exists $opts->{ok_button};
	gtkset($w->cancel_button, %{delete $opts->{cancel_button}}) if exists $opts->{cancel_button};
    }
    $w;
}

sub _gtk__VBox { &_gtk_any_Box }
sub _gtk__HBox { &_gtk_any_Box }
sub _gtk_any_Box {
    my ($w, $opts, $class, $action) = @_;

    if (!$w) {
	$w = "Gtk2::$class"->new(0,0);
	$w->set_homogeneous(delete $opts->{homogenous}) if exists $opts->{homogenous};
	$w->set_spacing(delete $opts->{spacing}) if exists $opts->{spacing};
	$w->set_border_width(delete $opts->{border_width}) if exists $opts->{border_width};
    } elsif ($action eq 'gtkset') {
	$_->destroy foreach $w->get_children;
    }

    _gtknew_handle_children($w, $opts);
    $w;
}

sub _gtk__VButtonBox { &_gtk_any_ButtonBox }
sub _gtk__HButtonBox { &_gtk_any_ButtonBox }
sub _gtk_any_ButtonBox {
    my ($w, $opts, $class, $action) = @_;

    if (!$w) {
	$w = "Gtk2::$class"->new;
	$w->set_layout(delete $opts->{layout} || 'spread');
    } elsif ($action eq 'gtkset') {
	$_->destroy foreach $w->get_children;
    }

    _gtknew_handle_children($w, $opts);
    $w;
}

sub _gtk__Notebook {
    my ($w, $opts) = @_;

    if (!$w) {
	$w = Gtk2::Notebook->new;
	$w->set_property('show-tabs', delete $opts->{show_tabs}) if exists $opts->{show_tabs};
	$w->set_property('show-border', delete $opts->{show_border}) if exists $opts->{show_border};
    }

    if (exists $opts->{children}) {
	foreach (group_by2(@{delete $opts->{children}})) {
	    my ($title, $page) = @$_;
	    $w->append_page($page, $title);
	    $page->show;
	    $title->show;
	}
    }
    $w;
}

sub _gtk__Table {
    my ($w, $opts) = @_;

    if (!$w) {
	add2hash_($opts, { xpadding => 5, ypadding => 0, border_width => $::isInstall ? 3 : 10 });

	$w = Gtk2::Table->new(0, 0, delete $opts->{homogeneous} || 0);
	$w->set_col_spacings(delete $opts->{col_spacings} || 0);
	$w->set_row_spacings(delete $opts->{row_spacings} || 0);
	$w->set_border_width(delete $opts->{border_width});
	$w->{$_} = delete $opts->{$_} foreach 'xpadding', 'ypadding', 'mcc';
    }

    each_index {
	my ($i, $l) = ($::i, $_);
	each_index {
	    my $j = $::i;
	    if ($_) {
		ref $_ or $_ = Gtk2::WrappedLabel->new($_);
		$j != $#$l && !$w->{mcc} ?
		  $w->attach($_, $j, $j + 1, $i, $i + 1,
			     'fill', 'fill', $w->{xpadding}, $w->{ypadding}) :
			       $w->attach($_, $j, $j + 1, $i, $i + 1,
					  ['expand', 'fill'], ref($_) eq 'Gtk2::ScrolledWindow' || $_->get_data('must_grow') ? ['expand', 'fill'] : [], 0, 0);
		$_->show;
	    }
	} @$l;
    } @{delete $opts->{children} || []};

    $w;
}

sub _gtk_any_simple {
    my ($w, $_opts, $class) = @_;

    $w ||= "Gtk2::$class"->new;
}

sub _gtknew_handle_children {
    my ($w, $opts) = @_;

    my @child = exists $opts->{children_tight} ? map { [ 0, $_ ] } @{delete $opts->{children_tight}} :
                exists $opts->{children_loose} ? map { [ 1, $_ ] } @{delete $opts->{children_loose}} :
	        exists $opts->{children} ? group_by2(@{delete $opts->{children}}) : ();

    my $padding = delete $opts->{padding};

    foreach (@child) {
	my ($fill, $child) = @$_;
	$fill eq '0' || $fill eq '1' or internal_error("odd {children} parameter must be 0 or 1 (got $fill)");
	ref $child or $child = Gtk2::WrappedLabel->new($child);
	$w->pack_start($child, $fill, $fill, $padding || 0);
	$child->show;
    }
}

sub _find_imgfile {
    my ($name) = @_;

    if ($name =~ m|/| && -f $name) {
	$name;
    } else {
	foreach my $path (_icon_paths()) {
	    foreach ('', '.png', '.xpm') {
		my $file = "$path/$name$_";
		-f $file and return $file;
	    }
	}
    }
}

# _text_insert() can be used with any of choose one of theses styles:
# - no tags:
#   _text_insert($textview, "My text..");
# - anonymous tags:
#   _text_insert($textview, [ [ 'first text',  { 'foreground' => 'blue', 'background' => 'green', ... } ],
#			        [ 'second text' ],
#		                [ 'third', { 'font' => 'Serif 15', ... } ],
#                               ... ]);
# - named tags:
#   $textview->{tags} = {
#                        'blue_green' => { 'foreground' => 'blue', 'background' => 'green', ... },
#                        'big_font' => { 'font' => 'Serif 35', ... },
#                       }
#   _text_insert($textview, [ [ 'first text',  'blue_green' ],
#		                [ 'second', 'big_font' ],
#                               ... ]);
# - mixed anonymous and named tags:
#   $textview->{tags} = {
#                        'blue_green' => { 'foreground' => 'blue', 'background' => 'green', ... },
#                        'big_font' => { 'font' => 'Serif 35', ... },
#                       }
#   _text_insert($textview, [ [ 'first text',  'blue_green' ],
#			        [ 'second text' ],
#		                [ 'third', 'big_font' ],
#		                [ 'fourth', { 'font' => 'Serif 15', ... } ],
#                               ... ]);
sub _text_insert {
    my ($textview, $t, %opts) = @_;
    my $buffer = $textview->get_buffer;
    $buffer->{tags} ||= {};
    $buffer->{gtk_tags} ||= {};
    my $gtk_tags = $buffer->{gtk_tags};
    my $tags = $buffer->{tags};
    if (ref($t) eq 'ARRAY') {
        $opts{append} or $buffer->set_text('');
        foreach my $token (@$t) {
            my ($item, $tag) = @$token;
            my $iter1 = $buffer->get_end_iter;
            if ($item =~ /^Gtk2::Gdk::Pixbuf/) {
                $buffer->insert_pixbuf($iter1, $item);
                next;
            }
            if ($tag) {
                if (ref($tag)) {
                    # use anonymous tags
                    $buffer->insert_with_tags($iter1, $item, $buffer->create_tag(undef, %$tag));
                } else {
                    # fast text insertion:
                    # since in some contexts (eg: localedrake, rpmdrake), we use quite a lot of identical tags,
                    # it's much more efficient and less memory pressure to use named tags
                    $gtk_tags->{$tag} ||= $buffer->create_tag($tag, %{$tags->{$token->[1]}});
                    $buffer->insert_with_tags($iter1, $item, $gtk_tags->{$tag});
                }
            } else {
                $buffer->insert($iter1, $item);
            }
        }
    } else {
        $buffer->set_text($t);
    }
    #- the following line is needed to move the cursor to the beginning, so that if the
    #- textview has a scrollbar, it will not scroll to the bottom when focusing (#3633)
    $buffer->place_cursor($buffer->get_start_iter);
    $textview->set_wrap_mode($opts{wrap_mode} || 'word');
    $textview->set_editable($opts{editable} || 0);
    $textview->set_cursor_visible($opts{visible} || 0);
    $textview;
}


my @icon_paths;
sub add_icon_path { push @icon_paths, @_ }
sub _icon_paths() {
   (@icon_paths, (exists $ENV{SHARE_PATH} ? ($ENV{SHARE_PATH}, "$ENV{SHARE_PATH}/icons", "$ENV{SHARE_PATH}/libDrakX/pixmaps") : ()),
    "/usr/lib/libDrakX/icons", "pixmaps", 'standalone/icons', '/usr/share/rpmdrake/icons');
}  

sub sync {
    my ($window) = @_;
    $window->show;
    flush();
}

sub flush() { 
    Gtk2->main_iteration while Gtk2->events_pending;
}

sub may_destroy {
    my ($w) = @_;
    $w->destroy if $w;
}

sub root_window() {
    my $root if 0;
    $root ||= Gtk2::Gdk->get_default_root_window;
}

sub rgb2color {
    my ($r, $g, $b) = @_;
    my $color = Gtk2::Gdk::Color->new($r, $g, $b);
    root_window()->get_colormap->rgb_find_color($color);
    $color;
}

sub set_root_window_background {
    my ($r, $g, $b) = @_;
    my $root = root_window();
    my $gc = Gtk2::Gdk::GC->new($root);
    my $color = rgb2color($r, $g, $b);
    $gc->set_rgb_fg_color($color);
    set_root_window_background_with_gc($gc);
}

sub set_root_window_background_with_gc {
    my ($gc) = @_;
    my $root = root_window();
    my ($w, $h) = $root->get_size;
    $root->set_background($gc->get_values->{foreground});
    $root->draw_rectangle($gc, 1, 0, 0, $w, $h);
}

1;
0'>3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 6344 6345 6346 6347 6348 6349 6350 6351 6352 6353 6354 6355 6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367 6368 6369 6370 6371 6372 6373 6374 6375 6376 6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392 6393 6394 6395 6396 6397 6398 6399 6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6419 6420 6421 6422 6423 6424 6425 6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437 6438 6439 6440 6441 6442 6443 6444 6445 6446 6447 6448 6449 6450 6451 6452 6453 6454 6455 6456 6457 6458 6459 6460 6461 6462 6463 6464 6465 6466 6467 6468 6469 6470 6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 6481 6482 6483 6484 6485 6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 6498 6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515 6516 6517 6518 6519 6520 6521 6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534 6535 6536 6537 6538 6539 6540 6541 6542 6543 6544 6545 6546 6547 6548 6549 6550 6551 6552 6553 6554 6555 6556 6557 6558 6559 6560 6561 6562 6563 6564 6565 6566 6567 6568 6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 6587 6588 6589 6590 6591 6592 6593 6594 6595 6596 6597 6598 6599 6600 6601 6602 6603 6604 6605 6606 6607 6608 6609 6610 6611 6612 6613 6614 6615 6616 6617 6618 6619 6620 6621 6622 6623 6624 6625 6626 6627 6628 6629 6630 6631 6632 6633 6634 6635 6636 6637 6638 6639 6640 6641 6642 6643 6644 6645 6646 6647 6648 6649 6650 6651 6652 6653 6654 6655 6656 6657 6658 6659 6660 6661 6662 6663 6664 6665 6666 6667 6668 6669 6670 6671 6672 6673 6674 6675 6676 6677 6678 6679 6680 6681 6682 6683 6684 6685 6686 6687 6688 6689 6690 6691 6692 6693 6694 6695 6696 6697 6698 6699 6700 6701 6702 6703 6704 6705 6706 6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 6718 6719 6720 6721 6722 6723 6724 6725 6726 6727 6728 6729
# translation of DrakX.po to Mongolian
# Copyright (C) 2003, 2004 Free Software Foundation, Inc.
# Khurelbaatar Lkhagavsuren <hujii247@yahoo.com>, 2003.
# Khurelbaatar Lkhagvasuren <hujii247@yahoo.com>, 2003.
# Sanlig Badral <Badral@openmn.org>, 2004.
#
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
"POT-Creation-Date: 2011-08-05 21:16+0200\n"
"PO-Revision-Date: 2004-01-02 00:35+0100\n"
"Last-Translator: Sanlig Badral <Badral@openmn.org>\n"
"Language-Team: Mongolian <openmn-core@lists.sf.net>\n"
"Language: mn\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.0.2\n"

#: any.pm:270 any.pm:967 diskdrake/interactive.pm:648
#: diskdrake/interactive.pm:871 diskdrake/interactive.pm:931
#: diskdrake/interactive.pm:1033 diskdrake/interactive.pm:1263
#: diskdrake/interactive.pm:1315 do_pkgs.pm:241 do_pkgs.pm:287
#: harddrake/sound.pm:270 interactive.pm:587 pkgs.pm:285
#, fuzzy, c-format
msgid "Please wait"
msgstr "Ачаалж байна... Түр хүлээнэ үү"

#: any.pm:270
#, fuzzy, c-format
msgid "Bootloader installation in progress"
msgstr "Эхлүүлэгч ачаалагч суулгах"

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

#: any.pm:292
#, fuzzy, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "аас:"

#: any.pm:298
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
" enable the bootloader.  If you do not see the bootloader prompt at\n"
" reboot, hold down Command-Option-O-F at reboot and enter:\n"
" setenv boot-device %s,\\\\:tbxi\n"
" Then type: shut-down\n"
"At your next boot you should see the bootloader prompt."
msgstr ""

#: any.pm:338
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
"This implies you already have a bootloader on the hard disk drive you boot "
"(eg: System Commander).\n"
"\n"
"On which drive are you booting?"
msgstr ""

#: any.pm:349
#, fuzzy, c-format
msgid "Bootloader Installation"
msgstr "Эхлүүлэгч ачаалагч суулгах"

#: any.pm:353
#, fuzzy, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Хаана вы?"

#: any.pm:377
#, fuzzy, c-format
msgid "First sector (MBR) of drive %s"
msgstr "Хөтлөгчийн эхний сектор (MBR)"

#: any.pm:379
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Хөтлөгчийн эхний сектор (MBR)"

#: any.pm:381
#, c-format
msgid "First sector of the root partition"
msgstr "Үндсэн хуваалтын эхний сектор"

#: any.pm:383
#, fuzzy, c-format
msgid "On Floppy"
msgstr "Идэвхитэй"

#: any.pm:385 pkgs.pm:281 ugtk2.pm:526
#, c-format
msgid "Skip"
msgstr "Алгасах"

#: any.pm:420
#, fuzzy, c-format
msgid "Boot Style Configuration"
msgstr "Загвар"

#: any.pm:430 any.pm:463 any.pm:464
#, c-format
msgid "Bootloader main options"
msgstr "Эхлүүлэгч ачаалагчийн үндсэн сонголтууд"

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

#: any.pm:435 any.pm:467
#, c-format
msgid "Bootloader to use"
msgstr ""

#: any.pm:438 any.pm:470
#, c-format
msgid "Boot device"
msgstr ""

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

#: any.pm:442
#, c-format
msgid "Delay before booting default image"
msgstr "Үндсэн зургийг ачаалахын өмнө түр саатах"

#: any.pm:443
#, fuzzy, c-format
msgid "Enable ACPI"
msgstr "Нээх"

#: any.pm:444
#, fuzzy, c-format
msgid "Enable SMP"
msgstr "Нээх"

#: any.pm:445
#, fuzzy, c-format
msgid "Enable APIC"
msgstr "Нээх"

#: any.pm:447
#, fuzzy, c-format
msgid "Enable Local APIC"
msgstr "Нээх"

#: any.pm:448 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Нууцлал"

#: any.pm:449 any.pm:902 any.pm:921 authentication.pm:252
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Нууц үг"

#: any.pm:452 authentication.pm:263
#, c-format
msgid "The passwords do not match"
msgstr ""

#: any.pm:452 authentication.pm:263 diskdrake/interactive.pm:1490
#, c-format
msgid "Please try again"
msgstr "Дахин оролдоно уу"

#: any.pm:454
#, fuzzy, c-format
msgid "You cannot use a password with %s"
msgstr "Та Цэг"

#: any.pm:458 any.pm:905 any.pm:923 authentication.pm:253
#, c-format
msgid "Password (again)"
msgstr "Нууц үг (дахин)"

#: any.pm:459
#, c-format
msgid "Clean /tmp at each boot"
msgstr ""

#: any.pm:469
#, c-format
msgid "Init Message"
msgstr ""

#: any.pm:471
#, fuzzy, c-format
msgid "Open Firmware Delay"
msgstr "Нээх"

#: any.pm:472
#, c-format
msgid "Kernel Boot Timeout"
msgstr ""

#: any.pm:473
#, fuzzy, c-format
msgid "Enable CD Boot?"
msgstr "Нээх CD?"

#: any.pm:474
#, fuzzy, c-format
msgid "Enable OF Boot?"
msgstr "Нээх?"

#: any.pm:475
#, c-format
msgid "Default OS?"
msgstr "Үндсэн ҮС?"

#: any.pm:548
#, c-format
msgid "Image"
msgstr "Дүр"

#: any.pm:549 any.pm:563
#, c-format
msgid "Root"
msgstr "Эзэн"

#: any.pm:550 any.pm:576
#, c-format
msgid "Append"
msgstr "Залгах"

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

#: any.pm:554
#, c-format
msgid "Requires password to boot"
msgstr ""

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

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

#: any.pm:559
#, fuzzy, c-format
msgid "Network profile"
msgstr "Сүлжээ-харьцах хэсэг"

#: any.pm:568 any.pm:573 any.pm:575 diskdrake/interactive.pm:407
#, c-format
msgid "Label"
msgstr "Бичээс"

#: any.pm:570 any.pm:578 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Стандарт"

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

#: any.pm:588
#, fuzzy, c-format
msgid "Empty label not allowed"
msgstr "Бичээс"

#: any.pm:589
#, fuzzy, c-format
msgid "You must specify a kernel image"
msgstr "Та"

#: any.pm:589
#, fuzzy, c-format
msgid "You must specify a root partition"
msgstr "Та"

#: any.pm:590
#, fuzzy, c-format
msgid "This label is already used"
msgstr "Бичээс бол"

#: any.pm:608
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Ямар төрлийн өгөгдөл та оруулахыг хүсэж байна?"

#: any.pm:609
#, c-format
msgid "Linux"
msgstr "Линукс"

#: any.pm:609
#, c-format
msgid "Other OS (SunOS...)"
msgstr "Бусад ҮС (SunOS...)"

#: any.pm:610
#, c-format
msgid "Other OS (MacOS...)"
msgstr "Бусад ҮС (MacOS...)"

#: any.pm:610
#, c-format
msgid "Other OS (Windows...)"
msgstr "Бусад ҮС (Виндовс...)"

#: any.pm:657
#, fuzzy, c-format
msgid "Bootloader Configuration"
msgstr "Загвар"

#: any.pm:658
#, fuzzy, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can create additional entries or change the existing ones."
msgstr "Цэс."

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

#: any.pm:864
#, c-format
msgid "access to rpm tools"
msgstr "rpm хэрэгсэлүүд рүү хандах"

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

#: any.pm:866
#, c-format
msgid "access to administrative files"
msgstr ""

#: any.pm:867
#, c-format
msgid "access to network tools"
msgstr ""

#: any.pm:868
#, c-format
msgid "access to compilation tools"
msgstr ""

#: any.pm:874
#, c-format
msgid "(already added %s)"
msgstr ""

#: any.pm:880
#, c-format
msgid "Please give a user name"
msgstr ""

#: any.pm:881
#, fuzzy, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
"cased letters, numbers, `-' and `_'"
msgstr "нэр"

#: any.pm:882
#, c-format
msgid "The user name is too long"
msgstr "Хэрэглэгчийн нэр хэт урт"

#: any.pm:883
#, fuzzy, c-format
msgid "This user name has already been added"
msgstr "нэр"

#: any.pm:889 any.pm:925
#, c-format
msgid "User ID"
msgstr "Хэрэглэгчийн ID"

#: any.pm:889 any.pm:926
#, c-format
msgid "Group ID"
msgstr "Группын ID"

#: any.pm:890
#, fuzzy, c-format
msgid "%s must be a number"
msgstr "%s сонголт нь тоо байх ёстой!"

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

#: any.pm:895
#, fuzzy, c-format
msgid "User management"
msgstr "Хэрэглэгчийн нэр"

#: any.pm:900
#, c-format
msgid "Enable guest account"
msgstr ""

#: any.pm:901 authentication.pm:239
#, fuzzy, c-format
msgid "Set administrator (root) password"
msgstr "Нууцлалын Удирдлага (бүртгэл эсвэл и-мэйл)"

#: any.pm:907
#, fuzzy, c-format
msgid "Enter a user"
msgstr "г"

#: any.pm:909
#, c-format
msgid "Icon"
msgstr "Эмблем"

#: any.pm:912
#, c-format
msgid "Real name"
msgstr ""

#: any.pm:919
#, fuzzy, c-format
msgid "Login name"
msgstr "Домэйн"

#: any.pm:924
#, c-format
msgid "Shell"
msgstr "Бүрхүүл"

#: any.pm:967
#, c-format
msgid "Please wait, adding media..."
msgstr ""

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

#: any.pm:998
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""

#: any.pm:999
#, fuzzy, c-format
msgid "Use this feature"
msgstr "Та энэ чанарыг ашиглахыг хүсэж байна уу?"

#: any.pm:1000
#, fuzzy, c-format
msgid "Choose the default user:"
msgstr "Сонгох:"

#: any.pm:1001
#, fuzzy, c-format
msgid "Choose the window manager to run:"
msgstr "Цонх:"

#: any.pm:1012 any.pm:1032 any.pm:1100
#, fuzzy, c-format
msgid "Release Notes"
msgstr "Хэвлэл:"

#: any.pm:1039 any.pm:1388 interactive/gtk.pm:819
#, c-format
msgid "Close"
msgstr "Хаах"

#: any.pm:1086
#, fuzzy, c-format
msgid "License agreement"
msgstr "Лиценз"

#: any.pm:1088 diskdrake/dav.pm:26
#, c-format
msgid "Quit"
msgstr "Гарах"

#: any.pm:1095
#, fuzzy, c-format
msgid "Do you accept this license ?"
msgstr "Та ямар нэгэн %s гэсэн харагдалттай юу?"

#: any.pm:1096
#, c-format
msgid "Accept"
msgstr "Зөвшөөрөх"

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

#: any.pm:1122 any.pm:1184
#, c-format
msgid "Please choose a language to use"
msgstr "Хэрэглэх хэлээ сонгоно уу"

#: any.pm:1150
#, fuzzy, c-format
msgid ""
"%s can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
"when your installation is complete and you restart your system."
msgstr "вы бол вы."

#: any.pm:1152 fs/partitioning_wizard.pm:172
#, c-format
msgid "Mageia"
msgstr ""

#: any.pm:1153
#, fuzzy, c-format
msgid "Multiple languages"
msgstr "Бүх хэл"

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

#: any.pm:1163
#, c-format
msgid "All languages"
msgstr "Бүх хэл"

#: any.pm:1185
#, fuzzy, c-format
msgid "Language choice"
msgstr "Хэл"

#: any.pm:1239
#, fuzzy, c-format
msgid "Country / Region"
msgstr " / Муж"

#: any.pm:1240
#, c-format
msgid "Please choose your country"
msgstr "Улсаа сонгоно уу"

#: any.pm:1242
#, fuzzy, c-format
msgid "Here is the full list of available countries"
msgstr "бол бүрэн жигсаалт аас"

#: any.pm:1243
#, fuzzy, c-format
msgid "Other Countries"
msgstr "Бусад"

#: any.pm:1243 interactive.pm:488 interactive/gtk.pm:445
#, c-format
msgid "Advanced"
msgstr "Өргөтгөсөн"

#: any.pm:1249
#, fuzzy, c-format
msgid "Input method:"
msgstr "Сүлжээний арга:"

#: any.pm:1252
#, c-format
msgid "None"
msgstr "Алга"

#: any.pm:1333
#, fuzzy, c-format
msgid "No sharing"
msgstr "Үгүй"

#: any.pm:1333
#, c-format
msgid "Allow all users"
msgstr "Бүх хэрэглэгчдийг зөвшөөрөх"

#: any.pm:1333
#, c-format
msgid "Custom"
msgstr "Тохир"

#: any.pm:1337
#, fuzzy, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr "вы хэрэглэгчид аас хэрэглэгчид Хамтын хэрэглээ ямх г г Хэрэглэгчийн"

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

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

#: any.pm:1360
#, fuzzy, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr "Та Самба вы."

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

#: any.pm:1390
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user to this group."
msgstr ""

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

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

#: any.pm:1537
#, c-format
msgid "Timezone"
msgstr "Цагийн бүс"

#: any.pm:1537
#, fuzzy, c-format
msgid "Which is your timezone?"
msgstr "бол?"

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

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

#: any.pm:1567
#, fuzzy, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "Hardware"

#: any.pm:1568
#, fuzzy, c-format
msgid "%s (hardware clock set to local time)"
msgstr "Hardware"

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

#: any.pm:1571
#, fuzzy, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Автоматаар"

#: authentication.pm:24
#, c-format
msgid "Local file"
msgstr "Дотоод файл"

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

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

#: authentication.pm:27
#, c-format
msgid "Smart Card"
msgstr ""

#: authentication.pm:28 authentication.pm:218
#, fuzzy, c-format
msgid "Windows Domain"
msgstr "Цонхнууд"

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

#: authentication.pm:65
#, fuzzy, c-format
msgid "Local file:"
msgstr "Дотоод файлууд:"

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

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

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

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

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

#: authentication.pm:68
#, fuzzy, c-format
msgid "Windows Domain:"
msgstr "Цонхнууд:"

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

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

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

#: authentication.pm:109 authentication.pm:143 authentication.pm:162
#: authentication.pm:163 authentication.pm:189 authentication.pm:213
#: authentication.pm:898
#, c-format
msgid " "
msgstr ""

#: authentication.pm:110 authentication.pm:144 authentication.pm:190
#: authentication.pm:214
#, fuzzy, c-format
msgid "Welcome to the Authentication Wizard"
msgstr "Домэйн Баталгаажуулалт"

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

#: authentication.pm:114 authentication.pm:169
#, c-format
msgid "LDAP Server"
msgstr ""

#: authentication.pm:115 authentication.pm:170
#, c-format
msgid "Base dn"
msgstr ""

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

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

#: authentication.pm:119 authentication.pm:174
#, c-format
msgid "Download CA Certificate "
msgstr ""

#: authentication.pm:121 authentication.pm:154
#, c-format
msgid "Use Disconnect mode "
msgstr ""

#: authentication.pm:122 authentication.pm:175
#, c-format
msgid "Use anonymous BIND "
msgstr ""

#: authentication.pm:123 authentication.pm:126 authentication.pm:128
#: authentication.pm:132
#, c-format
msgid "  "
msgstr ""

#: authentication.pm:124 authentication.pm:176
#, c-format
msgid "Bind DN "
msgstr ""

#: authentication.pm:125 authentication.pm:177
#, fuzzy, c-format
msgid "Bind Password "
msgstr "Нууц үг"

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

#: authentication.pm:129
#, fuzzy, c-format
msgid "Password base"
msgstr "Нууц үг"

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

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

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

#: authentication.pm:148
#, c-format
msgid "Realm "
msgstr ""

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

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

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

#: authentication.pm:158
#, c-format
msgid "Use local file for users information"
msgstr ""

#: authentication.pm:159
#, fuzzy, c-format
msgid "Use LDAP for users information"
msgstr "Хатуу диск хөтлөгчийн мэдээлэл"

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

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

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

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

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

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

#: authentication.pm:220
#, fuzzy, c-format
msgid "Domain Model "
msgstr "Домэйн"

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

#: authentication.pm:223
#, fuzzy, c-format
msgid "DNS Domain"
msgstr "Домэйн"

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

#: authentication.pm:238 authentication.pm:254
#, c-format
msgid "Authentication"
msgstr "Баталгаажуулалт"

#: authentication.pm:240
#, fuzzy, c-format
msgid "Authentication method"
msgstr "Баталгаажуулалт"

#. -PO: keep this short or else the buttons will not fit in the window
#: authentication.pm:245
#, c-format
msgid "No password"
msgstr "Нууц үг байхгүй"

#: authentication.pm:266
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
"Нууц үг хэтэрхий богино байна (энэ нь дор хаяж %d тэмдэгтийн урттай байна)"

#: authentication.pm:377
#, c-format
msgid "Cannot use broadcast with no NIS domain"
msgstr ""

#: authentication.pm:893
#, c-format
msgid "Select file"
msgstr "Файл сонгох"

#: authentication.pm:899
#, fuzzy, c-format
msgid "Domain Windows for authentication : "
msgstr "Домэйн Баталгаажуулалт"

#: authentication.pm:901
#, fuzzy, c-format
msgid "Domain Admin User Name"
msgstr "Домэйн Хэрэглэгч"

#: authentication.pm:902
#, fuzzy, c-format
msgid "Domain Admin Password"
msgstr "Домэйн"

#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#: bootloader.pm:982
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
"\n"
"Choose an operating system from the list above or\n"
"wait for default boot.\n"
"\n"
msgstr ""

#: bootloader.pm:1159
#, fuzzy, c-format
msgid "LILO with text menu"
msgstr "текст"

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

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

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

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

#: bootloader.pm:1247
#, c-format
msgid "not enough room in /boot"
msgstr ""

#: bootloader.pm:1973
#, fuzzy, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "Хаана вы?"

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

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

#: bootloader.pm:2108
#, c-format
msgid "Re-install Boot Loader"
msgstr ""

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

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

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

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

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

#: common.pm:159
#, c-format
msgid "%d minutes"
msgstr "%d минут"

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

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

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

#: diskdrake/dav.pm:17
#, c-format
msgid ""
"WebDAV is a protocol that allows you to mount a web server's directory\n"
"locally, and treat it like a local filesystem (provided the web server is\n"
"configured as a WebDAV server). If you would like to add WebDAV mount\n"
"points, select \"New\"."
msgstr ""

#: diskdrake/dav.pm:25
#, c-format
msgid "New"
msgstr "Шинэ"

#: diskdrake/dav.pm:63 diskdrake/interactive.pm:414 diskdrake/smbnfs_gtk.pm:75
#, c-format
msgid "Unmount"
msgstr "Дискийн төхөөрөмж салгах"

#: diskdrake/dav.pm:64 diskdrake/interactive.pm:410 diskdrake/smbnfs_gtk.pm:76
#, c-format
msgid "Mount"
msgstr "Дискийн төхөөрөмж холбох"

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

#: diskdrake/dav.pm:66 diskdrake/interactive.pm:404
#: diskdrake/interactive.pm:725 diskdrake/interactive.pm:743
#: diskdrake/interactive.pm:747 diskdrake/removable.pm:23
#: diskdrake/smbnfs_gtk.pm:79
#, fuzzy, c-format
msgid "Mount point"
msgstr "Дискийн төхөөрөмж холбох"

#: diskdrake/dav.pm:67 diskdrake/interactive.pm:406
#: diskdrake/interactive.pm:1160 diskdrake/removable.pm:24
#: diskdrake/smbnfs_gtk.pm:80
#, c-format
msgid "Options"
msgstr "Сонголтууд"

#: diskdrake/dav.pm:68 interactive.pm:387 interactive/gtk.pm:453
#, c-format
msgid "Remove"
msgstr "Устгах"

#: diskdrake/dav.pm:69 diskdrake/hd_gtk.pm:187 diskdrake/removable.pm:26
#: diskdrake/smbnfs_gtk.pm:82 interactive/http.pm:151
#, c-format
msgid "Done"
msgstr "Биелэгдэв"

#: diskdrake/dav.pm:78 diskdrake/hd_gtk.pm:128 diskdrake/hd_gtk.pm:292
#: diskdrake/interactive.pm:247 diskdrake/interactive.pm:260
#: diskdrake/interactive.pm:453 diskdrake/interactive.pm:524
#: diskdrake/interactive.pm:542 diskdrake/interactive.pm:547
#: diskdrake/interactive.pm:715 diskdrake/interactive.pm:1000
#: diskdrake/interactive.pm:1051 diskdrake/interactive.pm:1206
#: diskdrake/interactive.pm:1219 diskdrake/interactive.pm:1222
#: diskdrake/interactive.pm:1490 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:23
#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:82
#: fsedit.pm:246 interactive/http.pm:117 interactive/http.pm:118
#: modules/interactive.pm:19 scanner.pm:95 scanner.pm:106 scanner.pm:113
#: scanner.pm:120 wizards.pm:95 wizards.pm:99 wizards.pm:121
#, c-format
msgid "Error"
msgstr "Алдаа"

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

#: diskdrake/dav.pm:90
#, fuzzy, c-format
msgid "The URL must begin with http:// or https://"
msgstr "Вэб хаяг"

#: diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:417 diskdrake/interactive.pm:306
#: diskdrake/interactive.pm:391 diskdrake/interactive.pm:600
#: diskdrake/interactive.pm:818 diskdrake/interactive.pm:882
#: diskdrake/interactive.pm:1031 diskdrake/interactive.pm:1073
#: diskdrake/interactive.pm:1074 diskdrake/interactive.pm:1300
#: diskdrake/interactive.pm:1338 diskdrake/interactive.pm:1489 do_pkgs.pm:19
#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:77 harddrake/sound.pm:399
#, c-format
msgid "Warning"
msgstr "Анхааруулга"

#: diskdrake/dav.pm:106
#, fuzzy, c-format
msgid "Are you sure you want to delete this mount point?"
msgstr "Та суулгалтыг үргэлжлүүлэхийг хүсэж байна уу?"

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

#: diskdrake/dav.pm:125 diskdrake/interactive.pm:498
#: diskdrake/interactive.pm:1362 diskdrake/interactive.pm:1450
#, c-format
msgid "Mount point: "
msgstr "Оруулах(Mount) цэг: "

#: diskdrake/dav.pm:126 diskdrake/interactive.pm:1457
#, c-format
msgid "Options: %s"
msgstr "Сонголтууд: %s"

#: diskdrake/hd_gtk.pm:61 diskdrake/interactive.pm:301
#: diskdrake/smbnfs_gtk.pm:22 fs/mount_point.pm:108
#: fs/partitioning_wizard.pm:53 fs/partitioning_wizard.pm:236
#: fs/partitioning_wizard.pm:244 fs/partitioning_wizard.pm:283
#: fs/partitioning_wizard.pm:431 fs/partitioning_wizard.pm:494
#: fs/partitioning_wizard.pm:577 fs/partitioning_wizard.pm:580
#, c-format
msgid "Partitioning"
msgstr ""

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

#: diskdrake/hd_gtk.pm:110 diskdrake/interactive.pm:1181
#: diskdrake/interactive.pm:1191 diskdrake/interactive.pm:1244
#, fuzzy, c-format
msgid "Read carefully"
msgstr "Унших"

#: diskdrake/hd_gtk.pm:110
#, fuzzy, c-format
msgid "Please make a backup of your data first"
msgstr "аас"

#: diskdrake/hd_gtk.pm:111 diskdrake/interactive.pm:240
#, c-format
msgid "Exit"
msgstr "Гарах"

#: diskdrake/hd_gtk.pm:111
#, c-format
msgid "Continue"
msgstr "Үргэлжилүүлэх"

#: diskdrake/hd_gtk.pm:182 fs/partitioning_wizard.pm:553 interactive.pm:653
#: interactive/gtk.pm:811 interactive/gtk.pm:829 interactive/gtk.pm:850
#: ugtk2.pm:936
#, c-format
msgid "Help"
msgstr "Тусламж"

#: diskdrake/hd_gtk.pm:228
#, c-format
msgid ""
"You have one big Microsoft Windows partition.\n"
"I suggest you first resize that partition\n"
"(click on it, then click on \"Resize\")"
msgstr ""

#: diskdrake/hd_gtk.pm:230
#, c-format
msgid "Please click on a partition"
msgstr "Нэг хуваалтан дээр дарна уу"

#: diskdrake/hd_gtk.pm:244 diskdrake/smbnfs_gtk.pm:63
#, c-format
msgid "Details"
msgstr "Дэлгэрэнгүй"

#: diskdrake/hd_gtk.pm:292
#, fuzzy, c-format
msgid "No hard disk drives found"
msgstr "Үгүй"

#: diskdrake/hd_gtk.pm:323
#, c-format
msgid "Unknown"
msgstr "Үл мэдэгдэх"

#: diskdrake/hd_gtk.pm:388
#, fuzzy, c-format
msgid "Ext4"
msgstr "Гарах"

#: diskdrake/hd_gtk.pm:388 fs/partitioning_wizard.pm:401
#, c-format
msgid "XFS"
msgstr ""

#: diskdrake/hd_gtk.pm:388 fs/partitioning_wizard.pm:401
#, fuzzy, c-format
msgid "Swap"
msgstr "Солилт"

#: diskdrake/hd_gtk.pm:388 fs/partitioning_wizard.pm:401
#, c-format
msgid "SunOS"
msgstr "СанОС"

#: diskdrake/hd_gtk.pm:388 fs/partitioning_wizard.pm:401
#, c-format
msgid "HFS"
msgstr ""

#: diskdrake/hd_gtk.pm:388 fs/partitioning_wizard.pm:401
#, c-format
msgid "Windows"
msgstr "Виндоус"

#: diskdrake/hd_gtk.pm:389 fs/partitioning_wizard.pm:402 services.pm:184
#, c-format
msgid "Other"
msgstr "Бусад"

#: diskdrake/hd_gtk.pm:389 diskdrake/interactive.pm:1377
#: fs/partitioning_wizard.pm:402
#, c-format
msgid "Empty"
msgstr "Хоосон"

#: diskdrake/hd_gtk.pm:396
#, fuzzy, c-format
msgid "Filesystem types:"
msgstr "Файлын систем:"

#: diskdrake/hd_gtk.pm:417
#, fuzzy, c-format
msgid "This partition is already empty"
msgstr "Энэ хуваалтын хэмжээг өөрчилж болохгүй"

#: diskdrake/hd_gtk.pm:426
#, fuzzy, c-format
msgid "Use ``Unmount'' first"
msgstr "Дискийн төхөөрөмж салгах"

#: diskdrake/hd_gtk.pm:426
#, fuzzy, c-format
msgid "Use ``%s'' instead (in expert mode)"
msgstr "Дараахын оронд ``%s'' үүнийг хэрэглэ:"

#: diskdrake/hd_gtk.pm:426 diskdrake/interactive.pm:405
#: diskdrake/interactive.pm:642 diskdrake/removable.pm:25
#: diskdrake/removable.pm:48
#, c-format
msgid "Type"
msgstr "Төрөл"

#: diskdrake/interactive.pm:211
#, c-format
msgid "Choose another partition"
msgstr "Ондоо хуваалт сонго"

#: diskdrake/interactive.pm:211
#, fuzzy, c-format
msgid "Choose a partition"
msgstr "Сонгох"

#: diskdrake/interactive.pm:273 diskdrake/interactive.pm:382
#: interactive/curses.pm:512
#, c-format
msgid "More"
msgstr "Илүү"

#: diskdrake/interactive.pm:281 diskdrake/interactive.pm:294
#: diskdrake/interactive.pm:569 diskdrake/interactive.pm:1285
#, fuzzy, c-format
msgid "Confirmation"
msgstr "Тохиргоо"

#: diskdrake/interactive.pm:281
#, c-format
msgid "Continue anyway?"
msgstr "Ямар ч байсан үргэлжлүүлэх үү?"

#: diskdrake/interactive.pm:286
#, c-format
msgid "Quit without saving"
msgstr "Хадгалахгүйгээр гарах"

#: diskdrake/interactive.pm:286
#, fuzzy, c-format
msgid "Quit without writing the partition table?"
msgstr "Гарах хүснэгт?"

#: diskdrake/interactive.pm:294
#, fuzzy, c-format
msgid "Do you want to save the /etc/fstab modifications?"
msgstr "вы"

#: diskdrake/interactive.pm:301 fs/partitioning_wizard.pm:283
#, fuzzy, c-format
msgid "You need to reboot for the partition table modifications to take effect"
msgstr "Та хүснэгт"

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

#: diskdrake/interactive.pm:319
#, fuzzy, c-format
msgid "Clear all"
msgstr "Устгах"

#: diskdrake/interactive.pm:320
#, fuzzy, c-format
msgid "Auto allocate"
msgstr "Авто"

#: diskdrake/interactive.pm:326
#, c-format
msgid "Toggle to normal mode"
msgstr ""

#: diskdrake/interactive.pm:326
#, c-format
msgid "Toggle to expert mode"
msgstr "Мэргэжилтний горимд шилжүүлэх"

#: diskdrake/interactive.pm:338
#, c-format
msgid "Hard disk drive information"
msgstr "Хатуу диск хөтлөгчийн мэдээлэл"

#: diskdrake/interactive.pm:371
#, fuzzy, c-format
msgid "All primary partitions are used"
msgstr "Бүх"

#: diskdrake/interactive.pm:372
#, c-format
msgid "I cannot add any more partitions"
msgstr "Би өшөө илүү хуваалт нэмж чадахгүйI"

#: diskdrake/interactive.pm:373
#, fuzzy, c-format
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
msgstr "тийш"

#: diskdrake/interactive.pm:384
#, fuzzy, c-format
msgid "Reload partition table"
msgstr "Дахин ачаалах"

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

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

#: diskdrake/interactive.pm:408 diskdrake/interactive.pm:831
#, c-format
msgid "Resize"
msgstr "Хэмжээ өөрчилөх"

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

#: diskdrake/interactive.pm:411 diskdrake/interactive.pm:963
#, c-format
msgid "Add to RAID"
msgstr "RAID руу нэмэх"

#: diskdrake/interactive.pm:412 diskdrake/interactive.pm:982
#, fuzzy, c-format
msgid "Add to LVM"
msgstr "Нэмэх"

#: diskdrake/interactive.pm:413
#, fuzzy, c-format
msgid "Use"
msgstr "Хэрэглэгчийн ID"

#: diskdrake/interactive.pm:415
#, c-format
msgid "Delete"
msgstr "Устгах"

#: diskdrake/interactive.pm:416
#, fuzzy, c-format
msgid "Remove from RAID"
msgstr "Устгах"

#: diskdrake/interactive.pm:417
#, c-format
msgid "Remove from LVM"
msgstr "LVM-с устгах"

#: diskdrake/interactive.pm:418
#, fuzzy, c-format
msgid "Remove from dm"
msgstr "LVM-с устгах"

#: diskdrake/interactive.pm:419
#, fuzzy, c-format
msgid "Modify RAID"
msgstr "Өөрчлөх"

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

#: diskdrake/interactive.pm:431
#, c-format
msgid "Create"
msgstr "Үүсгэх"

#: diskdrake/interactive.pm:453
#, fuzzy, c-format
msgid "Failed to mount partition"
msgstr "Зөөх шинэ"

#: diskdrake/interactive.pm:487 diskdrake/interactive.pm:489
#, fuzzy, c-format
msgid "Create a new partition"
msgstr "шинэ"

#: diskdrake/interactive.pm:491
#, c-format
msgid "Start sector: "
msgstr "Эхлэх сектор: "

#: diskdrake/interactive.pm:494 diskdrake/interactive.pm:1066
#, c-format
msgid "Size in MB: "
msgstr "Хэмжээ МБ-р: "

#: diskdrake/interactive.pm:496 diskdrake/interactive.pm:1067
#, fuzzy, c-format
msgid "Filesystem type: "
msgstr "Файлын систем төрөл "

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

#: diskdrake/interactive.pm:505
#, fuzzy, c-format
msgid "Logical volume name "
msgstr "Локал хэмжээс"

#: diskdrake/interactive.pm:507
#, fuzzy, c-format
msgid "Encrypt partition"
msgstr "Баталгаажуулалт"

#: diskdrake/interactive.pm:508
#, fuzzy, c-format
msgid "Encryption key "
msgstr "Файлын систем"

#: diskdrake/interactive.pm:509 diskdrake/interactive.pm:1494
#, c-format
msgid "Encryption key (again)"
msgstr ""

#: diskdrake/interactive.pm:521 diskdrake/interactive.pm:1490
#, c-format
msgid "The encryption keys do not match"
msgstr ""

#: diskdrake/interactive.pm:522
#, fuzzy, c-format
msgid "Missing encryption key"
msgstr "Файлын систем"

#: diskdrake/interactive.pm:542
#, fuzzy, c-format
msgid ""
"You cannot create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
"First remove a primary partition and create an extended partition."
msgstr "Та шинэ г вы аас."

#: diskdrake/interactive.pm:569 diskdrake/interactive.pm:1285
#: fs/partitioning.pm:48
#, fuzzy, c-format
msgid "Check for bad blocks?"
msgstr "Gá?"

#: diskdrake/interactive.pm:600
#, fuzzy, c-format
msgid "Remove the loopback file?"
msgstr "Устгах?"

#: diskdrake/interactive.pm:623
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr ""

#: diskdrake/interactive.pm:639
#, c-format
msgid "Change partition type"
msgstr "Хуваалтын төрлийг өөрчлөх"

#: diskdrake/interactive.pm:641 diskdrake/removable.pm:47
#, fuzzy, c-format
msgid "Which filesystem do you want?"
msgstr "Ямар төрлийн өгөгдөл та оруулахыг хүсэж байна?"

#: diskdrake/interactive.pm:648
#, c-format
msgid "Switching from %s to %s"
msgstr ""

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

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

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

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

#: diskdrake/interactive.pm:689
#, fuzzy, c-format
msgid "Label:"
msgstr "Бичээс"

#: diskdrake/interactive.pm:710
#, fuzzy, c-format
msgid "Where do you want to mount the loopback file %s?"
msgstr "Хаана вы с?"

#: diskdrake/interactive.pm:711
#, fuzzy, c-format
msgid "Where do you want to mount device %s?"
msgstr "Хаана вы с?"

#: diskdrake/interactive.pm:716
#, fuzzy, c-format
msgid ""
"Cannot unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
msgstr "Цэг бол"

#: diskdrake/interactive.pm:746
#, fuzzy, c-format
msgid "Where do you want to mount %s?"
msgstr "Хаана вы с?"

#: diskdrake/interactive.pm:776 diskdrake/interactive.pm:871
#: fs/partitioning_wizard.pm:129 fs/partitioning_wizard.pm:205
#, c-format
msgid "Resizing"
msgstr "Хэмжээгөөрчилж байна"

#: diskdrake/interactive.pm:776
#, c-format
msgid "Computing FAT filesystem bounds"
msgstr ""

#: diskdrake/interactive.pm:818
#, c-format
msgid "This partition is not resizeable"
msgstr "Энэ хуваалтын хэмжээг өөрчилж болохгүй"

#: diskdrake/interactive.pm:823
#, fuzzy, c-format
msgid "All data on this partition should be backed up"
msgstr "Бүх"

#: diskdrake/interactive.pm:825
#, fuzzy, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "Нээх"

#: diskdrake/interactive.pm:832
#, fuzzy, c-format
msgid "Choose the new size"
msgstr "шинэ"

#: diskdrake/interactive.pm:833
#, c-format
msgid "New size in MB: "
msgstr "Шинэ хэмжээ МБ-р."

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

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

#: diskdrake/interactive.pm:882 fs/partitioning_wizard.pm:213
#, fuzzy, c-format
msgid ""
"To ensure data integrity after resizing the partition(s),\n"
"filesystem checks will be run on your next boot into Microsoft Windows®"
msgstr "тийш с Цонхнууд"

#: diskdrake/interactive.pm:946 diskdrake/interactive.pm:1485
#, fuzzy, c-format
msgid "Filesystem encryption key"
msgstr "Файлын систем"

#: diskdrake/interactive.pm:947
#, fuzzy, c-format
msgid "Enter your filesystem encryption key"
msgstr "Сонгох"

#: diskdrake/interactive.pm:948 diskdrake/interactive.pm:1493
#, c-format
msgid "Encryption key"
msgstr ""

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

#: diskdrake/interactive.pm:963
#, c-format
msgid "Choose an existing RAID to add to"
msgstr "Тийш нэмэхийн тулд одоо байгаа RAID-ийг сонгоно уу"

#: diskdrake/interactive.pm:965 diskdrake/interactive.pm:984
#, c-format
msgid "new"
msgstr "шинэ"

#: diskdrake/interactive.pm:982
#, fuzzy, c-format
msgid "Choose an existing LVM to add to"
msgstr "Сонгох"

#: diskdrake/interactive.pm:994 diskdrake/interactive.pm:1003
#, fuzzy, c-format
msgid "LVM name"
msgstr "нэр?"

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

#: diskdrake/interactive.pm:1000
#, fuzzy, c-format
msgid "\"%s\" already exists"
msgstr "Файл?"

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

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

#: diskdrake/interactive.pm:1051
#, c-format
msgid "This partition cannot be used for loopback"
msgstr ""

#: diskdrake/interactive.pm:1064
#, c-format
msgid "Loopback"
msgstr "Давталт"

#: diskdrake/interactive.pm:1065
#, fuzzy, c-format
msgid "Loopback file name: "
msgstr "нэр "

#: diskdrake/interactive.pm:1070
#, c-format
msgid "Give a file name"
msgstr ""

#: diskdrake/interactive.pm:1073
#, fuzzy, c-format
msgid "File is already used by another loopback, choose another one"
msgstr "Файл бол"

#: diskdrake/interactive.pm:1074
#, fuzzy, c-format
msgid "File already exists. Use it?"
msgstr "Файл?"

#: diskdrake/interactive.pm:1106 diskdrake/interactive.pm:1109
#, fuzzy, c-format
msgid "Mount options"
msgstr "Дискийн төхөөрөмж холбох"

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

#: diskdrake/interactive.pm:1162
#, c-format
msgid "device"
msgstr ""

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

#: diskdrake/interactive.pm:1164
#, fuzzy, c-format
msgid "chunk size in KiB"
msgstr "хэмжээ с"

#: diskdrake/interactive.pm:1182
#, c-format
msgid "Be careful: this operation is dangerous."
msgstr ""

#: diskdrake/interactive.pm:1197
#, fuzzy, c-format
msgid "Partitioning Type"
msgstr "Хуваалтын хүснэгтийн төрөл: %s\n"

#: diskdrake/interactive.pm:1197
#, c-format
msgid "What type of partitioning?"
msgstr "Ямар төрлийн хуваалт бэ?"

#: diskdrake/interactive.pm:1235
#, fuzzy, c-format
msgid "You'll need to reboot before the modification can take effect"
msgstr "Та хүснэгт"

#: diskdrake/interactive.pm:1244
#, c-format
msgid "Partition table of drive %s is going to be written to disk"
msgstr "%s хөтлөгчийн хуваалтын хүснэгт нь одоо диск рүү бичигдэх болно"

#: diskdrake/interactive.pm:1263 fs/format.pm:102 fs/format.pm:109
#, c-format
msgid "Formatting partition %s"
msgstr ""

#: diskdrake/interactive.pm:1276
#, fuzzy, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"Хөтлөгчид уян диск оруулна уу\n"
"Уян диск дээрх бүх өгөгдөл устгагдах болно"

#: diskdrake/interactive.pm:1299
#, fuzzy, c-format
msgid "Move files to the new partition"
msgstr "Зөөх шинэ"

#: diskdrake/interactive.pm:1299
#, c-format
msgid "Hide files"
msgstr "Файлуудыг далдлах"

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

#: diskdrake/interactive.pm:1315
#, fuzzy, c-format
msgid "Moving files to the new partition"
msgstr "Зөөлт шинэ"

#: diskdrake/interactive.pm:1319
#, c-format
msgid "Copying %s"
msgstr "%s-г хуулж байна"

#: diskdrake/interactive.pm:1323
#, c-format
msgid "Removing %s"
msgstr "%s-г устгаж байна"

#: diskdrake/interactive.pm:1337
#, c-format
msgid "partition %s is now known as %s"
msgstr "хуваалт %s нь одоо %s болсон"

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

#: diskdrake/interactive.pm:1363 diskdrake/interactive.pm:1434
#, c-format
msgid "Device: "
msgstr "Төхөөрөмж: "

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

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

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

#: diskdrake/interactive.pm:1370 diskdrake/interactive.pm:1379
#: diskdrake/interactive.pm:1453
#, c-format
msgid "Type: "
msgstr "Төрөл: "

#: diskdrake/interactive.pm:1374 diskdrake/interactive.pm:1438
#, c-format
msgid "Name: "
msgstr "Нэр: "

#: diskdrake/interactive.pm:1381
#, fuzzy, c-format
msgid "Start: sector %s\n"
msgstr "Эхлэх с"

#: diskdrake/interactive.pm:1382
#, c-format
msgid "Size: %s"
msgstr "Хэмжээ: %s"

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

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

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

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

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

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

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

#: diskdrake/interactive.pm:1393
#, c-format
msgid "Encrypted"
msgstr ""

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

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

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

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

#: diskdrake/interactive.pm:1405
#, c-format
msgid ""
"Partition booted by default\n"
"    (for MS-DOS boot, not for lilo)\n"
msgstr ""

#: diskdrake/interactive.pm:1407
#, c-format
msgid "Level %s\n"
msgstr "Түвшин %s\n"

#: diskdrake/interactive.pm:1408
#, fuzzy, c-format
msgid "Chunk size %d KiB\n"
msgstr "хэмжээ с"

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

#: diskdrake/interactive.pm:1411
#, fuzzy, c-format
msgid "Loopback file name: %s"
msgstr "нэр"

#: diskdrake/interactive.pm:1414
#, fuzzy, c-format
msgid ""
"\n"
"Chances are, this partition is\n"
"a Driver partition. You should\n"
"probably leave it alone.\n"
msgstr "бол Драйвер Та"

#: diskdrake/interactive.pm:1417
#, fuzzy, c-format
msgid ""
"\n"
"This special Bootstrap\n"
"partition is for\n"
"dual-booting your system.\n"
msgstr "бол"

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

#: diskdrake/interactive.pm:1435
#, c-format
msgid "Read-only"
msgstr "Зөвхөн-унших"

#: diskdrake/interactive.pm:1436
#, fuzzy, c-format
msgid "Size: %s\n"
msgstr "Хэмжээ с"

#: diskdrake/interactive.pm:1437
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr ""

#: diskdrake/interactive.pm:1439
#, fuzzy, c-format
msgid "Medium type: "
msgstr "Файлын систем төрөл "

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

#: diskdrake/interactive.pm:1441
#, c-format
msgid "Partition table type: %s\n"
msgstr "Хуваалтын хүснэгтийн төрөл: %s\n"

#: diskdrake/interactive.pm:1442
#, fuzzy, c-format
msgid "on channel %d id %d\n"
msgstr "Нээх"

#: diskdrake/interactive.pm:1486
#, fuzzy, c-format
msgid "Choose your filesystem encryption key"
msgstr "Сонгох"

#: diskdrake/interactive.pm:1489
#, fuzzy, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr "бол"

#: diskdrake/interactive.pm:1496
#, fuzzy, c-format
msgid "Encryption algorithm"
msgstr "Баталгаажуулалт"

#: diskdrake/removable.pm:46
#, fuzzy, c-format
msgid "Change type"
msgstr "Өөрчилөх"

#: diskdrake/smbnfs_gtk.pm:81 interactive.pm:129 interactive.pm:550
#: interactive/curses.pm:260 interactive/http.pm:104 interactive/http.pm:160
#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:847 ugtk2.pm:415
#: ugtk2.pm:517 ugtk2.pm:526 ugtk2.pm:812
#, c-format
msgid "Cancel"
msgstr "Хүчингүй"

#: diskdrake/smbnfs_gtk.pm:164
#, fuzzy, c-format
msgid "Cannot login using username %s (bad password?)"
msgstr "Хостын нэр, хэрэглэгчийн нэр болон нууц үг шаардлагатай!"

#: diskdrake/smbnfs_gtk.pm:168 diskdrake/smbnfs_gtk.pm:177
#, fuzzy, c-format
msgid "Domain Authentication Required"
msgstr "Домэйн Баталгаажуулалт"

#: diskdrake/smbnfs_gtk.pm:169
#, c-format
msgid "Which username"
msgstr "Ямар хэрэглэгчийн нэр"

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

#: diskdrake/smbnfs_gtk.pm:178
#, fuzzy, c-format
msgid ""
"Please enter your username, password and domain name to access this host."
msgstr "нэр."

#: diskdrake/smbnfs_gtk.pm:180
#, c-format
msgid "Username"
msgstr "Хэрэглэгчийн нэр"

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

#: diskdrake/smbnfs_gtk.pm:206
#, c-format
msgid "Search servers"
msgstr "Серверүүд хайх"

#: diskdrake/smbnfs_gtk.pm:211
#, fuzzy, c-format
msgid "Search for new servers"
msgstr "Серверүүд хайх"

#: do_pkgs.pm:19 do_pkgs.pm:57
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "%s багц суулгагдах шаардлагатай. Үүнийг суулгахыг хүсэж байна уу?"

#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:82
#, fuzzy, c-format
msgid "Could not install the %s package!"
msgstr "Ямар нэгэн туршилтын хуудас битгий хэвлэ"

#: do_pkgs.pm:28 do_pkgs.pm:65
#, fuzzy, c-format
msgid "Mandatory package %s is missing"
msgstr "с бол"

#: do_pkgs.pm:39 do_pkgs.pm:77
#, c-format
msgid "The following packages need to be installed:\n"
msgstr ""

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

#: do_pkgs.pm:287 pkgs.pm:285
#, fuzzy, c-format
msgid "Removing packages..."
msgstr "%s багцийг устгалт"

#: fs/any.pm:17
#, c-format
msgid ""
"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""

#: fs/any.pm:75 fs/partitioning_wizard.pm:62
#, c-format
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr ""

#: fs/format.pm:106
#, fuzzy, c-format
msgid "Creating and formatting file %s"
msgstr "Үүсгэж байна"

#: fs/format.pm:125
#, fuzzy, c-format
msgid "I do not know how to set label on %s with type %s"
msgstr "%s %s төрөлд хэрхэн форматлахыг би мэдэхгүй байна."

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

#: fs/format.pm:175
#, c-format
msgid "I do not know how to format %s in type %s"
msgstr "%s %s төрөлд хэрхэн форматлахыг би мэдэхгүй байна."

#: fs/format.pm:180 fs/format.pm:182
#, c-format
msgid "%s formatting of %s failed"
msgstr ""

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

#: fs/mount.pm:85
#, c-format
msgid "Mounting partition %s"
msgstr "Хуваалтыг холбож байна %s"

#: fs/mount.pm:86
#, fuzzy, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "Хуваалтыг холбож байна %s"

#: fs/mount.pm:91 fs/mount.pm:108
#, c-format
msgid "Checking %s"
msgstr "%s-ийг шалгаж байна"

#: fs/mount.pm:125 partition_table.pm:409
#, fuzzy, c-format
msgid "error unmounting %s: %s"
msgstr "%s-ийг салгаж байна"

#: fs/mount.pm:140
#, c-format
msgid "Enabling swap partition %s"
msgstr ""

#: fs/mount_options.pm:113
#, c-format
msgid "Enable POSIX Access Control Lists"
msgstr ""

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

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

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

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

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

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

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

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

#: fs/mount_options.pm:138
#, c-format
msgid "Mount the filesystem read-only."
msgstr ""

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

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

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

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

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

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

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

#: fs/mount_point.pm:82
#, fuzzy, c-format
msgid "Duplicate mount point %s"
msgstr "Цэг"

#: fs/mount_point.pm:97
#, fuzzy, c-format
msgid "No partition available"
msgstr "Үгүй"

#: fs/mount_point.pm:100
#, c-format
msgid "Scanning partitions to find mount points"
msgstr "Холболтын цэгүүдийг олохын тулд хуваалтуудыг шалгаж байна"

#: fs/mount_point.pm:107
#, fuzzy, c-format
msgid "Choose the mount points"
msgstr "Сонгох"

#: fs/partitioning.pm:46
#, fuzzy, c-format
msgid "Choose the partitions you want to format"
msgstr "вы"

#: fs/partitioning.pm:75
#, c-format
msgid ""
"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
"you can lose data)"
msgstr ""

#: fs/partitioning.pm:78
#, c-format
msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""

#: fs/partitioning_wizard.pm:53
#, c-format
msgid ""
"You must have a root partition.\n"
"To accomplish this, create a partition (or click on an existing one).\n"
"Then choose action ``Mount point'' and set it to `/'"
msgstr ""

#: fs/partitioning_wizard.pm:59
#, c-format
msgid ""
"You do not have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""

#: fs/partitioning_wizard.pm:93
#, c-format
msgid "Use free space"
msgstr "Сул зайг ашиглах"

#: fs/partitioning_wizard.pm:95
#, c-format
msgid "Not enough free space to allocate new partitions"
msgstr "Шинэ хуваалтуудыг хуваарилахад хангалттай зай байхгүй"

#: fs/partitioning_wizard.pm:103
#, fuzzy, c-format
msgid "Use existing partitions"
msgstr "Хуваалтыг холбож байна %s"

#: fs/partitioning_wizard.pm:105
#, c-format
msgid "There is no existing partition to use"
msgstr "Энд хэрэглэх ямар нэгэн хуваалт алга"

#: fs/partitioning_wizard.pm:129
#, fuzzy, c-format
msgid "Computing the size of the Microsoft Windows® partition"
msgstr "хэмжээ аас Цонхнууд"

#: fs/partitioning_wizard.pm:165
#, fuzzy, c-format
msgid "Use the free space on a Microsoft Windows® partition"
msgstr "Цонхнууд"

#: fs/partitioning_wizard.pm:169
#, fuzzy, c-format
msgid "Which partition do you want to resize?"
msgstr "вы?"

#: fs/partitioning_wizard.pm:172
#, fuzzy, c-format
msgid ""
"Your Microsoft Windows® partition is too fragmented. Please reboot your "
"computer under Microsoft Windows®, run the ``defrag'' utility, then restart "
"the %s installation."
msgstr "Цонхнууд бол Цонхнууд."

#: fs/partitioning_wizard.pm:180
#, fuzzy, c-format
msgid ""
"WARNING!\n"
"\n"
"\n"
"Your Microsoft Windows® partition will be now resized.\n"
"\n"
"\n"
"Be careful: this operation is dangerous. If you have not already done so, "
"you first need to exit the installation, run \"chkdsk c:\" from a Command "
"Prompt under Microsoft Windows® (beware, running graphical program \"scandisk"
"\" is not enough, be sure to use \"chkdsk\" in a Command Prompt!), "
"optionally run defrag, then restart the installation. You should also backup "
"your data.\n"
"\n"
"\n"
"When sure, press %s."
msgstr "АНХААРУУЛГА г Цонхнууд бол вы Хийгдсэн вы Цонхнууд Та Ок."

#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: fs/partitioning_wizard.pm:189 fs/partitioning_wizard.pm:557
#: interactive.pm:549 interactive/curses.pm:263 ugtk2.pm:519
#, c-format
msgid "Next"
msgstr "Дараагийн"

#: fs/partitioning_wizard.pm:195
#, fuzzy, c-format
msgid "Partitionning"
msgstr "Хуваалтын хүснэгтийн төрөл: %s\n"

#: fs/partitioning_wizard.pm:195
#, fuzzy, c-format
msgid "Which size do you want to keep for Microsoft Windows® on partition %s?"
msgstr "хэмжээ вы Цонхнууд"

#: fs/partitioning_wizard.pm:196
#, c-format
msgid "Size"
msgstr "Хэмжээ"

#: fs/partitioning_wizard.pm:205
#, fuzzy, c-format
msgid "Resizing Microsoft Windows® partition"
msgstr "Цонхнууд"

#: fs/partitioning_wizard.pm:210
#, c-format
msgid "FAT resizing failed: %s"
msgstr "FAT хэмжээ өөрчлөлт бүтэлгүйтэв: %s"

#: fs/partitioning_wizard.pm:226
#, fuzzy, c-format
msgid "There is no FAT partition to resize (or not enough space left)"
msgstr "бол үгүй зүүн"

#: fs/partitioning_wizard.pm:231
#, c-format
msgid "Remove Microsoft Windows®"
msgstr "Виндоусыг (ХТ) устгах"

#: fs/partitioning_wizard.pm:231
#, fuzzy, c-format
msgid "Erase and use entire disk"
msgstr "Устгах"

#: fs/partitioning_wizard.pm:235
#, fuzzy, c-format
msgid ""
"You have more than one hard disk drive, which one do you want the installer "
"to use?"
msgstr "Та вы?"

#: fs/partitioning_wizard.pm:243 fsedit.pm:632
#, fuzzy, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "Нээх"

#: fs/partitioning_wizard.pm:253
#, fuzzy, c-format
msgid "Custom disk partitioning"
msgstr "Хэрэглэгчийн"

#: fs/partitioning_wizard.pm:259
#, fuzzy, c-format
msgid "Use fdisk"
msgstr "Хэрэглэгчид"

#: fs/partitioning_wizard.pm:262
#, fuzzy, c-format
msgid ""
"You can now partition %s.\n"
"When you are done, do not forget to save using `w'"
msgstr "Та с вы Хийгдсэн"

#: fs/partitioning_wizard.pm:401
#, fuzzy, c-format
msgid "Ext2/3/4"
msgstr "Гарах"

#: fs/partitioning_wizard.pm:431 fs/partitioning_wizard.pm:577
#, fuzzy, c-format
msgid "I cannot find any room for installing"
msgstr "Би өшөө илүү хуваалт нэмж чадахгүйI"

#: fs/partitioning_wizard.pm:440 fs/partitioning_wizard.pm:584
#, c-format
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr ""

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

#: fs/partitioning_wizard.pm:594
#, fuzzy, c-format
msgid "Partitioning failed: %s"
msgstr "Хуваалтын хүснэгтийн төрөл: %s\n"

#: fs/type.pm:393
#, fuzzy, c-format
msgid "You cannot use JFS for partitions smaller than 16MB"
msgstr "Та"

#: fs/type.pm:394
#, fuzzy, c-format
msgid "You cannot use ReiserFS for partitions smaller than 32MB"
msgstr "Та"

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

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

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

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

#: fsedit.pm:247
#, c-format
msgid ""
"I cannot read the partition table of device %s, it's too corrupted for me :"
"(\n"
"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
"The other solution is to not allow DrakX to modify the partition table.\n"
"(the error is %s)\n"
"\n"
"Do you agree to lose all the partitions?\n"
msgstr ""

#: fsedit.pm:427
#, fuzzy, c-format
msgid "Mount points must begin with a leading /"
msgstr "Дискийн төхөөрөмж холбох Цэг"

#: fsedit.pm:428
#, fuzzy, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr "Дискийн төхөөрөмж холбох Цэг"

#: fsedit.pm:429
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Энд холболтын цэгтэй хуваалт хэдийн байна %s\n"

#: fsedit.pm:434
#, fuzzy, c-format
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
"Please be sure to add a separate /boot partition"
msgstr "Та бол"

#: fsedit.pm:440
#, fuzzy, c-format
msgid ""
"Metadata version unsupported for a boot partition. Please be sure to add a "
"separate /boot partition."
msgstr "Та бол"

#: fsedit.pm:448
#, fuzzy, c-format
msgid ""
"You've selected a software RAID partition as /boot.\n"
"No bootloader is able to handle this."
msgstr "Та бол"

#: fsedit.pm:452
#, c-format
msgid "Metadata version unsupported for a boot partition."
msgstr ""

#: fsedit.pm:459
#, fuzzy, c-format
msgid ""
"You've selected an encrypted partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
"Please be sure to add a separate /boot partition"
msgstr "Та бол"

#: fsedit.pm:465 fsedit.pm:483
#, fuzzy, c-format
msgid "You cannot use an encrypted filesystem for mount point %s"
msgstr "Та Цэг"

#: fsedit.pm:469
#, fuzzy, c-format
msgid ""
"You cannot use the LVM Logical Volume for mount point %s since it spans "
"physical volumes"
msgstr "Та Чанга Цэг"

#: fsedit.pm:471
#, fuzzy, c-format
msgid ""
"You've selected the LVM Logical Volume as root (/).\n"
"The bootloader is not able to handle this when the volume spans physical "
"volumes.\n"
"You should create a separate /boot partition first"
msgstr "Та бол"

#: fsedit.pm:475 fsedit.pm:477
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr ""

#: fsedit.pm:479 fsedit.pm:481
#, fuzzy, c-format
msgid ""
"You need a true filesystem (ext2/3/4, reiserfs, xfs, or jfs) for this mount "
"point\n"
msgstr "Та Цэг"

#: fsedit.pm:548
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr ""

#: fsedit.pm:550
#, fuzzy, c-format
msgid "Nothing to do"
msgstr "Юу ч үгүй"

#: harddrake/data.pm:62
#, c-format
msgid "SATA controllers"
msgstr "SATA хянагчууд"

#: harddrake/data.pm:71
#, c-format
msgid "RAID controllers"
msgstr "RAID хянагчууд"

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

#: harddrake/data.pm:92
#, c-format
msgid "Card readers"
msgstr ""

#: harddrake/data.pm:101
#, c-format
msgid "Firewire controllers"
msgstr "Галтханын хяналтууд"

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

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

#: harddrake/data.pm:128
#, c-format
msgid "USB controllers"
msgstr "USB хянагчууд"

#: harddrake/data.pm:137
#, fuzzy, c-format
msgid "USB ports"
msgstr "USB хэвлэгч"

#: harddrake/data.pm:146
#, c-format
msgid "SMBus controllers"
msgstr "SMBus хянагчууд"

#: harddrake/data.pm:155
#, c-format
msgid "Bridges and system controllers"
msgstr ""

#: harddrake/data.pm:167
#, c-format
msgid "Floppy"
msgstr "Уян диск"

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

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

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

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

#: harddrake/data.pm:222
#, fuzzy, c-format
msgid "CD/DVD burners"
msgstr "CD"

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

#: harddrake/data.pm:242
#, c-format
msgid "Tape"
msgstr "Хальс"

#: harddrake/data.pm:253
#, c-format
msgid "AGP controllers"
msgstr "AGP хянагчууд"

#: harddrake/data.pm:262
#, c-format
msgid "Videocard"
msgstr ""

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

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

#: harddrake/data.pm:289
#, fuzzy, c-format
msgid "Other MultiMedia devices"
msgstr "Бусад"

#: harddrake/data.pm:298
#, c-format
msgid "Soundcard"
msgstr "Дууны карт"

#: harddrake/data.pm:312
#, c-format
msgid "Webcam"
msgstr "Вэб дуран"

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

#: harddrake/data.pm:337
#, fuzzy, c-format
msgid "ISDN adapters"
msgstr "ИСДН(ISDN)"

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

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

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

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

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

#: harddrake/data.pm:393
#, c-format
msgid "Ethernetcard"
msgstr "Сүлжээний карт"

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

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

#: harddrake/data.pm:432
#, c-format
msgid "Memory"
msgstr "Санах ой"

#: harddrake/data.pm:441
#, c-format
msgid "Printer"
msgstr "Хэвлэгч"

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

#: harddrake/data.pm:464
#, c-format
msgid "Joystick"
msgstr ""

#: harddrake/data.pm:474
#, c-format
msgid "Keyboard"
msgstr "Гар"

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

#: harddrake/data.pm:497
#, c-format
msgid "Mouse"
msgstr "Хулгана"

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

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

#: harddrake/data.pm:529
#, c-format
msgid "Scanner"
msgstr "Хуулан оруулагч"

#: harddrake/data.pm:540
#, fuzzy, c-format
msgid "Unknown/Others"
msgstr "Тодорхойгүй"

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

#: harddrake/sound.pm:270
#, fuzzy, c-format
msgid "Please Wait... Applying the configuration"
msgstr "Хүлээх"

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

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

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

#: harddrake/sound.pm:347
#, c-format
msgid "Troubleshooting"
msgstr "Асуудал гарч байна"

#: harddrake/sound.pm:354
#, fuzzy, c-format
msgid "No alternative driver"
msgstr "Үгүй"

#: harddrake/sound.pm:355
#, c-format
msgid ""
"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
"currently uses \"%s\""
msgstr ""

#: harddrake/sound.pm:362
#, fuzzy, c-format
msgid "Sound configuration"
msgstr "Драйвер"

#: harddrake/sound.pm:364
#, c-format
msgid ""
"Here you can select an alternative driver (either OSS or ALSA) for your "
"sound card (%s)."
msgstr ""

#. -PO: here the first %s is either "OSS" or "ALSA", 
#. -PO: the second %s is the name of the current driver
#. -PO: and the third %s is the name of the default driver
#: harddrake/sound.pm:369
#, c-format
msgid ""
"\n"
"\n"
"Your card currently uses the %s\"%s\" driver (the default driver for your "
"card is \"%s\")"
msgstr ""

#: harddrake/sound.pm:371
#, c-format
msgid ""
"OSS (Open Sound System) was the first sound API. It's an OS independent "
"sound API (it's available on most UNIX(tm) systems) but it's a very basic "
"and limited API.\n"
"What's more, OSS drivers all reinvent the wheel.\n"
"\n"
"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
"which\n"
"supports quite a large range of ISA, USB and PCI cards.\n"
"\n"
"It also provides a much higher API than OSS.\n"
"\n"
"To use alsa, one can either use:\n"
"- the old compatibility OSS API\n"
"- the new ALSA API that provides many enhanced features but requires using "
"the ALSA library.\n"
msgstr ""

#: harddrake/sound.pm:385 harddrake/sound.pm:468
#, fuzzy, c-format
msgid "Driver:"
msgstr "Драйвер:"

#: harddrake/sound.pm:399
#, c-format
msgid ""
"The old \"%s\" driver is blacklisted.\n"
"\n"
"It has been reported to oops the kernel on unloading.\n"
"\n"
"The new \"%s\" driver will only be used on next bootstrap."
msgstr ""

#: harddrake/sound.pm:407
#, c-format
msgid "No open source driver"
msgstr "Нэллтэй эх код бүхий драйвер алга"

#: harddrake/sound.pm:408
#, c-format
msgid ""
"There's no free driver for your sound card (%s), but there's a proprietary "
"driver at \"%s\"."
msgstr ""

#: harddrake/sound.pm:411
#, fuzzy, c-format
msgid "No known driver"
msgstr "Нэллтэй эх код бүхий драйвер алга"

#: harddrake/sound.pm:412
#, fuzzy, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr "Алдаа: Таны дууны картны \"%s\" драйвер жагсаалтанд байхгүй байна"

#: harddrake/sound.pm:427
#, fuzzy, c-format
msgid "Sound troubleshooting"
msgstr "Асуудал гарч байна"

#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: harddrake/sound.pm:430
#, c-format
msgid ""
"The classic bug sound tester is to run the following commands:\n"
"\n"
"\n"
"- \"lspcidrake -v | fgrep -i AUDIO\" will tell you which driver your card "
"uses\n"
"by default\n"
"\n"
"- \"grep sound-slot /etc/modprobe.conf\" will tell you what driver it\n"
"currently uses\n"
"\n"
"- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
"loaded or not\n"
"\n"
"- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" will\n"
"tell you if sound and alsa services are configured to be run on\n"
"initlevel 3\n"
"\n"
"- \"aumix -q\" will tell you if the sound volume is muted or not\n"
"\n"
"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
msgstr ""

#: harddrake/sound.pm:457
#, c-format
msgid "Let me pick any driver"
msgstr ""

#: harddrake/sound.pm:460
#, c-format
msgid "Choosing an arbitrary driver"
msgstr ""

#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: harddrake/sound.pm:463
#, fuzzy, c-format
msgid ""
"If you really think that you know which driver is the right one for your "
"card\n"
"you can pick one from the above list.\n"
"\n"
"The current driver for your \"%s\" sound card is \"%s\" "
msgstr "вы вы бол баруун ямх жигсаалт г с бол с "

#: harddrake/v4l.pm:12
#, c-format
msgid "Auto-detect"
msgstr "Автомат танилт"

#: harddrake/v4l.pm:97 harddrake/v4l.pm:285 harddrake/v4l.pm:337
#, fuzzy, c-format
msgid "Unknown|Generic"
msgstr "Тодорхойгүй"

#: harddrake/v4l.pm:130
#, fuzzy, c-format
msgid "Unknown|CPH05X (bt878) [many vendors]"
msgstr "Тодорхойгүй"

#: harddrake/v4l.pm:131
#, c-format
msgid "Unknown|CPH06X (bt878) [many vendors]"
msgstr "Тодорхойгүй|CPH06X (bt878) [олон нийлүүлэгчид]"

#: harddrake/v4l.pm:475
#, c-format
msgid ""
"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
"detect the rights parameters.\n"
"If your card is misdetected, you can force the right tuner and card types "
"here. Just select your TV card parameters if needed."
msgstr ""
"Ихэнх орчин үеийн ТВ картуудын хувьд GNU/Linux цөмийн bttv модуль тохирох "
"параметрүүдийг автоматаар таньдаг.\n"
"Хэрэв таны карт буруу танигдсан бол та тохирох тоглуулагч болон картын "
"төрлийг энд сонгож болно. Зүгээр л ТВ картныхаа хэрэгтэй параметрүүдийг "
"сонгоно уу."

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

#: harddrake/v4l.pm:479
#, fuzzy, c-format
msgid "Tuner type:"
msgstr "төрөл:"

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

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

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

#: interactive.pm:262
#, fuzzy, c-format
msgid "Choose a file"
msgstr "Файл сонгох"

#: interactive.pm:387 interactive/gtk.pm:453
#, c-format
msgid "Add"
msgstr "Нэмэх"

#: interactive.pm:387 interactive/gtk.pm:453
#, c-format
msgid "Modify"
msgstr "Өөрчлөх"

#: interactive.pm:549 interactive/curses.pm:263 ugtk2.pm:519
#, c-format
msgid "Finish"
msgstr "Дуусгах"

#: interactive.pm:550 interactive/curses.pm:260 ugtk2.pm:517
#, c-format
msgid "Previous"
msgstr "Өмнөх"

#: interactive/curses.pm:556 ugtk2.pm:872
#, fuzzy, c-format
msgid "No file chosen"
msgstr "Файл сонгогч"

#: interactive/curses.pm:560 ugtk2.pm:876
#, fuzzy, c-format
msgid "You have chosen a directory, not a file"
msgstr "»/« нэр түлхүүр биш зөвхөн лавлах байх боломжтой. "

#: interactive/curses.pm:562 ugtk2.pm:878
#, fuzzy, c-format
msgid "No such directory"
msgstr "Лавлах биш"

#: interactive/curses.pm:562 ugtk2.pm:878
#, fuzzy, c-format
msgid "No such file"
msgstr %s« файл алга\n"

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

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

#: interactive/stdio.pm:30 interactive/stdio.pm:155
#, c-format
msgid "Your choice? (default %s) "
msgstr "Таны сонголт уу? (үндсэн нь %s) "

#: interactive/stdio.pm:54
#, c-format
msgid ""
"Entries you'll have to fill:\n"
"%s"
msgstr ""
"Та бөглөх хэрэгтэй болох утгууд:\n"
"%s"

#: interactive/stdio.pm:70
#, fuzzy, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "Таны сонголт уу? (үндсэн нь %s) "

#: interactive/stdio.pm:97
#, fuzzy, c-format
msgid "Button `%s': %s"
msgstr "Товч %d:"

#: interactive/stdio.pm:98
#, fuzzy, c-format
msgid "Do you want to click on this button?"
msgstr "Та суулгалтыг үргэлжлүүлэхийг хүсэж байна уу?"

#: interactive/stdio.pm:110
#, fuzzy, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "Таны сонголт уу? (үндсэн нь %s) "

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

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

#: interactive/stdio.pm:131
#, c-format
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
"Your choice? "
msgstr ""

#: interactive/stdio.pm:144
#, fuzzy, c-format
msgid ""
"=> Notice, a label changed:\n"
"%s"
msgstr "Мэдэгдэл Бичээс г"

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

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

#: lang.pm:220
#, c-format
msgid "Andorra"
msgstr "Андорра"

#: lang.pm:221 timezone.pm:226
#, c-format
msgid "United Arab Emirates"
msgstr "Арабын Нэгдсэн Эмират"

#: lang.pm:222
#, c-format
msgid "Afghanistan"
msgstr "Афганистан"

#: lang.pm:223
#, c-format
msgid "Antigua and Barbuda"
msgstr "Антигуа болон Барбуда"

#: lang.pm:224
#, c-format
msgid "Anguilla"
msgstr "Ангуйлла"

#: lang.pm:225
#, c-format
msgid "Albania"
msgstr "Албани"

#: lang.pm:226
#, c-format
msgid "Armenia"
msgstr "Армени"

#: lang.pm:227
#, c-format
msgid "Netherlands Antilles"
msgstr "Нидерландын Антилын арлууд"

#: lang.pm:228
#, c-format
msgid "Angola"
msgstr "Ангол"

#: lang.pm:229
#, c-format
msgid "Antarctica"
msgstr "Антрактид"

#: lang.pm:230 timezone.pm:271
#, c-format
msgid "Argentina"
msgstr "Аргентин"

#: lang.pm:231
#, c-format
msgid "American Samoa"
msgstr "Америкийн Самао"

#: lang.pm:232 mirror.pm:12 timezone.pm:229
#, c-format
msgid "Austria"
msgstr "Австри"

#: lang.pm:233 mirror.pm:11 timezone.pm:267
#, c-format
msgid "Australia"
msgstr "Австрали"

#: lang.pm:234
#, c-format
msgid "Aruba"
msgstr "Аруба"

#: lang.pm:235
#, c-format
msgid "Azerbaijan"
msgstr "Азарбажани"

#: lang.pm:236
#, c-format
msgid "Bosnia and Herzegovina"
msgstr "Босни ба Херцеговина"

#: lang.pm:237
#, c-format
msgid "Barbados"
msgstr "Барбадос"

#: lang.pm:238 timezone.pm:211
#, c-format
msgid "Bangladesh"
msgstr "Бангладеш"

#: lang.pm:239 mirror.pm:13 timezone.pm:231
#, c-format
msgid "Belgium"
msgstr "Бельги"

#: lang.pm:240
#, c-format
msgid "Burkina Faso"
msgstr "Буркина Фасо"

#: lang.pm:241 timezone.pm:232
#, c-format
msgid "Bulgaria"
msgstr "Болгарь"

#: lang.pm:242
#, c-format
msgid "Bahrain"
msgstr "Бахрайн"

#: lang.pm:243
#, c-format
msgid "Burundi"
msgstr "Бурунди"

#: lang.pm:244
#, c-format
msgid "Benin"
msgstr "Бенин"

#: lang.pm:245
#, c-format
msgid "Bermuda"
msgstr "Бермуда"

#: lang.pm:246
#, c-format
msgid "Brunei Darussalam"
msgstr "Бруне Даруссалам"

#: lang.pm:247
#, c-format
msgid "Bolivia"
msgstr "Болив"

#: lang.pm:248 mirror.pm:14 timezone.pm:272
#, c-format
msgid "Brazil"
msgstr "Бразил"

#: lang.pm:249
#, c-format
msgid "Bahamas"
msgstr "Бахама"

#: lang.pm:250
#, c-format
msgid "Bhutan"
msgstr "Бутан"

#: lang.pm:251
#, c-format
msgid "Bouvet Island"
msgstr "Бувет Арал"

#: lang.pm:252
#, c-format
msgid "Botswana"
msgstr "Ботсвана"

#: lang.pm:253 timezone.pm:230
#, c-format
msgid "Belarus"
msgstr "Беларус"

#: lang.pm:254
#, c-format
msgid "Belize"
msgstr "Белиз"

#: lang.pm:255 mirror.pm:15 timezone.pm:261
#, c-format
msgid "Canada"
msgstr "Канад"

#: lang.pm:256
#, c-format
msgid "Cocos (Keeling) Islands"
msgstr "Кокос (Кийлинг) -ын Аралууд"

#: lang.pm:257
#, c-format
msgid "Congo (Kinshasa)"
msgstr "Конго (Киншаса)"

#: lang.pm:258
#, c-format
msgid "Central African Republic"
msgstr "Төв Африкийн Бүгд Найрамдах Улс"

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

#: lang.pm:260 mirror.pm:39 timezone.pm:255
#, c-format
msgid "Switzerland"
msgstr "Швейцарь"

#: lang.pm:261
#, c-format
msgid "Cote d'Ivoire"
msgstr "Кот-д'Ивуар"

#: lang.pm:262
#, c-format
msgid "Cook Islands"
msgstr "Коок Аралууд"

#: lang.pm:263 timezone.pm:273
#, c-format
msgid "Chile"
msgstr "Чили"

#: lang.pm:264
#, c-format
msgid "Cameroon"
msgstr "Камерун"

#: lang.pm:265 timezone.pm:212
#, c-format
msgid "China"
msgstr "Хятад"

#: lang.pm:266
#, c-format
msgid "Colombia"
msgstr "Колумб"

#: lang.pm:267 mirror.pm:16
#, c-format
msgid "Costa Rica"
msgstr "Коста Рика"

#: lang.pm:268
#, c-format
msgid "Serbia & Montenegro"
msgstr ""

#: lang.pm:269
#, c-format
msgid "Cuba"
msgstr "Куба"

#: lang.pm:270
#, c-format
msgid "Cape Verde"
msgstr "Капе Верде"

#: lang.pm:271
#, c-format
msgid "Christmas Island"
msgstr "Кристмасын Арал"

#: lang.pm:272
#, c-format
msgid "Cyprus"
msgstr "Кипр"

#: lang.pm:273 mirror.pm:17 timezone.pm:233
#, c-format
msgid "Czech Republic"
msgstr "Чех"

#: lang.pm:274 mirror.pm:22 timezone.pm:238
#, c-format
msgid "Germany"
msgstr "Герман"

#: lang.pm:275
#, c-format
msgid "Djibouti"
msgstr "Дижибути"

#: lang.pm:276 mirror.pm:18 timezone.pm:234
#, c-format
msgid "Denmark"
msgstr "Дани"

#: lang.pm:277
#, c-format
msgid "Dominica"
msgstr "Доминик"

#: lang.pm:278
#, c-format
msgid "Dominican Republic"
msgstr "Доминиканы Бүгд Найрамдах Улс"

#: lang.pm:279
#, c-format
msgid "Algeria"
msgstr "Алжир"

#: lang.pm:280
#, c-format
msgid "Ecuador"
msgstr "Эквадор"

#: lang.pm:281 mirror.pm:19 timezone.pm:235
#, c-format
msgid "Estonia"
msgstr "Эстони"

#: lang.pm:282
#, c-format
msgid "Egypt"
msgstr "Египт"

#: lang.pm:283
#, c-format
msgid "Western Sahara"
msgstr "Баруун Сахара"

#: lang.pm:284
#, c-format
msgid "Eritrea"
msgstr "Эритреа"

#: lang.pm:285 mirror.pm:37 timezone.pm:253
#, c-format
msgid "Spain"
msgstr "Испани"

#: lang.pm:286
#, c-format
msgid "Ethiopia"
msgstr "Этиоп"

#: lang.pm:287 mirror.pm:20 timezone.pm:236
#, c-format