summaryrefslogtreecommitdiffstats
path: root/perl-install/interactive/newt.pm
blob: 79dd93ebae08f2e6813669e5205ea6e3bdb34cae (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
package interactive::newt; # $Id$

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

@ISA = qw(interactive);

use interactive;
use common;
use log;
use Newt::Newt; #- !! provides Newt and not Newt::Newt

my ($width, $height) = (80, 25);
my @wait_messages;

sub new {
    Newt::Init();
    Newt::Cls();
    Newt::SetSuspendCallback();
    ($width, $height) = Newt::GetScreenSize();
    open STDERR, ">/dev/null" if $::isStandalone && !$::testing;
    bless {}, $_[0];
}

sub enter_console { Newt::Suspend() }
sub leave_console { Newt::Resume() }
sub suspend { Newt::Suspend() }
sub resume { Newt::Resume() }
sub end { Newt::Finished() }
sub exit { end(); exit($_[1]) }
END { end() }

sub messages { 
    my ($width, @messages) = @_;
    warp_text(join("\n", @messages), $width - 9);
}

sub myTextbox {
    my ($allow_scroll, $free_height, @messages) = @_;

    my @l = messages($width, @messages);
    my $h = min($free_height - 13, int @l);

    my $want_scroll;
    if ($h < @l) {
	if ($allow_scroll) {
	    $want_scroll = 1;
	} else {
	    # remove the text, no other way!
	    @l = @l[0 .. $h-1];
	}
    }

    my $mess = Newt::Component::Textbox(1, 0, my $w = max(map { length } @l) + 1, $h, $want_scroll);
    $mess->TextboxSetText(join("\n", @l));
    $mess, $w + 1, $h;
}

sub separator {
    my $blank = Newt::Component::Form(\undef, '', 0);
    $blank->FormSetWidth($_[0]);
    $blank->FormSetHeight($_[1]);
    $blank;
}
sub checkval { $_[0] && $_[0] ne ' '  ? '*' : ' ' }

sub ask_fromW {
    my ($o, $common, $l, $l2) = @_;

    if (@$l == 1 && $l->[0]{list} && @{$l->[0]{list}} == 2 && listlength(map { split "\n" } @{$common->{messages}}) > 20) {
	#- special ugly case, esp. for license agreement
	my $e = $l->[0];
	my $ok_disabled = $common->{callbacks} && delete $common->{callbacks}{ok_disabled};
	($common->{ok}, $common->{cancel}) = map { may_apply($e->{format}, $_) } @{$e->{list}};
	do {
	    ${$e->{val}} = ask_fromW_real($o, $common, [], $l2) ? $e->{list}[0] : $e->{list}[1];
	} while $ok_disabled && $ok_disabled->();
	1;
    } elsif ((any { $_->{type} ne 'button' } @$l) || @$l < 5) {
	&ask_fromW_real;
    } else {
	$common->{cancel} = N("Do") if $common->{cancel} eq '';
	my $r;
	do {
	    my @choices = map {
		my $s = simplify_string(may_apply($_->{format}, ${$_->{val}}));
		$s = "$_->{label}: $s" if $_->{label};
		{ label => $s, clicked_may_quit => $_->{clicked_may_quit} }
	    } @$l;
	    #- replace many buttons with a list
	    my $new_l = [ { val => \$r, type => 'list', list => \@choices, format => sub { $_[0]{label} }, sort => 0 } ];
	    ask_fromW_real($o, $common, $new_l, $l2) and return;
	} until $r->{clicked_may_quit}->();
	1;
    }
}

sub ask_fromW_real {
    my ($_o, $common, $l, $l2) = @_;
    my $ignore; #-to handle recursivity
    my $old_focus = -2;

    my @l = $common->{advanced_state} ? @$l2 : @$l;
    my @messages = (@{$common->{messages}}, if_($common->{advanced_state}, @{$common->{advanced_messages}}));

    #-the widgets
    my (@widgets, $total_size, $has_scroll);

    my $label_width;
    my $get_label_width = sub {
	$label_width ||= max(map { length($_->{label}) } @l);
    };

    my $set_all = sub {
	$ignore = 1;
	$_->{set}->(${$_->{e}{val}}) foreach @widgets;
#	$_->{w}->set_sensitive(!$_->{e}{disabled}()) foreach @widgets;
	$ignore = 0;
    };
    my $get_all = sub {
	${$_->{e}{val}} = $_->{get}->() foreach @widgets;
    };
    my $create_widget = sub {
	my ($e, $ind) = @_;

	$e->{type} = 'list' if $e->{type} =~ /iconlist/;

	#- combo doesn't exist, fallback to a sensible default
	$e->{type} = $e->{not_edit} ? 'list' : 'entry' if $e->{type} eq 'combo';

	my $changed = sub {
	    return if $ignore;
	    return $old_focus++ if $old_focus == -2; #- handle special first case
	    $get_all->();

	    #- TODO: this is very rough :(
	    $common->{callbacks}{$old_focus == $ind ? 'changed' : 'focus_out'}->($ind);

	    $set_all->();
	    $old_focus = $ind;
	};

	my ($w, $real_w, $set, $get, $expand, $size, $invalid_choice, $extra_text);
	if ($e->{type} eq 'bool') {
	    my $subwidth = $width - $get_label_width->() - 9;
	    my @text = messages($subwidth, $e->{text} || '');
	    $size = @text;
	    $w = Newt::Component::Checkbox(shift(@text), checkval(${$e->{val}}), " *");
	    if (@text) {
		$extra_text = Newt::Component::Textbox(-1, -1, $subwidth, $size - 1, 0);
		$extra_text->TextboxSetText(join("\n", @text));
	    }
	    $set = sub { $w->CheckboxSetValue(checkval($_[0])) };
	    $get = sub { $w->CheckboxGetValue == ord '*' };
	} elsif ($e->{type} eq 'button') {
	    $w = Newt::Component::Button(simplify_string(may_apply($e->{format}, ${$e->{val}})));
	} elsif ($e->{type} eq 'treelist') {
	    $e->{formatted_list} = [ map { may_apply($e->{format}, $_) } @{$e->{list}} ];
	    my $data_tree = interactive::helper_separator_tree_to_tree($e->{separator}, $e->{list}, $e->{formatted_list});

	    my $count; $count = sub {
		my ($t) = @_;
		1 + ($t->{_leaves_} ? int @{$t->{_leaves_}} : 0) 
		  + ($t->{_order_} ? sum(map { $count->($t->{$_}) } @{$t->{_order_}}) : 0);
	    };
	    $size = $count->($data_tree);
	    
	    my ($h) = @l == 1 && $height > 30 ? 10 : 5;
	    my $scroll = $size > $h;
	    $has_scroll = 1;
	    $size = min($size, $h);

	    $w = Newt::Component::Tree($size, $scroll);

	    my $wi;
	    my $add_item = sub {
		my ($text, $index, $parents) = @_;
		$text = simplify_string($text, $width - 10);
		$wi = max($wi, length($text) + 3 * @$parents + 4);
		$w->TreeAdd($text, $index, $parents);
	    };

	    my @data = '';
	    my $populate; $populate = sub {
		my ($node, $parents) = @_;
		if (my $l = $node->{_order_}) {
		    each_index {
			$add_item->($_, 0, $parents);
			$populate->($node->{$_}, [ @$parents, $::i ]);
		    } @$l;
		}
		if (my $l = $node->{_leaves_}) {
		    foreach (@$l) {
			my ($leaf, $data) = @$_;
			$add_item->($leaf, int(@data), $parents);
			push @data, $data;
		    }
		}
	    };
	    $populate->($data_tree, []);

	    $w->TreeSetWidth($wi + 1);
	    $get = sub { 
		my $i = $w->TreeGetCurrent;
		$invalid_choice = $i == 0;
		$data[$i];
	    };
	    $set = sub {
		my ($data) = @_;
		eval { 
		    my $i = find_index { $_ eq $data } @data;
		    $w->TreeSetCurrent($i);
		} if $data;
		1;
	    };
	} elsif ($e->{type} =~ /list/) {
	    my ($h) = @l == 1 && $height > 30 ? 10 : 5;
	    my $scroll = @{$e->{list}} > $h ? 1 << 2 : 0;
	    $has_scroll = 1;
	    $size = min(int @{$e->{list}}, $h);

	    $w = Newt::Component::Listbox($size, $scroll); #- NEWT_FLAG_SCROLL	    

	    my @l = map { 
		my $t = simplify_string(may_apply($e->{format}, $_), $width - 10);
		$w->ListboxAddEntry($t, $_);
		$t;
	    } @{$e->{list}};

	    $w->ListboxSetWidth(max(map { length($_) } @l) + 3); # 3 added for the scrollbar (?)
	    $get = sub { $w->ListboxGetCurrent };
	    $set = sub {
		my ($val) = @_;
		each_index {
		    $w->ListboxSetCurrent($::i) if $val eq $_;
		} @{$e->{list}};
	    };
	} else {
	    $w = Newt::Component::Entry('', 20, ($e->{hidden} && 1 << 11) | (1 << 2));
	    $get = sub { $w->EntryGetValue };
	    $set = sub { $w->EntrySet($_[0], 1) };
	}
	$total_size += $size || 1;

	#- !! callbacks must be kept otherwise perl will free them !!
	#- (better handling of addCallback needed)

	{ e => $e, w => $w, real_w => $real_w || $w, expand => $expand, callback => $changed,
	  get => $get || sub { ${$e->{val}} }, set => $set || sub {},
	  extra_text => $extra_text, invalid_choice => \$invalid_choice };
    };
    @widgets = map_index { $create_widget->($_, $::i) } @l;

    $_->{w}->addCallback($_->{callback}) foreach @widgets;

    $set_all->();

    my $grid = Newt::Grid::CreateGrid(3, max(1, sum(map { $_->{extra_text} ? 2 : 1 } @widgets)));
    my $i;
    foreach (@widgets) {
	$grid->GridSetField(0, $i, 1, ${Newt::Component::Label($_->{e}{label})}, 0, 0, 1, 0, 1, 0);
	$grid->GridSetField(1, $i, 1, ${$_->{real_w}}, 0, 0, 0, 0, 1, 0);
	$i++;
	if ($_->{extra_text}) {
	    $grid->GridSetField(0, $i, 1, ${Newt::Component::Label('')}, 0, 0, 1, 0, 1, 0);
	    $grid->GridSetField(1, $i, 1, ${$_->{extra_text}}, 0, 0, 0, 0, 1, 0);
	    $i++;
	}
    }

    my $listg = do {
	my $wanted_header_height = min(8, listlength(messages($width, @messages)));
	my $height_avail = $height - $wanted_header_height - 13;
	#- use a scrolled window if there is a lot of checkboxes (aka 
	#- ask_many_from_list) or a lot of widgets in general (aka
	#- options of a native PostScript printer in printerdrake)
	#- !! works badly together with list's (lists are one widget, so a
	#- big list window will not switch to scrollbar mode) :-(
	if (@l > 3 && $total_size > $height_avail) {
	    $grid->GridPlace(1, 1); #- Uh?? otherwise the size allocated is bad
	    if ($has_scroll) {
		#- :'-(
	    }
	    $has_scroll = 1;
	    $total_size = $height_avail;

	    my $scroll = Newt::Component::VerticalScrollbar($height_avail, 9, 10); # 9=NEWT_COLORSET_CHECKBOX, 10=NEWT_COLORSET_ACTCHECKBOX
	    my $subf = $scroll->Form('', 0);
	    $subf->FormSetHeight($height_avail);
	    $subf->FormAddGrid($grid, 0);
	    Newt::Grid::HCloseStacked3($subf, separator(1, $height_avail-1), $scroll);
	} else {
	    $grid;
	}
    };

    my ($ok, $cancel) = ($common->{ok}, $common->{cancel});
    $cancel = $::isWizard ? N("Previous") : N("Cancel") if !defined $cancel && !defined $ok;
    $ok ||= $::isWizard ? ($::Wizard_finished ? N("Finish") : N("Next")) : N("Ok");

    my @okcancel = grep { $_ } $ok, $cancel;
    @okcancel = reverse(@okcancel) if $::isWizard;
    my @buttons_text = (if_(@$l2, $common->{advanced_state} ? $common->{advanced_label_close} : $common->{advanced_label}), @okcancel);
    my ($buttonbar, @buttons) = Newt::Grid::ButtonBar(map { simplify_string($_) } @buttons_text);
    my $advanced_button = @$l2 && shift @buttons;
    @buttons = reverse(@buttons) if $::isWizard;
    my ($ok_button, $cancel_button) = @buttons;

    my $form = Newt::Component::Form(\undef, '', 0);
    my $window = Newt::Grid::GridBasicWindow(first(myTextbox(!$has_scroll, $height - $total_size, @messages)), $listg, $buttonbar);
    $window->GridWrappedWindow($common->{title} || '');
    $form->FormAddGrid($window, 1);

    my $check = sub {
	my ($f) = @_;

	my ($error, $_focus) = $f->();
	
	if ($error) {
	    $set_all->();
	}
	!$error;
    };

    my ($blocked, $canceled);
    while (1) {
	my $r = $form->RunForm;

	$get_all->();

	if ($advanced_button && $$r == $$advanced_button) {
	    invbool(\$common->{advanced_state});
	    $form->FormDestroy;
	    Newt::PopWindow();
	    return &ask_fromW_real;
	}

	$canceled = $cancel_button && $$r == $$cancel_button;

	next if !$canceled && any { ${$_->{invalid_choice}} } @widgets;

	$blocked = 
	  $$r == $$ok_button && 
	    $common->{callbacks}{ok_disabled} && 
	      do { $common->{callbacks}{ok_disabled}() };

	if (my $button = find { $$r == ${$_->{w}} } @widgets) {
	    my $v = $button->{e}{clicked_may_quit}();
	    $form->FormDestroy;
	    Newt::PopWindow();
	    return $v || &ask_fromW;
	}
	last if !$blocked && $check->($common->{callbacks}{$canceled ? 'canceled' : 'complete'});
    }

    $form->FormDestroy;
    Newt::PopWindow();
    !$canceled;
}


sub waitbox {
    my ($title, $messages) = @_;
    my ($t, $w, $h) = myTextbox(1, $height, @$messages);
    my $f = Newt::Component::Form(\undef, '', 0);
    Newt::CenteredWindow($w, $h, $title);
    $f->FormAddComponent($t);
    $f->DrawForm;
    Newt::Refresh();
    $f->FormDestroy;
    push @wait_messages, $f;
    $f;
}


sub wait_messageW {
    my ($_o, $title, $messages) = @_;
    { form => waitbox($title, $messages), title => $title };
}

sub wait_message_nextW {
    my ($o, $messages, $w) = @_;
    $o->wait_message_endW($w);
    $o->wait_messageW($w->{title}, $messages);
}
sub wait_message_endW {
    my ($_o, $_w) = @_;
    my $_wait = pop @wait_messages;
#    log::l("interactive_newt does not handle none stacked wait-messages") if $w->{form} != $wait;
    Newt::PopWindow();
}

sub simplify_string {
    my ($s, $o_width) = @_;
    $s =~ s/\n/ /g;
    $s = substr($s, 0, $o_width || 40); #- truncate if too long
    $s;
}

sub ok {
    N("Ok");
}

sub cancel {
    N("Cancel");
}

1;
2413'>2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547
#
# Mykolas Norvai-as <Myka@centras.lt>, 2002
#
msgid ""
msgstr ""
"Project-Id-Version: DrakX VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-08-29 18:53+0200\n"
"PO-Revision-Date: 2000-12-23 13:50+0200\n"
"Last-Translator: Mykolas Norvai­as <Myka@centras.lt>\n"
"Language-Team: Lithuanian <komp_lt@konferencijos.lt>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"

#: drakauth:27 drakauth:29 draksec:279 draksec:328
#, c-format
msgid "Authentication"
msgstr "Atpažinimas"

#: drakauth:39 drakclock:111 drakclock:125 drakfont:213 drakfont:226
#: drakfont:264 draksplash:169 finish-install:104 logdrake:170 logdrake:445
#: logdrake:450 scannerdrake:59 scannerdrake:101 scannerdrake:142
#: scannerdrake:200 scannerdrake:259 scannerdrake:730 scannerdrake:741
#: scannerdrake:880 scannerdrake:891 scannerdrake:961
#, c-format
msgid "Error"
msgstr "Klaida"

#: drakboot:53
#, c-format
msgid "No bootloader found, creating a new configuration"
msgstr ""

#: drakboot:88 harddrake2:197 harddrake2:198 logdrake:71
#, c-format
msgid "/_File"
msgstr "/_Byla"

#: drakboot:89 logdrake:77
#, c-format
msgid "/File/_Quit"
msgstr "/Byla/_Išeiti"

#: drakboot:89 harddrake2:198 logdrake:77
#, c-format
msgid "<control>Q"
msgstr "<control>Q"

#: drakboot:129
#, c-format
msgid "Text only"
msgstr "Tik tekstas"

#: drakboot:130
#, c-format
msgid "Verbose"
msgstr ""

#: drakboot:131
#, c-format
msgid "Silent"
msgstr "Tyliai"

#: drakboot:137 drakbug:233 drakfont:682 drakperm:375 drakperm:385 drakups:27
#: harddrake2:516 localedrake:43 notify-x11-free-driver-switch:15
#: scannerdrake:51 scannerdrake:54 scannerdrake:297 scannerdrake:302
#: scannerdrake:955
#, c-format
msgid "Warning"
msgstr "Įspėjimas"

#: drakboot:138
#, c-format
msgid ""
"Your system bootloader is not in framebuffer mode. To activate graphical "
"boot, select a graphic video mode from the bootloader configuration tool."
msgstr ""

#: drakboot:139
#, fuzzy, c-format
msgid "Do you want to configure it now?"
msgstr "Ar tu nori išbandyti nustatymus?"

#: drakboot:148
#, fuzzy, c-format
msgid "Install themes"
msgstr "Įdiegti sistemą"

#: drakboot:150
#, fuzzy, c-format
msgid "Graphical boot theme selection"
msgstr "Spausdintuvo jungtis"

#: drakboot:153
#, fuzzy, c-format
msgid "Graphical boot mode:"
msgstr "Spausdintuvo jungtis"

#: drakboot:155
#, c-format
msgid "Theme"
msgstr "Tema"

#: drakboot:158
#, c-format
msgid ""
"Display theme\n"
"under console"
msgstr ""

#: drakboot:163 draksplash:25
#, fuzzy, c-format
msgid "Create new theme"
msgstr "Sukurti naują skirsnį"

#: drakboot:195
#, fuzzy, c-format
msgid "Default user"
msgstr "Vietinis spausdintuvas"

#: drakboot:196
#, fuzzy, c-format
msgid "Default desktop"
msgstr "Įprastas"

#: drakboot:199
#, c-format
msgid "No, I do not want autologin"
msgstr "Ne, aš nenoriu automatinio pasisveikinimo"

#: drakboot:200
#, c-format
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Taip, aš noriu automatinio pasisveikinimo (vrtotojas, darbastalis)"

#: drakboot:207
#, c-format
msgid "System mode"
msgstr "Sistemos režimas"

#: drakboot:210
#, c-format
msgid "Launch the graphical environment when your system starts"
msgstr "Startuojant paleisti X_Windows"

#: drakboot:262
#, c-format
msgid "Boot Style Configuration"
msgstr "Įdiegimo Tipo Konfiguracija"

#: drakboot:264 drakboot:268
#, c-format
msgid "Video mode"
msgstr "Vaizdo režimas"

#: drakboot:265
#, c-format
msgid ""
"Please choose a video mode, it will be applied to each of the boot entries "
"selected below.\n"
"Be sure your video card supports the mode you choose."
msgstr ""

#: drakbug:65 drakbug:143
#, c-format
msgid "The \"%s\" program has crashed with the following error:"
msgstr ""

#: drakbug:76
#, fuzzy, c-format
msgid "Mandriva Linux Bug Report Tool"
msgstr "Prisijungti prie interneto"

#: drakbug:81
#, c-format
msgid "Mandriva Linux Control Center"
msgstr "Mandriva Linux valdymo centras"

#: drakbug:82
#, c-format
msgid "First Time Wizard"
msgstr "Pirmo karto vedlys"

#: drakbug:83
#, c-format
msgid "Synchronization tool"
msgstr ""

#: drakbug:84 drakbug:195
#, fuzzy, c-format
msgid "Standalone Tools"
msgstr "Konsolės įrankiai"

#: drakbug:86 drakbug:87
#, c-format
msgid "Mandriva Online"
msgstr "Mandriva Online"

#: drakbug:88
#, fuzzy, c-format
msgid "Remote Control"
msgstr "Nutolęs spausdintuvas"

#: drakbug:89
#, fuzzy, c-format
msgid "Software Manager"
msgstr "Share'o vardas"

#: drakbug:90
#, c-format
msgid "Windows Migration tool"
msgstr ""

#: drakbug:91
#, fuzzy, c-format
msgid "Configuration Wizards"
msgstr "Tinklo Konfigūravimo Meistras"

#: drakbug:113
#, c-format
msgid "Select Mandriva Tool:"
msgstr ""

#: drakbug:114
#, c-format
msgid ""
"or Application Name\n"
"(or Full Path):"
msgstr ""

#: drakbug:117
#, c-format
msgid "Find Package"
msgstr "Ieškoti paketo"

#: drakbug:119
#, fuzzy, c-format
msgid "Package: "
msgstr "Paketų grupių pasirinkimas"

#: drakbug:120
#, c-format
msgid "Kernel:"
msgstr "Branduolys:"

#: drakbug:142
#, c-format
msgid "The \"%s\" program has segfaulted with the following error:"
msgstr ""

#: drakbug:146
#, c-format
msgid "Its gdb trace is:"
msgstr ""

#: drakbug:149
#, c-format
msgid ""
"To submit a bug report, click on the report button.  \n"
"This will open a web browser window on %s where you'll find a form to fill "
"in.  The information displayed above will be transferred to that server.  \n"
"Things useful to include in your report are the output of lspcidrake -v, "
"kernel version, and /proc/cpuinfo."
msgstr ""

#: drakbug:152
#, c-format
msgid "Please describe what you were doing when it crashed:"
msgstr ""

#: drakbug:164 drakperm:135 draksec:438 draksec:440 draksec:459 draksec:461
#, c-format
msgid "Help"
msgstr "Pagalba"

#: drakbug:168
#, fuzzy, c-format
msgid "Report"
msgstr "Prievadas"

#: drakbug:169 drakfont:506
#, c-format
msgid "Close"
msgstr "Uždaryti"

#: drakbug:202
#, fuzzy, c-format
msgid "Not installed"
msgstr "Išeiti iš įdiegimo"

#: drakbug:215
#, fuzzy, c-format
msgid "Package not installed"
msgstr "Išeiti iš įdiegimo"

#: drakbug:234
#, c-format
msgid ""
"You must type in what you were doing when this bug happened in order to "
"enable us to reproduce this bug and to increase the odds of fixing it"
msgstr ""

#: drakbug:235
#, c-format
msgid "Thanks."
msgstr ""

#: drakclock:30 draksec:334
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr ""

#: drakclock:39
#, fuzzy, c-format
msgid "not defined"
msgstr "iš naujo nustatyti"

#: drakclock:41
#, fuzzy, c-format
msgid "Change Time Zone"
msgstr "Laiko juosta"

#: drakclock:44
#, c-format
msgid "Timezone - DrakClock"
msgstr "Laiko juosta - DrakClock"

#: drakclock:44
#, c-format
msgid "Which is your timezone?"
msgstr "Kokia tavo laiko juosta?"

#: drakclock:45
#, c-format
msgid "GMT - DrakClock"
msgstr "GMT - DrakClock"

#: drakclock:45
#, fuzzy, c-format
msgid "Is your hardware clock set to GMT?"
msgstr "Ar tavo įrangos laikrodis nustatytas GMT?"

#: drakclock:70
#, fuzzy, c-format
msgid "Network Time Protocol"
msgstr "Tinklo interfeisas"

#: drakclock:72
#, c-format
msgid ""
"Your computer can synchronize its clock\n"
" with a remote time server using NTP"
msgstr ""

#: drakclock:73
#, c-format
msgid "Enable Network Time Protocol"
msgstr ""

#: drakclock:81
#, c-format
msgid "Server:"
msgstr "Serveris:"

#: drakclock:95
#, c-format
msgid "Timezone"
msgstr "Laiko juosta"

#: drakclock:111
#, fuzzy, c-format
msgid "Please enter a valid NTP server address."
msgstr "Prašau įvesti veikiantį IP adresą."

#: drakclock:126
#, c-format
msgid "Could not synchronize with %s."
msgstr ""

#: drakclock:127 draksplash:93 logdrake:175 scannerdrake:492
#, c-format
msgid "Quit"
msgstr "Baigti"

#: drakclock:128
#, fuzzy, c-format
msgid "Retry"
msgstr "Atstatyti"

#: drakclock:151 drakclock:161
#, c-format
msgid "Reset"
msgstr "Atstatyti"

#: drakedm:41
#, c-format
msgid "GDM (GNOME Display Manager)"
msgstr ""

#: drakedm:42
#, c-format
msgid "KDM (KDE Display Manager)"
msgstr ""

#: drakedm:43
#, c-format
msgid "XDM (X Display Manager)"
msgstr ""

#: drakedm:54
#, c-format
msgid "Choosing a display manager"
msgstr ""

#: drakedm:55
#, c-format
msgid ""
"X11 Display Manager allows you to graphically log\n"
"into your system with the X Window System running and supports running\n"
"several different X sessions on your local machine at the same time."
msgstr ""

#: drakedm:74
#, fuzzy, c-format
msgid "The change is done, do you want to restart the dm service?"
msgstr "Kokius jūs norite įdiegti paketus"

#: drakedm:75
#, c-format
msgid ""
"You are going to close all running programs and lose your current session. "
"Are you really sure that you want to restart the dm service?"
msgstr ""

#: drakfont:187
#, c-format
msgid "Search installed fonts"
msgstr ""

#: drakfont:189
#, c-format
msgid "Unselect fonts installed"
msgstr ""

#: drakfont:213
#, fuzzy, c-format
msgid "No fonts found"
msgstr "%s nerastas"

#: drakfont:217
#, c-format
msgid "parse all fonts"
msgstr ""

#: drakfont:222 drakfont:263 drakfont:338 drakfont:379 drakfont:383
#: drakfont:409 drakfont:427 drakfont:435
#, c-format
msgid "done"
msgstr "baigta"

#: drakfont:226
#, c-format
msgid "Could not find any font in your mounted partitions"
msgstr ""

#: drakfont:261
#, c-format
msgid "Reselect correct fonts"
msgstr ""

#: drakfont:264
#, fuzzy, c-format
msgid "Could not find any font.\n"
msgstr "Pašalinti eilę"

#: drakfont:274
#, c-format
msgid "Search for fonts in installed list"
msgstr ""

#: drakfont:298
#, c-format
msgid "%s fonts conversion"
msgstr ""

#: drakfont:336
#, fuzzy, c-format
msgid "Fonts copy"
msgstr "Sužymėti diskelį"

#: drakfont:339
#, fuzzy, c-format
msgid "True Type fonts installation"
msgstr "Ruošiamas įdiegimas"

#: drakfont:347
#, c-format
msgid "please wait during ttmkfdir..."
msgstr ""

#: drakfont:348
#, c-format
msgid "True Type install done"
msgstr ""

#: drakfont:354 drakfont:369
#, c-format
msgid "type1inst building"
msgstr ""

#: drakfont:363
#, c-format
msgid "Ghostscript referencing"
msgstr ""

#: drakfont:380
#, c-format
msgid "Suppress Temporary Files"
msgstr ""

#: drakfont:425 drakfont:431
#, c-format
msgid "Suppress Fonts Files"
msgstr ""

#: drakfont:439
#, c-format
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
"\n"
"You can install the fonts the normal way. In rare cases, bogus fonts may "
"hang up your X Server."
msgstr ""

#: drakfont:478
#, fuzzy, c-format
msgid "Font Installation"
msgstr "Įdiegti"

#: drakfont:489
#, c-format
msgid "DrakFont"
msgstr "DrakFont"

#: drakfont:490 drakfont:642
#, fuzzy, c-format
msgid "Font List"
msgstr "Prijungimo vieta"

#: drakfont:493
#, c-format
msgid "Get Windows Fonts"
msgstr ""

#: drakfont:499
#, c-format
msgid "About"
msgstr "Apie"

#: drakfont:500 drakfont:541
#, c-format
msgid "Options"
msgstr "Pasirinktys"

#: drakfont:501 drakfont:721
#, c-format
msgid "Uninstall"
msgstr "Pašalinti"

#: drakfont:502
#, c-format
msgid "Import"
msgstr "Importuoti"

#: drakfont:520
#, fuzzy, c-format
msgid "Drakfont"
msgstr "DrakFont"

#: drakfont:522 harddrake2:235
#, c-format
msgid "Copyright (C) %s by Mandriva"
msgstr ""

#: drakfont:524
#, fuzzy, c-format
msgid "Font installer."
msgstr "Išeiti iš įdiegimo"

#: drakfont:526 harddrake2:239
#, c-format
msgid "Mandriva Linux"
msgstr "Mandriva Linux"

#. -PO: put here name(s) and email(s) of translator(s) (eg: "John Smith <jsmith@nowhere.com>")
#. -PO: put here name(s) and email(s) of translator(s) (eg: "John Smith <jsmith@nowhere.com>")
#: drakfont:533 harddrake2:244
#, c-format
msgid "_: Translator(s) name(s) & email(s)\n"
msgstr ""

#: drakfont:543
#, fuzzy, c-format
msgid "Choose the applications that will support the fonts:"
msgstr "Pasirink skirsnius, kuriuos nori sužymėti"

#: drakfont:554
#, c-format
msgid "Ghostscript"
msgstr "Ghostscript"

#: drakfont:555
#, c-format
msgid "OpenOffice.org"
msgstr ""

#: drakfont:556
#, fuzzy, c-format
msgid "Abiword"
msgstr "Nutraukti"

#: drakfont:557
#, fuzzy, c-format
msgid "Generic Printers"
msgstr "Spausdintuvas"

#: drakfont:562 drakfont:572 draksplash:180 drakups:210
#, c-format
msgid "Ok"
msgstr "Gerai"

#: drakfont:571
#, c-format
msgid "Select the font file or directory and click on 'Add'"
msgstr ""

#: drakfont:572
#, c-format
msgid "File Selection"
msgstr "Bylos pasirinkimas"

#: drakfont:572 drakfont:652 drakfont:736 draksplash:180 drakups:217
#: logdrake:175
#, c-format
msgid "Cancel"
msgstr "Atšaukti"

#: drakfont:576
#, c-format
msgid "Fonts"
msgstr "Šriftai"

#: drakfont:640 draksec:330
#, fuzzy, c-format
msgid "Import fonts"
msgstr "Sužymėti skirsnius"

#: drakfont:646 drakups:299 drakups:361 drakups:381
#, c-format
msgid "Add"
msgstr "Pridėti"

#: drakfont:647 drakfont:735 drakups:301 drakups:363 drakups:383
#, c-format
msgid "Remove"
msgstr "Pašalinti"

#: drakfont:653
#, c-format
msgid "Install"
msgstr "Įdiegti"

#: drakfont:684
#, c-format
msgid "Are you sure you want to uninstall the following fonts?"
msgstr ""

#: drakfont:688 draksec:59 harddrake2:324
#, c-format
msgid "Yes"
msgstr "Taip"

#: drakfont:690 draksec:58 harddrake2:325
#, c-format
msgid "No"
msgstr "Ne"

#: drakfont:729
#, c-format
msgid "Unselect All"
msgstr ""

#: drakfont:732
#, fuzzy, c-format
msgid "Select All"
msgstr "Pasirink bylą"

#: drakfont:749
#, fuzzy, c-format
msgid "Importing fonts"
msgstr "Sužymėti skirsnius"

#: drakfont:753 drakfont:773
#, c-format
msgid "Initial tests"
msgstr ""

#: drakfont:754
#, fuzzy, c-format
msgid "Copy fonts on your system"
msgstr "Tavo sistemoje nerasta jokia tinklo plokštė!"

#: drakfont:755
#, c-format
msgid "Install & convert Fonts"
msgstr ""

#: drakfont:756
#, fuzzy, c-format
msgid "Post Install"
msgstr "Įdiegti"

#: drakfont:768
#, fuzzy, c-format
msgid "Removing fonts"
msgstr "Sužymėti skirsnius"

#: drakfont:774
#, fuzzy, c-format
msgid "Remove fonts on your system"
msgstr "Tavo sistemoje nerasta jokia tinklo plokštė!"

#: drakfont:775
#, fuzzy, c-format
msgid "Post Uninstall"
msgstr "Išeiti iš įdiegimo"

#: drakhelp:17
#, c-format
msgid ""
" drakhelp 0.1\n"
"Copyright (C) %s Mandriva.\n"
"This is free software and may be redistributed under the terms of the GNU "
"GPL.\n"
"\n"
"Usage: \n"
msgstr ""

#: drakhelp:22
#, c-format
msgid " --help                - display this help     \n"
msgstr ""

#: drakhelp:23
#, c-format
msgid ""
" --id <id_label>       - load the html help page which refers to id_label\n"
msgstr ""

#: drakhelp:24
#, c-format
msgid ""
" --doc <link>          - link to another web page ( for WM welcome "
"frontend)\n"
msgstr ""

#: drakhelp:52
#, fuzzy, c-format
msgid "Mandriva Linux Help Center"
msgstr "Prisijungti prie interneto"

#: drakhelp:52
#, c-format
msgid "No Help entry for %s\n"
msgstr ""

#: drakperm:23
#, c-format
msgid "System settings"
msgstr "Sistemos nustatymai"

#: drakperm:24
#, fuzzy, c-format
msgid "Custom settings"
msgstr "Rankinis diskų skirstymas"

#: drakperm:25
#, fuzzy, c-format
msgid "Custom & system settings"
msgstr "Rankinis diskų skirstymas"

#: drakperm:33
#, fuzzy, c-format
msgid "Security Permissions"
msgstr "Teisės"

#: drakperm:45
#, c-format
msgid "Editable"
msgstr "Redaguojamas"

#: drakperm:50 drakperm:319
#, c-format
msgid "Path"
msgstr "Kelias"

#: drakperm:50 drakperm:248
#, c-format
msgid "User"
msgstr "Vartotojas"

#: drakperm:50 drakperm:248
#, c-format
msgid "Group"
msgstr "Grupė"

#: drakperm:50 drakperm:331
#, c-format
msgid "Permissions"
msgstr "Teisės"

#: drakperm:60
#, c-format
msgid "Add a new rule"
msgstr ""

#: drakperm:67 drakperm:102 drakperm:127
#, c-format
msgid "Edit current rule"
msgstr ""

#: drakperm:109
#, c-format
msgid ""
"Here you can see files to use in order to fix permissions, owners, and "
"groups via msec.\n"
"You can also edit your own rules which will owerwrite the default rules."
msgstr ""

#: drakperm:111
#, c-format
msgid ""
"The current security level is %s.\n"
"Select permissions to see/edit"
msgstr ""

#: drakperm:123
#, c-format
msgid "Up"
msgstr "Aukštyn"

#: drakperm:123
#, c-format
msgid "Move selected rule up one level"
msgstr ""

#: drakperm:124
#, c-format
msgid "Down"
msgstr "Žemyn"

#: drakperm:124
#, c-format
msgid "Move selected rule down one level"
msgstr ""

#: drakperm:125
#, fuzzy, c-format
msgid "Add a rule"
msgstr "Pridėti modulį"

#: drakperm:125
#, fuzzy, c-format
msgid "Add a new rule at the end"
msgstr "Spausdintuvo nėra"

#: drakperm:126
#, c-format
msgid "Delete"
msgstr "Ištrinti"

#: drakperm:126
#, fuzzy, c-format
msgid "Delete selected rule"
msgstr "Pašalinti eilę"

#: drakperm:127 drakups:300 drakups:362 drakups:382
#, c-format
msgid "Edit"
msgstr "Redaguoti"

#: drakperm:240
#, c-format
msgid "browse"
msgstr ""

#: drakperm:245
#, fuzzy, c-format
msgid "user"
msgstr "Pelė"

#: drakperm:245
#, c-format
msgid "group"
msgstr "grupė"

#: drakperm:245
#, c-format
msgid "other"
msgstr "kita"

#: drakperm:248
#, c-format
msgid "Other"
msgstr "Kitas"

#: drakperm:250
#, c-format
msgid "Read"
msgstr "Skaitytas"

#. -PO: here %s will be either "user", "group" or "other"
#: drakperm:253
#, c-format
msgid "Enable \"%s\" to read the file"
msgstr ""

#: drakperm:257
#, c-format
msgid "Write"
msgstr "Rašo"

#. -PO: here %s will be either "user", "group" or "other"
#: drakperm:260
#, c-format
msgid "Enable \"%s\" to write the file"
msgstr ""

#: drakperm:264
#, c-format
msgid "Execute"
msgstr "Vykdyti"

#. -PO: here %s will be either "user", "group" or "other"
#: drakperm:267
#, c-format
msgid "Enable \"%s\" to execute the file"
msgstr ""

#: drakperm:270
#, c-format
msgid "Sticky-bit"
msgstr ""

#: drakperm:270
#, c-format
msgid ""
"Used for directory:\n"
" only owner of directory or file in this directory can delete it"
msgstr ""

#: drakperm:271
#, c-format
msgid "Set-UID"
msgstr ""

#: drakperm:271
#, fuzzy, c-format
msgid "Use owner id for execution"
msgstr "Naudokite automatinį aptikimą"

#: drakperm:272
#, c-format
msgid "Set-GID"
msgstr ""

#: drakperm:272
#, fuzzy, c-format
msgid "Use group id for execution"
msgstr "Naudokite automatinį aptikimą"

#: drakperm:289
#, c-format
msgid "User:"
msgstr "Vartotojas:"

#: drakperm:290
#, c-format
msgid "Group:"
msgstr "Grupė:"

#: drakperm:294
#, fuzzy, c-format
msgid "Current user"
msgstr "Priimti vartotoją"

#: drakperm:295
#, c-format
msgid "When checked, owner and group will not be changed"
msgstr ""

#: drakperm:305
#, c-format
msgid "Path selection"
msgstr "Kelio išrinkimas"

#: drakperm:325
#, c-format
msgid "Property"
msgstr "Savybė"

#: drakperm:375
#, c-format
msgid ""
"The first character of the path must be a slash (\"/\"):\n"
"\"%s\""
msgstr ""

#: drakperm:385
#, c-format
msgid "Both the username and the group must valid!"
msgstr ""

#: drakperm:386
#, c-format
msgid "User: %s"
msgstr ""

#: drakperm:387
#, c-format
msgid "Group: %s"
msgstr ""

#: draksec:53
#, c-format
msgid "ALL"
msgstr ""

#: draksec:54
#, c-format
msgid "LOCAL"
msgstr ""

#: draksec:55
#, c-format
msgid "NONE"
msgstr ""

#: draksec:56
#, c-format
msgid "Default"
msgstr "Įprastas"

#: draksec:57
#, c-format
msgid "Ignore"
msgstr "Ignoruoti"

#: draksec:72 drakups:99 harddrake2:370 remove-unselected-locales:36
#: remove-unused-hardware-packages:32 scannerdrake:66 scannerdrake:70
#: scannerdrake:78 scannerdrake:319 scannerdrake:368 scannerdrake:505
#: scannerdrake:509 scannerdrake:531 service_harddrake:254
#, c-format
msgid "Please wait"
msgstr "Prašom palaukti"

#. -PO: Do not alter the <span ..> and </span> tags.
#. -PO: Translate the security levels (Poor, Standard, High, Higher and Paranoid) in the same way, you translated these individuals words.
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX.
#: draksec:93
#, c-format
msgid ""
"Here, you can setup the security level and administrator of your machine.\n"
"\n"
"\n"
"The '<span weight=\"bold\">Security Administrator</span>' is the one who "
"will receive security alerts if the\n"
"'<span weight=\"bold\">Security Alerts</span>' option is set. It can be a "
"username or an email.\n"
"\n"
"\n"
"The '<span weight=\"bold\">Security Level</span>' menu allows you to select "
"one of the six preconfigured security levels\n"
"provided with msec. These levels range from '<span weight=\"bold\">poor</"
"span>' security and ease of use, to\n"
"'<span weight=\"bold\">paranoid</span>' config, suitable for very sensitive "
"server applications:\n"
"\n"
"\n"
"<span foreground=\"royalblue3\">Poor</span>: This is a totally unsafe but "
"very\n"
"easy to use security level. It should only be used for machines not "
"connected to\n"
"any network and that are not accessible to everybody.\n"
"\n"
"\n"
"<span foreground=\"royalblue3\">Standard</span>: This is the standard "
"security\n"
"recommended for a computer that will be used to connect to the Internet as "
"a\n"
"client.\n"
"\n"
"\n"
"<span foreground=\"royalblue3\">High</span>: There are already some\n"
"restrictions, and more automatic checks are run every night.\n"
"\n"
"\n"
"<span foreground=\"royalblue3\">Higher</span>: The security is now high "
"enough\n"
"to use the system as a server which can accept connections from many "
"clients. If\n"
"your machine is only a client on the Internet, you should choose a lower "
"level.\n"
"\n"
"\n"
"<span foreground=\"royalblue3\">Paranoid</span>: This is similar to the "
"previous\n"
"level, but the system is entirely closed and security features are at their\n"
"maximum"
msgstr ""

#: draksec:147 harddrake2:214
#, c-format
msgid ""
"Description of the fields:\n"
"\n"
msgstr ""

#: draksec:161
#, fuzzy, c-format
msgid "(default value: %s)"
msgstr " (Įprastas)"

#: draksec:166
#, fuzzy, c-format
msgid "Security Level and Checks"
msgstr "Nustatomas saugumo lygis"

#: draksec:203
#, fuzzy, c-format
msgid "Security Level:"
msgstr "Nustatomas saugumo lygis"

#: draksec:206
#, fuzzy, c-format
msgid "Security Alerts:"
msgstr "Nustatomas saugumo lygis"

#: draksec:210
#, fuzzy, c-format
msgid "Security Administrator:"
msgstr "Nutolusio lpd spausdintuvo nuostatos"

#: draksec:212
#, fuzzy, c-format
msgid "Basic options"
msgstr "Pasirinktys"

#: draksec:226
#, fuzzy, c-format
msgid "Network Options"
msgstr "Modulio parinktys:"

#: draksec:226
#, fuzzy, c-format
msgid "System Options"
msgstr "Modulio parinktys:"

#: draksec:261
#, c-format
msgid "Periodic Checks"
msgstr ""

#: draksec:282
#, c-format
msgid "No password"
msgstr "Jokio slaptažodžio"

#: draksec:283
#, c-format
msgid "Root password"
msgstr ""

#: draksec:284
#, c-format
msgid "User password"
msgstr ""

#: draksec:314 draksec:360
#, c-format
msgid "Software Management"
msgstr "Programinės įrangos tvarkyklė"

#: draksec:315
#, fuzzy, c-format
msgid "Mandriva Update"
msgstr "Mandriva Online"

#: draksec:316
#, fuzzy, c-format
msgid "Software Media Manager"
msgstr "Programinės įrangos įdiegimas"

#: draksec:317
#, fuzzy, c-format
msgid "Configure 3D Desktop effects"
msgstr "Konfigūruoti naujienų grupės serverį"

#: draksec:318
#, fuzzy, c-format
msgid "Graphical Server Configuration"
msgstr "LAN konfiguravimas"

#: draksec:319
#, fuzzy, c-format
msgid "Mouse Configuration"
msgstr "Nustatymai"

#: draksec:320
#, fuzzy, c-format
msgid "Keyboard Configuration"
msgstr "Tinklo konfigūravimas"

#: draksec:321
#, fuzzy, c-format
msgid "UPS Configuration"
msgstr "Modemo Nustatymai"

#: draksec:322
#, fuzzy, c-format
msgid "Network Configuration"
msgstr "Nustatymai"

#: draksec:323
#, c-format
msgid "Hosts definitions"
msgstr "Stočių aprašai"

#: draksec:324
#, fuzzy, c-format
msgid "Network Center"
msgstr "Tinklas ir Internetas"

#: draksec:325
#, c-format
msgid "VPN"
msgstr ""

#: draksec:326
#, c-format
msgid "Proxy Configuration"
msgstr "Tarpinio serverio konfigūravimas"

#: draksec:327
#, fuzzy, c-format
msgid "Connection Sharing"
msgstr "Prisijungti"

#: draksec:329
#, c-format
msgid "Backups"
msgstr "Dubliavimas"

#: draksec:331 logdrake:52
#, c-format
msgid "Logs"
msgstr "Įrašai"

#: draksec:332
#, c-format
msgid "Services"
msgstr "Paslaugos"

#: draksec:333
#, fuzzy, c-format
msgid "Users"
msgstr "Vartotojas"

#: draksec:335
#, fuzzy, c-format
msgid "Boot Configuration"
msgstr "Nustatymai"

#: draksec:361
#, c-format
msgid "Hardware"
msgstr "Įranga"

#: draksec:362
#, fuzzy, c-format
msgid "Network"
msgstr "Modulio parinktys:"

#: draksec:363
#, c-format
msgid "System"
msgstr "Sistema"

#: draksec:364
#, c-format
msgid "Boot"
msgstr "Įkrovimas"

#: draksec:389
#, fuzzy, c-format
msgid "Please wait, setting security level..."
msgstr "Nustatomas saugumo lygis"

#: draksec:395
#, fuzzy, c-format
msgid "Please wait, setting security options..."
msgstr "Prašome palaukti. Ruošiamas įdiegimas"

#: draksound:48
#, fuzzy, c-format
msgid "No Sound Card detected!"
msgstr "Nepajungtas"

#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: draksound:51
#, c-format
msgid ""
"No Sound Card has been detected on your machine. Please verify that a Linux-"
"supported Sound Card is correctly plugged in.\n"
"\n"
"\n"
"You can visit our hardware database at:\n"
"\n"
"\n"
"http://www.mandrivalinux.com/en/hardware.php3"
msgstr ""

#: draksound:58
#, c-format
msgid ""
"\n"
"\n"
"\n"
"Note: if you've an ISA PnP sound card, you'll have to use the alsaconf or "
"the sndconfig program.  Just type \"alsaconf\" or \"sndconfig\" in a console."
msgstr ""

#: draksplash:32
#, c-format
msgid "X coordinate of text box"
msgstr ""

#: draksplash:33
#, c-format
msgid "Y coordinate of text box"
msgstr ""

#: draksplash:34
#, c-format
msgid "Text box width"
msgstr ""

#: draksplash:35
#, c-format
msgid "Text box height"
msgstr ""

#: draksplash:36
#, c-format
msgid ""
"The progress bar X coordinate\n"
"of its upper left corner"
msgstr ""

#: draksplash:37
#, c-format
msgid ""
"The progress bar Y coordinate\n"
"of its upper left corner"
msgstr ""

#: draksplash:38
#, c-format
msgid "The width of the progress bar"
msgstr ""

#: draksplash:39
#, c-format
msgid "The height of the progress bar"
msgstr ""

#: draksplash:40
#, c-format
msgid "X coordinate of the text"
msgstr ""

#: draksplash:41
#, c-format
msgid "Y coordinate of the text"
msgstr ""

#: draksplash:42
#, c-format
msgid "Text box transparency"
msgstr ""

#: draksplash:43
#, c-format
msgid "Progress box transparency"
msgstr ""

#: draksplash:44
#, c-format
msgid "Text size"
msgstr ""

#: draksplash:61
#, c-format
msgid "Choose progress bar color 1"
msgstr ""

#: draksplash:62
#, c-format
msgid "Choose progress bar color 2"
msgstr ""

#: draksplash:63
#, c-format
msgid "Choose progress bar background"
msgstr ""

#: draksplash:64
#, c-format
msgid "Gradient type"
msgstr ""

#: draksplash:65
#, c-format
msgid "Choose text color"
msgstr ""

#: draksplash:67 draksplash:74
#, c-format
msgid "Choose picture"
msgstr ""

#: draksplash:68
#, c-format
msgid "Silent bootsplash"
msgstr ""

#: draksplash:71
#, c-format
msgid "Choose text zone color"
msgstr ""

#: draksplash:72
#, c-format
msgid "Text color"
msgstr "Teksto spalva"

#: draksplash:73
#, c-format
msgid "Background color"
msgstr "Fono spalva"

#: draksplash:75
#, c-format
msgid "Verbose bootsplash"
msgstr ""

#: draksplash:81
#, fuzzy, c-format
msgid "Theme name"
msgstr "Share'o vardas"

#: draksplash:84
#, fuzzy, c-format
msgid "Final resolution"
msgstr "Skiriamoji geba"

#: draksplash:87
#, c-format
msgid "Display logo on Console"
msgstr ""

#: draksplash:92
#, fuzzy, c-format
msgid "Save theme"
msgstr "Įdiegti sistemą"

#: draksplash:154
#, fuzzy, c-format
msgid "Please enter a theme name"
msgstr "Prašom suteikti vartotojo vardą"

#: draksplash:157
#, fuzzy, c-format
msgid "Please select a splash image"
msgstr "Prašom išbandyti pelę"

#: draksplash:160
#, c-format
msgid "saving Bootsplash theme..."
msgstr ""

#: draksplash:169
#, c-format
msgid "Unable to load image file %s"
msgstr ""

#: draksplash:180
#, fuzzy, c-format
msgid "choose image"
msgstr "Pasirink veiksmą"

#: draksplash:195
#, c-format
msgid "Color selection"
msgstr ""

#: drakups:71
#, c-format
msgid "Connected through a serial port or an usb cable"
msgstr ""

#: drakups:72
#, fuzzy, c-format
msgid "Manual configuration"
msgstr "Nustatymai"

#: drakups:78
#, fuzzy, c-format
msgid "Add an UPS device"
msgstr "Pridėti vartotoją"

#: drakups:81
#, c-format
msgid ""
"Welcome to the UPS configuration utility.\n"
"\n"
"Here, you'll add a new UPS to your system.\n"
msgstr ""

#: drakups:88
#, c-format
msgid ""
"We're going to add an UPS device.\n"
"\n"
"Do you want to autodetect UPS devices connected to this machine or to "
"manually select them?"
msgstr ""

#: drakups:91
#, fuzzy, c-format
msgid "Autodetection"
msgstr "Naudokite automatinį aptikimą"

#: drakups:99 harddrake2:370
#, fuzzy, c-format
msgid "Detection in progress"
msgstr "aptiktas prievade %s"

#: drakups:118 drakups:157 logdrake:457 logdrake:463
#, c-format
msgid "Congratulations"
msgstr "Sveikinimai"

#: drakups:119
#, c-format
msgid "The wizard successfully added the following UPS devices:"
msgstr ""

#: drakups:121
#, fuzzy, c-format
msgid "No new UPS devices was found"
msgstr "Vietinis spausdintuvas"

#: drakups:126 drakups:138
#, fuzzy, c-format
msgid "UPS driver configuration"
msgstr "Modemo Nustatymai"

#: drakups:126
#, fuzzy, c-format
msgid "Please select your UPS model."
msgstr "Prašom išbandyti pelę"

#: drakups:127
#, c-format
msgid "Manufacturer / Model:"
msgstr ""

#: drakups:138
#, c-format
msgid ""
"We are configuring the \"%s\" UPS from \"%s\".\n"
"Please fill in its name, its driver and its port."
msgstr ""

#: drakups:143
#, c-format
msgid "Name:"
msgstr "Pavadinimas:"

#: drakups:143
#, c-format
msgid "The name of your ups"
msgstr ""

#: drakups:144
#, fuzzy, c-format
msgid "Driver:"
msgstr "Tvarkyklė"

#: drakups:144
#, c-format
msgid "The driver that manages your ups"
msgstr ""

#: drakups:145
#, c-format
msgid "Port:"
msgstr "Prievadas:"

#: drakups:147
#, fuzzy, c-format
msgid "The port on which is connected your ups"
msgstr ""
"Prašom pasirinkti, prie kurios nuosekliosios jungties prijungta tavo pelė."

#: drakups:157
#, c-format
msgid "The wizard successfully configured the new \"%s\" UPS device."
msgstr ""

#: drakups:248
#, fuzzy, c-format
msgid "UPS devices"
msgstr "įrenginys"

#: drakups:249 drakups:268 drakups:284 harddrake2:88 harddrake2:114
#: harddrake2:121
#, c-format
msgid "Name"
msgstr "Pavadinimas"

#: drakups:249 harddrake2:136
#, c-format
msgid "Driver"
msgstr "Tvarkyklė"

#: drakups:249 harddrake2:54
#, c-format
msgid "Port"
msgstr "Prievadas"

#: drakups:267
#, fuzzy, c-format
msgid "UPS users"
msgstr "Vartotojo vardas"

#: drakups:283
#, c-format
msgid "Access Control Lists"
msgstr ""

#: drakups:284
#, c-format
msgid "IP address"
msgstr "IP adresas"

#: drakups:284
#, c-format
msgid "IP mask"
msgstr ""

#: drakups:296
#, c-format
msgid "Rules"
msgstr "Taisyklės"

#: drakups:297
#, c-format
msgid "Action"
msgstr "Veiksmas"

#: drakups:297 harddrake2:85
#, c-format
msgid "Level"
msgstr "Lygis"

#: drakups:297
#, fuzzy, c-format
msgid "ACL name"
msgstr "LVM vardas?"

#: drakups:297 finish-install:156
#, c-format
msgid "Password"
msgstr "Slaptažodis"

#: drakups:329
#, fuzzy, c-format
msgid "UPS Management"
msgstr "Spausdintuvo nėra"

#: drakups:333 drakups:342
#, fuzzy, c-format
msgid "DrakUPS"
msgstr "Dvorako (JAV)"

#: drakups:339
#, fuzzy, c-format
msgid "Welcome to the UPS configuration tools"
msgstr "Nustatymų tikrinimas"

#: drakxtv:67
#, c-format
msgid "No TV Card detected!"
msgstr ""

#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: drakxtv:69
#, c-format
msgid ""
"No TV Card has been detected on your machine. Please verify that a Linux-"
"supported Video/TV Card is correctly plugged in.\n"
"\n"
"\n"
"You can visit our hardware database at:\n"
"\n"
"\n"
"http://www.mandrivalinux.com/en/hardware.php3"
msgstr ""

#: finish-install:55
#, c-format
msgid "Keyboard"
msgstr "Klaviatūra"

#: finish-install:56
#, c-format
msgid "Please, choose your keyboard layout."
msgstr "Prašom pasirinkti klaviatūros išdėstymą."

#: finish-install:154 finish-install:172 finish-install:184
#, c-format
msgid "Encrypted home partition"
msgstr ""

#: finish-install:154
#, c-format
msgid "Please enter a password for the %s user"
msgstr ""

#: finish-install:157
#, c-format
msgid "Password (again)"
msgstr "Slaptažodis (vėl)"

#: finish-install:172
#, c-format
msgid "Creating encrypted home partition"
msgstr ""

#: finish-install:184
#, c-format
msgid "Formatting encrypted home partition"
msgstr ""

#: harddrake2:28
#, fuzzy, c-format
msgid "Alternative drivers"
msgstr "Spausdinamas bandomasis puslapis..."

#: harddrake2:29
#, c-format
msgid "the list of alternative drivers for this sound card"
msgstr ""

#: harddrake2:31 harddrake2:123
#, c-format
msgid "Bus"
msgstr "Darb"

#: harddrake2:32
#, c-format
msgid ""
"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
msgstr ""

#: harddrake2:34 harddrake2:149
#, fuzzy, c-format
msgid "Bus identification"
msgstr "Autentikacija"

#: harddrake2:35
#, c-format
msgid ""
"- PCI and USB devices: this lists the vendor, device, subvendor and "
"subdevice PCI/USB ids"
msgstr ""

#: harddrake2:37
#, c-format
msgid "Location on the bus"
msgstr ""

#: harddrake2:38
#, c-format
msgid ""
"- pci devices: this gives the PCI slot, device and function of this card\n"
"- eide devices: the device is either a slave or a master device\n"
"- scsi devices: the scsi bus and the scsi device ids"
msgstr ""

#: harddrake2:41
#, c-format
msgid "Drive capacity"
msgstr ""

#: harddrake2:41
#, c-format
msgid "special capacities of the driver (burning ability and or DVD support)"
msgstr ""

#: harddrake2:42
#, c-format
msgid "Description"
msgstr "Aprašymas"

#: harddrake2:42
#, c-format
msgid "this field describes the device"
msgstr ""

#: harddrake2:43
#, fuzzy, c-format
msgid "Old device file"
msgstr "Pasirink bylą"

#: harddrake2:44
#, c-format
msgid "old static device name used in dev package"
msgstr ""

#. -PO: here "module" is the "jargon term" for a kernel driver
#: harddrake2:47
#, c-format
msgid "Module"
msgstr "Modulis"

#: harddrake2:47
#, c-format
msgid "the module of the GNU/Linux kernel that handles the device"
msgstr ""

#: harddrake2:48
#, fuzzy, c-format
msgid "Extended partitions"
msgstr "Sukurti naują skirsnį"

#: harddrake2:48
#, fuzzy, c-format
msgid "the number of extended partitions"
msgstr "Naujiems skirsniams nepakanka laisvos vietos"

#: harddrake2:49
#, c-format
msgid "Geometry"
msgstr "Geometrija"

#: harddrake2:49
#, c-format
msgid "Cylinder/head/sectors geometry of the disk"
msgstr ""

#: harddrake2:50
#, c-format
msgid "Disk controller"
msgstr ""

#: harddrake2:50
#, c-format
msgid "the disk controller on the host side"
msgstr ""

#: harddrake2:51
#, fuzzy, c-format
msgid "Identifier"
msgstr "Spausdintuvas"

#: harddrake2:51
#, c-format
msgid "usually the device serial number"
msgstr ""

#: harddrake2:52
#, c-format
msgid "Media class"
msgstr ""

#: harddrake2:52
#, c-format
msgid "class of hardware device"
msgstr ""

#: harddrake2:53 harddrake2:86
#, c-format
msgid "Model"
msgstr "Modelis"

#: harddrake2:53
#, fuzzy, c-format
msgid "hard disk model"
msgstr "Plokštės mem (DMA)"

#: harddrake2:54
#, fuzzy, c-format
msgid "network printer port"
msgstr "Tinklo spausdintuvas (TCP/lizdas)"

#: harddrake2:55
#, fuzzy, c-format
msgid "Primary partitions"
msgstr "Sužymėti skirsnius"

#: harddrake2:55
#, fuzzy, c-format
msgid "the number of the primary partitions"
msgstr "Pirmasis įkrovos skirsnio sektorius"

#: harddrake2:56 harddrake2:91
#, c-format
msgid "Vendor"
msgstr "Tiekėjas"

#: harddrake2:56
#, c-format
msgid "the vendor name of the device"
msgstr ""

#: harddrake2:57
#, c-format
msgid "PCI domain"
msgstr ""

#: harddrake2:57
#, fuzzy, c-format
msgid "the PCI domain of the device"
msgstr ""
"Prašom pasirinkti, prie kurios nuosekliosios jungties prijungta tavo pelė."

#: harddrake2:58
#, c-format
msgid "Bus PCI #"
msgstr ""

#: harddrake2:58
#, fuzzy, c-format
msgid "the PCI bus on which the device is plugged"
msgstr ""
"Prašom pasirinkti, prie kurios nuosekliosios jungties prijungta tavo pelė."

#: harddrake2:59
#, fuzzy, c-format
msgid "PCI device #"
msgstr "įrenginys"

#: harddrake2:59
#, fuzzy, c-format
msgid "PCI device number"
msgstr "Telefono numeris"

#: harddrake2:60
#, c-format
msgid "PCI function #"
msgstr ""

#: harddrake2:60
#, fuzzy, c-format
msgid "PCI function number"
msgstr "Jungties pavadinimas"

#: harddrake2:61
#, fuzzy, c-format
msgid "Vendor ID"
msgstr "Sugrįžti"

#: harddrake2:61
#, c-format
msgid "this is the standard numerical identifier of the vendor"
msgstr ""

#: harddrake2:62
#, fuzzy, c-format
msgid "Device ID"
msgstr "Įrenginys: "

#: harddrake2:62
#, c-format
msgid "this is the numerical identifier of the device"
msgstr ""

#: harddrake2:63
#, c-format
msgid "Sub vendor ID"
msgstr ""

#: harddrake2:63
#, c-format
msgid "this is the minor numerical identifier of the vendor"
msgstr ""

#: harddrake2:64
#, fuzzy, c-format
msgid "Sub device ID"
msgstr "įrenginys"

#: harddrake2:64
#, c-format
msgid "this is the minor numerical identifier of the device"
msgstr ""

#: harddrake2:65
#, fuzzy, c-format
msgid "Device USB ID"
msgstr "Įrenginys: "

#: harddrake2:65
#, c-format
msgid ".."
msgstr ".."

#: harddrake2:69
#, c-format
msgid "Bogomips"
msgstr ""

#: harddrake2:69
#, c-format
msgid ""
"the GNU/Linux kernel needs to run a calculation loop at boot time to "
"initialize a timer counter.  Its result is stored as bogomips as a way to "
"\"benchmark\" the cpu."
msgstr ""

#: harddrake2:70
#, fuzzy, c-format
msgid "Cache size"
msgstr "gabalo dydis"

#: harddrake2:70
#, c-format
msgid "size of the (second level) cpu cache"
msgstr ""

#. -PO: here "comas" is the medical coma, not the lexical coma!!
#: harddrake2:73
#, c-format
msgid "Coma bug"
msgstr ""

#: harddrake2:73
#, c-format
msgid "whether this cpu has the Cyrix 6x86 Coma bug"
msgstr ""

#: harddrake2:74
#, c-format
msgid "Cpuid family"
msgstr ""

#: harddrake2:74
#, c-format
msgid "family of the cpu (eg: 6 for i686 class)"
msgstr ""

#: harddrake2:75
#, fuzzy, c-format
msgid "Cpuid level"
msgstr "Nustatomas saugumo lygis"

#: harddrake2:75
#, c-format
msgid "information level that can be obtained through the cpuid instruction"
msgstr ""

#: harddrake2:76
#, c-format
msgid "Frequency (MHz)"
msgstr ""

#: harddrake2:76
#, c-format
msgid ""
"the CPU frequency in MHz (Megahertz which in first approximation may be "
"coarsely assimilated to number of instructions the cpu is able to execute "
"per second)"
msgstr ""

#: harddrake2:77
#, c-format
msgid "Flags"
msgstr "Flagai"

#: harddrake2:77
#, c-format
msgid "CPU flags reported by the kernel"
msgstr ""

#: harddrake2:78
#, c-format
msgid "Fdiv bug"
msgstr ""

#: harddrake2:79
#, c-format
msgid ""
"Early Intel Pentium chips manufactured have a bug in their floating point "
"processor which did not achieve the required precision when performing a "
"Floating point DIVision (FDIV)"
msgstr ""

#: harddrake2:80
#, c-format
msgid "Is FPU present"
msgstr ""

#: harddrake2:80
#, c-format
msgid "yes means the processor has an arithmetic coprocessor"
msgstr ""

#: harddrake2:81
#, c-format
msgid "Whether the FPU has an irq vector"
msgstr ""

#: harddrake2:81
#, c-format
msgid "yes means the arithmetic coprocessor has an exception vector attached"
msgstr ""

#: harddrake2:82
#, c-format
msgid "F00f bug"
msgstr ""

#: harddrake2:82
#, c-format
msgid "early pentiums were buggy and freezed when decoding the F00F bytecode"
msgstr ""

#: harddrake2:83
#, c-format
msgid "Halt bug"
msgstr ""

#: harddrake2:84
#, c-format
msgid ""
"Some of the early i486DX-100 chips cannot reliably return to operating mode "
"after the \"halt\" instruction is used"
msgstr ""

#: harddrake2:85
#, c-format
msgid "sub generation of the cpu"
msgstr ""

#: harddrake2:86
#, c-format
msgid "generation of the cpu (eg: 8 for Pentium III, ...)"
msgstr ""

#: harddrake2:87
#, fuzzy, c-format
msgid "Model name"
msgstr "Modulio vardas"

#: harddrake2:87
#, c-format
msgid "official vendor name of the cpu"
msgstr ""

#: harddrake2:88
#, c-format
msgid "the name of the CPU"
msgstr ""

#: harddrake2:89
#, c-format
msgid "Processor ID"
msgstr ""

#: harddrake2:89
#, c-format
msgid "the number of the processor"
msgstr ""

#: harddrake2:90
#, fuzzy, c-format
msgid "Model stepping"
msgstr "sužymimas"

#: harddrake2:90
#, c-format
msgid "stepping of the cpu (sub model (generation) number)"
msgstr ""

#: harddrake2:91
#, c-format
msgid "the vendor name of the processor"
msgstr ""

#: harddrake2:92
#, fuzzy, c-format
msgid "Write protection"
msgstr "Naudokite automatinį aptikimą"

#: harddrake2:92
#, c-format
msgid ""
"the WP flag in the CR0 register of the cpu enforce write protection at the "
"memory page level, thus enabling the processor to prevent unchecked kernel "
"accesses to user memory (aka this is a bug guard)"
msgstr ""

#: harddrake2:96
#, fuzzy, c-format
msgid "Floppy format"
msgstr "Formatuoti"

#: harddrake2:96
#, c-format
msgid "format of floppies supported by the drive"
msgstr ""

#: harddrake2:100
#, c-format
msgid "Channel"
msgstr "Kanalas"

#: harddrake2:100
#, c-format
msgid "EIDE/SCSI channel"
msgstr ""

#: harddrake2:101
#, fuzzy, c-format
msgid "Disk identifier"
msgstr "Spausdintuvas"

#: harddrake2:101
#, c-format
msgid "usually the disk serial number"
msgstr ""

#: harddrake2:102
#, fuzzy, c-format
msgid "Logical unit number"
msgstr "Vietinis spausdintuvas"

#: harddrake2:102
#, c-format
msgid ""
"the SCSI target number (LUN). SCSI devices connected to a host are uniquely "
"identified by a\n"
"channel number, a target id and a logical unit number"
msgstr ""

#. -PO: here, "size" is the size of the ram chip (eg: 128Mo, 256Mo, ...)
#: harddrake2:109
#, fuzzy, c-format
msgid "Installed size"
msgstr "Įdiegti sistemą"

#: harddrake2:109
#, c-format
msgid "Installed size of the memory bank"
msgstr ""

#: harddrake2:110
#, fuzzy, c-format
msgid "Enabled Size"
msgstr "įjungti"

#: harddrake2:110
#, c-format
msgid "Enabled size of the memory bank"
msgstr ""

#: harddrake2:111 harddrake2:120
#, c-format
msgid "Type"
msgstr "Rūšis"

#: harddrake2:111
#, fuzzy, c-format
msgid "type of the memory device"
msgstr "Spausdintuvo vardas"

#: harddrake2:112
#, c-format
msgid "Speed"
msgstr "Greitis"

#: harddrake2:112
#, c-format
msgid "Speed of the memory bank"
msgstr ""

#: harddrake2:113
#, fuzzy, c-format
msgid "Bank connections"
msgstr "Kabelinė jungtis"

#: harddrake2:114
#, c-format
msgid "Socket designation of the memory bank"
msgstr ""

#: harddrake2:118
#, fuzzy, c-format
msgid "Device file"
msgstr "Pasirink bylą"

#: harddrake2:118
#, c-format
msgid ""
"the device file used to communicate with the kernel driver for the mouse"
msgstr ""

#: harddrake2:119
#, c-format
msgid "Emulated wheel"
msgstr ""

#: harddrake2:119
#, fuzzy, c-format
msgid "whether the wheel is emulated or not"
msgstr "Logitech MouseMan"

#: harddrake2:120
#, fuzzy, c-format
msgid "the type of the mouse"
msgstr "Prašom išbandyti pelę"

#: harddrake2:121
#, fuzzy, c-format
msgid "the name of the mouse"
msgstr "2 klavišų"

#: harddrake2:122
#, fuzzy, c-format
msgid "Number of buttons"
msgstr "2 klavišų"

#: harddrake2:122
#, fuzzy, c-format
msgid "the number of buttons the mouse has"
msgstr "2 klavišų"

#: harddrake2:123
#, fuzzy, c-format
msgid "the type of bus on which the mouse is connected"
msgstr ""
"Prašom pasirinkti, prie kurios nuosekliosios jungties prijungta tavo pelė."

#: harddrake2:124
#, c-format
msgid "Mouse protocol used by X11"
msgstr ""

#: harddrake2:124
#, c-format
msgid "the protocol that the graphical desktop use with the mouse"
msgstr ""

#: harddrake2:131 harddrake2:140 harddrake2:147 harddrake2:155 harddrake2:335
#, c-format
msgid "Identification"
msgstr "tapatybė"

#: harddrake2:132 harddrake2:148
#, c-format
msgid "Connection"
msgstr "Prisijungti"

#: harddrake2:141
#, fuzzy, c-format
msgid "Performances"
msgstr "Pirmenybė: "

#: harddrake2:142
#, fuzzy, c-format
msgid "Bugs"
msgstr "Darb"

#: harddrake2:143
#, c-format
msgid "FPU"
msgstr ""

#: harddrake2:150
#, c-format
msgid "Device"
msgstr "Įrenginys"

#: harddrake2:151
#, c-format
msgid "Partitions"
msgstr "Skirsniai"

#: harddrake2:156
#, c-format
msgid "Features"
msgstr "Savybės"

#. -PO: please keep all "/" characters !!!
#: harddrake2:179 logdrake:78
#, c-format
msgid "/_Options"
msgstr "/_Pasirinktys"

#: harddrake2:180 harddrake2:209 logdrake:80
#, c-format
msgid "/_Help"
msgstr "/_Pagalba"

#: harddrake2:184
#, fuzzy, c-format
msgid "/Autodetect _printers"
msgstr "Naudokite automatinį aptikimą"

#: harddrake2:185
#, fuzzy, c-format
msgid "/Autodetect _modems"
msgstr "Naudokite automatinį aptikimą"

#: harddrake2:186
#, fuzzy, c-format
msgid "/Autodetect _jaz drives"
msgstr "Naudokite automatinį aptikimą"

#: harddrake2:187
#, c-format
msgid "/Autodetect parallel _zip drives"
msgstr ""

#: harddrake2:191
#, fuzzy, c-format
msgid "Hardware Configuration"
msgstr "Tinklo konfigūravimas"

#: harddrake2:198
#, c-format
msgid "/_Quit"
msgstr "/_Išeiti"

#: harddrake2:211
#, fuzzy, c-format
msgid "/_Fields description"
msgstr "Aprašymas"

#: harddrake2:213
#, c-format
msgid "Harddrake help"
msgstr ""

#: harddrake2:222
#, fuzzy, c-format
msgid "Select a device!"
msgstr "Pasirink vaizdo plokštę"

#: harddrake2:222
#, c-format
msgid ""
"Once you've selected a device, you'll be able to see the device information "
"in fields displayed on the right frame (\"Information\")"
msgstr ""

#: harddrake2:228
#, c-format
msgid "/_Report Bug"
msgstr "/_Raportuoti Klaidą"

#: harddrake2:230
#, c-format
msgid "/_About..."
msgstr "/_Apie..."

#: harddrake2:233
#, fuzzy, c-format
msgid "Harddrake"
msgstr "HardDrake"

#: harddrake2:237
#, c-format
msgid "This is HardDrake, a %s hardware configuration tool."
msgstr ""

#: harddrake2:270
#, fuzzy, c-format
msgid "Detected hardware"
msgstr "Pažiūrėk įrangos informaciją"

#: harddrake2:273 scannerdrake:286
#, c-format
msgid "Information"
msgstr "Informacija"

#: harddrake2:275
#, c-format
msgid "Set current driver options"
msgstr ""

#: harddrake2:282
#, c-format
msgid "Run config tool"
msgstr ""

#: harddrake2:302
#, c-format
msgid ""
"Click on a device in the left tree in order to display its information here."
msgstr ""

#: harddrake2:322 notify-x11-free-driver-switch:13
#, c-format
msgid "unknown"
msgstr "nežinomas"

#: harddrake2:323
#, c-format
msgid "Unknown"
msgstr "Nežinima"

#: harddrake2:343
#, c-format
msgid "Misc"
msgstr "Įvairūs"

#: harddrake2:418
#, fuzzy, c-format
msgid "secondary"
msgstr "%d sekundės"

#: harddrake2:418
#, c-format
msgid "primary"
msgstr ""

#: harddrake2:422
#, fuzzy, c-format
msgid "burner"
msgstr "Spausdintuvas"

#: harddrake2:422
#, c-format
msgid "DVD"
msgstr "DVD"

#: harddrake2:474
#, fuzzy, c-format
msgid "Unknown/Others"
msgstr "Paprasta"

#: harddrake2:516
#, fuzzy, c-format
msgid "The following packages need to be installed:\n"
msgstr "Ruošiamasi įdiegti šiuos paketus"

#: localedrake:38
#, fuzzy, c-format
msgid "LocaleDrake"
msgstr "Vietinis spausdintuvas"

#: localedrake:44
#, fuzzy, c-format
msgid "You should install the following packages: %s"
msgstr "Įdiegiamas paketas %s"

#. -PO: the following is used to combine packages names. eg: "initscripts, harddrake, yudit"
#: localedrake:47
#, c-format
msgid ", "
msgstr ", "

#: logdrake:51
#, fuzzy, c-format
msgid "Mandriva Linux Tools Logs"
msgstr "Konsolės įrankiai"

#: logdrake:65
#, c-format
msgid "Show only for the selected day"
msgstr ""

#: logdrake:72
#, c-format
msgid "/File/_New"
msgstr "/Byla/_Nauja"

#: logdrake:72
#, c-format
msgid "<control>N"
msgstr "<control>N"

#: logdrake:73
#, c-format
msgid "/File/_Open"
msgstr "/Byla/Atidaryti"

#: logdrake:73
#, c-format
msgid "<control>O"
msgstr "<control>O"

#: logdrake:74
#, c-format
msgid "/File/_Save"
msgstr "/Byla/Užrašyti"

#: logdrake:74
#, c-format
msgid "<control>S"
msgstr "<control>S"

#: logdrake:75
#, c-format
msgid "/File/Save _As"
msgstr "/Byla/Užrašyti Kaip"

#: logdrake:76
#, c-format
msgid "/File/-"
msgstr "/Byla/-"

#: logdrake:79
#, c-format
msgid "/Options/Test"
msgstr "/Pasirinkys/Bandymas"

#: logdrake:81
#, c-format
msgid "/Help/_About..."
msgstr "/Pagalba/_Apie..."

#: logdrake:110
#, c-format
msgid ""