@jjlmoya/utils-hardware 1.21.0 → 1.23.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (31) hide show
  1. package/package.json +1 -1
  2. package/src/category/index.ts +2 -1
  3. package/src/entries.ts +4 -1
  4. package/src/index.ts +1 -0
  5. package/src/tests/locale_completeness.test.ts +2 -2
  6. package/src/tests/tool_validation.test.ts +2 -2
  7. package/src/tool/mouseScrollTest/bibliography.astro +14 -0
  8. package/src/tool/mouseScrollTest/bibliography.ts +16 -0
  9. package/src/tool/mouseScrollTest/component.astro +150 -0
  10. package/src/tool/mouseScrollTest/entry.ts +29 -0
  11. package/src/tool/mouseScrollTest/i18n/de.ts +248 -0
  12. package/src/tool/mouseScrollTest/i18n/en.ts +253 -0
  13. package/src/tool/mouseScrollTest/i18n/es.ts +248 -0
  14. package/src/tool/mouseScrollTest/i18n/fr.ts +248 -0
  15. package/src/tool/mouseScrollTest/i18n/id.ts +248 -0
  16. package/src/tool/mouseScrollTest/i18n/it.ts +248 -0
  17. package/src/tool/mouseScrollTest/i18n/ja.ts +248 -0
  18. package/src/tool/mouseScrollTest/i18n/ko.ts +248 -0
  19. package/src/tool/mouseScrollTest/i18n/nl.ts +248 -0
  20. package/src/tool/mouseScrollTest/i18n/pl.ts +248 -0
  21. package/src/tool/mouseScrollTest/i18n/pt.ts +248 -0
  22. package/src/tool/mouseScrollTest/i18n/ru.ts +248 -0
  23. package/src/tool/mouseScrollTest/i18n/sv.ts +248 -0
  24. package/src/tool/mouseScrollTest/i18n/tr.ts +248 -0
  25. package/src/tool/mouseScrollTest/i18n/zh.ts +248 -0
  26. package/src/tool/mouseScrollTest/index.ts +9 -0
  27. package/src/tool/mouseScrollTest/logic.ts +277 -0
  28. package/src/tool/mouseScrollTest/mouse-scroll-test.css +633 -0
  29. package/src/tool/mouseScrollTest/seo.astro +15 -0
  30. package/src/tool/mouseScrollTest/ui.ts +34 -0
  31. package/src/tools.ts +2 -1
