@jjlmoya/utils-chrono 1.2.0 → 1.4.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 (161) hide show
  1. package/package.json +1 -1
  2. package/src/category/ChronoCategorySEO.astro +9 -2
  3. package/src/category/i18n/de.ts +11 -9
  4. package/src/category/i18n/en.ts +11 -9
  5. package/src/category/i18n/fr.ts +11 -9
  6. package/src/category/i18n/id.ts +11 -9
  7. package/src/category/i18n/it.ts +11 -9
  8. package/src/category/i18n/ja.ts +11 -9
  9. package/src/category/i18n/ko.ts +11 -9
  10. package/src/category/i18n/nl.ts +11 -9
  11. package/src/category/i18n/pl.ts +11 -9
  12. package/src/category/i18n/pt.ts +11 -9
  13. package/src/category/i18n/ru.ts +11 -9
  14. package/src/category/i18n/sv.ts +11 -9
  15. package/src/category/i18n/tr.ts +11 -9
  16. package/src/category/i18n/zh.ts +11 -9
  17. package/src/category/index.ts +6 -0
  18. package/src/entries.ts +10 -1
  19. package/src/index.ts +3 -0
  20. package/src/tests/locale_completeness.test.ts +1 -1
  21. package/src/tests/no_h1_in_components.test.ts +1 -1
  22. package/src/tests/tool_validation.test.ts +1 -1
  23. package/src/tool/beat-rate-converter/bibliography.ts +1 -1
  24. package/src/tool/beat-rate-converter/components/ConverterPanel.astro +57 -20
  25. package/src/tool/beat-rate-converter/i18n/en.ts +5 -5
  26. package/src/tool/crown-reference-guide/bibliography.ts +3 -3
  27. package/src/tool/crown-reference-guide/i18n/de.ts +37 -29
  28. package/src/tool/crown-reference-guide/i18n/en.ts +38 -30
  29. package/src/tool/crown-reference-guide/i18n/es.ts +36 -28
  30. package/src/tool/crown-reference-guide/i18n/fr.ts +38 -30
  31. package/src/tool/crown-reference-guide/i18n/id.ts +38 -30
  32. package/src/tool/crown-reference-guide/i18n/it.ts +38 -30
  33. package/src/tool/crown-reference-guide/i18n/ja.ts +38 -30
  34. package/src/tool/crown-reference-guide/i18n/ko.ts +38 -30
  35. package/src/tool/crown-reference-guide/i18n/nl.ts +38 -30
  36. package/src/tool/crown-reference-guide/i18n/pl.ts +38 -30
  37. package/src/tool/crown-reference-guide/i18n/pt.ts +38 -30
  38. package/src/tool/crown-reference-guide/i18n/ru.ts +41 -33
  39. package/src/tool/crown-reference-guide/i18n/sv.ts +38 -30
  40. package/src/tool/crown-reference-guide/i18n/tr.ts +38 -30
  41. package/src/tool/crown-reference-guide/i18n/zh.ts +37 -29
  42. package/src/tool/demagnetizing-timer/i18n/de.ts +1 -1
  43. package/src/tool/demagnetizing-timer/i18n/en.ts +1 -1
  44. package/src/tool/demagnetizing-timer/i18n/es.ts +1 -1
  45. package/src/tool/demagnetizing-timer/i18n/fr.ts +1 -1
  46. package/src/tool/demagnetizing-timer/i18n/id.ts +1 -1
  47. package/src/tool/demagnetizing-timer/i18n/it.ts +1 -1
  48. package/src/tool/demagnetizing-timer/i18n/ja.ts +1 -1
  49. package/src/tool/demagnetizing-timer/i18n/ko.ts +1 -1
  50. package/src/tool/demagnetizing-timer/i18n/nl.ts +1 -1
  51. package/src/tool/demagnetizing-timer/i18n/pl.ts +2 -2
  52. package/src/tool/demagnetizing-timer/i18n/pt.ts +1 -1
  53. package/src/tool/demagnetizing-timer/i18n/ru.ts +7 -7
  54. package/src/tool/demagnetizing-timer/i18n/sv.ts +1 -1
  55. package/src/tool/demagnetizing-timer/i18n/tr.ts +1 -1
  56. package/src/tool/demagnetizing-timer/i18n/zh.ts +1 -1
  57. package/src/tool/lume-color-simulator/bibliography.astro +16 -0
  58. package/src/tool/lume-color-simulator/bibliography.ts +16 -0
  59. package/src/tool/lume-color-simulator/client.ts +186 -0
  60. package/src/tool/lume-color-simulator/component.astro +17 -0
  61. package/src/tool/lume-color-simulator/components/LumePanel.astro +98 -0
  62. package/src/tool/lume-color-simulator/entry.ts +57 -0
  63. package/src/tool/lume-color-simulator/i18n/de.ts +174 -0
  64. package/src/tool/lume-color-simulator/i18n/en.ts +174 -0
  65. package/src/tool/lume-color-simulator/i18n/es.ts +174 -0
  66. package/src/tool/lume-color-simulator/i18n/fr.ts +174 -0
  67. package/src/tool/lume-color-simulator/i18n/id.ts +174 -0
  68. package/src/tool/lume-color-simulator/i18n/it.ts +175 -0
  69. package/src/tool/lume-color-simulator/i18n/ja.ts +174 -0
  70. package/src/tool/lume-color-simulator/i18n/ko.ts +174 -0
  71. package/src/tool/lume-color-simulator/i18n/nl.ts +175 -0
  72. package/src/tool/lume-color-simulator/i18n/pl.ts +174 -0
  73. package/src/tool/lume-color-simulator/i18n/pt.ts +174 -0
  74. package/src/tool/lume-color-simulator/i18n/ru.ts +174 -0
  75. package/src/tool/lume-color-simulator/i18n/sv.ts +174 -0
  76. package/src/tool/lume-color-simulator/i18n/tr.ts +174 -0
  77. package/src/tool/lume-color-simulator/i18n/zh.ts +174 -0
  78. package/src/tool/lume-color-simulator/index.ts +11 -0
  79. package/src/tool/lume-color-simulator/lume-color-simulator.css +208 -0
  80. package/src/tool/lume-color-simulator/seo.astro +16 -0
  81. package/src/tool/moon-phase-visualizer/bibliography.astro +16 -0
  82. package/src/tool/moon-phase-visualizer/bibliography.ts +16 -0
  83. package/src/tool/moon-phase-visualizer/client.ts +243 -0
  84. package/src/tool/moon-phase-visualizer/component.astro +17 -0
  85. package/src/tool/moon-phase-visualizer/components/MoonPanel.astro +63 -0
  86. package/src/tool/moon-phase-visualizer/entry.ts +51 -0
  87. package/src/tool/moon-phase-visualizer/i18n/de.ts +175 -0
  88. package/src/tool/moon-phase-visualizer/i18n/en.ts +175 -0
  89. package/src/tool/moon-phase-visualizer/i18n/es.ts +175 -0
  90. package/src/tool/moon-phase-visualizer/i18n/fr.ts +175 -0
  91. package/src/tool/moon-phase-visualizer/i18n/id.ts +175 -0
  92. package/src/tool/moon-phase-visualizer/i18n/it.ts +176 -0
  93. package/src/tool/moon-phase-visualizer/i18n/ja.ts +175 -0
  94. package/src/tool/moon-phase-visualizer/i18n/ko.ts +175 -0
  95. package/src/tool/moon-phase-visualizer/i18n/nl.ts +176 -0
  96. package/src/tool/moon-phase-visualizer/i18n/pl.ts +175 -0
  97. package/src/tool/moon-phase-visualizer/i18n/pt.ts +175 -0
  98. package/src/tool/moon-phase-visualizer/i18n/ru.ts +175 -0
  99. package/src/tool/moon-phase-visualizer/i18n/sv.ts +175 -0
  100. package/src/tool/moon-phase-visualizer/i18n/tr.ts +175 -0
  101. package/src/tool/moon-phase-visualizer/i18n/zh.ts +175 -0
  102. package/src/tool/moon-phase-visualizer/index.ts +11 -0
  103. package/src/tool/moon-phase-visualizer/moon-phase-visualizer.css +216 -0
  104. package/src/tool/moon-phase-visualizer/seo.astro +16 -0
  105. package/src/tool/power-reserve-estimator/bibliography.ts +2 -2
  106. package/src/tool/power-reserve-estimator/components/EstimatorPanel.astro +146 -39
  107. package/src/tool/power-reserve-estimator/i18n/en.ts +3 -3
  108. package/src/tool/strap-taper-calculator/i18n/en.ts +2 -2
  109. package/src/tool/strap-taper-calculator/i18n/ru.ts +3 -3
  110. package/src/tool/watch-accuracy-tracker/i18n/ru.ts +2 -2
  111. package/src/tool/watch-savings-planner/i18n/en.ts +5 -5
  112. package/src/tool/watch-size-comparator/bibliography.astro +16 -0
  113. package/src/tool/watch-size-comparator/bibliography.ts +16 -0
  114. package/src/tool/watch-size-comparator/client.ts +287 -0
  115. package/src/tool/watch-size-comparator/component.astro +17 -0
  116. package/src/tool/watch-size-comparator/components/WatchForm.astro +121 -0
  117. package/src/tool/watch-size-comparator/drawing/index.ts +79 -0
  118. package/src/tool/watch-size-comparator/drawing/measures.ts +57 -0
  119. package/src/tool/watch-size-comparator/drawing/utils.ts +37 -0
  120. package/src/tool/watch-size-comparator/drawing/watch.ts +78 -0
  121. package/src/tool/watch-size-comparator/entry.ts +62 -0
  122. package/src/tool/watch-size-comparator/i18n/de.ts +189 -0
  123. package/src/tool/watch-size-comparator/i18n/en.ts +189 -0
  124. package/src/tool/watch-size-comparator/i18n/es.ts +189 -0
  125. package/src/tool/watch-size-comparator/i18n/fr.ts +189 -0
  126. package/src/tool/watch-size-comparator/i18n/id.ts +189 -0
  127. package/src/tool/watch-size-comparator/i18n/it.ts +190 -0
  128. package/src/tool/watch-size-comparator/i18n/ja.ts +189 -0
  129. package/src/tool/watch-size-comparator/i18n/ko.ts +189 -0
  130. package/src/tool/watch-size-comparator/i18n/nl.ts +190 -0
  131. package/src/tool/watch-size-comparator/i18n/pl.ts +189 -0
  132. package/src/tool/watch-size-comparator/i18n/pt.ts +189 -0
  133. package/src/tool/watch-size-comparator/i18n/ru.ts +189 -0
  134. package/src/tool/watch-size-comparator/i18n/sv.ts +189 -0
  135. package/src/tool/watch-size-comparator/i18n/tr.ts +189 -0
  136. package/src/tool/watch-size-comparator/i18n/zh.ts +189 -0
  137. package/src/tool/watch-size-comparator/index.ts +11 -0
  138. package/src/tool/watch-size-comparator/seo.astro +16 -0
  139. package/src/tool/watch-size-comparator/watch-size-comparator.css +373 -0
  140. package/src/tool/water-resistance-converter/bibliography.ts +2 -2
  141. package/src/tool/water-resistance-converter/i18n/de.ts +5 -5
  142. package/src/tool/water-resistance-converter/i18n/en.ts +6 -6
  143. package/src/tool/water-resistance-converter/i18n/es.ts +6 -6
  144. package/src/tool/water-resistance-converter/i18n/fr.ts +6 -6
  145. package/src/tool/water-resistance-converter/i18n/id.ts +6 -6
  146. package/src/tool/water-resistance-converter/i18n/it.ts +6 -6
  147. package/src/tool/water-resistance-converter/i18n/ja.ts +6 -6
  148. package/src/tool/water-resistance-converter/i18n/ko.ts +6 -6
  149. package/src/tool/water-resistance-converter/i18n/nl.ts +6 -6
  150. package/src/tool/water-resistance-converter/i18n/pl.ts +6 -6
  151. package/src/tool/water-resistance-converter/i18n/pt.ts +6 -6
  152. package/src/tool/water-resistance-converter/i18n/ru.ts +8 -8
  153. package/src/tool/water-resistance-converter/i18n/sv.ts +6 -6
  154. package/src/tool/water-resistance-converter/i18n/tr.ts +6 -6
  155. package/src/tool/water-resistance-converter/i18n/zh.ts +3 -3
  156. package/src/tool/wrist-presence-calculator/i18n/fr.ts +1 -1
  157. package/src/tool/wrist-presence-calculator/i18n/pl.ts +1 -1
  158. package/src/tool/wrist-presence-calculator/i18n/pt.ts +1 -1
  159. package/src/tool/wrist-presence-calculator/i18n/ru.ts +5 -5
  160. package/src/tool/wrist-presence-calculator/i18n/sv.ts +1 -1
  161. package/src/tools.ts +6 -0
