summaryrefslogtreecommitdiffstats
path: root/perl-install/mouse.pm
blob: 52614e10a86786a66cac16afa122b51eedca71f5 (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
package mouse; # $Id$

#use diagnostics;
#use strict;

#-######################################################################################
#- misc imports
#-######################################################################################
use common;
use modules;
use detect_devices;
use run_program;
use devices;
use modules;
use any;
use log;

my @mouses_fields = qw(nbuttons MOUSETYPE XMOUSETYPE name EMULATEWHEEL);

my %mice = 
 arch() =~ /^sparc/ ? 
(
 'sunmouse' =>
 [ [ 'sunmouse' ],
   [ [ 3, 'sun', 'sun', N_("Sun - Mouse") ]
   ] ]
) :
(
 'PS/2' => 
 [ [ 'psaux' ],
   [ [ 2, 'ps/2', 'PS/2', N_("Standard") ],
     [ 5, 'ps/2', 'MouseManPlusPS/2', N_("Logitech MouseMan+") ],
     [ 5, 'imps2', 'IMPS/2', N_("Generic PS2 Wheel Mouse") ],
     [ 5, 'ps/2', 'GlidePointPS/2', N_("GlidePoint") ],
     c::kernel_version() =~ /^\Q2.6/ ?
       [ 5, 'ps/2', 'auto-dev', N_("Synaptics Touchpad") ] :
       [ 5, 'imps2', 'auto', N_("Automatic") ],
     '',
     [ 5, 'ps/2', 'ThinkingMousePS/2', N_("Kensington Thinking Mouse") ],
     [ 5, 'netmouse', 'NetMousePS/2', N_("Genius NetMouse") ],
     [ 5, 'netmouse', 'NetScrollPS/2', N_("Genius NetScroll") ],
     [ 7, 'ps/2', 'ExplorerPS/2', N_("Microsoft Explorer") ],
   ] ],
     
 'USB' =>
 [ [ 'usbmouse' ],
   [ [ 1, 'ps/2', 'IMPS/2', N_("1 button") ],
     [ 2, 'ps/2', 'IMPS/2', N_("Generic 2 Button Mouse") ],
     [ 3, 'ps/2', 'IMPS/2', N_("Generic") ],
     [ 3, 'ps/2', 'IMPS/2', N_("Generic 3 Button Mouse with Wheel emulation"), 'wheel' ],
     [ 5, 'ps/2', 'IMPS/2', N_("Wheel") ],
     [ 7, 'ps/2', 'ExplorerPS/2', N_("Microsoft Explorer") ],
   ] ],

 N_("serial") =>
 [ [ map { "ttyS$_" } 0..3 ],
   [ [ 2, 'Microsoft', 'Microsoft', N_("Generic 2 Button Mouse") ],
     [ 3, 'Microsoft', 'Microsoft', N_("Generic 3 Button Mouse") ],
     [ 3, 'Microsoft', 'Microsoft', N_("Generic 3 Button Mouse with Wheel emulation"), 'wheel' ],
     [ 5, 'ms3', 'IntelliMouse', N_("Microsoft IntelliMouse") ],
     [ 3, 'MouseMan', 'MouseMan', N_("Logitech MouseMan") ],
     [ 3, 'MouseMan', 'MouseMan', N_("Logitech MouseMan with Wheel emulation"), 'wheel' ],
     [ 2, 'MouseSystems', 'MouseSystems', N_("Mouse Systems") ],     
     '',
     [ 3, 'logim', 'MouseMan', N_("Logitech CC Series") ],
     [ 3, 'logim', 'MouseMan', N_("Logitech CC Series with Wheel emulation"), 'wheel' ],
     [ 5, 'pnp', 'IntelliMouse', N_("Logitech MouseMan+/FirstMouse+") ],
     [ 5, 'ms3', 'IntelliMouse', N_("Genius NetMouse") ],
     [ 2, 'MMSeries', 'MMSeries', N_("MM Series") ],
     [ 2, 'MMHitTab', 'MMHittab', N_("MM HitTablet") ],
     [ 3, 'Logitech', 'Logitech', N_("Logitech Mouse (serial, old C7 type)") ],
     [ 3, 'Logitech', 'Logitech', N_("Logitech Mouse (serial, old C7 type) with Wheel emulation"), 'wheel' ],
     [ 3, 'Microsoft', 'ThinkingMouse', N_("Kensington Thinking Mouse") ],
     [ 3, 'Microsoft', 'ThinkingMouse', N_("Kensington Thinking Mouse with Wheel emulation"), 'wheel' ],
   ] ],

 N_("busmouse") =>
 [ [ arch() eq 'ppc' ? 'adbmouse' : ('atibm', 'inportbm', 'logibm') ],
   [ if_(arch() eq 'ppc', [ 1, 'Busmouse', 'BusMouse', N_("1 button") ]),
     [ 2, 'Busmouse', 'BusMouse', N_("2 buttons") ],
     [ 3, 'Busmouse', 'BusMouse', N_("3 buttons") ],
     [ 3, 'Busmouse', 'BusMouse', N_("3 buttons with Wheel emulation"), 'wheel' ],
   ] ],

    if_(c::kernel_version() =~ /^\Q2.6/,
 N_("Universal") =>
 [ [ 'input/mice' ],
   [ [ 7, 'ps/2', 'ExplorerPS/2', N_("Any PS/2 & USB mice") ],
   ] ],
    ),

 N_("none") =>
 [ [ 'none' ],
   [ [ 0, 'none', 'Microsoft', N_("No mouse") ],
   ] ],
);


sub xmouse2xId { 
    #- xmousetypes must be sorted as found in /usr/include/X11/extensions/xf86misc.h
    #- so that first mean "0", etc
    my @xmousetypes = (
		   "Microsoft",
		   "MouseSystems",
		   "MMSeries",
		   "Logitech",
		   "BusMouse", #MouseMan,
		   "Logitech",
		   "PS/2",
		   "MMHittab",
		   "GlidePoint",
		   "IntelliMouse",
		   "ThinkingMouse",
		   "IMPS/2",
		   "ThinkingMousePS/2",
		   "MouseManPlusPS/2",
		   "GlidePointPS/2",
		   "NetMousePS/2",
		   "NetScrollPS/2",
		   "SysMouse",
		   "Auto",
		   "AceCad",
		   "ExplorerPS/2",
		   "USB",
    );
    my ($id) = @_;
    $id = 'BusMouse' if $id eq 'MouseMan';
    $id = 'IMPS/2' if $id eq 'ExplorerPS/2' && $::isInstall;
    eval { find_index { $_ eq $id } @xmousetypes } || 0;
}

my %mouse_btn_keymap = (
    0   => "NONE",
    67  => "F9",
    68  => "F10",
    87  => "F11",
    88  => "F12",
    85  => "F13",
    89  => "F14",
    90  => "F15",
    56  => "L-Option/Alt",
    125 => "L-Command (Apple)",
    98  => "Num: /",
    55  => "Num: *",
    117 => "Num: =",
    96 => "Enter",
);
sub ppc_one_button_keys() { keys %mouse_btn_keymap }
sub ppc_one_button_key2text { $mouse_btn_keymap{$_[0]} }

sub raw2mouse {
    my ($type, $raw) = @_;
    $raw or return;

    my %l; @l{@mouses_fields} = @$raw;
    +{ %l, type => $type };
}

sub fullnames() { 
    map_each { 
	my $type = $::a;
	grep { $_ } map {
	    if ($_) {
		my $l = raw2mouse($type, $_);
		"$type|$l->{name}";
	    } else { 
		$type .= "|[" . N("Other") . "]";
		'';
	    }
	} @{$::b->[1]}
    } %mice;
}

sub fullname2mouse {
    my ($fname, %opts) = @_;
    my ($type, @l) = split '\|', $fname;
    my $name = pop @l;
  search:
    $opts{device} ||= $mice{$type}[0][0];
    foreach (@{$mice{$type}[1]}) {
	my $l = raw2mouse($type, $_);
	$name eq $l->{name} and return { %$l, %opts };
    }
    if ($name eq '1 Button' || $name eq '1 button') {
	$name = "Generic 2 Button Mouse";
	goto search;
    }
    die "$fname not found ($type, $name)";
}

sub serial_ports() { map { "ttyS$_" } 0..7 }
sub serial_port2text {
    $_[0] =~ /ttyS(\d+)/ ? "$_[0] / COM" . ($1 + 1) : $_[0];
}

sub read() {
    my %mouse = getVarsFromSh "$::prefix/etc/sysconfig/mouse";
    eval { add2hash_(\%mouse, fullname2mouse($mouse{FULLNAME})) };
    $mouse{nbuttons} ||= $mouse{XEMU3} eq "yes" ? 2 : $mouse{WHEEL} eq "yes" ? 5 : 3;
    \%mouse;
}

sub write {
    my ($do_pkgs, $mouse) = @_;
    local $mouse->{FULLNAME} = qq("$mouse->{type}|$mouse->{name}"); #-"
    local $mouse->{XEMU3} = bool2yesno($mouse->{nbuttons} < 3);
    local $mouse->{WHEEL} = bool2yesno($mouse->{nbuttons} > 3);
    setVarsInSh("$::prefix/etc/sysconfig/mouse", $mouse, qw(MOUSETYPE XMOUSETYPE FULLNAME XEMU3 WHEEL device));
    any::devfssymlinkf($mouse, 'mouse');

    #- we should be using input/mice directly instead of usbmouse, but legacy...
    symlinkf 'input/mice', "$::prefix/dev/usbmouse" if $mouse->{device} eq "usbmouse";

    any::devfssymlinkf($mouse->{auxmouse}, 'mouse1') if $mouse->{auxmouse};


    various_xfree_conf($do_pkgs, $mouse);

    if (arch() =~ /ppc/) {
	my $s = join('',
	  "dev.mac_hid.mouse_button_emulation = " . to_bool($mouse->{button2_key} || $mouse->{button3_key}) . "\n",
	  if_($mouse->{button2_key}, "dev.mac_hid.mouse_button2_keycode = $mouse->{button2_key}\n"),
	  if_($mouse->{button3_key}, "dev.mac_hid.mouse_button3_keycode = $mouse->{button3_key}\n"),
	);
	substInFile { 
	    $_ = '' if /^\Qdev.mac_hid.mouse_button/;
	    $_ .= $s if eof;
	} "$::prefix/etc/sysctl.conf";
    }
}

sub probe_wacom_devices {
    my ($modules_conf) = @_;

    $modules_conf->get_probeall("usb-interface") or return;
    my (@l) = detect_devices::usbWacom() or return;

    log::l("found usb wacom $_->{driver} $_->{description} ($_->{type})") foreach @l;
    my @wacom = eval { 
	modules::load("wacom", "evdev");
	grep { detect_devices::tryOpen($_) } map_index { "input/event$::i" } @l
    };
    @wacom or eval { modules::unload("evdev", "wacom") };
    @wacom;
}

sub detect_serial() {
    my ($t, $mouse, @wacom);

    #- Whouah! probing all devices from ttyS0 to ttyS3 once a time!
    detect_devices::probeSerialDevices();

    #- check new probing methods keep everything used here intact!
    foreach (0..3) {
	$t = detect_devices::probeSerial("/dev/ttyS$_") or next;
	if ($t->{CLASS} eq 'MOUSE') {
	    $t->{MFG} ||= $t->{MANUFACTURER};

	    $mouse = fullname2mouse("serial|Microsoft IntelliMouse") if $t->{MFG} eq 'MSH' && $t->{MODEL} eq '0001';
	    $mouse = fullname2mouse("serial|Logitech MouseMan") if $t->{MFG} eq 'LGI' && $t->{MODEL} =~ /^80/;
	    $mouse = fullname2mouse("serial|Genius NetMouse") if $t->{MFG} eq 'KYE' && $t->{MODEL} eq '0003';

	    $mouse ||= fullname2mouse("serial|Generic 2 Button Mouse"); #- generic by default.
	    $mouse->{device} = "ttyS$_";
	    last;
	} elsif ($t->{CLASS} eq "PEN" || $t->{MANUFACTURER} eq "WAC") {
	    push @wacom, "ttyS$_";
	}
    }
    $mouse, @wacom;
}

sub detect {
    my ($modules_conf) = @_;

    if (arch() =~ /^sparc/) {
	return fullname2mouse("sunmouse|Sun - Mouse");
    }
    if (arch() eq "ppc") {
        return fullname2mouse(detect_devices::hasMousePS2("usbmouse") ? 
			      "USB|1 button" :
			      # No need to search for an ADB mouse.  If I did, the PPC kernel would
			      # find one whether or not I had one installed!  So..  default to it.
			      "busmouse|1 button");
    }

    my @wacom = probe_wacom_devices($modules_conf);

    if (c::kernel_version() =~ /^\Q2.6/) {
	$modules_conf->get_probeall("usb-interface") and eval { modules::load('usbhid') };
        my @input_devices = cat_('/proc/bus/input/devices');
        my $synaptics_mouse;
        if (my $mouse_nb = grep { /^H: Handlers=mouse/ } @input_devices) {
            my $univ_mouse = fullname2mouse('Universal|Any PS/2 & USB mice', wacom => \@wacom);
            if (any { m!^N: Name="(?:SynPS/2 Synaptics TouchPad|AlpsPS/2 ALPS TouchPad)"$! } @input_devices) {
                $synaptics_mouse = fullname2mouse('PS/2|Synaptics Touchpad');
                $::isInstall and $synaptics_mouse->{alternate_install} = $univ_mouse; #- don't try to use synpatics at beginning of install
                $mouse_nb < 2 and return $synaptics_mouse;
                $univ_mouse->{auxmouse} = $synaptics_mouse;
            }
	    return $univ_mouse;
	}
    } else {
	my $ps2_mouse = detect_devices::hasMousePS2("psaux") && fullname2mouse("PS/2|Automatic", unsafe => 0);

	#- workaround for some special case were mouse is openable 1/2.
	if (!$ps2_mouse) {
	    $ps2_mouse = detect_devices::hasMousePS2("psaux") && fullname2mouse("PS/2|Automatic", unsafe => 0);
	    $ps2_mouse and detect_devices::hasMousePS2("psaux"); #- fake another open in order for XFree to see the mouse.
	}

	if ($modules_conf->get_probeall("usb-interface")) {
	    sleep 2;
	    if (my (@l) = detect_devices::usbMice()) {
		log::l(join('', "found usb mouse $_->{driver} $_->{description} (", if_($_->{type}, $_->{type}), ")")) foreach @l;
		if (eval { modules::load(qw(hid mousedev usbmouse)); detect_devices::tryOpen("usbmouse") }) {
		    return fullname2mouse($l[0]{driver} =~ /Mouse:(.*)/ ? $1 : "USB|Wheel",
					  if_($ps2_mouse, auxmouse => $ps2_mouse), #- for laptop, we kept the PS/2 as secondary (symbolic).
					  wacom => \@wacom);
		    
		}
		eval { modules::unload(qw(usbmouse mousedev hid)) };
	    }
	} else {
	    log::l("no usb interface found for mice");
	}
	if ($ps2_mouse) {
	    return { wacom => \@wacom, %$ps2_mouse };
	}
    }

    #- probe serial device to make sure a wacom has been detected.
    eval { modules::load("serial") };
    my ($serial_mouse, @serial_wacom) = detect_serial(); push @wacom, @serial_wacom;
    if ($serial_mouse) {
	{ wacom => \@wacom, %$serial_mouse };
    } elsif (@wacom) {
	#- in case only a wacom has been found, assume an inexistant mouse (necessary).
	fullname2mouse('none|No mouse', wacom => \@wacom);
    } elsif (c::kernel_version() =~ /^\Q2.6/) {
	fullname2mouse('Universal|Any PS/2 & USB mice', unsafe => 1);
    } else {
	fullname2mouse("PS/2|Automatic", unsafe => 1);
    }
}

sub load_modules {
    my ($mouse) = @_;
    my @l;
    for ($mouse->{type}) {
	/serial/ and @l = qw(serial);
	/USB/    and @l = qw(hid mousedev usbmouse);
    }
    foreach (@{$mouse->{wacom}}) {
	/ttyS/   and push @l, qw(serial);
	/event/  and push @l, qw(wacom evdev);
    }
    if (member(N_("Synaptics Touchpad"), $mouse->{name}, $mouse->{auxmouse} && $mouse->{auxmouse}{name})) {
	push @l, qw(evdev);
    }
    eval { modules::load(@l) };
}

sub set_xfree_conf {
    my ($mouse, $xfree_conf, $b_keep_auxmouse_unchanged) = @_;

    my ($synaptics, $mouse_) = partition { $_->{name} eq N_("Synaptics Touchpad") }
      ($mouse, if_($mouse->{auxmouse}, $mouse->{auxmouse}));
    delete $mouse->{auxmouse} if $synaptics && $synaptics == $mouse->{auxmouse};
    my @mice = map {
	{
	    Protocol => $_->{XMOUSETYPE},
	    Device => "/dev/mouse",
	    if_($_->{nbuttons} > 3, ZAxisMapping => [ $_->{nbuttons} > 5 ? '6 7' : '4 5' ]),
	    if_($_->{nbuttons} < 3, Emulate3Buttons => undef, Emulate3Timeout => 50),
	    if_($_->{EMULATEWHEEL}, Emulate3Buttons => undef, Emulate3Timeout => 50, EmulateWheel => undef, EmulateWheelButton => 2),
	};
    } @$mouse_;

    if (!$mouse->{auxmouse} && $b_keep_auxmouse_unchanged) {
	my (undef, @l) = $xfree_conf->get_mice;
	push @mice, @l;
    }

    $xfree_conf->set_mice(@mice);

    if (my @wacoms = @{$mouse->{wacom} || []}) {
	$xfree_conf->set_wacoms(map { { Device => "/dev/$_", USB => m|input/event| } } @wacoms);
    }

    $synaptics and $xfree_conf->set_synaptics(map { {
        Device => "/dev/$_->{device}",
        Protocol => $_->{XMOUSETYPE},
        Primary => $_ != $mouse->{auxmouse},
    } } @$synaptics);
}

sub various_xfree_conf {
    my ($do_pkgs, $mouse) = @_;

    {
	my $f = "$::prefix/etc/X11/xinit.d/mouse_buttons";
	if ($mouse->{nbuttons} <= 5) {
	    unlink($f);
	} else {
	    output_with_perm($f, 0755, "xmodmap -e 'pointer = 1 2 3 6 7 4 5'\n");
	}
    }
    {
	my $f = "$::prefix/etc/X11/xinit.d/auxmouse_buttons";
	if (!$mouse->{auxmouse} || $mouse->{auxmouse}{nbuttons} <= 5) {
	    unlink($f);
	} else {
	    $do_pkgs->install('xinput');
	    output_with_perm($f, 0755, "xinput set-button-map Mouse2 1 2 3 6 7 4 5\n");
	}
    }

    if (member(N_("Synaptics Touchpad"), $mouse->{name}, $mouse->{auxmouse} && $mouse->{auxmouse}{name})) {
	$do_pkgs->install("synaptics");
    }
}

#- write_conf : write the mouse infos into the Xconfig files.
#- input :
#-  $mouse : the hashtable containing the informations
#- $mouse input
#-  $mouse->{nbuttons} : number of buttons : integer
#-  $mouse->{device} : device of the mouse : string : ex 'psaux'
#-  $mouse->{XMOUSETYPE} : type of the mouse for gpm : string : ex 'PS/2'
#-  $mouse->{type} : type (generic ?) of the mouse : string : ex 'PS/2'
#-  $mouse->{name} : name of the mouse : string : ex 'Standard'
#-  $mouse->{MOUSETYPE} : type of the mouse : string : ex "ps/2"
#-  $mouse->{XEMU3} : emulate 3rd button : string : 'yes' or 'no'
sub write_conf {
    my ($do_pkgs, $modules_conf, $mouse, $b_keep_auxmouse_unchanged) = @_;

    &write($do_pkgs, $mouse);
    $modules_conf->write if $mouse->{device} eq "usbmouse" && !$::testing;

    require Xconfig::xfree;
    my $xfree_conf = Xconfig::xfree->read;
    set_xfree_conf($mouse, $xfree_conf, $b_keep_auxmouse_unchanged);
    $xfree_conf->write;
}

sub change_mouse_live {
    my ($mouse, $old) = @_;

    my $xId = xmouse2xId($mouse->{XMOUSETYPE});
    $old->{device} ne $mouse->{device} || $xId != xmouse2xId($old->{XMOUSETYPE}) or return;

    log::l("telling X server to use another mouse ($mouse->{XMOUSETYPE}, $xId)");
    eval { modules::load('serial') } if $mouse->{device} =~ /ttyS/;

    if (!$::testing) {
	devices::make($mouse->{device});
	symlinkf($mouse->{device}, "/dev/mouse");
	eval {
	    require xf86misc::main;
	    xf86misc::main::setMouseLive($ENV{DISPLAY}, $xId, $mouse->{nbuttons} < 3);
	};
    }
    1;
}

sub test_mouse_install {
    my ($mouse, $x_protocol_changed) = @_;
    require ugtk2;
    ugtk2->import(qw(:wrappers :create));
    my $w = ugtk2->new('', disallow_big_help => 1);
    my $darea = Gtk2::DrawingArea->new;
    $darea->set_events([ 'button_press_mask', 'button_release_mask' ]);  #$darea must be unrealized.
    gtkadd($w->{window},
  	   gtkpack(my $vbox_grab = Gtk2::VBox->new(0, 0),
		   $darea,
		   gtkset_sensitive(create_okcancel($w, undef, undef, 'edge'), 1)
		  ),
	  );
    test_mouse($mouse, $darea, $x_protocol_changed);
    $w->sync; # HACK
    Gtk2::Gdk->pointer_grab($vbox_grab->window, 1, 'pointer_motion_mask', $vbox_grab->window, undef, 0);
    my $r = $w->main;
    Gtk2::Gdk->pointer_ungrab(0);
    $r;
}

sub test_mouse_standalone {
    my ($mouse, $hbox) = @_;
    require ugtk2;
    ugtk2->import(qw(:wrappers));
    my $darea = Gtk2::DrawingArea->new;
    $darea->set_events([ 'button_press_mask', 'button_release_mask' ]);  #$darea must be unrealized.
    gtkpack($hbox, gtkpack(gtkset_border_width(Gtk2::VBox->new(0, 10), 10), $darea));
    test_mouse($mouse, $darea);
}

sub test_mouse {
    my ($mouse, $darea, $b_x_protocol_changed) = @_;

    require ugtk2;
    ugtk2->import(qw(:wrappers));
    my $suffix = $mouse->{nbuttons} <= 2 ? '2b' : $mouse->{nbuttons} == 3 ? '3b' : '3b+';
    my %offsets = (mouse_2b_right => [ 93, 0 ], mouse_3b_right => [ 117, 0 ],
		   mouse_2b_middle => [ 82, 80 ], mouse_3b_middle => [ 68, 0 ], 'mouse_3b+_middle' => [ 85, 67 ]);
    my %image_files = (
		       mouse => "mouse_$suffix",
		       left => 'mouse_' . ($suffix eq '3b+' ? '3b' : $suffix) . '_left',
		       right => 'mouse_' . ($suffix eq '3b+' ? '3b' : $suffix) . '_right',
		       if_($mouse->{nbuttons} > 2, middle => 'mouse_' . $suffix . '_middle'),
		       up => 'arrow_up',
		       down => 'arrow_down');
    my %images = map { $_ => ugtk2::gtkcreate_pixbuf("$image_files{$_}.png") } keys %image_files;
    my $width = $images{mouse}->get_width;
    my $height = round_up(min($images{mouse}->get_height, $::windowheight - 150), 6);

    my $draw_text = sub {
  	my ($t, $y) = @_;
	my $layout = $darea->create_pango_layout($t);
	my ($w) = $layout->get_pixel_size;
	$darea->window->draw_layout($darea->style->black_gc,
				    ($darea->allocation->width-$w)/2,
				    ($darea->allocation->height-$height)/2 + $y,
				    $layout);
    };
    my $draw_pixbuf = sub {
	my ($p, $x, $y, $w, $h) = @_;
	$w = $p->get_width;
	$h = $p->get_height;
	$p->render_to_drawable($darea->window, $darea->style->bg_gc('normal'), 0, 0,
			       ($darea->allocation->width-$width)/2 + $x, ($darea->allocation->height-$height)/2 + $y,
			       $w, $h, 'none', 0, 0);
    };
    my $draw_by_name = sub {
	my ($name) = @_;
	my $file = $image_files{$name};
	my ($x, $y) = @{$offsets{$file} || [ 0, 0 ]};
	$draw_pixbuf->($images{$name}, $x, $y);
    };
    my $drawarea = sub {
	$draw_by_name->('mouse');
	if ($::isInstall || 1) {
	    $draw_text->(N("Please test the mouse"), 200);
	    if ($b_x_protocol_changed && $mouse->{nbuttons} > 3 && $mouse->{device} eq 'psaux' && member($mouse->{XMOUSETYPE}, 'IMPS/2', 'ExplorerPS/2')) {
		$draw_text->(N("To activate the mouse,"), 240);
		$draw_text->(N("MOVE YOUR WHEEL!"), 260);
	    }
	}
    };

    my $timeout;
    my $paintButton = sub {
	my ($nb) = @_;
	$timeout or $drawarea->();
	if ($nb == 0) {
	    $draw_by_name->('left');
	} elsif ($nb == 2) {
	    $draw_by_name->('right');
	} elsif ($nb == 1) {
	    if ($mouse->{nbuttons} >= 3) {
		$draw_by_name->('middle');
	    } else {
		my ($x, $y) = @{$offsets{mouse_2b_middle}};
  		$darea->window->draw_arc($darea->style->black_gc,
  					  1, ($darea->allocation->width-$width)/2 + $x, ($darea->allocation->height-$height)/2 + $y, 20, 25,
  					  0, 360 * 64);
	    }
	} elsif ($mouse->{nbuttons} > 3) {
	    my ($x, $y) = @{$offsets{$image_files{middle}}};
	    if ($nb == 3) {
		$draw_pixbuf->($images{up}, $x+6, $y-10);
	    } elsif ($nb == 4) {
		$draw_pixbuf->($images{down}, $x+6, $y + $images{middle}->get_height + 2);
	    }
	    $draw_by_name->('middle');
	    $timeout and Glib::Source->remove($timeout);
	    $timeout = Glib::Timeout->add(100, sub { $drawarea->(); $timeout = 0; 0 });
	}
    };
    
    $darea->signal_connect(button_press_event => sub { $paintButton->($_[1]->button - 1) });
    $darea->signal_connect(scroll_event => sub { $paintButton->($_[1]->direction eq 'up' ? 3 : 4) });
    $darea->signal_connect(button_release_event => $drawarea);
    $darea->signal_connect(expose_event => $drawarea);
    $darea->set_size_request($width, $height);
}


=begin

=head1 NAME

mouse - Perl functions to handle mice

=head1 SYNOPSYS

   require modules;
   require mouse;
   mouse::detect(modules::any_conf->read);

=head1 DESCRIPTION

C<mouse> is a perl module used by mousedrake to detect and configure the mouse.

=head1 COPYRIGHT

Copyright (C) 2000-2002 Mandrakesoft <tvignaud@mandrakesoft.com>

This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.

=cut
pan> "Activando o accounting de procesos" #: /etc/rc.d/init.d/iptables:122 msgid "Changing target policies to DROP: " msgstr "Mudando as políticas a DROP: " #: /etc/rc.d/rc.sysinit:240 /etc/rc.d/rc.sysinit:523 msgid "*** An error occurred during the file system check." msgstr "*** Ocorreu un erro durante a verificación do sistema de ficheiros." #: /etc/sysconfig/network-scripts/ifup:34 msgid "$0: configuration for ${1} not found." msgstr "$0: non se atopou a configuración de ${1}." #: /etc/rc.d/init.d/netfs:117 msgid "Configured NFS mountpoints: " msgstr "Puntos de montaxe NFS configurados: " #: /etc/rc.d/init.d/apmd:36 msgid "Shutting down APM daemon: " msgstr "Parando o daemon de APM: " #: /etc/rc.d/init.d/rawdevices:32 /etc/rc.d/init.d/rawdevices:39 msgid " rawdevices are now located in the directory /dev/raw/ " msgstr " os dispositivos 'raw' están agora no directorio /dev/raw/ " #: /etc/rc.d/init.d/ipchains:58 /etc/rc.d/init.d/iptables:49 #: /etc/rc.d/init.d/iptables:55 /etc/rc.d/init.d/iptables:56 msgid "Clearing all current rules and user defined chains:" msgstr "Baleirando tódalas regras actuais e os chains definidos por usuario:" #: /etc/rc.d/init.d/autofs:246 msgid "$prog not running" msgstr "$prog non activo" #: /etc/rc.d/init.d/junkbuster:33 msgid "Stopping junkbuster: " msgstr "Parando o junkbuster: " #: /etc/rc.d/rc.sysinit:43 msgid "\t\tPress 'I' to enter interactive startup." msgstr "\t\tPrema 'I' para entrar en modo interactivo." #: /etc/rc.d/init.d/network:251 /etc/rc.d/init.d/network:255 msgid "Adding internal IPX network $IPXINTERNALNETNUM $IPXINTERNALNODENUM: " msgstr "Engadindo a rede IPX interna $IPXINTERNALNETNUM $IPXINTERNALNODENUM: " #: /etc/sysconfig/network-scripts/ifup-ipv6:82 msgid "" "Global IPv6 forwarding is enabled in configuration, but not currently " "enabled in kernel" msgstr "" "O forwarding IPv6 global está habilitado na configuración, pero non no núcleo" #: /etc/rc.d/init.d/network:242 msgid "Bringing up alias $device: " msgstr "Activando o alias $device: " #: /etc/sysconfig/network-scripts/network-functions-ipv6:942 msgid "Tunnel device '$device' bringing up didn't work - ERROR!" msgstr "A activación do dispositivo de túnel '$device' non funcionou - ¡ERRO!" #: /etc/rc.d/init.d/gpm:25 /etc/rc.d/init.d/gpm:30 msgid "(no mouse is configured)" msgstr "(non hai ningún rato configurado)" #: /etc/rc.d/rc.sysinit:130 msgid "Loading default keymap ($KEYTABLE): " msgstr "Cargando o mapa de teclado por defecto ($KEYTABLE): " #: /etc/rc.d/init.d/postgresql:176 msgid "Stopping postgresql service: " msgstr "Parando o servicio postgresql: " #: /etc/rc.d/init.d/pcmcia:146 msgid "." msgstr "." #: /etc/rc.d/init.d/halt:44 msgid "$0: call me as 'rc.halt' or 'rc.reboot' please!" msgstr "$0: ¡execúteo como 'halt' ou 'reboot'!" #: /etc/rc.d/rc.sysinit:543 msgid "Mounting local filesystems: " msgstr "Montando os sistemas de ficheiros locais: " #: /etc/rc.d/init.d/ypxfrd:22 msgid "Starting YP map server: " msgstr "Iniciando o servicio de mapeo YP: " #: /etc/rc.d/rc.sysinit:37 msgid "\t\t\tWelcome to " msgstr "\t\t\tBenvido a " #: /etc/rc.d/rc.sysinit:40 msgid "\\033[0;39m" msgstr "\\033[0;39m" #: /etc/rc.d/rc.sysinit:168 msgid "Initializing USB controller ($alias): " msgstr "Inicializando o controlador USB ($alias): " #: /etc/rc.d/init.d/httpd:74 /etc/rc.d/init.d/lpd:92 msgid "Reloading $prog: " msgstr "Recargando $prog: " #: /etc/rc.d/rc.sysinit:166 msgid "Mounting USB filesystem: " msgstr "Montando o sistema de ficheiros USB: " #: /etc/rc.d/init.d/random:44 msgid "The random data source exists" msgstr "A fonte de datos aleatorios existe" #: /etc/rc.d/init.d/mars-nwe:32 msgid "Stopping NetWare emulator-server: " msgstr "Parando o servidor de emulación NetWare: " #: /etc/rc.d/init.d/kudzu:75 /etc/rc.d/init.d/linuxconf:29 msgid "Usage: $0 {start|stop}" msgstr "Uso: $0 {start|stop}" #: /etc/sysconfig/network-scripts/ifup-sl:34 #: /etc/sysconfig/network-scripts/ifup-sl:46 msgid "ifup-sl for $DEVICE exiting" msgstr "ifup-sl para $DEVICE saíndo" #: /etc/rc.d/rc.sysinit:63 msgid "Configuring kernel parameters: " msgstr "Configurando os parámetros do núcleo: " #: /etc/rc.d/rc.sysinit:356 msgid "Setting hard drive parameters for ${disk[$device]}: " msgstr "Establecendo os parámetros do disco duro ${disk[$device]}: " #: /etc/rc.d/init.d/netfs:79 msgid "Unmounting network block filesystems: " msgstr "Desmontando os sistemas de ficheiros de bloque de rede: " #: /etc/rc.d/init.d/halt:143 /etc/rc.d/init.d/netfs:61 msgid "Detaching loopback device $dev: " msgstr "Desactivando o dispositivo de rede local $dev: " #: /etc/rc.d/init.d/network:245 msgid "Bringing up route $device: " msgstr "Activando a ruta $device: " #: /etc/sysconfig/network-scripts/network-functions-ipv6:1022 msgid "Given IPv6 MTU is out of range" msgstr "O MTU para IPv6 indicado está fóra de intervalo" #: /etc/sysconfig/network-scripts/network-functions-ipv6:89 msgid "Missing parameter 'forwarding control' (arg 1)" msgstr "Falla o parámetro 'control de forwarding' (arg 1)" #: /etc/rc.d/init.d/halt:139 msgid "Unmounting loobpack filesystems: " msgstr "Desmontando os sistemas de ficheiros loopback: " #: /etc/rc.d/init.d/mysqld:29 msgid "Initializing MySQL database: " msgstr "Inicializando a base de datos MySQL: " #: /etc/rc.d/init.d/network:61 msgid "Setting network parameters: " msgstr "Establecendo os parámetros da rede: " #: /etc/rc.d/rc.sysinit:267 /etc/rc.d/rc.sysinit:551 msgid "Converting old user quota files: " msgstr "Convertendo os ficheiros de quota de usuario antigos: " #: /etc/sysconfig/network-scripts/ifup-ipv6:168 msgid "" "Given address of relay is not a globally usable one, 6to4 configuration is " "not valid!" msgstr "" "O enderezo de relay indicado non é usable globalmente, ¡a configuración 6to4 " "non é válida!" #: /etc/rc.d/init.d/iptables:115 msgid "Table: nat" msgstr "Táboa: nat" #: /etc/rc.d/init.d/network:250 /etc/rc.d/init.d/network:259 msgid "Deleting internal IPX network: " msgstr "Quitando a rede IPX interna: " #: /etc/rc.d/init.d/netfs:111 msgid "Unmounting NCP filesystems: " msgstr "Desmontando os sistemas de ficheiros NCP: " #: /etc/rc.d/rc.sysinit:149 msgid "Setting default font ($SYSFONT): " msgstr "Establecendo a fonte por omisión ($SYSFONT): " #: /etc/sysconfig/network-scripts/ifup:181 msgid " failed." msgstr " fallou." #: /etc/sysconfig/network-scripts/network-functions-ipv6:335 #: /etc/sysconfig/network-scripts/network-functions-ipv6:382 msgid "Missing parameter 'IPv6-route' (arg 3)" msgstr "Falla o parámetro 'IPv6-ruta' (arg 3)" #: /etc/rc.d/init.d/netfs:99 msgid "Unmounting NFS filesystems: " msgstr "Desmontando os sistemas de ficheiros NFS: " #: /etc/rc.d/init.d/ipchains:116 msgid "Usage: $0 {start|stop|restart|status|panic|save}" msgstr "Uso: $0 {start|stop|restart|status|panic|save}" #: /etc/rc.d/init.d/netfs:44 msgid "Mounting other filesystems: " msgstr "Montando outros sistemas de ficheiros: " #: /etc/sysconfig/network-scripts/ifdown:29 #: /etc/sysconfig/network-scripts/ifup:45 msgid "Users cannot control this device." msgstr "Os usuarios non poden controlar este dispositivo." #: /etc/sysconfig/network-scripts/network-functions-ipv6:632 #: /etc/sysconfig/network-scripts/network-functions-ipv6:638 msgid "Given IPv6 address '$testipv6addr_valid' is not valid" msgstr "O enderezo IPv6 '$testipv6addr_valid' indicado non é válido" #: /etc/rc.d/init.d/network:209 msgid "Configured devices:" msgstr "Dispositivos configurados:" #: /etc/rc.d/rc.sysinit:271 /etc/rc.d/rc.sysinit:556 msgid "Converting old group quota files: " msgstr "Convertendo os ficheiros de quota de grupo antigos: " #: /etc/rc.d/init.d/halt:62 msgid "Sending all processes the TERM signal..." msgstr "Enviando o sinal TERM a tódolos procesos..." #: /etc/rc.d/init.d/netfs:121 msgid "Configured SMB mountpoints: " msgstr "Puntos de montaxe SMB configurados: " #: /etc/rc.d/init.d/netfs:77 msgid "Unmounting network block filesystems (retry): " msgstr "Desmontando os sistemas de ficheiros de bloque de rede (reintento): " #: /etc/sysconfig/network-scripts/network-functions-ipv6:114 msgid "" "IPv6 forwarding per device cannot be controlled via sysctl - use netfilter6 " "instead!" msgstr "" "O forwarding IPv6 por dispositivo non pode ser controlado co sysctl - use o " "netfilter6 no seu lugar" #: /etc/rc.d/init.d/isdn:182 /etc/rc.d/init.d/ldap:115 #: /etc/rc.d/init.d/smb:109 msgid "Usage: $0 {start|stop|restart|status|condrestart}" msgstr "Uso: $0 {start|stop|restart|status|condrestart}" #: /etc/rc.d/init.d/kudzu:52 msgid "Run '/usr/sbin/kudzu' from the command line to re-detect." msgstr "Execute '/usr/sbin/kudzu' na liña de comandos para detectar de novo." #: /etc/sysconfig/network-scripts/ifup-aliases:341 msgid "error in $FILE: IPADDR_START greater than IPADDR_END" msgstr "erro en $FILE: IPADDR_START é maior que IPADDR_END" #: /etc/rc.d/init.d/halt:161 msgid "Unmounting file systems (retry): " msgstr "Desmontando os sistemas de ficheiros (reintento): " #: /etc/rc.d/init.d/functions:135 /etc/rc.d/init.d/functions:137 #: /etc/rc.d/init.d/named:51 /etc/rc.d/init.d/named:52 msgid "$base startup" msgstr "inicialización de $base" #: /etc/rc.d/init.d/FreeWnn:43 /etc/rc.d/init.d/bgpd:33 #: /etc/rc.d/init.d/dhcpd:38 /etc/rc.d/init.d/irda:28 /etc/rc.d/init.d/ntpd:43 #: /etc/rc.d/init.d/ospf6d:33 /etc/rc.d/init.d/ospfd:34 #: /etc/rc.d/init.d/ripd:33 /etc/rc.d/init.d/ripngd:33 #: /etc/rc.d/init.d/sendmail:55 /etc/rc.d/init.d/vncserver:40 #: /etc/rc.d/init.d/xfs:67 /etc/rc.d/init.d/zebra:31 msgid "Shutting down $prog: " msgstr "Parando $prog: " #: /etc/rc.d/init.d/postgresql:98 msgid "" "An old version of the database format was found.\n" "You need to upgrade the data format before using PostgreSQL.\n" "See $SYSDOCDIR/postgresql-$PGVERSION/README.rpm-dist for more information." msgstr "" "Atopouse un formato antigo de base de datos.\n" "Necesita actualizar o formato dos datos antes de usar PostgreSQL.\n" "Mire en $SYSDOCDIR/postgresql-$PGVERSION/README.rpm-dist para máis " "información." #: /etc/rc.d/rc.sysinit:247 /etc/rc.d/rc.sysinit:495 /etc/rc.d/rc.sysinit:530 msgid "Unmounting file systems" msgstr "Desmontando os sistemas de ficheiros" #: /etc/rc.d/init.d/iptables:117 msgid "Table: mangle" msgstr "Táboa: mangle" #: /etc/rc.d/init.d/halt:189 msgid "On the next boot fsck will be forced." msgstr "No próximo arrinque, a execución do fsck será forzada." #: /etc/rc.d/init.d/halt:124 msgid "Turning off accounting: " msgstr "Desactivando o accounting: " #: /etc/sysconfig/network-scripts/network-functions-ipv6:703 msgid "Usage: ifdown_ipv6to4_all interfacename" msgstr "Uso: ifdown_ipv6to4_all nome_interface" #: /etc/rc.d/rc.sysinit:41 msgid " Linux" msgstr " Linux" #: /etc/rc.d/init.d/iscsi:55 msgid "Stopping iSCSI: iscsilun" msgstr "Parando o iSCSI: iscsilun" #: /etc/rc.d/init.d/gated:30 msgid "Not starting $prog: " msgstr "Non iniciando $prog: " #: /etc/rc.d/init.d/iscsi:41 msgid "Couldn't load module $DRIVER_MODULE" msgstr "Non foi posible cargar o módulo $DRIVER_MODULE" #: /etc/rc.d/init.d/named:117 msgid "Usage: $0 {start|stop|status|restart|condrestart|reload|probe}" msgstr "Uso: $0 {start|stop|status|restart|condrestart|reload|probe}" #: /etc/sysconfig/network-scripts/network-functions-ipv6:64 msgid "" "Utility 'ip' (from the iproute package) doesn't exist or isn't executable - " "non-NBMA-styled tunneling setup won't work!" msgstr "" "A utilidade 'ip' (do paquete iproute) non existe ou non é executable - ¡a " "configuración de túnel non-NBMA non vai funcionar!" #: /etc/rc.d/init.d/network:194 msgid "Disabling IPv4 automatic defragmentation: " msgstr "Desactivando a desfragmentación automática de IPv4: " #: /etc/rc.d/init.d/halt:53 msgid "Usage: (halt|reboot) {start}" msgstr "Uso: (halt|reboot) {start}" #: /etc/rc.d/init.d/httpd:86 /etc/rc.d/init.d/ospf6d:56 msgid "Usage: $prog {start|stop|restart|reload|condrestart|status}" msgstr "Uso: $prog {start|stop|restart|reload|condrestart|status}" #: /etc/rc.d/init.d/iscsi:102 /etc/rc.d/init.d/rawdevices:77 #: /etc/rc.d/init.d/rstatd:63 /etc/rc.d/init.d/rusersd:66 #: /etc/rc.d/init.d/rwalld:64 /etc/rc.d/init.d/rwhod:63 msgid "Usage: $0 {start|stop|status|restart}" msgstr "Uso: $0 {start|stop|status|restart}" #: /etc/rc.d/init.d/ipchains:57 /etc/rc.d/init.d/iptables:48 #: /etc/rc.d/init.d/iptables:52 /etc/rc.d/init.d/iptables:53 msgid "Flushing all current rules and user defined chains:" msgstr "Eliminando tódalas regras actuais e os chains definidos por usuario:" #: /etc/sysconfig/network-scripts/network-functions-ipv6:916 msgid "" "Given remote address '$addressipv4tunnel' on tunnel device '$device' is " "already configured on device '$devnew' - FATAL ERROR!" msgstr "" "O enderezo remoto indicado '$addressipv4tunnel' no dispositivo de túnel " "'$device' xa está configurado no dispositivo '$devnew' - ¡ERRO MOI GRAVE!" #: /etc/rc.d/init.d/rhnsd:82 /etc/rc.d/init.d/snmpd:74 #: /etc/rc.d/init.d/xinetd:115 msgid "Usage: $0 {start|stop|status|restart|condrestart|reload}" msgstr "Uso: $0 {start|stop|status|restart|condrestart|reload}" #: /etc/rc.d/init.d/pcmcia:161 msgid "cardmgr is stopped" msgstr "cardmgr está parado" #: /etc/rc.d/init.d/rwhod:32 msgid "Stopping rwho services: " msgstr "Parando os servicios rwho: " #: /etc/sysconfig/network-scripts/ifup-ipv6:164 msgid "" "Given IPv6 address of relay is not a 6to4 one, 6to4 configuration is not " "valid!" msgstr "" "O enderezo de relay IPv6 indicado non é 6to4, ¡a configuración 6to4 non é " "válida!" #: /etc/sysconfig/network-scripts/ifup:126 msgid "Enslaving ${DEVICE} to ${MASTER}" msgstr "Facendo 'enslave' de ${DEVICE} a ${MASTER}" #: /etc/rc.d/init.d/smb:42 /etc/rc.d/init.d/smb:47 msgid "Starting $KIND services: " msgstr "Iniciando os servicios $KIND: " #: /etc/rc.d/init.d/iptables:157 msgid "Saving current rules to $IPTABLES_CONFIG: " msgstr "Gardando as regras actuais en $IPTABLES_CONFIG: " #: /etc/rc.d/init.d/functions:308 msgid "FAILED" msgstr "FALLOU" #: /etc/rc.d/init.d/pcmcia:132 msgid " cardmgr" msgstr " cardmgr" #: /etc/rc.d/rc.sysinit:275 msgid "Checking root filesystem quotas: " msgstr "Verificando as quotas do sistema de ficheiros raíz: " #: /etc/rc.d/init.d/network:214 msgid "Devices that are down:" msgstr "Dispositivos desactivados:" #: /etc/rc.d/init.d/netfs:125 msgid "Configured NCP mountpoints: " msgstr "Puntos de montaxe NCP configurados: " #: /etc/rc.d/init.d/rawdevices:55 msgid "Assigning devices: " msgstr "Asignando os dispositivos: " #: /etc/sysconfig/network-scripts/ifup:210 msgid "Error, some other host already uses address ${IPADDR}." msgstr "Erro, algunha outra máquina xa está a usar o enderezo ${IPADDR}." #: /etc/rc.d/init.d/vncserver:49 /etc/rc.d/init.d/vncserver:50 msgid "vncserver shutdown" msgstr "finalización do vncserver" #: /etc/sysconfig/network-scripts/ifdown:63 #: /etc/sysconfig/network-scripts/ifup:112 msgid "Device ${DEVICE} has different MAC address than expected, ignoring." msgstr "" "O dispositivo ${DEVICE} ten un enderezo MAC distinto do agardado, ignorando." #: /etc/rc.d/init.d/pcmcia:128 msgid "Shutting down PCMCIA services:" msgstr "Parando os servicios PCMCIA:" #: /etc/rc.d/init.d/sshd:66 msgid "Generating SSH2 DSA host key: " msgstr "Xerando a chave DSA para SSH2: " #: /etc/rc.d/init.d/pcmcia:116 msgid " cardmgr is already running." msgstr " cardmgr xa está a se executar." #: /etc/rc.d/init.d/postgresql:137 msgid "Postmaster already running." msgstr "O postmaster xa está a se executar." #: /etc/rc.d/init.d/identd:37 msgid "Generating ident key: " msgstr "Xerando a chave ident: " #: /etc/rc.d/init.d/FreeWnn:32 /etc/rc.d/init.d/amd:30 #: /etc/rc.d/init.d/anacron:15 /etc/rc.d/init.d/arpwatch:28 #: /etc/rc.d/init.d/atd:29 /etc/rc.d/init.d/bgpd:26 #: /etc/rc.d/init.d/bootparamd:29 /etc/rc.d/init.d/cWnn:31 #: /etc/rc.d/init.d/canna:26 /etc/rc.d/init.d/crond:24 #: /etc/rc.d/init.d/dhcpd:28 /etc/rc.d/init.d/gated:39 #: /etc/rc.d/init.d/httpd:43 /etc/rc.d/init.d/identd:45 #: /etc/rc.d/init.d/irda:20 /etc/rc.d/init.d/kWnn:31 #: /etc/rc.d/init.d/kadmin:40 /etc/rc.d/init.d/kprop:30 #: /etc/rc.d/init.d/krb524:30 /etc/rc.d/init.d/krb5kdc:30 #: /etc/rc.d/init.d/ldap:38 /etc/rc.d/init.d/ldap:50 /etc/rc.d/init.d/lpd:28 #: /etc/rc.d/init.d/mcserv:25 /etc/rc.d/init.d/mysqld:41 #: /etc/rc.d/init.d/mysqld:43 /etc/rc.d/init.d/named:35 #: /etc/rc.d/init.d/nscd:49 /etc/rc.d/init.d/ntpd:33 #: /etc/rc.d/init.d/ospf6d:26 /etc/rc.d/init.d/ospfd:27 #: /etc/rc.d/init.d/portmap:50 /etc/rc.d/init.d/pxe:23 #: /etc/rc.d/init.d/radvd:38 /etc/rc.d/init.d/rarpd:22 #: /etc/rc.d/init.d/ripd:26 /etc/rc.d/init.d/ripngd:26 #: /etc/rc.d/init.d/rwalld:24 /etc/rc.d/init.d/sendmail:38 #: /etc/rc.d/init.d/snmpd:21 /etc/rc.d/init.d/squid:57 #: /etc/rc.d/init.d/tWnn:31 /etc/rc.d/init.d/ups:37 #: /etc/rc.d/init.d/vncserver:22 /etc/rc.d/init.d/xfs:55 #: /etc/rc.d/init.d/xinetd:45 /etc/rc.d/init.d/zebra:24 msgid "Starting $prog: " msgstr "Iniciando $prog: " #: /etc/rc.d/init.d/innd:33 msgid "Starting INND system: " msgstr "Iniciando o sistema INND: " #: /etc/rc.d/init.d/routed:30 msgid "Starting routed (RIP) services: " msgstr "Iniciando os servicios routed (RIP): " #: /etc/rc.d/init.d/sshd:50 msgid "Generating SSH2 RSA host key: " msgstr "Xerando a chave RSA para SSH2: " #: /etc/rc.d/init.d/nscd:67 /etc/rc.d/init.d/nscd:69 msgid "$prog shutdown" msgstr "Finalización de $prog" #: /etc/rc.d/init.d/syslog:30 msgid "Starting system logger: " msgstr "Iniciando o xestor de logs do sistema: " #: /etc/rc.d/init.d/vncserver:34 msgid "vncserver start" msgstr "inicialización do vncserver" #: /etc/sysconfig/network-scripts/ifup-ipv6:225 msgid "RADVD control enabled, but config is not complete!" msgstr "¡Control RADVD habilitado, pero a configuración non está completa!" #: /etc/rc.d/init.d/functions:213 msgid "Usage: pidfileofproc {program}" msgstr "Uso: pidfileofproc {programa}" #: /etc/rc.d/init.d/named:71 msgid "$prog not running." msgstr "$prog non está a se executar." #: /etc/sysconfig/network-scripts/network-functions-ipv6:137 #: /etc/sysconfig/network-scripts/network-functions-ipv6:184 msgid "Missing parameter 'IPv6-gateway' (arg 2)" msgstr "Falla o parámetro 'IPv6-pasarela' (arg 2)" #: /etc/rc.d/init.d/functions:264 msgid "Usage: status {program}" msgstr "Uso: status {programa}" #: /etc/rc.d/init.d/ypbind:65 msgid "Shutting down NIS services: " msgstr "Parando os servicios NIS: " #: /etc/rc.d/init.d/rawdevices:31 /etc/rc.d/init.d/rawdevices:38 msgid " Please correct your /etc/sysconfig/rawdevices:" msgstr " Corrixa o seu /etc/sysconfig/rawdevices:" #: /etc/rc.d/init.d/ups:66 msgid "Shutting down $MODEL: " msgstr "Parando $MODEL: " #: /etc/rc.d/init.d/keytable:34 msgid "Loading system font: " msgstr "Cargando a fonte de sistema: " #: /etc/rc.d/init.d/innd:73 msgid "Reloading INN Service: " msgstr "Recargando o servicio INN: " #: /etc/rc.d/init.d/autofs:250 msgid "Checking for changes to /etc/auto.master ...." msgstr "Comprobando as modificacións de /etc/auto.master ...." #: /etc/rc.d/init.d/rhnsd:38 msgid "Starting Red Hat Network Daemon: " msgstr "Iniciando o daemon Red Hat Network: " #: /etc/rc.d/rc.sysinit:241 /etc/rc.d/rc.sysinit:489 /etc/rc.d/rc.sysinit:524 msgid "*** Dropping you to a shell; the system will reboot" msgstr "*** Deixándolle o control nunha shell; o sistema será reiniciado" #: /etc/rc.d/init.d/autofs:268 msgid "Start $x" msgstr "Inicio de $x" #: /etc/rc.d/init.d/amd:96 /etc/rc.d/init.d/autofs:281 #: /etc/rc.d/init.d/bgpd:56 /etc/rc.d/init.d/irda:66 #: /etc/rc.d/init.d/keytable:72 /etc/rc.d/init.d/ospfd:57 #: /etc/rc.d/init.d/ripd:56 /etc/rc.d/init.d/ripngd:56 #: /etc/rc.d/init.d/sshd:138 /etc/rc.d/init.d/zebra:54 msgid "Usage: $0 {start|stop|restart|reload|condrestart|status}" msgstr "Uso: $0 {start|stop|restart|reload|condrestart|status}" #: /etc/sysconfig/network-scripts/ifup-routes:9 msgid "usage: ifup-routes <net-device>" msgstr "uso: ifup-routes <dispositivo de rede>" #: /etc/rc.d/init.d/iptables:161 /etc/rc.d/init.d/iptables:162 msgid "Saving current rules to $IPTABLES_CONFIG" msgstr "Gardando as regras actuais en $IPTABLES_CONFIG" #: /etc/rc.d/init.d/ups:32 msgid "Starting $MODEL: " msgstr "Iniciando $MODEL: " #: /etc/sysconfig/network-scripts/network-functions-ipv6:1016 msgid "Missing parameter 'IPv6 MTU' (arg 2)" msgstr "Falla o parámetro 'IPv6 MTU' (arg 2)" #: /etc/rc.d/init.d/ups:46 msgid "Starting UPS monitor (slave): " msgstr "Iniciando o monitor UPS (escravo): " #: /etc/rc.d/init.d/ipchains:101 /etc/rc.d/init.d/iptables:72 #: /etc/rc.d/init.d/iptables:73 /etc/rc.d/init.d/iptables:142 #: /etc/rc.d/init.d/iptables:143 msgid "Flushing all chains:" msgstr "Eliminando tódolos chains:" #: /etc/rc.d/init.d/functions:394 msgid "Start service $1 (Y)es/(N)o/(C)ontinue? [Y] " msgstr "¿Iniciar o servicio $1 (S)i/(N)on/(C)ontinuar? [S] " #: ../rc.d/rc.sysinit:249 msgid "Forcing file system integrity check due to default setting" msgstr "" #: ../rc.d/rc.sysinit:224 msgid "\rPress N within $AUTOFSCK_TIMEOUT seconds to skip filesystem check..." msgstr "" #: ../rc.d/rc.sysinit:210 msgid "Your system appears to have shut down uncleanly" msgstr "" #: ../rc.d/rc.sysinit:251 msgid "Skipping file system integrity check due to default setting" msgstr "" #: ../rc.d/rc.sysinit:226 msgid "\rPress Y within $AUTOFSCK_TIMEOUT seconds to force filesystem check..." msgstr ""