@@ -0,0 +1,253 @@
1
+ import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
2
+ import type { ToolLocaleContent } from '../../../types';
3
+ import type { MouseScrollTestUI } from '../ui';
4
+ import { bibliography } from '../bibliography';
5
+
6
+ const slug = 'mouse-scroll-test';
7
+ const title = 'Mouse Scroll Test';
8
+ const description =
9
+ 'Diagnose mouse wheel skips, reverse jumps, inconsistent scroll direction, and weak encoder signals with a local browser-based scroll wheel test.';
10
+
11
+ const faqData = [
12
+ {
13
+ question: 'What does a mouse scroll test detect?',
14
+ answer:
15
+ 'A mouse scroll test records wheel events and looks for unstable direction changes, weak tiny deltas, and inconsistent scrolling. These symptoms often appear when the wheel encoder is dirty, worn, misaligned, or electronically noisy.',
16
+ },
17
+ {
18
+ question: 'What is a reverse scroll jump?',
19
+ answer:
20
+ 'A reverse jump happens when you scroll in one direction but the computer receives a short event in the opposite direction. If it repeats during steady scrolling, it is a strong sign of wheel encoder bounce or contamination.',
21
+ },
22
+ {
23
+ question: 'Can this test work with touchpads?',
24
+ answer:
25
+ 'Yes, but the result is most meaningful for physical mouse wheels. Touchpads and smooth-scroll wheels create many small deltas, so the sensitivity control helps separate intentional fine movement from suspicious jitter.',
26
+ },
27
+ {
28
+ question: 'Does the test upload my mouse data?',
29
+ answer:
30
+ 'No. The calculation runs locally in your browser. The tool only uses wheel events while your pointer is inside the capture area.',
31
+ },
32
+ ];
33
+
34
+ const howToData = [
35
+ {
36
+ name: 'Place the pointer over the capture pad',
37
+ text: 'Move the cursor into the scroll lab area so the page can capture wheel events without moving the surrounding document.',
38
+ },
39
+ {
40
+ name: 'Scroll steadily in one direction',
41
+ text: 'Test one direction at a time: roll slowly upward for several clicks, reset or pause, then test downward separately. Fast intentional direction changes can create false reverse-jump readings.',
42
+ },
43
+ {
44
+ name: 'Watch for reverse jumps',
45
+ text: 'If the reversal counter rises while your finger is still moving in one direction, repeat the same motion to confirm the pattern.',
46
+ },
47
+ {
48
+ name: 'Tune the sensitivity',
49
+ text: 'Raise sensitivity for smooth touchpads or lower it for strict mechanical wheel testing. The stability score updates immediately.',
50
+ },
51
+ ];
52
+
53
+ const faqSchema: WithContext<FAQPage> = {
54
+ '@context': 'https://schema.org',
55
+ '@type': 'FAQPage',
56
+ mainEntity: faqData.map((item) => ({
57
+ '@type': 'Question',
58
+ name: item.question,
59
+ acceptedAnswer: { '@type': 'Answer', text: item.answer },
60
+ })),
61
+ };
62
+
63
+ const howToSchema: WithContext<HowTo> = {
64
+ '@context': 'https://schema.org',
65
+ '@type': 'HowTo',
66
+ name: title,
67
+ description,
68
+ step: howToData.map((step, i) => ({
69
+ '@type': 'HowToStep',
70
+ position: i + 1,
71
+ name: step.name,
72
+ text: step.text,
73
+ })),
74
+ };
75
+
76
+ const appSchema: WithContext<SoftwareApplication> = {
77
+ '@context': 'https://schema.org',
78
+ '@type': 'SoftwareApplication',
79
+ name: title,
80
+ description,
81
+ applicationCategory: 'UtilityApplication',
82
+ operatingSystem: 'All',
83
+ offers: { '@type': 'Offer', price: '0', priceCurrency: 'USD' },
84
+ inLanguage: 'en',
85
+ };
86
+
87
+ export const content: ToolLocaleContent<MouseScrollTestUI> = {
88
+ slug,
89
+ title,
90
+ description,
91
+ faq: faqData,
92
+ howTo: howToData,
93
+ schemas: [faqSchema, howToSchema, appSchema],
94
+ bibliography,
95
+ seo: [
96
+ {
97
+ type: 'title',
98
+ text: 'Mouse Scroll Test: Find Wheel Skips and Reverse Jumps',
99
+ level: 2,
100
+ },
101
+ {
102
+ type: 'paragraph',
103
+ html: 'A failing mouse wheel rarely breaks all at once. It usually starts with tiny symptoms: one notch scrolls the wrong way, a page jumps upward while you are scrolling down, or the wheel feels normal but the browser receives inconsistent events. This mouse scroll test records the wheel signal that reaches the browser and highlights the patterns that matter for diagnosis.',
104
+ },
105
+ {
106
+ type: 'paragraph',
107
+ html: 'The goal is not to count how far a page moved. The useful signal is <strong>direction consistency</strong>. When you roll a mechanical wheel steadily downward, the event stream should stay downward. Short opposite-direction events inside a narrow time window are suspicious because they match the way dirty or worn scroll encoders misread wheel movement.',
108
+ },
109
+ {
110
+ type: 'title',
111
+ text: 'What the Tool Measures',
112
+ level: 3,
113
+ },
114
+ {
115
+ type: 'list',
116
+ items: [
117
+ 'Total wheel ticks captured inside the test pad',
118
+ 'Reverse jumps: fast sign changes that occur while the previous direction is still recent',
119
+ 'Longest clean run: how many consecutive events stayed in a consistent direction',
120
+ 'Last delta: the raw direction and size of the most recent wheel event',
121
+ 'Vertical versus horizontal activity, useful for tilt wheels and trackpads',
122
+ ],
123
+ },
124
+ {
125
+ type: 'table',
126
+ headers: ['Signal', 'Healthy Pattern', 'Suspicious Pattern'],
127
+ rows: [
128
+ ['Vertical wheel', 'Long runs of up or down events during steady scrolling', 'Alternating up/down events while your finger keeps one direction'],
129
+ ['Horizontal tilt', 'Left or right events only when using tilt or horizontal gestures', 'Unexpected side movement during normal vertical wheel use'],
130
+ ['Small deltas', 'Occasional small values on smooth wheels or touchpads', 'A high share of tiny unstable values on a notched mechanical wheel'],
131
+ ['Stability score', 'Stays high across several deliberate passes', 'Drops repeatedly because reversals occur in the same direction test'],
132
+ ],
133
+ },
134
+ {
135
+ type: 'title',
136
+ text: 'Common Causes of Scroll Wheel Skipping',
137
+ level: 3,
138
+ },
139
+ {
140
+ type: 'paragraph',
141
+ html: 'Most mouse wheels use an encoder that converts rotation into pulses. Dust, oxidation, worn contacts, a loose wheel axle, firmware filtering problems, or a damaged cable can make those pulses inconsistent. When the encoder briefly reports the wrong phase, the operating system may receive an opposite-direction wheel event even though the wheel kept moving in the original direction.',
142
+ },
143
+ {
144
+ type: 'table',
145
+ headers: ['Symptom', 'Likely Cause', 'Next Check'],
146
+ rows: [
147
+ ['Page jumps upward while scrolling down', 'Encoder bounce or dirt inside the wheel mechanism', 'Run a slow downward pass and watch the reversal counter'],
148
+ ['Only one application scrolls badly', 'Application smoothing, zoom mode, or custom mouse shortcut', 'Try the test in a browser and compare with another app'],
149
+ ['Wheel is fine after blowing air, then fails again', 'Temporary debris movement or worn encoder contacts', 'Repeat after a few minutes of normal use'],
150
+ ['Horizontal movement appears unexpectedly', 'Tilt wheel noise, touchpad gesture, or driver mapping', 'Check the horizontal axis meter while scrolling vertically'],
151
+ ['Wireless mouse scrolls erratically', 'Low battery, receiver distance, or interference', 'Retest with a fresh battery and receiver close to the mouse'],
152
+ ],
153
+ },
154
+ {
155
+ type: 'title',
156
+ text: 'How to Test Reliably',
157
+ level: 3,
158
+ },
159
+ {
160
+ type: 'list',
161
+ items: [
162
+ 'Put the pointer inside the capture pad before scrolling so the page can prevent normal page movement',
163
+ 'Test one direction at a time: scroll slowly upward for 10 to 20 wheel notches without changing direction',
164
+ 'Reset or pause, then repeat the same one-direction pass downward',
165
+ 'Do not alternate rapidly between up and down, because intentional fast direction changes can look like reverse jumps',
166
+ 'If reversals appear, repeat the failing direction several times to confirm it is reproducible',
167
+ 'Compare with another mouse on the same computer if you need to separate hardware from software',
168
+ ],
169
+ },
170
+ {
171
+ type: 'title',
172
+ text: 'Interpreting the Score',
173
+ level: 3,
174
+ },
175
+ {
176
+ type: 'paragraph',
177
+ html: 'The stability score is a quick summary. A high score means the tool saw consistent direction and few tiny uncertain deltas. A low score does not automatically prove the mouse is broken, especially on touchpads or high-resolution smooth wheels, but repeated reverse jumps during a slow one-direction test are strong evidence of a real wheel problem.',
178
+ },
179
+ {
180
+ type: 'table',
181
+ headers: ['Result', 'Meaning', 'Recommended Action'],
182
+ rows: [
183
+ ['No reversals and long clean runs', 'The wheel signal looks consistent', 'Keep testing only if symptoms appear in real use'],
184
+ ['One isolated reversal', 'Could be accidental direction change or one noisy event', 'Repeat the same direction slowly'],
185
+ ['Several reversals in the same pass', 'Likely encoder bounce, dirt, or wheel wear', 'Retest on another computer and document the result'],
186
+ ['Many jitter events but no reversals', 'Sensitivity may be too low for the device type', 'Raise sensitivity for touchpad or smooth-scroll devices'],
187
+ ['Horizontal events during vertical wheel use', 'Possible tilt wheel or driver mapping noise', 'Disable custom mouse software and retest'],
188
+ ],
189
+ },
190
+ {
191
+ type: 'title',
192
+ text: 'Mechanical Wheel Versus Touchpad',
193
+ level: 3,
194
+ },
195
+ {
196
+ type: 'paragraph',
197
+ html: 'A notched mechanical wheel normally produces clear directional steps. A touchpad or free-spin wheel can produce many small deltas because the operating system applies smooth scrolling. That is why this tool includes sensitivity control: raising it ignores tiny movement and makes the test focus on direction changes large enough to matter.',
198
+ },
199
+ {
200
+ type: 'title',
201
+ text: 'What to Try Before Replacing the Mouse',
202
+ level: 3,
203
+ },
204
+ {
205
+ type: 'list',
206
+ items: [
207
+ 'Test in another browser to rule out a page-specific wheel handler',
208
+ 'Disable vendor mouse software, scroll acceleration, or macro layers during diagnosis',
209
+ 'For wireless mice, use a fresh battery and move the receiver closer',
210
+ 'Clean around the wheel with compressed air while the mouse is unplugged or powered off',
211
+ 'If the mouse is under warranty, record the repeated reversal pattern as evidence',
212
+ ],
213
+ },
214
+ {
215
+ type: 'paragraph',
216
+ html: 'Browser-based testing cannot inspect the encoder electrically, but it can show exactly what your normal software receives. If the browser receives wrong-direction wheel events during a careful one-way scroll, other applications can receive them too.',
217
+ },
218
+ ],
219
+ ui: {
220
+ badge: 'Wheel Signal Lab',
221
+ captureTitle: 'Scroll inside the signal pad',
222
+ captureHint: 'Use steady one-way wheel passes to expose reverse jumps',
223
+ focusLockTitle: 'Activate this scroll zone',
224
+ focusLockText: 'Click this zone, then scroll here. The page will not move while this zone is active.',
225
+ stabilityScore: 'Stability score',
226
+ statusIdle: 'Scroll over the pad to start measuring wheel consistency',
227
+ statusClean: 'Wheel direction is stable in the captured samples',
228
+ statusWarning: 'Reverse jumps detected during recent scrolling',
229
+ statusMixed: 'Many tiny deltas detected; tune sensitivity for this device',
230
+ directionNote: 'Test one direction at a time. Rapidly switching up and down can create false reverse-jump readings.',
231
+ totalTicks: 'Ticks',
232
+ reversals: 'Reversals',
233
+ longestRun: 'Best run',
234
+ lastDelta: 'Last delta',
235
+ verticalAxis: 'Vertical',
236
+ horizontalAxis: 'Horizontal',
237
+ dominantDirection: 'Last direction',
238
+ upward: 'Up',
239
+ downward: 'Down',
240
+ leftward: 'Left',
241
+ rightward: 'Right',
242
+ noDirection: 'No movement',
243
+ noDataValue: '-',
244
+ sensitivityLabel: 'Jitter sensitivity',
245
+ sensitivityUnit: 'delta',
246
+ reset: 'Reset',
247
+ logTitle: 'Wheel event stream',
248
+ emptyLog: 'Scroll over the pad with slow, steady wheel movement.',
249
+ cleanEvent: 'clean',
250
+ reversalEvent: 'reverse jump',
251
+ jitterEvent: 'tiny delta',
252
+ },
253
+ };
@@ -0,0 +1,248 @@
1
+ import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
2
+ import type { ToolLocaleContent } from '../../../types';
3
+ import type { MouseScrollTestUI } from '../ui';
4
+ import { bibliography } from '../bibliography';
5
+
6
+ const slug = 'prueba-scroll-raton';
7
+ const title = 'Test de Rueda de Ratón';
8
+ const description = 'Diagnostica saltos de rueda, rebotes inversos, dirección de desplazamiento inconsistente y señales de codificador débiles con un test local de rueda de ratón en el navegador.';
9
+
10
+ const faqData = [
11
+ {
12
+ question: '¿Qué detecta un test de rueda de ratón?',
13
+ answer: 'Un test de rueda de ratón registra los eventos de la rueda y busca cambios de dirección inestables, deltas débiles diminutos y desplazamiento inconsistente. Estos síntomas suelen aparecer cuando el codificador de la rueda está sucio, desgastado, desalineado o tiene ruido electrónico.',
14
+ },
15
+ {
16
+ question: '¿Qué es un salto de desplazamiento inverso?',
17
+ answer: 'Un salto inverso ocurre cuando desplazas en una dirección pero el ordenador recibe un evento corto en la dirección opuesta. Si se repite durante un desplazamiento constante, es un fuerte indicio de rebote del codificador o suciedad.',
18
+ },
19
+ {
20
+ question: '¿Funciona este test con touchpads?',
21
+ answer: 'Sí, pero el resultado es más significativo para ruedas físicas de ratón. Los touchpads y las ruedas de desplazamiento suave crean muchos deltas pequeños, por lo que el control de sensibilidad ayuda a separar el movimiento fino intencionado del jitter sospechoso.',
22
+ },
23
+ {
24
+ question: '¿El test sube mis datos del ratón?',
25
+ answer: 'No. El cálculo se ejecuta localmente en tu navegador. La herramienta solo usa los eventos de rueda mientras el puntero está dentro del área de captura.',
26
+ },
27
+ ];
28
+
29
+ const howToData = [
30
+ {
31
+ name: 'Coloca el puntero sobre el panel de captura',
32
+ text: 'Mueve el cursor dentro del área del laboratorio de desplazamiento para que la página pueda capturar los eventos de rueda sin mover el documento.',
33
+ },
34
+ {
35
+ name: 'Desplázate constantemente en una dirección',
36
+ text: 'Prueba una dirección a la vez: gira lentamente hacia arriba durante varios clics, reinicia o pausa, luego prueba hacia abajo por separado. Los cambios rápidos intencionados de dirección pueden generar falsas lecturas de salto inverso.',
37
+ },
38
+ {
39
+ name: 'Observa los saltos inversos',
40
+ text: 'Si el contador de inversiones aumenta mientras tu dedo sigue moviéndose en una dirección, repite el mismo movimiento para confirmar el patrón.',
41
+ },
42
+ {
43
+ name: 'Ajusta la sensibilidad',
44
+ text: 'Aumenta la sensibilidad para touchpads suaves o redúcela para pruebas estrictas de rueda mecánica. La puntuación de estabilidad se actualiza inmediatamente.',
45
+ },
46
+ ];
47
+
48
+ const faqSchema: WithContext<FAQPage> = {
49
+ '@context': 'https://schema.org',
50
+ '@type': 'FAQPage',
51
+ mainEntity: faqData.map((item) => ({
52
+ '@type': 'Question',
53
+ name: item.question,
54
+ acceptedAnswer: { '@type': 'Answer', text: item.answer },
55
+ })),
56
+ };
57
+
58
+ const howToSchema: WithContext<HowTo> = {
59
+ '@context': 'https://schema.org',
60
+ '@type': 'HowTo',
61
+ name: title,
62
+ description,
63
+ step: howToData.map((step, i) => ({
64
+ '@type': 'HowToStep',
65
+ position: i + 1,
66
+ name: step.name,
67
+ text: step.text,
68
+ })),
69
+ };
70
+
71
+ const appSchema: WithContext<SoftwareApplication> = {
72
+ '@context': 'https://schema.org',
73
+ '@type': 'SoftwareApplication',
74
+ name: title,
75
+ description,
76
+ applicationCategory: 'UtilityApplication',
77
+ operatingSystem: 'All',
78
+ offers: { '@type': 'Offer', price: '0', priceCurrency: 'USD' },
79
+ inLanguage: 'es',
80
+ };
81
+
82
+ export const content: ToolLocaleContent<MouseScrollTestUI> = {
83
+ slug,
84
+ title,
85
+ description,
86
+ faq: faqData,
87
+ howTo: howToData,
88
+ schemas: [faqSchema, howToSchema, appSchema],
89
+ bibliography,
90
+ seo: [
91
+ {
92
+ type: 'title',
93
+ text: 'Test de Rueda de Ratón: Detecta Saltos e Inversiones de Desplazamiento',
94
+ level: 2,
95
+ },
96
+ {
97
+ type: 'paragraph',
98
+ html: 'Una rueda de ratón defectuosa rara vez falla de golpe. Normalmente empieza con síntomas pequeños: un salto desplaza la página en la dirección equivocada, la página sube mientras bajas, o la rueda se siente normal pero el navegador recibe eventos inconsistentes. Este test de rueda de ratón registra la señal que llega al navegador y resalta los patrones relevantes para el diagnóstico.',
99
+ },
100
+ {
101
+ type: 'paragraph',
102
+ html: 'El objetivo no es medir cuánto se movió la página. La señal útil es la <strong>consistencia de dirección</strong>. Cuando giras una rueda mecánica constantemente hacia abajo, los eventos deben mantenerse en esa dirección. Los eventos cortos en dirección opuesta dentro de una ventana de tiempo estrecha son sospechosos porque coinciden con el comportamiento de codificadores sucios o desgastados.',
103
+ },
104
+ {
105
+ type: 'title',
106
+ text: 'Qué Mide la Herramienta',
107
+ level: 3,
108
+ },
109
+ {
110
+ type: 'list',
111
+ items: [
112
+ 'Total de pulsos de rueda capturados dentro del panel de prueba',
113
+ 'Saltos inversos: cambios rápidos de signo mientras la dirección anterior sigue siendo reciente',
114
+ 'Racha limpia más larga: cuántos eventos consecutivos se mantuvieron en una dirección consistente',
115
+ 'Último delta: la dirección y magnitud en bruto del evento de rueda más reciente',
116
+ 'Actividad vertical frente a horizontal, útil para ruedas basculantes y touchpads',
117
+ ],
118
+ },
119
+ {
120
+ type: 'table',
121
+ headers: ['Señal', 'Patrón Saludable', 'Patrón Sospechoso'],
122
+ rows: [
123
+ ['Rueda vertical', 'Rachas largas de eventos arriba o abajo durante desplazamiento constante', 'Eventos alternantes arriba/abajo mientras tu dedo mantiene una dirección'],
124
+ ['Basculación horizontal', 'Eventos izquierda o derecha solo al usar gestos de basculación o horizontales', 'Movimiento lateral inesperado durante el uso normal de la rueda vertical'],
125
+ ['Deltas pequeños', 'Valores pequeños ocasionales en ruedas suaves o touchpads', 'Alta proporción de valores diminutos inestables en una rueda mecánica con muescas'],
126
+ ['Puntuación de estabilidad', 'Se mantiene alta en varias pasadas deliberadas', 'Cae repetidamente porque ocurren inversiones en la misma dirección de prueba'],
127
+ ],
128
+ },
129
+ {
130
+ type: 'title',
131
+ text: 'Causas Comunes del Salto de Rueda de Desplazamiento',
132
+ level: 3,
133
+ },
134
+ {
135
+ type: 'paragraph',
136
+ html: 'La mayoría de las ruedas de ratón usan un codificador que convierte la rotación en pulsos. El polvo, la oxidación, los contactos desgastados, un eje suelto, problemas de filtrado del firmware o un cable dañado pueden hacer que esos pulsos sean inconsistentes. Cuando el codificador reporta brevemente la fase incorrecta, el sistema operativo puede recibir un evento en dirección opuesta aunque la rueda siguiera girando en la dirección original.',
137
+ },
138
+ {
139
+ type: 'table',
140
+ headers: ['Síntoma', 'Causa Probable', 'Siguiente Comprobación'],
141
+ rows: [
142
+ ['La página sube mientras bajas', 'Rebote del codificador o suciedad en el mecanismo', 'Haz una pasada lenta hacia abajo y observa el contador de inversiones'],
143
+ ['Solo una aplicación se desplaza mal', 'Suavizado de la aplicación, modo zoom o atajo de ratón personalizado', 'Prueba en el navegador y compara con otra aplicación'],
144
+ ['La rueda funciona tras soplar aire, luego falla de nuevo', 'Movimiento temporal de residuos o contactos desgastados', 'Repite tras unos minutos de uso normal'],
145
+ ['Aparece movimiento horizontal inesperado', 'Ruido de rueda basculante, gesto de touchpad o mapeo de driver', 'Comprueba el medidor del eje horizontal mientras te desplazas verticalmente'],
146
+ ['El ratón inalámbrico se desplaza erráticamente', 'Batería baja, distancia del receptor o interferencia', 'Repite la prueba con batería nueva y el receptor cerca del ratón'],
147
+ ],
148
+ },
149
+ {
150
+ type: 'title',
151
+ text: 'Cómo Probar de Forma Fiable',
152
+ level: 3,
153
+ },
154
+ {
155
+ type: 'list',
156
+ items: [
157
+ 'Coloca el puntero dentro del panel de captura antes de desplazarte para que la página evite el movimiento normal',
158
+ 'Prueba una dirección a la vez: desplázate lentamente hacia arriba durante 10 a 20 clics sin cambiar de dirección',
159
+ 'Reinicia o pausa, luego repite la misma pasada en una dirección hacia abajo',
160
+ 'No alternes rápidamente entre arriba y abajo, ya que los cambios rápidos intencionados pueden parecer saltos inversos',
161
+ 'Si aparecen inversiones, repite la dirección fallida varias veces para confirmar que es reproducible',
162
+ 'Compara con otro ratón en el mismo ordenador si necesitas separar hardware de software',
163
+ ],
164
+ },
165
+ {
166
+ type: 'title',
167
+ text: 'Interpretando la Puntuación',
168
+ level: 3,
169
+ },
170
+ {
171
+ type: 'paragraph',
172
+ html: 'La puntuación de estabilidad es un resumen rápido. Una puntuación alta significa que la herramienta vio dirección consistente y pocos deltas diminutos inciertos. Una puntuación baja no prueba automáticamente que el ratón esté roto, especialmente en touchpads o ruedas suaves de alta resolución, pero los saltos inversos repetidos durante una prueba lenta unidireccional son una fuerte evidencia de un problema real de rueda.',
173
+ },
174
+ {
175
+ type: 'table',
176
+ headers: ['Resultado', 'Significado', 'Acción Recomendada'],
177
+ rows: [
178
+ ['Sin inversiones y rachas limpias largas', 'La señal de la rueda parece consistente', 'Sigue probando solo si aparecen síntomas en uso real'],
179
+ ['Una inversión aislada', 'Podría ser cambio accidental de dirección o un evento ruidoso', 'Repite la misma dirección lentamente'],
180
+ ['Varias inversiones en la misma pasada', 'Probable rebote del codificador, suciedad o desgaste', 'Repite la prueba en otro ordenador y documenta el resultado'],
181
+ ['Muchos eventos de jitter pero sin inversiones', 'La sensibilidad puede ser demasiado baja para el tipo de dispositivo', 'Aumenta la sensibilidad para touchpads o dispositivos de desplazamiento suave'],
182
+ ['Eventos horizontales durante uso de rueda vertical', 'Posible ruido de rueda basculante o mapeo de driver', 'Desactiva el software personalizado del ratón y repite la prueba'],
183
+ ],
184
+ },
185
+ {
186
+ type: 'title',
187
+ text: 'Rueda Mecánica vs Touchpad',
188
+ level: 3,
189
+ },
190
+ {
191
+ type: 'paragraph',
192
+ html: 'Una rueda mecánica con muescas normalmente produce pasos direccionales claros. Un touchpad o rueda de giro libre puede producir muchos deltas pequeños porque el sistema operativo aplica desplazamiento suave. Por eso esta herramienta incluye control de sensibilidad: subirlo ignora el movimiento diminuto y hace que la prueba se centre en cambios de dirección lo bastante grandes como para importar.',
193
+ },
194
+ {
195
+ type: 'title',
196
+ text: 'Qué Probar Antes de Reemplazar el Ratón',
197
+ level: 3,
198
+ },
199
+ {
200
+ type: 'list',
201
+ items: [
202
+ 'Prueba en otro navegador para descartar un manejador de rueda específico de la página',
203
+ 'Desactiva el software del fabricante del ratón, la aceleración de desplazamiento o las capas de macro durante el diagnóstico',
204
+ 'Para ratones inalámbricos, usa una batería nueva y acerca el receptor',
205
+ 'Limpia alrededor de la rueda con aire comprimido mientras el ratón esté desenchufado o apagado',
206
+ 'Si el ratón está en garantía, registra el patrón de inversión repetido como evidencia',
207
+ ],
208
+ },
209
+ {
210
+ type: 'paragraph',
211
+ html: 'Las pruebas basadas en navegador no pueden inspeccionar el codificador eléctricamente, pero pueden mostrar exactamente lo que recibe tu software habitual. Si el navegador recibe eventos de rueda en dirección incorrecta durante un desplazamiento cuidadoso y unidireccional, otras aplicaciones también pueden recibirlos.',
212
+ },
213
+ ],
214
+ ui: {
215
+ badge: 'Laboratorio de Señal de Rueda',
216
+ captureTitle: 'Desplázate dentro del panel de señal',
217
+ captureHint: 'Usa pasadas constantes en una dirección para detectar saltos inversos',
218
+ focusLockTitle: 'Activar esta zona de desplazamiento',
219
+ focusLockText: 'Haz clic en esta zona y desplázate aquí. La página no se moverá mientras esta zona esté activa.',
220
+ stabilityScore: 'Puntuación de estabilidad',
221
+ statusIdle: 'Desplázate sobre el panel para empezar a medir la consistencia de la rueda',
222
+ statusClean: 'La dirección de la rueda es estable en las muestras capturadas',
223
+ statusWarning: 'Se detectaron saltos inversos durante el desplazamiento reciente',
224
+ statusMixed: 'Se detectaron muchos deltas pequeños; ajusta la sensibilidad para este dispositivo',
225
+ directionNote: 'Prueba una dirección a la vez. Cambiar rápido entre arriba y abajo puede generar falsos saltos inversos.',
226
+ totalTicks: 'Pulsos',
227
+ reversals: 'Inversiones',
228
+ longestRun: 'Mejor racha',
229
+ lastDelta: 'Último delta',
230
+ verticalAxis: 'Vertical',
231
+ horizontalAxis: 'Horizontal',
232
+ dominantDirection: 'Última dirección',
233
+ upward: 'Arriba',
234
+ downward: 'Abajo',
235
+ leftward: 'Izquierda',
236
+ rightward: 'Derecha',
237
+ noDirection: 'Sin movimiento',
238
+ noDataValue: '-',
239
+ sensitivityLabel: 'Sensibilidad al jitter',
240
+ sensitivityUnit: 'delta',
241
+ reset: 'Reiniciar',
242
+ logTitle: 'Secuencia de eventos de rueda',
243
+ emptyLog: 'Desplázate sobre el panel con un movimiento lento y constante de la rueda.',
244
+ cleanEvent: 'limpio',
245
+ reversalEvent: 'salto inverso',
246
+ jitterEvent: 'delta pequeño',
247
+ },
248
+ };