package/src/index.ts CHANGED
@@ -9,6 +9,9 @@ export { powerReserveEstimator, POWER_RESERVE_ESTIMATOR_TOOL } from './tool/powe
9
9
  export { beatRateConverter, BEAT_RATE_CONVERTER_TOOL } from './tool/beat-rate-converter';
10
10
  export { waterResistanceConverter, WATER_RESISTANCE_CONVERTER_TOOL } from './tool/water-resistance-converter';
11
11
  export { strapTaperCalculator, STRAP_TAPER_CALCULATOR_TOOL } from './tool/strap-taper-calculator';
12
+ export { watchSizeComparator, WATCH_SIZE_COMPARATOR_TOOL } from './tool/watch-size-comparator';
13
+ export { lumeColorSimulator, LUME_COLOR_SIMULATOR_TOOL } from './tool/lume-color-simulator';
14
+ export { moonPhaseVisualizer, MOON_PHASE_VISUALIZER_TOOL } from './tool/moon-phase-visualizer';
12
15
 
13
16
  export type {
14
17
  KnownLocale,
@@ -22,7 +22,7 @@ describe('Locale Completeness Validation', () => {
22
22
  });
23
23
 
24
24
  it('all tools registered', () => {
25
- expect(ALL_TOOLS.length).toBe(9);
25
+ expect(ALL_TOOLS.length).toBe(12);
26
26
  });
27
27
 
28
28
  });
@@ -40,7 +40,7 @@ describe('No H1 in Components', () => {
40
40
  const content = readFileSync(file, 'utf-8');
41
41
  expect(
42
42
  hasH1(content),
43
- `File "${relativePath}" contains a <h1> element. Use <h2> or lower inside components — h1 belongs to the page layout.`,
43
+ `File "${relativePath}" contains a <h1> element. Use <h2> or lower inside components- belongs to the page layout.`,
44
44
  ).toBe(false);
45
45
  });
46
46
  });
@@ -5,7 +5,7 @@ import { chronoCategory } from '../data';
5
5
  describe('Tool Validation Suite', () => {
6
6
  describe('Library Registration', () => {
7
7
  it('should have tools in ALL_TOOLS', () => {
8
- expect(ALL_TOOLS.length).toBe(9);
8
+ expect(ALL_TOOLS.length).toBe(12);
9
9
  });
10
10
 
11
11
 
@@ -2,7 +2,7 @@ import type { BibliographyEntry } from '../../types';
2
2
 
3
3
  export const bibliography: BibliographyEntry[] = [
4
4
  {
5
- name: 'What Is a Beat Rate? — Crown & Caliber',
5
+ name: 'What Is a Beat Rate?-Crown & Caliber',
6
6
  url: 'https://henryarcher.com/en-eu/blogs/blog/beat-rates',
7
7
  },
8
8
  {
@@ -10,18 +10,27 @@ const { labels } = Astro.props;
10
10
  <div class="panel-section">
11
11
  <div class="section-label">{labels.vphLabel || "Movement"}</div>
12
12
  <select class="movement-select" id="movement-select">
13
- <option value="28800" data-vph="28800">ETA 2824-2 / SW200 — 28,800 vph</option>
14
- <option value="28800" data-vph="28800">ETA 2892-A2 / SW300 — 28,800 vph</option>
15
- <option value="28800" data-vph="28800">Valjoux 7750 / SW500 — 28,800 vph</option>
16
- <option value="21600" data-vph="21600">Miyota 8215 / 8315 — 21,600 vph</option>
17
- <option value="28800" data-vph="28800">Miyota 9015 — 28,800 vph</option>
18
- <option value="21600" data-vph="21600">Seiko NH35 / 4R35 — 21,600 vph</option>
19
- <option value="21600" data-vph="21600">Seiko 6R35 21,600 vph</option>
20
- <option value="18000" data-vph="18000">Unitas 6497 / 6498 — 18,000 vph</option>
21
- <option value="28800" data-vph="28800">Rolex 3135 28,800 vph</option>
22
- <option value="28800" data-vph="28800">Rolex 3235 — 28,800 vph</option>
23
- <option value="25200" data-vph="25200">Omega 8500 / 8900 — 25,200 vph</option>
24
- <option value="36000" data-vph="36000">Zenith El Primero 400 — 36,000 vph</option>
13
+ <option value="28800" data-vph="28800">ETA 2824-2 / SW200-,800 vph</option
14
+ >
15
+ <option value="28800" data-vph="28800"
16
+ >ETA 2892-A2 / SW300-,800 vph</option
17
+ >
18
+ <option value="28800" data-vph="28800"
19
+ >Valjoux 7750 / SW500-,800 vph</option
20
+ >
21
+ <option value="21600" data-vph="21600">Miyota 8215 / 8315-,600 vph</option
22
+ >
23
+ <option value="28800" data-vph="28800">Miyota 9015-,800 vph</option>
24
+ <option value="21600" data-vph="21600">Seiko NH35 / 4R35-,600 vph</option>
25
+ <option value="21600" data-vph="21600">Seiko 6R35-,600 vph</option>
26
+ <option value="18000" data-vph="18000">Unitas 6497 / 6498-,000 vph</option
27
+ >
28
+ <option value="28800" data-vph="28800">Rolex 3135-,800 vph</option>
29
+ <option value="28800" data-vph="28800">Rolex 3235-,800 vph</option>
30
+ <option value="25200" data-vph="25200">Omega 8500 / 8900-,200 vph</option>
31
+ <option value="36000" data-vph="36000"
32
+ >Zenith El Primero 400-,000 vph</option
33
+ >
25
34
  <option value="custom">{labels.customMovement || "Custom"}</option>
26
35
  </select>
27
36
  </div>
@@ -30,7 +39,14 @@ const { labels } = Astro.props;
30
39
  <div class="section-label">{labels.customVph || "Vibrations per hour"}</div>
31
40
  <div class="stepper-wrap">
32
41
  <button type="button" class="stepper-btn" data-step="1200">−1200</button>
33
- <input type="number" class="stepper-input" id="vph-input" min="3600" max="360000" value="28800" />
42
+ <input
43
+ type="number"
44
+ class="stepper-input"
45
+ id="vph-input"
46
+ min="3600"
47
+ max="360000"
48
+ value="28800"
49
+ />
34
50
  <button type="button" class="stepper-btn" data-step="1200">+1200</button>
35
51
  </div>
36
52
  </div>
@@ -46,14 +62,18 @@ const { labels } = Astro.props;
46
62
  <div class="result-item">
47
63
  <span class="result-value" id="tps-value">8</span>
48
64
  <span class="result-unit">/s</span>
49
- <span class="result-label">{labels.ticksPerSec || "Ticks per second"}</span>
65
+ <span class="result-label"
66
+ >{labels.ticksPerSec || "Ticks per second"}</span
67
+ >
50
68
  </div>
51
69
  </div>
52
70
 
53
71
  <div class="impact-card">
54
72
  <div class="impact-header">
55
73
  <svg viewBox="0 0 24 24" width="16" height="16">
56
- <path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-2h2v2zm0-4h-2V7h2v6z" fill="currentColor" />
74
+ <path
75
+ d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-2h2v2zm0-4h-2V7h2v6z"
76
+ fill="currentColor"></path>
57
77
  </svg>
58
78
  <span>{labels.lostTickImpact || "If it loses 1 tick per hour"}</span>
59
79
  </div>
@@ -62,7 +82,10 @@ const { labels } = Astro.props;
62
82
  <span class="impact-unit">s/d</span>
63
83
  </div>
64
84
  <p class="impact-note" id="impact-note">
65
- {labels.lostTickExplainer || "One missed tick per hour means ~3 seconds lost per day at 28,800 vph."}
85
+ {
86
+ labels.lostTickExplainer ||
87
+ "One missed tick per hour means ~3 seconds lost per day at 28,800 vph."
88
+ }
66
89
  </p>
67
90
  </div>
68
91
  </div>
@@ -70,18 +93,32 @@ const { labels } = Astro.props;
70
93
  <div class="steps-section">
71
94
  <div class="step-row">
72
95
  <div class="step-marker">1</div>
73
- <span class="step-text">{labels.step1 || "Select your movement or enter a custom VPH."}</span>
96
+ <span class="step-text"
97
+ >{labels.step1 || "Select your movement or enter a custom VPH."}</span
98
+ >
74
99
  </div>
75
100
  <div class="step-row">
76
101
  <div class="step-marker">2</div>
77
- <span class="step-text">{labels.step2 || "Read the Hz frequency, ticks per second, and the impact of a lost tick."}</span>
102
+ <span class="step-text"
103
+ >{
104
+ labels.step2 ||
105
+ "Read the Hz frequency, ticks per second, and the impact of a lost tick."
106
+ }</span
107
+ >
78
108
  </div>
79
109
  </div>
80
110
 
81
111
  <div class="tip-row">
82
112
  <svg class="tip-icon" viewBox="0 0 24 24" width="16" height="16">
83
- <path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z" fill="currentColor" />
113
+ <path
114
+ d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z"
115
+ fill="currentColor"></path>
84
116
  </svg>
85
- <span class="tip-text">{labels.tipContent || "Higher beat rates (36,000 vph) give smoother hand sweep and better precision, but also more wear on the escapement."}</span>
117
+ <span class="tip-text"
118
+ >{
119
+ labels.tipContent ||
120
+ "Higher beat rates (36,000 vph) give smoother hand sweep and better precision, but also more wear on the escapement."
121
+ }</span
122
+ >
86
123
  </div>
87
124
  </div>
@@ -4,7 +4,7 @@ import { bibliography } from '../bibliography';
4
4
 
5
5
  export const content: ToolLocaleContent<BeatRateConverterUI> = {
6
6
  slug: 'beat-rate-converter',
7
- title: 'Watch Beat Rate Converter — VPH to Hz & s/d Calculator',
7
+ title: 'Watch Beat Rate Converter–H to Hz & s/d Calculator',
8
8
  description: 'Convert vibrations per hour (VPH) to Hertz, ticks per second, and calculate the daily rate impact of a single lost tick. Works with ETA, Sellita, Miyota, Seiko, Rolex, Omega, and Zenith calibers.',
9
9
  ui: {
10
10
  title: 'Beat Rate Converter',
@@ -23,10 +23,10 @@ export const content: ToolLocaleContent<BeatRateConverterUI> = {
23
23
  tipContent: 'Higher beat rates (36,000 vph) give smoother hand sweep and better precision, but also more wear on the escapement.',
24
24
  },
25
25
  seo: [
26
- { type: 'title', text: 'Watch Beat Rate Converter — VPH to Hz & Seconds per Day', level: 2 },
27
- { type: 'paragraph', html: 'Every mechanical watch beats at a specific rate — the number of vibrations its balance wheel makes per hour. That number determines how smooth the seconds hand sweeps and how precise the watch can be. This converter translates <strong>VPH to Hz and ticks per second</strong>, and shows you the real-world impact of a single lost tick.' },
26
+ { type: 'title', text: 'Watch Beat Rate Converter-H to Hz & Seconds per Day', level: 2 },
27
+ { type: 'paragraph', html: 'Every mechanical watch beats at a specific rate-e number of vibrations its balance wheel makes per hour. That number determines how smooth the seconds hand sweeps and how precise the watch can be. This converter translates <strong>VPH to Hz and ticks per second</strong>, and shows you the real-world impact of a single lost tick.' },
28
28
  { type: 'title', text: 'What Is a Beat Rate?', level: 3 },
29
- { type: 'paragraph', html: 'The beat rate, measured in vibrations per hour (vph), is the frequency at which a watch\'s balance wheel oscillates. A common rate is 28,800 vph — that\'s 4 Hz, or 8 ticks per second. Higher beat rates like 36,000 vph (5 Hz) produce a smoother sweeping motion and can theoretically improve accuracy by reducing the effect of positional errors.' },
29
+ { type: 'paragraph', html: 'The beat rate, measured in vibrations per hour (vph), is the frequency at which a watch\'s balance wheel oscillates. A common rate is 28,800 vph-at\'s 4 Hz, or 8 ticks per second. Higher beat rates like 36,000 vph (5 Hz) produce a smoother sweeping motion and can theoretically improve accuracy by reducing the effect of positional errors.' },
30
30
  { type: 'title', text: 'Why a Lost Tick Matters', level: 3 },
31
31
  { type: 'paragraph', html: 'If a watch\'s escapement fails to deliver one tick due to friction, magnetism, or wear, that lost tick translates directly into lost time. At 28,800 vph, a single missed tick per hour adds up to about <strong>3 seconds per day</strong>. At 18,000 vph, the same error costs nearly 5 seconds per day. This tool helps you understand the math behind regulation.' },
32
32
  { type: 'title', text: 'Common Beat Rates', level: 3 },
@@ -47,7 +47,7 @@ export const content: ToolLocaleContent<BeatRateConverterUI> = {
47
47
  },
48
48
  {
49
49
  question: 'Can a watch recover from a lost tick?',
50
- answer: 'No. Once a tick is missed, the time is permanently lost. The watch doesn\'t "catch up." This is why escapement health — clean pallet stones, proper lubrication, and correct beat error — directly impacts daily rate.',
50
+ answer: 'No. Once a tick is missed, the time is permanently lost. The watch doesn\'t "catch up." This is why escapement health-ean pallet stones, proper lubrication, and correct beat error-d-ctly impacts daily rate.',
51
51
  },
52
52
  ],
53
53
  bibliography,
@@ -2,11 +2,11 @@ import type { BibliographyEntry } from '../../types';
2
2
 
3
3
  export const bibliography: BibliographyEntry[] = [
4
4
  {
5
- name: 'Crown (watch)Wikipedia',
5
+ name: 'Crown (watch)-Wikipedia',
6
6
  url: 'https://en.wikipedia.org/wiki/Crown_(watch)',
7
7
  },
8
8
  {
9
- name: 'How to Set a Mechanical WatchWinding, Date & Time Guide',
9
+ name: 'How to Set a Mechanical Watch-Winding, Date & Time Guide',
10
10
  url: 'https://www.watchfinder.com/watch-setting-guide',
11
11
  },
12
12
  {
@@ -14,7 +14,7 @@ export const bibliography: BibliographyEntry[] = [
14
14
  url: 'https://www.divewatch.com/crown-types',
15
15
  },
16
16
  {
17
- name: 'Watch Movement DatabaseCaliber Specifications',
17
+ name: 'Watch Movement Database-Caliber Specifications',
18
18
  url: 'https://www.caliberdatabase.com',
19
19
  },
20
20
  ];
@@ -41,44 +41,52 @@ export const content: ToolLocaleContent<CrownReferenceGuideUI> = {
41
41
  noteTitle: 'Hinweis',
42
42
  },
43
43
  seo: [
44
- { type: 'title', text: 'Uhren-Kronenpositionen-LeitfadenSo Aufziehen, Datum & Uhrzeit richtig einstellen', level: 2 },
45
- { type: 'paragraph', html: 'Die Krone ist die einzige physische Schnittstelle zwischen Ihnen und Ihrem Uhrwerk. Sie falsch zu bedienenrückwärts aufziehen, das Datum um Mitternacht einstellen oder zu stark ziehenkann das Werk beschädigen. Dieser Leitfaden erklärt jede Kronenposition für <strong>ETA, Sellita, Miyota, Seiko und Unitas</strong>-Kaliber, sodass Sie nie raten müssen.' },
44
+ { type: 'title', text: 'Uhren-Kronenpositionen-Leitfaden-So Aufziehen, Datum & Uhrzeit richtig einstellen', level: 2 },
45
+ { type: 'paragraph', html: 'Die Krone ist die einzige physische Schnittstelle zwischen Ihnen und Ihrem Uhrwerk. Sie falsch zu bedienen-rückwärts aufziehen, das Datum um Mitternacht einstellen oder zu stark ziehen-kann das Werk beschädigen. Dieser Leitfaden erklärt jede Kronenposition für <strong>ETA, Sellita, Miyota, Seiko und Unitas</strong>-Kaliber, sodass Sie nie raten müssen.' },
46
46
  { type: 'title', text: 'Kronenpositionen auf einen Blick', level: 3 },
47
- { type: 'glossary', items: [
48
- { term: 'Position 0 (Ruhestellung)', definition: 'Krone eingedrückt oder eingeschraubt. Uhr läuft normal. Keine Funktionen aktiv. Nach dem Einstellen immer hierher zurückkehren.' },
49
- { term: 'Position 1 (Aufzug)', definition: 'Erster Zug oder herausgeschraubter Zustand. Im Uhrzeigersinn drehen, um die Zugfeder zu spannen. Die meisten Automatikuhren spannen auch über den Rotor.' },
50
- { term: 'Position 2 (Datums-Schnellverstellung)', definition: 'Zweiter Zug. Im Uhrzeigersinn drehen, um das Datum vorzustellen. Nicht zwischen 21\u20133 Uhr verwenden, wenn der Datumsmechanismus aktiv ist.' },
51
- { term: 'Position 3 (Zeiteinstellung)', definition: 'Dritter Zug. Sekundenstopp für präzise Ausrichtung. Zum Einstellen der Uhrzeit frei drehen. Bei den meisten modernen Automatikuhren vorhanden.' },
52
- ] },
47
+ {
48
+ type: 'glossary', items: [
49
+ { term: 'Position 0 (Ruhestellung)', definition: 'Krone eingedrückt oder eingeschraubt. Uhr läuft normal. Keine Funktionen aktiv. Nach dem Einstellen immer hierher zurückkehren.' },
50
+ { term: 'Position 1 (Aufzug)', definition: 'Erster Zug oder herausgeschraubter Zustand. Im Uhrzeigersinn drehen, um die Zugfeder zu spannen. Die meisten Automatikuhren spannen auch über den Rotor.' },
51
+ { term: 'Position 2 (Datums-Schnellverstellung)', definition: 'Zweiter Zug. Im Uhrzeigersinn drehen, um das Datum vorzustellen. Nicht zwischen 21\u20133 Uhr verwenden, wenn der Datumsmechanismus aktiv ist.' },
52
+ { term: 'Position 3 (Zeiteinstellung)', definition: 'Dritter Zug. Sekundenstopp für präzise Ausrichtung. Zum Einstellen der Uhrzeit frei drehen. Bei den meisten modernen Automatikuhren vorhanden.' },
53
+ ]
54
+ },
53
55
 
54
56
  { type: 'title', text: 'Uhrwerksvergleich: Kronenfunktionen', level: 3 },
55
- { type: 'table', headers: ['Uhrwerk', 'Positionen', 'Sekundenstopp', 'Schnellverst.', 'Aufzugsricht.'], rows: [
56
- ['ETA 2824-2 / SW200', '3 (0,1,2,3)', 'Ja', 'Datum (UZS)', 'UZS'],
57
- ['ETA 2892-A2 / SW300', '3 (0,1,2,3)', 'Ja', 'Datum (UZS)', 'UZS'],
58
- ['Valjoux 7750 / SW500', '3 (0,1,2,3)', 'Ja', 'Datum (UZS)', 'UZS'],
59
- ['Miyota 8215', '2 (0,1,3)', 'Nein', 'Keine', 'UZS'],
60
- ['Miyota 9015', '3 (0,1,2,3)', 'Ja', 'Datum (UZS)', 'UZS'],
61
- ['Seiko NH35 / 4R35', '3 (0,1,2,3)', 'Ja', 'Datum (UZS)', 'UZS'],
62
- ['Seiko 6R35', '3 (0,1,2,3)', 'Ja', 'Datum (UZS)', 'UZS'],
63
- ['Unitas 6497/6498', '1 (0,1,3)', 'Nein', 'Keine', 'UZS'],
64
- ] },
57
+ {
58
+ type: 'table', headers: ['Uhrwerk', 'Positionen', 'Sekundenstopp', 'Schnellverst.', 'Aufzugsricht.'], rows: [
59
+ ['ETA 2824-2 / SW200', '3 (0,1,2,3)', 'Ja', 'Datum (UZS)', 'UZS'],
60
+ ['ETA 2892-A2 / SW300', '3 (0,1,2,3)', 'Ja', 'Datum (UZS)', 'UZS'],
61
+ ['Valjoux 7750 / SW500', '3 (0,1,2,3)', 'Ja', 'Datum (UZS)', 'UZS'],
62
+ ['Miyota 8215', '2 (0,1,3)', 'Nein', 'Keine', 'UZS'],
63
+ ['Miyota 9015', '3 (0,1,2,3)', 'Ja', 'Datum (UZS)', 'UZS'],
64
+ ['Seiko NH35 / 4R35', '3 (0,1,2,3)', 'Ja', 'Datum (UZS)', 'UZS'],
65
+ ['Seiko 6R35', '3 (0,1,2,3)', 'Ja', 'Datum (UZS)', 'UZS'],
66
+ ['Unitas 6497/6498', '1 (0,1,3)', 'Nein', 'Keine', 'UZS'],
67
+ ]
68
+ },
65
69
 
66
70
  { type: 'diagnostic', variant: 'warning', title: 'Häufige Kronenfehler', icon: 'mdi:alert', badge: 'NICHT', html: 'Stellen Sie das Datum niemals per Schnellverstellung zwischen <strong>21 und 3 Uhr</strong> ein, während das Datumsrad eingerückt ist. Dies kann Zähne ausreißen und eine vollständige Werksüberholung erforderlich machen. Wenn Sie das Datum in diesem Zeitfenster ändern müssen, stellen Sie zuerst die Zeit über 3 Uhr hinaus, stellen Sie das Datum ein und korrigieren Sie dann die Uhrzeit.' },
67
71
 
68
72
  { type: 'tip', title: 'Schraubkronen', html: 'Taucher- und Sportuhren haben oft Schraubkronen für Wasserdichtigkeit. <strong>Vor dem Ziehen immer herausdrehen</strong>. Gegen den Uhrzeigersinn drehen, bis die Krone herausspringt, dann in die gewünschte Position ziehen. Nach dem Einstellen hineindrücken, dann im Uhrzeigersinn mit leichtem Druck festziehen. <strong>Nicht überdrehen.</strong>' },
69
73
 
70
- { type: 'comparative', columns: 2, items: [
71
- { title: 'Standardkrone', icon: 'mdi:crown', description: 'Zug-Druck-Krone, bei den meisten Alltags- und Automatikuhren zu finden. 2\u20134 Positionen. Wasserdichtigkeit typischerweise 30\u2013100 m.', points: ['Sofortzugriff, kein Herausdrehen', 'Begrenzte Wasserdichtigkeit', 'Üblich bei ETA, Miyota, Seiko'] },
72
- { title: 'Schraubkrone', icon: 'mdi:lock', description: 'Gewindekrone, die in das Gehäuserohr geschraubt wird. Standard bei Taucher- und Werkzeughren. Wasserdichtigkeit 200 m+.', points: ['Hervorragende Wasserdichtigkeit', 'Muss vor Gebrauch herausgeschraubt werden', 'Üblich bei Rolex, Omega, Seiko Prospex'], highlight: true },
73
- ] },
74
+ {
75
+ type: 'comparative', columns: 2, items: [
76
+ { title: 'Standardkrone', icon: 'mdi:crown', description: 'Zug-Druck-Krone, bei den meisten Alltags- und Automatikuhren zu finden. 2\u20134 Positionen. Wasserdichtigkeit typischerweise 30\u2013100 m.', points: ['Sofortzugriff, kein Herausdrehen', 'Begrenzte Wasserdichtigkeit', 'Üblich bei ETA, Miyota, Seiko'] },
77
+ { title: 'Schraubkrone', icon: 'mdi:lock', description: 'Gewindekrone, die in das Gehäuserohr geschraubt wird. Standard bei Taucher- und Werkzeughren. Wasserdichtigkeit 200 m+.', points: ['Hervorragende Wasserdichtigkeit', 'Muss vor Gebrauch herausgeschraubt werden', 'Üblich bei Rolex, Omega, Seiko Prospex'], highlight: true },
78
+ ]
79
+ },
74
80
 
75
- { type: 'summary', title: 'Kurzübersicht', items: [
76
- 'Immer im Uhrzeigersinn aufziehen — Rückwärtsaufzug betätigt die Rutschkupplung, spannt aber nicht.',
77
- 'Wenn Ihre Uhr eine Schraubkrone hat, diese vor dem Ziehen herausdrehen.',
78
- 'Datums-Schnellverstellung zwischen 21 und 3 Uhr vermeiden. Falls nötig, zuerst die Zeit über 3 Uhr hinaus stellen.',
79
- 'Handaufzugswerke (z. B. Unitas 6498) haben weniger Positionen. Vor dem Einstellen vollständig aufziehen.',
80
- 'Bei Werken ohne Sekundenstopp (z. B. Miyota 8215) eine andere Technik anwenden: über die Zielminute hinaus drehen, dann langsam zurück.',
81
- ] },
81
+ {
82
+ type: 'summary', title: 'Kurzübersicht', items: [
83
+ 'Immer im Uhrzeigersinn aufziehen-Rückwärtsaufzug betätigt die Rutschkupplung, spannt aber nicht.',
84
+ 'Wenn Ihre Uhr eine Schraubkrone hat, diese vor dem Ziehen herausdrehen.',
85
+ 'Datums-Schnellverstellung zwischen 21 und 3 Uhr vermeiden. Falls nötig, zuerst die Zeit über 3 Uhr hinaus stellen.',
86
+ 'Handaufzugswerke (z. B. Unitas 6498) haben weniger Positionen. Vor dem Einstellen vollständig aufziehen.',
87
+ 'Bei Werken ohne Sekundenstopp (z. B. Miyota 8215) eine andere Technik anwenden: über die Zielminute hinaus drehen, dann langsam zurück.',
88
+ ]
89
+ },
82
90
  ],
83
91
  faq: [
84
92
  {
@@ -41,44 +41,52 @@ export const content: ToolLocaleContent<CrownReferenceGuideUI> = {
41
41
  noteTitle: 'Note',
42
42
  },
43
43
  seo: [
44
- { type: 'title', text: 'Watch Crown Positions GuideHow to Wind, Set Date & Time Correctly', level: 2 },
45
- { type: 'paragraph', html: 'The crown is the only physical interface between you and your watch movement. Using it wrongwinding backward, setting the date at midnight, or pulling too hardcan damage the mechanism. This guide breaks down every crown position for <strong>ETA, Sellita, Miyota, Seiko, and Unitas</strong> calibers so you never have to guess.' },
44
+ { type: 'title', text: 'Watch Crown Positions Guide-How to Wind, Set Date & Time Correctly', level: 2 },
45
+ { type: 'paragraph', html: 'The crown is the only physical interface between you and your watch movement. Using it wrong-winding backward, setting the date at midnight, or pulling too hard-can damage the mechanism. This guide breaks down every crown position for <strong>ETA, Sellita, Miyota, Seiko, and Unitas</strong> calibers so you never have to guess.' },
46
46
  { type: 'title', text: 'Crown Positions at a Glance', level: 3 },
47
- { type: 'glossary', items: [
48
- { term: 'Position 0 (Resting)', definition: 'Crown pushed in or screwed down. Watch runs normally. No functions engaged. Always return here after setting.' },
49
- { term: 'Position 1 (Winding)', definition: 'First pull or unscrewed state. Turn clockwise to wind the mainspring. Most automatics also wind via rotor.' },
50
- { term: 'Position 2 (Date Quick-Set)', definition: 'Second pull. Turn clockwise to advance the date. Avoid using between 9pm\u20133am when the date mechanism is engaged.' },
51
- { term: 'Position 3 (Time Setting)', definition: 'Third pull. Hacking seconds stop for precise alignment. Rotate freely to set time. Present on most modern automatics.' },
52
- ] },
47
+ {
48
+ type: 'glossary', items: [
49
+ { term: 'Position 0 (Resting)', definition: 'Crown pushed in or screwed down. Watch runs normally. No functions engaged. Always return here after setting.' },
50
+ { term: 'Position 1 (Winding)', definition: 'First pull or unscrewed state. Turn clockwise to wind the mainspring. Most automatics also wind via rotor.' },
51
+ { term: 'Position 2 (Date Quick-Set)', definition: 'Second pull. Turn clockwise to advance the date. Avoid using between 9pm\u20133am when the date mechanism is engaged.' },
52
+ { term: 'Position 3 (Time Setting)', definition: 'Third pull. Hacking seconds stop for precise alignment. Rotate freely to set time. Present on most modern automatics.' },
53
+ ]
54
+ },
53
55
 
54
56
  { type: 'title', text: 'Movement Comparison: Crown Features', level: 3 },
55
- { type: 'table', headers: ['Movement', 'Positions', 'Hack', 'Quick-Set', 'Wind Dir.'], rows: [
56
- ['ETA 2824-2 / SW200', '3 (0,1,2,3)', 'Yes', 'Date (CW)', 'CW'],
57
- ['ETA 2892-A2 / SW300', '3 (0,1,2,3)', 'Yes', 'Date (CW)', 'CW'],
58
- ['Valjoux 7750 / SW500', '3 (0,1,2,3)', 'Yes', 'Date (CW)', 'CW'],
59
- ['Miyota 8215', '2 (0,1,3)', 'No', 'None', 'CW'],
60
- ['Miyota 9015', '3 (0,1,2,3)', 'Yes', 'Date (CW)', 'CW'],
61
- ['Seiko NH35 / 4R35', '3 (0,1,2,3)', 'Yes', 'Date (CW)', 'CW'],
62
- ['Seiko 6R35', '3 (0,1,2,3)', 'Yes', 'Date (CW)', 'CW'],
63
- ['Unitas 6497/6498', '1 (0,1,3)', 'No', 'None', 'CW'],
64
- ] },
57
+ {
58
+ type: 'table', headers: ['Movement', 'Positions', 'Hack', 'Quick-Set', 'Wind Dir.'], rows: [
59
+ ['ETA 2824-2 / SW200', '3 (0,1,2,3)', 'Yes', 'Date (CW)', 'CW'],
60
+ ['ETA 2892-A2 / SW300', '3 (0,1,2,3)', 'Yes', 'Date (CW)', 'CW'],
61
+ ['Valjoux 7750 / SW500', '3 (0,1,2,3)', 'Yes', 'Date (CW)', 'CW'],
62
+ ['Miyota 8215', '2 (0,1,3)', 'No', 'None', 'CW'],
63
+ ['Miyota 9015', '3 (0,1,2,3)', 'Yes', 'Date (CW)', 'CW'],
64
+ ['Seiko NH35 / 4R35', '3 (0,1,2,3)', 'Yes', 'Date (CW)', 'CW'],
65
+ ['Seiko 6R35', '3 (0,1,2,3)', 'Yes', 'Date (CW)', 'CW'],
66
+ ['Unitas 6497/6498', '1 (0,1,3)', 'No', 'None', 'CW'],
67
+ ]
68
+ },
65
69
 
66
70
  { type: 'diagnostic', variant: 'warning', title: 'Common Crown Mistakes', icon: 'mdi:alert', badge: 'DO NOT', html: 'Never quick-set the date between <strong>9pm and 3am</strong> while the date wheel is engaged. This can strip teeth and require a full movement service. If you must change the date during this window, first advance the time past 3am, set the date, then adjust back to the correct time.' },
67
71
 
68
- { type: 'tip', title: 'Screw Down Crowns', html: 'Dive watches and sports watches often have screw-down crowns for water resistance. <strong>Always unscrew before pulling</strong>. Turn counter-clockwise until the crown pops out, then pull to your desired position. After setting, push in, then turn clockwise while applying light pressure until snug. <strong>Do not overtighten.</strong>' },
72
+ { type: 'tip', title: 'Screw Down Crowns', html: 'Dive watches and sports watches often have screw-down crowns for water resistance. <strong>Always unscrew before pulling</strong>. Turn counter-clockwise until the crown pops out, then pull to your desired position. After setting, push in, then turn clockwise while applying light pressure until snug. <strong>Do not overtighten.</strong>' },
69
73
 
70
- { type: 'comparative', columns: 2, items: [
71
- { title: 'Standard Crown', icon: 'mdi:crown', description: 'Push-pull crown found on most dress watches and everyday automatics. 2\u20134 positions. Water resistance typically 30\u2013100m.', points: ['Instant access, no unscrewing', 'Limited water resistance', 'Common on ETA, Miyota, Seiko'] },
72
- { title: 'Screw Down Crown', icon: 'mdi:lock', description: 'Threaded crown that screws into the case tube. Standard on dive watches and tool watches. Water resistance 200m+.', points: ['Superior water resistance', 'Must unscrew before use', 'Common on Rolex, Omega, Seiko Prospex'], highlight: true },
73
- ] },
74
+ {
75
+ type: 'comparative', columns: 2, items: [
76
+ { title: 'Standard Crown', icon: 'mdi:crown', description: 'Push-pull crown found on most dress watches and everyday automatics. 2\u20134 positions. Water resistance typically 30\u2013100m.', points: ['Instant access, no unscrewing', 'Limited water resistance', 'Common on ETA, Miyota, Seiko'] },
77
+ { title: 'Screw Down Crown', icon: 'mdi:lock', description: 'Threaded crown that screws into the case tube. Standard on dive watches and tool watches. Water resistance 200m+.', points: ['Superior water resistance', 'Must unscrew before use', 'Common on Rolex, Omega, Seiko Prospex'], highlight: true },
78
+ ]
79
+ },
74
80
 
75
- { type: 'summary', title: 'Quick Reference', items: [
76
- 'Always wind clockwise reverse winding engages the slipping clutch but does not wind.',
77
- 'If your watch has a screw-down crown, unscrew it before pulling to any position.',
78
- 'Avoid date quick-set between 9pm and 3am. Advance the time past 3am first if needed.',
79
- 'Hand-wound movements (e.g., Unitas 6498) have fewer positions. Wind fully before setting time.',
80
- 'Non-hacking movements (e.g., Miyota 8215) require a different technique: rotate past the target minute, then slowly back.',
81
- ] },
81
+ {
82
+ type: 'summary', title: 'Quick Reference', items: [
83
+ 'Always wind clockwise-reverse winding engages the slipping clutch but does not wind.',
84
+ 'If your watch has a screw-down crown, unscrew it before pulling to any position.',
85
+ 'Avoid date quick-set between 9pm and 3am. Advance the time past 3am first if needed.',
86
+ 'Hand-wound movements (e.g., Unitas 6498) have fewer positions. Wind fully before setting time.',
87
+ 'Non-hacking movements (e.g., Miyota 8215) require a different technique: rotate past the target minute, then slowly back.',
88
+ ]
89
+ },
82
90
  ],
83
91
  faq: [
84
92
  {
@@ -41,44 +41,52 @@ export const content: ToolLocaleContent<CrownReferenceGuideUI> = {
41
41
  noteTitle: 'Nota',
42
42
  },
43
43
  seo: [
44
- { type: 'title', text: 'Guía de Posiciones de la CoronaCómo Dar Cuerda, Ajustar Fecha y Hora Correctamente', level: 2 },
44
+ { type: 'title', text: 'Guía de Posiciones de la Corona-Cómo Dar Cuerda, Ajustar Fecha y Hora Correctamente', level: 2 },
45
45
  { type: 'paragraph', html: 'La corona es la única interfaz física entre usted y el movimiento de su reloj. Usarla mal —dar cuerda hacia atrás, ajustar la fecha a medianoche o tirar demasiado fuerte— puede dañar el mecanismo. Esta guía desglosa cada posición de la corona para los calibres <strong>ETA, Sellita, Miyota, Seiko y Unitas</strong> para que nunca tenga que adivinar.' },
46
46
  { type: 'title', text: 'Posiciones de la Corona de un Vistazo', level: 3 },
47
- { type: 'glossary', items: [
48
- { term: 'Posición 0 (Reposo)', definition: 'Corona presionada o enroscada. El reloj funciona con normalidad. Ninguna función activada. Vuelva siempre aquí después de ajustar.' },
49
- { term: 'Posición 1 (Cuerda)', definition: 'Primera extracción o estado desenroscado. Gire en sentido horario para dar cuerda al muelle real. La mayoría de los automáticos también dan cuerda mediante el rotor.' },
50
- { term: 'Posición 2 (Ajuste Rápido de Fecha)', definition: 'Segunda extracción. Gire en sentido horario para avanzar la fecha. Evite usar entre las 9 p. m.\u20133 a. m. cuando el mecanismo de fecha está activo.' },
51
- { term: 'Posición 3 (Ajuste de Hora)', definition: 'Tercera extracción. El segundero se detiene para alineación precisa. Gire libremente para ajustar la hora. Presente en la mayoría de los automáticos modernos.' },
52
- ] },
47
+ {
48
+ type: 'glossary', items: [
49
+ { term: 'Posición 0 (Reposo)', definition: 'Corona presionada o enroscada. El reloj funciona con normalidad. Ninguna función activada. Vuelva siempre aquí después de ajustar.' },
50
+ { term: 'Posición 1 (Cuerda)', definition: 'Primera extracción o estado desenroscado. Gire en sentido horario para dar cuerda al muelle real. La mayoría de los automáticos también dan cuerda mediante el rotor.' },
51
+ { term: 'Posición 2 (Ajuste Rápido de Fecha)', definition: 'Segunda extracción. Gire en sentido horario para avanzar la fecha. Evite usar entre las 9 p. m.\u20133 a. m. cuando el mecanismo de fecha está activo.' },
52
+ { term: 'Posición 3 (Ajuste de Hora)', definition: 'Tercera extracción. El segundero se detiene para alineación precisa. Gire libremente para ajustar la hora. Presente en la mayoría de los automáticos modernos.' },
53
+ ]
54
+ },
53
55
 
54
56
  { type: 'title', text: 'Comparación de Movimientos: Funciones de Corona', level: 3 },
55
- { type: 'table', headers: ['Movimiento', 'Posiciones', 'Paro Seg.', 'Ajuste Ráp.', 'Dir. Cuerda'], rows: [
56
- ['ETA 2824-2 / SW200', '3 (0,1,2,3)', '', 'Fecha (H)', 'H'],
57
- ['ETA 2892-A2 / SW300', '3 (0,1,2,3)', 'Sí', 'Fecha (H)', 'H'],
58
- ['Valjoux 7750 / SW500', '3 (0,1,2,3)', 'Sí', 'Fecha (H)', 'H'],
59
- ['Miyota 8215', '2 (0,1,3)', 'No', 'Ninguno', 'H'],
60
- ['Miyota 9015', '3 (0,1,2,3)', '', 'Fecha (H)', 'H'],
61
- ['Seiko NH35 / 4R35', '3 (0,1,2,3)', 'Sí', 'Fecha (H)', 'H'],
62
- ['Seiko 6R35', '3 (0,1,2,3)', 'Sí', 'Fecha (H)', 'H'],
63
- ['Unitas 6497/6498', '1 (0,1,3)', 'No', 'Ninguno', 'H'],
64
- ] },
57
+ {
58
+ type: 'table', headers: ['Movimiento', 'Posiciones', 'Paro Seg.', 'Ajuste Ráp.', 'Dir. Cuerda'], rows: [
59
+ ['ETA 2824-2 / SW200', '3 (0,1,2,3)', 'Sí', 'Fecha (H)', 'H'],
60
+ ['ETA 2892-A2 / SW300', '3 (0,1,2,3)', 'Sí', 'Fecha (H)', 'H'],
61
+ ['Valjoux 7750 / SW500', '3 (0,1,2,3)', '', 'Fecha (H)', 'H'],
62
+ ['Miyota 8215', '2 (0,1,3)', 'No', 'Ninguno', 'H'],
63
+ ['Miyota 9015', '3 (0,1,2,3)', 'Sí', 'Fecha (H)', 'H'],
64
+ ['Seiko NH35 / 4R35', '3 (0,1,2,3)', 'Sí', 'Fecha (H)', 'H'],
65
+ ['Seiko 6R35', '3 (0,1,2,3)', '', 'Fecha (H)', 'H'],
66
+ ['Unitas 6497/6498', '1 (0,1,3)', 'No', 'Ninguno', 'H'],
67
+ ]
68
+ },
65
69
 
66
70
  { type: 'diagnostic', variant: 'warning', title: 'Errores Comunes con la Corona', icon: 'mdi:alert', badge: 'NO HACER', html: 'Nunca ajuste la fecha rápidamente entre las <strong>9 p. m. y las 3 a. m.</strong> mientras la rueda de fecha está enganchada. Esto puede romper dientes y requerir un servicio completo del movimiento. Si debe cambiar la fecha durante esta ventana, primero adelante la hora más allá de las 3 a. m., ajuste la fecha y luego regrese a la hora correcta.' },
67
71
 
68
72
  { type: 'tip', title: 'Coronas Enroscables', html: 'Los relojes de buceo y deportivos suelen tener coronas enroscables para resistencia al agua. <strong>Siempre desenrosque antes de tirar</strong>. Gire en sentido antihorario hasta que la corona salte, luego tire a la posición deseada. Después de ajustar, presione hacia adentro, luego gire en sentido horario aplicando presión ligera hasta que ajuste. <strong>No apriete demasiado.</strong>' },
69
73
 
70
- { type: 'comparative', columns: 2, items: [
71
- { title: 'Corona Estándar', icon: 'mdi:crown', description: 'Corona de presión y tracción presente en la mayoría de los relojes de vestir y automáticos de uso diario. 2\u20134 posiciones. Resistencia al agua típicamente de 30\u2013100 m.', points: ['Acceso inmediato, sin desenroscar', 'Resistencia al agua limitada', 'Común en ETA, Miyota, Seiko'] },
72
- { title: 'Corona Enroscable', icon: 'mdi:lock', description: 'Corona roscada que se enrosca en el tubo de la caja. Estándar en relojes de buceo y herramientas. Resistencia al agua de 200 m+.', points: ['Resistencia al agua superior', 'Debe desenroscarse antes de usar', 'Común en Rolex, Omega, Seiko Prospex'], highlight: true },
73
- ] },
74
+ {
75
+ type: 'comparative', columns: 2, items: [
76
+ { title: 'Corona Estándar', icon: 'mdi:crown', description: 'Corona de presión y tracción presente en la mayoría de los relojes de vestir y automáticos de uso diario. 2\u20134 posiciones. Resistencia al agua típicamente de 30\u2013100 m.', points: ['Acceso inmediato, sin desenroscar', 'Resistencia al agua limitada', 'Común en ETA, Miyota, Seiko'] },
77
+ { title: 'Corona Enroscable', icon: 'mdi:lock', description: 'Corona roscada que se enrosca en el tubo de la caja. Estándar en relojes de buceo y herramientas. Resistencia al agua de 200 m+.', points: ['Resistencia al agua superior', 'Debe desenroscarse antes de usar', 'Común en Rolex, Omega, Seiko Prospex'], highlight: true },
78
+ ]
79
+ },
74
80
 
75
- { type: 'summary', title: 'Referencia Rápida', items: [
76
- 'Siempre cuerda en sentido horario — la cuerda inversa activa el embrague deslizante pero no da cuerda.',
77
- 'Si su reloj tiene corona enroscable, desenrósquela antes de tirar a cualquier posición.',
78
- 'Evite el ajuste rápido de fecha entre las 9 p. m. y las 3 a. m. Adelante la hora más allá de las 3 a. m. primero si es necesario.',
79
- 'Los movimientos de cuerda manual (p. ej., Unitas 6498) tienen menos posiciones. cuerda completamente antes de ajustar la hora.',
80
- 'Los movimientos sin paro de segundero (p. ej., Miyota 8215) requieren una técnica diferente: gire más allá del minuto objetivo, luego lentamente hacia atrás.',
81
- ] },
81
+ {
82
+ type: 'summary', title: 'Referencia Rápida', items: [
83
+ 'Siempre cuerda en sentido horario-la cuerda inversa activa el embrague deslizante pero no da cuerda.',
84
+ 'Si su reloj tiene corona enroscable, desenrósquela antes de tirar a cualquier posición.',
85
+ 'Evite el ajuste rápido de fecha entre las 9 p. m. y las 3 a. m. Adelante la hora más allá de las 3 a. m. primero si es necesario.',
86
+ 'Los movimientos de cuerda manual (p. ej., Unitas 6498) tienen menos posiciones. cuerda completamente antes de ajustar la hora.',
87
+ 'Los movimientos sin paro de segundero (p. ej., Miyota 8215) requieren una técnica diferente: gire más allá del minuto objetivo, luego lentamente hacia atrás.',
88
+ ]
89
+ },
82
90
  ],
83
91
  faq: [
84
92
  {