@jjlmoya/utils-chrono 1.3.0 → 1.5.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 (196) hide show
  1. package/package.json +1 -1
  2. package/src/category/i18n/de.ts +11 -9
  3. package/src/category/i18n/en.ts +11 -9
  4. package/src/category/i18n/fr.ts +11 -9
  5. package/src/category/i18n/id.ts +11 -9
  6. package/src/category/i18n/it.ts +11 -9
  7. package/src/category/i18n/ja.ts +11 -9
  8. package/src/category/i18n/ko.ts +11 -9
  9. package/src/category/i18n/nl.ts +11 -9
  10. package/src/category/i18n/pl.ts +11 -9
  11. package/src/category/i18n/pt.ts +11 -9
  12. package/src/category/i18n/ru.ts +11 -9
  13. package/src/category/i18n/sv.ts +11 -9
  14. package/src/category/i18n/tr.ts +11 -9
  15. package/src/category/i18n/zh.ts +11 -9
  16. package/src/category/index.ts +8 -0
  17. package/src/entries.ts +13 -1
  18. package/src/index.ts +4 -0
  19. package/src/tests/locale_completeness.test.ts +1 -1
  20. package/src/tests/no_en_dash.test.ts +41 -0
  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/components/TimerPanel.astro +45 -17
  43. package/src/tool/demagnetizing-timer/i18n/de.ts +3 -3
  44. package/src/tool/demagnetizing-timer/i18n/en.ts +2 -2
  45. package/src/tool/demagnetizing-timer/i18n/es.ts +2 -2
  46. package/src/tool/demagnetizing-timer/i18n/fr.ts +1 -1
  47. package/src/tool/demagnetizing-timer/i18n/id.ts +2 -2
  48. package/src/tool/demagnetizing-timer/i18n/it.ts +2 -2
  49. package/src/tool/demagnetizing-timer/i18n/ja.ts +1 -1
  50. package/src/tool/demagnetizing-timer/i18n/ko.ts +1 -1
  51. package/src/tool/demagnetizing-timer/i18n/nl.ts +2 -2
  52. package/src/tool/demagnetizing-timer/i18n/pl.ts +3 -3
  53. package/src/tool/demagnetizing-timer/i18n/pt.ts +2 -2
  54. package/src/tool/demagnetizing-timer/i18n/ru.ts +10 -10
  55. package/src/tool/demagnetizing-timer/i18n/sv.ts +2 -2
  56. package/src/tool/demagnetizing-timer/i18n/tr.ts +2 -2
  57. package/src/tool/demagnetizing-timer/i18n/zh.ts +1 -1
  58. package/src/tool/lume-color-simulator/bibliography.astro +16 -0
  59. package/src/tool/lume-color-simulator/bibliography.ts +16 -0
  60. package/src/tool/lume-color-simulator/client.ts +186 -0
  61. package/src/tool/lume-color-simulator/component.astro +17 -0
  62. package/src/tool/lume-color-simulator/components/LumePanel.astro +98 -0
  63. package/src/tool/lume-color-simulator/entry.ts +57 -0
  64. package/src/tool/lume-color-simulator/i18n/de.ts +174 -0
  65. package/src/tool/lume-color-simulator/i18n/en.ts +174 -0
  66. package/src/tool/lume-color-simulator/i18n/es.ts +174 -0
  67. package/src/tool/lume-color-simulator/i18n/fr.ts +174 -0
  68. package/src/tool/lume-color-simulator/i18n/id.ts +174 -0
  69. package/src/tool/lume-color-simulator/i18n/it.ts +175 -0
  70. package/src/tool/lume-color-simulator/i18n/ja.ts +174 -0
  71. package/src/tool/lume-color-simulator/i18n/ko.ts +174 -0
  72. package/src/tool/lume-color-simulator/i18n/nl.ts +175 -0
  73. package/src/tool/lume-color-simulator/i18n/pl.ts +174 -0
  74. package/src/tool/lume-color-simulator/i18n/pt.ts +174 -0
  75. package/src/tool/lume-color-simulator/i18n/ru.ts +174 -0
  76. package/src/tool/lume-color-simulator/i18n/sv.ts +174 -0
  77. package/src/tool/lume-color-simulator/i18n/tr.ts +174 -0
  78. package/src/tool/lume-color-simulator/i18n/zh.ts +174 -0
  79. package/src/tool/lume-color-simulator/index.ts +11 -0
  80. package/src/tool/lume-color-simulator/lume-color-simulator.css +208 -0
  81. package/src/tool/lume-color-simulator/seo.astro +16 -0
  82. package/src/tool/moon-phase-visualizer/bibliography.astro +16 -0
  83. package/src/tool/moon-phase-visualizer/bibliography.ts +16 -0
  84. package/src/tool/moon-phase-visualizer/client.ts +243 -0
  85. package/src/tool/moon-phase-visualizer/component.astro +17 -0
  86. package/src/tool/moon-phase-visualizer/components/MoonPanel.astro +63 -0
  87. package/src/tool/moon-phase-visualizer/entry.ts +51 -0
  88. package/src/tool/moon-phase-visualizer/i18n/de.ts +175 -0
  89. package/src/tool/moon-phase-visualizer/i18n/en.ts +175 -0
  90. package/src/tool/moon-phase-visualizer/i18n/es.ts +175 -0
  91. package/src/tool/moon-phase-visualizer/i18n/fr.ts +175 -0
  92. package/src/tool/moon-phase-visualizer/i18n/id.ts +175 -0
  93. package/src/tool/moon-phase-visualizer/i18n/it.ts +176 -0
  94. package/src/tool/moon-phase-visualizer/i18n/ja.ts +175 -0
  95. package/src/tool/moon-phase-visualizer/i18n/ko.ts +175 -0
  96. package/src/tool/moon-phase-visualizer/i18n/nl.ts +176 -0
  97. package/src/tool/moon-phase-visualizer/i18n/pl.ts +175 -0
  98. package/src/tool/moon-phase-visualizer/i18n/pt.ts +175 -0
  99. package/src/tool/moon-phase-visualizer/i18n/ru.ts +175 -0
  100. package/src/tool/moon-phase-visualizer/i18n/sv.ts +175 -0
  101. package/src/tool/moon-phase-visualizer/i18n/tr.ts +175 -0
  102. package/src/tool/moon-phase-visualizer/i18n/zh.ts +175 -0
  103. package/src/tool/moon-phase-visualizer/index.ts +11 -0
  104. package/src/tool/moon-phase-visualizer/moon-phase-visualizer.css +216 -0
  105. package/src/tool/moon-phase-visualizer/seo.astro +16 -0
  106. package/src/tool/power-reserve-estimator/bibliography.ts +2 -2
  107. package/src/tool/power-reserve-estimator/components/EstimatorPanel.astro +146 -39
  108. package/src/tool/power-reserve-estimator/i18n/de.ts +2 -2
  109. package/src/tool/power-reserve-estimator/i18n/en.ts +3 -3
  110. package/src/tool/power-reserve-estimator/i18n/es.ts +2 -2
  111. package/src/tool/power-reserve-estimator/i18n/fr.ts +2 -2
  112. package/src/tool/power-reserve-estimator/i18n/id.ts +2 -2
  113. package/src/tool/power-reserve-estimator/i18n/it.ts +2 -2
  114. package/src/tool/power-reserve-estimator/i18n/nl.ts +2 -2
  115. package/src/tool/power-reserve-estimator/i18n/pt.ts +2 -2
  116. package/src/tool/strap-taper-calculator/i18n/en.ts +2 -2
  117. package/src/tool/strap-taper-calculator/i18n/ru.ts +4 -4
  118. package/src/tool/tachymeter-calculator/bibliography.astro +16 -0
  119. package/src/tool/tachymeter-calculator/bibliography.ts +16 -0
  120. package/src/tool/tachymeter-calculator/client.ts +180 -0
  121. package/src/tool/tachymeter-calculator/component.astro +15 -0
  122. package/src/tool/tachymeter-calculator/components/CalculatorPanel.astro +121 -0
  123. package/src/tool/tachymeter-calculator/entry.ts +43 -0
  124. package/src/tool/tachymeter-calculator/i18n/de.ts +172 -0
  125. package/src/tool/tachymeter-calculator/i18n/en.ts +172 -0
  126. package/src/tool/tachymeter-calculator/i18n/es.ts +172 -0
  127. package/src/tool/tachymeter-calculator/i18n/fr.ts +172 -0
  128. package/src/tool/tachymeter-calculator/i18n/id.ts +172 -0
  129. package/src/tool/tachymeter-calculator/i18n/it.ts +172 -0
  130. package/src/tool/tachymeter-calculator/i18n/ja.ts +172 -0
  131. package/src/tool/tachymeter-calculator/i18n/ko.ts +172 -0
  132. package/src/tool/tachymeter-calculator/i18n/nl.ts +172 -0
  133. package/src/tool/tachymeter-calculator/i18n/pl.ts +172 -0
  134. package/src/tool/tachymeter-calculator/i18n/pt.ts +172 -0
  135. package/src/tool/tachymeter-calculator/i18n/ru.ts +172 -0
  136. package/src/tool/tachymeter-calculator/i18n/sv.ts +172 -0
  137. package/src/tool/tachymeter-calculator/i18n/tr.ts +172 -0
  138. package/src/tool/tachymeter-calculator/i18n/zh.ts +172 -0
  139. package/src/tool/tachymeter-calculator/index.ts +11 -0
  140. package/src/tool/tachymeter-calculator/seo.astro +16 -0
  141. package/src/tool/tachymeter-calculator/tachymeter-calculator.css +492 -0
  142. package/src/tool/tachymeter-calculator/utils.ts +10 -0
  143. package/src/tool/watch-accuracy-tracker/i18n/pl.ts +1 -1
  144. package/src/tool/watch-accuracy-tracker/i18n/ru.ts +6 -6
  145. package/src/tool/watch-savings-planner/i18n/en.ts +5 -5
  146. package/src/tool/watch-size-comparator/bibliography.astro +16 -0
  147. package/src/tool/watch-size-comparator/bibliography.ts +16 -0
  148. package/src/tool/watch-size-comparator/client.ts +287 -0
  149. package/src/tool/watch-size-comparator/component.astro +17 -0
  150. package/src/tool/watch-size-comparator/components/WatchForm.astro +121 -0
  151. package/src/tool/watch-size-comparator/drawing/index.ts +79 -0
  152. package/src/tool/watch-size-comparator/drawing/measures.ts +57 -0
  153. package/src/tool/watch-size-comparator/drawing/utils.ts +37 -0
  154. package/src/tool/watch-size-comparator/drawing/watch.ts +78 -0
  155. package/src/tool/watch-size-comparator/entry.ts +62 -0
  156. package/src/tool/watch-size-comparator/i18n/de.ts +189 -0
  157. package/src/tool/watch-size-comparator/i18n/en.ts +189 -0
  158. package/src/tool/watch-size-comparator/i18n/es.ts +189 -0
  159. package/src/tool/watch-size-comparator/i18n/fr.ts +189 -0
  160. package/src/tool/watch-size-comparator/i18n/id.ts +189 -0
  161. package/src/tool/watch-size-comparator/i18n/it.ts +190 -0
  162. package/src/tool/watch-size-comparator/i18n/ja.ts +189 -0
  163. package/src/tool/watch-size-comparator/i18n/ko.ts +189 -0
  164. package/src/tool/watch-size-comparator/i18n/nl.ts +190 -0
  165. package/src/tool/watch-size-comparator/i18n/pl.ts +189 -0
  166. package/src/tool/watch-size-comparator/i18n/pt.ts +189 -0
  167. package/src/tool/watch-size-comparator/i18n/ru.ts +189 -0
  168. package/src/tool/watch-size-comparator/i18n/sv.ts +189 -0
  169. package/src/tool/watch-size-comparator/i18n/tr.ts +189 -0
  170. package/src/tool/watch-size-comparator/i18n/zh.ts +189 -0
  171. package/src/tool/watch-size-comparator/index.ts +11 -0
  172. package/src/tool/watch-size-comparator/seo.astro +16 -0
  173. package/src/tool/watch-size-comparator/watch-size-comparator.css +373 -0
  174. package/src/tool/water-resistance-converter/bibliography.ts +2 -2
  175. package/src/tool/water-resistance-converter/i18n/de.ts +5 -5
  176. package/src/tool/water-resistance-converter/i18n/en.ts +6 -6
  177. package/src/tool/water-resistance-converter/i18n/es.ts +6 -6
  178. package/src/tool/water-resistance-converter/i18n/fr.ts +6 -6
  179. package/src/tool/water-resistance-converter/i18n/id.ts +6 -6
  180. package/src/tool/water-resistance-converter/i18n/it.ts +6 -6
  181. package/src/tool/water-resistance-converter/i18n/ja.ts +6 -6
  182. package/src/tool/water-resistance-converter/i18n/ko.ts +6 -6
  183. package/src/tool/water-resistance-converter/i18n/nl.ts +6 -6
  184. package/src/tool/water-resistance-converter/i18n/pl.ts +6 -6
  185. package/src/tool/water-resistance-converter/i18n/pt.ts +6 -6
  186. package/src/tool/water-resistance-converter/i18n/ru.ts +8 -8
  187. package/src/tool/water-resistance-converter/i18n/sv.ts +6 -6
  188. package/src/tool/water-resistance-converter/i18n/tr.ts +6 -6
  189. package/src/tool/water-resistance-converter/i18n/zh.ts +3 -3
  190. package/src/tool/wrist-presence-calculator/i18n/de.ts +1 -1
  191. package/src/tool/wrist-presence-calculator/i18n/fr.ts +1 -1
  192. package/src/tool/wrist-presence-calculator/i18n/pl.ts +1 -1
  193. package/src/tool/wrist-presence-calculator/i18n/pt.ts +1 -1
  194. package/src/tool/wrist-presence-calculator/i18n/ru.ts +21 -21
  195. package/src/tool/wrist-presence-calculator/i18n/sv.ts +1 -1
  196. package/src/tools.ts +8 -0
@@ -0,0 +1,62 @@
1
+ import type { ChronoToolEntry, ToolLocaleContent } from '../../types';
2
+
3
+ export type WatchSizeComparatorUI = {
4
+ title: string;
5
+ addWatch: string;
6
+ watchName: string;
7
+ watchNamePlaceholder: string;
8
+ caseDiameter: string;
9
+ lugToLug: string;
10
+ thickness: string;
11
+ wristSize: string;
12
+ wristSizePlaceholder: string;
13
+ mm: string;
14
+ cm: string;
15
+ unitCm: string;
16
+ unitInches: string;
17
+ remove: string;
18
+ yourWatches: string;
19
+ fitLegend: string;
20
+ excellentFit: string;
21
+ goodFit: string;
22
+ borderlineFit: string;
23
+ largeFit: string;
24
+ wristCurve: string;
25
+ nameRequired: string;
26
+ watchTooLarge: string;
27
+ l2lExceedsWrist: string;
28
+ excellentDesc: string;
29
+ goodDesc: string;
30
+ borderlineDesc: string;
31
+ largeDesc: string;
32
+ fitsWell: string;
33
+ slightlyLarge: string;
34
+ tooLarge: string;
35
+ source: string;
36
+ estimateNote: string;
37
+ };
38
+
39
+ export type WatchSizeComparatorLocaleContent = ToolLocaleContent<WatchSizeComparatorUI>;
40
+
41
+ export const watchSizeComparator: ChronoToolEntry<WatchSizeComparatorUI> = {
42
+ id: 'watch-size-comparator',
43
+ icons: { bg: 'mdi:ruler-square', fg: 'mdi:vector-square' },
44
+ i18n: {
45
+ en: () => import('./i18n/en').then((m) => m.content),
46
+ de: () => import('./i18n/de').then((m) => m.content),
47
+ es: () => import('./i18n/es').then((m) => m.content),
48
+ fr: () => import('./i18n/fr').then((m) => m.content),
49
+ id: () => import('./i18n/id').then((m) => m.content),
50
+ it: () => import('./i18n/it').then((m) => m.content),
51
+ ja: () => import('./i18n/ja').then((m) => m.content),
52
+ ko: () => import('./i18n/ko').then((m) => m.content),
53
+ nl: () => import('./i18n/nl').then((m) => m.content),
54
+ pl: () => import('./i18n/pl').then((m) => m.content),
55
+ pt: () => import('./i18n/pt').then((m) => m.content),
56
+ ru: () => import('./i18n/ru').then((m) => m.content),
57
+ sv: () => import('./i18n/sv').then((m) => m.content),
58
+ tr: () => import('./i18n/tr').then((m) => m.content),
59
+ zh: () => import('./i18n/zh').then((m) => m.content),
60
+ },
61
+ };
62
+
@@ -0,0 +1,189 @@
1
+ import type { ToolLocaleContent } from '../../../types';
2
+ import type { WatchSizeComparatorUI } from '../entry';
3
+ import { bibliography } from '../bibliography';
4
+
5
+ export const content: ToolLocaleContent<WatchSizeComparatorUI> = {
6
+ slug: 'uhrengroen-vergleich',
7
+ title: 'Uhrengroessen Vergleich: Visuelle Passform fuer dein Handgelenk',
8
+ description: 'Vergleiche Uhrengehäusegrößen visuell. Gib Durchmesser, Lug-to-Lug und Handgelenkumfang ein, um zu sehen, wie eine Uhr passt - bevor du kaufst.',
9
+ ui: {
10
+ title: 'Uhrengroessen Vergleich',
11
+ addWatch: 'Uhr hinzufügen',
12
+ watchName: 'Uhrenname',
13
+ watchNamePlaceholder: 'z. B. Rolex Submariner',
14
+ caseDiameter: 'Gehäusedurchmesser',
15
+ lugToLug: 'Lug-to-Lug',
16
+ thickness: 'Höhe',
17
+ wristSize: 'Handgelenkumfang',
18
+ wristSizePlaceholder: 'z. B. 17',
19
+ mm: 'mm',
20
+ cm: 'cm',
21
+ unitCm: 'CM',
22
+ unitInches: 'IN',
23
+ remove: 'Entfernen',
24
+ yourWatches: 'Deine Uhren',
25
+ fitLegend: 'Passform-Legende',
26
+ excellentFit: 'Hervorragend',
27
+ goodFit: 'Gut',
28
+ borderlineFit: 'Grenzwertig',
29
+ largeFit: 'Zu groß',
30
+ wristCurve: 'Handgelenk',
31
+ nameRequired: 'Gib einen Uhrennamen ein',
32
+ watchTooLarge: 'Uhr ragt über das Handgelenk hinaus',
33
+ l2lExceedsWrist: 'Lug-to-Lug überschreitet die Handgelenkbreite',
34
+ excellentDesc: 'Proportional - die Laschen bleiben gut innerhalb deines Handgelenks.',
35
+ goodDesc: 'Gute Passform - übersteht leicht, bleibt aber bequem.',
36
+ borderlineDesc: 'Grenzwertig - die Laschen nähern sich dem Rand deines Handgelenks.',
37
+ largeDesc: 'Zu groß - die Laschen überstehen wahrscheinlich dein Handgelenk.',
38
+ fitsWell: 'Passt gut',
39
+ slightlyLarge: 'Etwas groß',
40
+ tooLarge: 'Zu groß',
41
+ source: 'Größenleitfaden',
42
+ estimateNote: 'Gib Maße ein und füge eine Uhr hinzu, um zu sehen, wie sie an deinem Handgelenk wirkt.',
43
+ },
44
+ seo: [
45
+ { type: 'title', text: 'Uhrengroessen Vergleich: Visuelle Passform fuer dein Handgelenk', level: 2 },
46
+ { type: 'paragraph', html: 'Du möchtest wissen, ob eine <strong>42-mm-Uhr</strong> an dein <strong>17-cm-Handgelenk</strong> passt? Oder ob 48 mm Lug-to-Lug überstehen? Der Uhrengrößen-Vergleich liefert dir die Antwort visuell. Gib Gehäusedurchmesser, Lug-to-Lug, Höhe und Handgelenkumfang ein - das Tool zeichnet die Uhr maßstabsgetreu und färbt die Passform von <span style="color:#22c55e">grün (hervorragend)</span> bis <span style="color:#ef4444">rot (zu groß)</span>. Funktioniert in <strong>metrischen und imperialen</strong> Einheiten.' },
47
+ { type: 'title', text: 'Glossar zur Uhrengröße', level: 3 },
48
+ {
49
+ type: 'glossary', items: [
50
+ { term: 'Gehäusedurchmesser', definition: 'Die Breite des Uhrengehäuses, gemessen über das Zifferblatt, ohne Krone. Typischer Bereich: 34-46 mm. Das am häufigsten genannte Maß, aber nicht der einzige Passformfaktor.' },
51
+ { term: 'Lug-to-Lug (L2L)', definition: 'Der Abstand zwischen den oberen und unteren Laschen, an denen das Armband befestigt wird. Er bestimmt, ob die Uhr über das Handgelenk übersteht. Eine 40-mm-Uhr mit 50 mm L2L trägt sich größer als eine 42-mm-Uhr mit 46 mm L2L.' },
52
+ { term: 'Flache Handgelenkbreite', definition: 'Die Breite der oberen Fläche deines Handgelenks, im Gegensatz zum Umfang. Ungefähr Handgelenkumfang / π minus 2-4 cm. Dies ist die Maßeinheit, auf der deine Uhr tatsächlich aufliegt.' },
53
+ { term: 'Gehäuse-Handgelenk-Verhältnis', definition: 'Gehäusedurchmesser geteilt durch Handgelenkbreite. Ein Verhältnis von 0,6-0,75 (60-75 %) gilt als klassische proportionale Passform.' },
54
+ ]
55
+ },
56
+
57
+ { type: 'title', text: 'Welche Uhrengröße passt an mein Handgelenk?', level: 3 },
58
+ {
59
+ type: 'table', headers: ['Handgelenkumfang', 'Flache Breite (ca.)', 'Idealer Gehäusedurchmesser', 'Max. Lug-to-Lug', 'Geeignet für'], rows: [
60
+ ['14-15 cm (5,5-5,9 in)', '38-42 mm', '30-34 mm', '38-42 mm', 'Vintage- und Dress-Watches'],
61
+ ['15-16 cm (5,9-6,3 in)', '40-44 mm', '34-36 mm', '40-44 mm', 'Klassische kleinere Uhren'],
62
+ ['16-17 cm (6,3-6,7 in)', '42-46 mm', '36-39 mm', '42-46 mm', 'Alltagstaugliche Allrounder'],
63
+ ['17-18 cm (6,7-7,1 in)', '44-48 mm', '38-42 mm', '44-48 mm', 'Ideale Größe für die meisten Marken'],
64
+ ['18-19 cm (7,1-7,5 in)', '46-50 mm', '40-44 mm', '46-50 mm', 'Taucheruhren & GMTs'],
65
+ ['19-20 cm (7,5-7,9 in)', '48-52 mm', '42-46 mm', '48-52 mm', 'Tool- und Pilotenuhren'],
66
+ ['20-21 cm (7,9-8,3 in)', '50-54 mm', '44-48 mm', '50-54 mm', 'Übergroße & Fliegeruhren'],
67
+ ]
68
+ },
69
+
70
+ { type: 'title', text: 'So misst du dein Handgelenk für eine Uhr', level: 3 },
71
+ {
72
+ type: 'list', items: [
73
+ 'Wickle ein flexibles Maßband um dein Handgelenk, direkt hinter dem Handgelenkknochen (Processus styloideus ulnae). Es sollte eng anliegen, aber nicht einschnüren.',
74
+ 'Wenn du kein Maßband hast, nimm eine Schnur oder ein Kabel, markiere die Überlappung und miss sie mit einem Lineal.',
75
+ 'Notiere das Maß in Zentimetern oder Zoll. Der durchschnittliche männliche Handgelenkumfang beträgt 17-19 cm (6,7-7,5 Zoll), der weibliche 14-16 cm (5,5-6,3 Zoll).',
76
+ 'Um deine flache Handgelenkbreite zu schätzen, ziehe 2-4 cm vom Umfang ab oder nutze die automatische Schätzung des Tools.',
77
+ ]
78
+ },
79
+
80
+ { type: 'diagnostic', variant: 'info', title: 'Lug to Lug ist die echte Passformgrenze', icon: 'mdi:ruler', html: 'Die meisten achten auf den <strong>Gehäusedurchmesser</strong>, aber das <strong>Lug-to-Lug</strong> entscheidet, ob eine Uhr an dein Handgelenk passt. Eine Uhr mit 48 mm L2L auf einem 55 mm flachen Handgelenk (17 cm Umfang) nimmt 87 % der Handgelenkbreite ein. Ab 65 % beginnen die Laschen, sich dem Rand deines Handgelenks zu nähern. <strong>Prüfe immer zuerst das L2L.</strong>' },
81
+
82
+ { type: 'tip', title: 'CM oder Zoll? Nimm, was du kennst', html: 'Das Tool unterstützt jetzt sowohl metrische als auch imperiale Einheiten. Miss dein Handgelenk in dem System, das du täglich verwendest. Gehäusemaße von Uhren sind <strong>immer in Millimetern</strong> (selbst in den USA), daher bleiben Durchmesser und L2L in mm - nur die Handgelenkmessung wechselt. Das entspricht der Praxis der Uhrenindustrie.' },
83
+
84
+ {
85
+ type: 'summary', title: 'Kurze Passform Checkliste vor dem Kauf', items: [
86
+ 'Miss deinen Handgelenkumfang und gib ihn ins Tool ein.',
87
+ 'Schlag das Lug-to-Lug der Uhr nach - nicht nur den Gehäusedurchmesser.',
88
+ 'Die Uhr sollte 60-75 % deiner flachen Handgelenkbreite einnehmen für eine klassische Passform.',
89
+ 'Wenn die Laschen über deine Handgelenksränder überstehen, wird sich die Uhr unabhängig vom Durchmesser zu groß anfühlen.',
90
+ 'Nutze das Tool, um mehrere Uhren direkt miteinander zu vergleichen, bevor du eine Kaufentscheidung triffst.',
91
+ ]
92
+ },
93
+ ],
94
+ faq: [
95
+ {
96
+ question: 'Wie messe ich mein Handgelenk für eine Uhr?',
97
+ answer: 'Verwende ein flexibles Maßband um den Handgelenkknochen. Alternativ wickelst du eine Schnur, markierst die Überlappung und misst sie mit einem Lineal. Der Durchschnitt liegt bei 17-19 cm für Männer, 14-16 cm für Frauen.',
98
+ },
99
+ {
100
+ question: 'Was ist Lug-to-Lug und warum ist es wichtig?',
101
+ answer: 'Lug-to-Lug ist der Abstand zwischen den oberen und unteren Laschen. Er bestimmt, ob die Uhr über dein Handgelenk übersteht. Eine Uhr mit 48 mm Lug-to-Lug an einem 17-cm-Handgelenk (≈55 mm flache Breite) ist mit 87 % proportional. Ab 65 % beginnt es überzustehen.',
102
+ },
103
+ {
104
+ question: 'Welche Uhrengröße passt an ein 17-cm-Handgelenk?',
105
+ answer: 'Ein 17-cm-Handgelenk (≈55 mm flache Breite) trägt bequem Uhren mit 36-42 mm Durchmesser und 44-50 mm Lug-to-Lug. Der Sweet Spot liegt bei 38-40 mm mit 46-48 mm L2L.',
106
+ },
107
+ ],
108
+ bibliography,
109
+ howTo: [
110
+ {
111
+ name: 'Handgelenkmaß eingeben',
112
+ text: 'Gib deinen Handgelenkumfang in Zentimetern ein. Das Tool aktualisiert die visuelle Handgelenk-Silhouette.',
113
+ },
114
+ {
115
+ name: 'Uhrenmaße eingeben',
116
+ text: 'Gib Gehäusedurchmesser, Lug-to-Lug und Höhe in Millimetern ein.',
117
+ },
118
+ {
119
+ name: 'Hinzufügen und vergleichen',
120
+ text: 'Klicke auf „Uhr hinzufügen", um sie zu speichern. Füge mehrere Uhren hinzu und klicke zwischen ihnen, um die Passform zu vergleichen.',
121
+ },
122
+ {
123
+ name: 'Farbe lesen',
124
+ text: 'Grün = hervorragend, gelb = grenzwertig, rot = zu groß für dein Handgelenk.',
125
+ },
126
+ ],
127
+ schemas: [
128
+ {
129
+ '@context': 'https://schema.org',
130
+ '@type': 'FAQPage',
131
+ 'mainEntity': [
132
+ {
133
+ '@type': 'Question',
134
+ 'name': 'Wie messe ich mein Handgelenk für eine Uhr?',
135
+ 'acceptedAnswer': {
136
+ '@type': 'Answer',
137
+ 'text': 'Verwende ein flexibles Maßband um den Handgelenkknochen. Der Durchschnitt liegt bei 17-19 cm für Männer, 14-16 cm für Frauen.',
138
+ },
139
+ },
140
+ {
141
+ '@type': 'Question',
142
+ 'name': 'Was ist Lug-to-Lug und warum ist es wichtig?',
143
+ 'acceptedAnswer': {
144
+ '@type': 'Answer',
145
+ 'text': 'Lug-to-Lug ist der Abstand zwischen oberen und unteren Laschen. Er bestimmt, ob die Uhr über dein Handgelenk übersteht.',
146
+ },
147
+ },
148
+ {
149
+ '@type': 'Question',
150
+ 'name': 'Welche Uhrengröße passt an ein 17-cm-Handgelenk?',
151
+ 'acceptedAnswer': {
152
+ '@type': 'Answer',
153
+ 'text': 'Ein 17-cm-Handgelenk passt zu 36-42 mm Durchmesser mit 44-50 mm Lug-to-Lug. Der Sweet Spot liegt bei 38-40 mm mit 46-48 mm L2L.',
154
+ },
155
+ },
156
+ ],
157
+ },
158
+ {
159
+ '@context': 'https://schema.org',
160
+ '@type': 'SoftwareApplication',
161
+ 'name': 'Uhrengrößen-Vergleich',
162
+ 'operatingSystem': 'All',
163
+ 'applicationCategory': 'UtilitiesApplication',
164
+ 'browserRequirements': 'Erfordert HTML5 und JavaScript.',
165
+ },
166
+ {
167
+ '@context': 'https://schema.org',
168
+ '@type': 'HowTo',
169
+ 'name': 'So vergleicht man Uhrengrößen',
170
+ 'step': [
171
+ {
172
+ '@type': 'HowToStep',
173
+ 'name': 'Handgelenkmaß eingeben',
174
+ 'text': 'Gib deinen Handgelenkumfang in Zentimetern ein.',
175
+ },
176
+ {
177
+ '@type': 'HowToStep',
178
+ 'name': 'Uhrenmaße eingeben',
179
+ 'text': 'Gib Gehäusedurchmesser, Lug-to-Lug und Höhe ein.',
180
+ },
181
+ {
182
+ '@type': 'HowToStep',
183
+ 'name': 'Hinzufügen und vergleichen',
184
+ 'text': 'Klicke auf „Uhr hinzufügen", um sie zu speichern. Füge mehrere Uhren hinzu, um sie zu vergleichen.',
185
+ },
186
+ ],
187
+ },
188
+ ],
189
+ };
@@ -0,0 +1,189 @@
1
+ import type { ToolLocaleContent } from '../../../types';
2
+ import type { WatchSizeComparatorUI } from '../entry';
3
+ import { bibliography } from '../bibliography';
4
+
5
+ export const content: ToolLocaleContent<WatchSizeComparatorUI> = {
6
+ slug: 'watch-size-comparator',
7
+ title: 'Watch Size Comparator: Visual Fit on Your Wrist',
8
+ description: 'Compare watch case sizes visually. Enter diameter, lug-to-lug, and wrist size to see how a watch fits before you buy.',
9
+ ui: {
10
+ title: 'Watch Size Comparator',
11
+ addWatch: 'Add Watch',
12
+ watchName: 'Watch Name',
13
+ watchNamePlaceholder: 'e.g. Rolex Submariner',
14
+ caseDiameter: 'Case Diameter',
15
+ lugToLug: 'Lug-to-Lug',
16
+ thickness: 'Thickness',
17
+ wristSize: 'Wrist Size',
18
+ wristSizePlaceholder: 'e.g. 17',
19
+ mm: 'mm',
20
+ cm: 'cm',
21
+ unitCm: 'CM',
22
+ unitInches: 'IN',
23
+ remove: 'Remove',
24
+ yourWatches: 'Your Watches',
25
+ fitLegend: 'Fit Legend',
26
+ excellentFit: 'Excellent',
27
+ goodFit: 'Good',
28
+ borderlineFit: 'Borderline',
29
+ largeFit: 'Too Large',
30
+ wristCurve: 'wrist',
31
+ nameRequired: 'Enter a watch name',
32
+ watchTooLarge: 'Watch extends beyond wrist',
33
+ l2lExceedsWrist: 'Lug-to-lug exceeds wrist width',
34
+ excellentDesc: 'Proportional-lug-to-lug stays well within your wrist.',
35
+ goodDesc: 'Good fit-overhangs slightly but still comfortable.',
36
+ borderlineDesc: 'Borderline-lugs approach the edge of your wrist.',
37
+ largeDesc: 'Too large-lugs likely overhang your wrist.',
38
+ fitsWell: 'Fits well',
39
+ slightlyLarge: 'Slightly large',
40
+ tooLarge: 'Too large',
41
+ source: 'Size guide',
42
+ estimateNote: 'Enter dimensions and add a watch to see how it fits your wrist.',
43
+ },
44
+ seo: [
45
+ { type: 'title', text: 'Watch Size Comparator: Visual Fit on Your Wrist', level: 2 },
46
+ { type: 'paragraph', html: 'Wondering if a <strong>42mm watch</strong> will fit your <strong>17cm wrist</strong>? Or whether that 48mm lug-to-lug will overhang? The Watch Size Comparator gives you a visual answer. Enter your case diameter, lug-to-lug, thickness, and wrist size—the tool draws the watch to scale and colors the fit from <span style="color:#22c55e">green (excellent)</span> to <span style="color:#ef4444">red (too large)</span>. Works in both <strong>metric and imperial</strong> units.' },
47
+ { type: 'title', text: 'Watch Size Glossary', level: 3 },
48
+ {
49
+ type: 'glossary', items: [
50
+ { term: 'Case Diameter', definition: 'The width of the watch case measured across the dial, excluding the crown. Typical range: 34-46mm. The most commonly quoted size, but not the only fit factor.' },
51
+ { term: 'Lug-to-Lug (L2L)', definition: 'The distance between the top and bottom lugs where the strap attaches. This determines whether the watch overhangs your wrist. A 40mm watch with 50mm L2L wears larger than a 42mm with 46mm L2L.' },
52
+ { term: 'Flat Wrist Width', definition: 'The width of the top surface of your wrist, as opposed to its circumference. Roughly wrist circumference / π minus 2-4cm. This is the dimension your watch actually sits on.' },
53
+ { term: 'Case-to-Wrist Ratio', definition: 'Case diameter divided by wrist width. A ratio of 0.6-0.75 (60-75%) is considered the classic proportional fit.' },
54
+ ]
55
+ },
56
+
57
+ { type: 'title', text: 'What Size Watch Fits My Wrist?', level: 3 },
58
+ {
59
+ type: 'table', headers: ['Wrist Circumference', 'Flat Width (approx.)', 'Ideal Case Diameter', 'Max Lug-to-Lug', 'Best For'], rows: [
60
+ ['14-15 cm (5.5-5.9 in)', '38-42 mm', '30-34 mm', '38-42 mm', 'Vintage & dress watches'],
61
+ ['15-16 cm (5.9-6.3 in)', '40-44 mm', '34-36 mm', '40-44 mm', 'Small classic watches'],
62
+ ['16-17 cm (6.3-6.7 in)', '42-46 mm', '36-39 mm', '42-46 mm', 'Everyday versatile size'],
63
+ ['17-18 cm (6.7-7.1 in)', '44-48 mm', '38-42 mm', '44-48 mm', 'Sweet spot for most brands'],
64
+ ['18-19 cm (7.1-7.5 in)', '46-50 mm', '40-44 mm', '46-50 mm', 'Dive watches & GMTs'],
65
+ ['19-20 cm (7.5-7.9 in)', '48-52 mm', '42-46 mm', '48-52 mm', 'Tool & pilot watches'],
66
+ ['20-21 cm (7.9-8.3 in)', '50-54 mm', '44-48 mm', '50-54 mm', 'Oversized & flieger watches'],
67
+ ]
68
+ },
69
+
70
+ { type: 'title', text: 'How to Measure Your Wrist for a Watch', level: 3 },
71
+ {
72
+ type: 'list', items: [
73
+ 'Wrap a flexible tape measure around your wrist just behind the wrist bone (ulnar styloid). It should be snug but not tight.',
74
+ 'If you don\'t have a tape, use a string or a cable, mark the overlap, then measure it against a ruler.',
75
+ 'Write down the measurement in centimeters or inches. Average male wrists are 17-19cm (6.7-7.5in); average female wrists are 14-16cm (5.5-6.3in).',
76
+ 'To estimate your flat wrist width, subtract 2-4cm from the circumference or use the tool\'s auto-estimate feature.',
77
+ ]
78
+ },
79
+
80
+ { type: 'diagnostic', variant: 'info', title: 'Lug to Lug Is the Real Fit Limit', icon: 'mdi:ruler', html: 'Most people focus on <strong>case diameter</strong>, but <strong>lug-to-lug</strong> is what determines if a watch fits your wrist. A watch with 48mm L2L on a 55mm flat wrist (17cm circumference) takes up 87% of the wrist width. Above 65% the lugs start to approach the edge of your wrist. <strong>Always check L2L first.</strong>' },
81
+
82
+ { type: 'tip', title: 'CM or Inches? Use What You Know', html: 'The tool now supports both metric and imperial. Measure your wrist in whatever system you use daily. Watch case dimensions are <strong>always in millimeters</strong> (even in the US), so diameters and L2L stay in mm—only the wrist measurement toggles. This matches how the watch industry works.' },
83
+
84
+ {
85
+ type: 'summary', title: 'Quick Fit Checklist Before You Buy', items: [
86
+ 'Measure your wrist circumference and enter it in the tool.',
87
+ 'Look up the watch\'s lug-to-lug—not just the case diameter.',
88
+ 'The watch should take up 60-75% of your flat wrist width for a classic fit.',
89
+ 'If the lugs overhang your wrist edges, the watch will feel too large regardless of diameter.',
90
+ 'Use the tool to compare multiple watches side by side before making a purchase decision.',
91
+ ]
92
+ },
93
+ ],
94
+ faq: [
95
+ {
96
+ question: 'How do I measure my wrist for a watch?',
97
+ answer: 'Use a flexible tape measure around the wrist bone. Alternatively, wrap a string, mark the overlap, and measure it with a ruler. Average is 17-19cm for men, 14-16cm for women.',
98
+ },
99
+ {
100
+ question: 'What is lug-to-lug and why does it matter?',
101
+ answer: 'Lug-to-lug is the distance between the top and bottom lugs. It determines whether the watch overhangs your wrist. A watch with 48mm lug-to-lug on a 17cm wrist (≈55mm flat width) is proportional at 87%. Above 65% starts to overhang.',
102
+ },
103
+ {
104
+ question: 'What size watch fits a 17cm wrist?',
105
+ answer: 'A 17cm wrist (≈55mm flat width) comfortably fits watches with 36-42mm diameter and 44-50mm lug-to-lug. The sweet spot is 38-40mm with 46-48mm L2L.',
106
+ },
107
+ ],
108
+ bibliography,
109
+ howTo: [
110
+ {
111
+ name: 'Enter your wrist size',
112
+ text: 'Type your wrist circumference in centimeters. The tool updates the visual wrist silhouette.',
113
+ },
114
+ {
115
+ name: 'Enter watch dimensions',
116
+ text: 'Input case diameter, lug-to-lug, and thickness in millimeters.',
117
+ },
118
+ {
119
+ name: 'Add and compare',
120
+ text: 'Click "Add Watch" to save it. Add multiple watches and click between them to compare fit.',
121
+ },
122
+ {
123
+ name: 'Read the color',
124
+ text: 'Green = excellent, yellow = borderline, red = too large for your wrist.',
125
+ },
126
+ ],
127
+ schemas: [
128
+ {
129
+ '@context': 'https://schema.org',
130
+ '@type': 'FAQPage',
131
+ 'mainEntity': [
132
+ {
133
+ '@type': 'Question',
134
+ 'name': 'How do I measure my wrist for a watch?',
135
+ 'acceptedAnswer': {
136
+ '@type': 'Answer',
137
+ 'text': 'Use a flexible tape measure around the wrist bone. Average is 17-19cm for men, 14-16cm for women.',
138
+ },
139
+ },
140
+ {
141
+ '@type': 'Question',
142
+ 'name': 'What is lug-to-lug and why does it matter?',
143
+ 'acceptedAnswer': {
144
+ '@type': 'Answer',
145
+ 'text': 'Lug-to-lug is the distance between top and bottom lugs. It determines if the watch overhangs your wrist.',
146
+ },
147
+ },
148
+ {
149
+ '@type': 'Question',
150
+ 'name': 'What size watch fits a 17cm wrist?',
151
+ 'acceptedAnswer': {
152
+ '@type': 'Answer',
153
+ 'text': 'A 17cm wrist fits 36-42mm diameter with 44-50mm lug-to-lug. Sweet spot is 38-40mm with 46-48mm L2L.',
154
+ },
155
+ },
156
+ ],
157
+ },
158
+ {
159
+ '@context': 'https://schema.org',
160
+ '@type': 'SoftwareApplication',
161
+ 'name': 'Watch Size Comparator',
162
+ 'operatingSystem': 'All',
163
+ 'applicationCategory': 'UtilitiesApplication',
164
+ 'browserRequirements': 'Requires HTML5. Requires JavaScript.',
165
+ },
166
+ {
167
+ '@context': 'https://schema.org',
168
+ '@type': 'HowTo',
169
+ 'name': 'How to compare watch sizes',
170
+ 'step': [
171
+ {
172
+ '@type': 'HowToStep',
173
+ 'name': 'Enter your wrist size',
174
+ 'text': 'Type your wrist circumference in centimeters.',
175
+ },
176
+ {
177
+ '@type': 'HowToStep',
178
+ 'name': 'Enter watch dimensions',
179
+ 'text': 'Input case diameter, lug-to-lug, and thickness.',
180
+ },
181
+ {
182
+ '@type': 'HowToStep',
183
+ 'name': 'Add and compare',
184
+ 'text': 'Click Add Watch to save it. Add multiple watches to compare.',
185
+ },
186
+ ],
187
+ },
188
+ ],
189
+ };
@@ -0,0 +1,189 @@
1
+ import type { ToolLocaleContent } from '../../../types';
2
+ import type { WatchSizeComparatorUI } from '../entry';
3
+ import { bibliography } from '../bibliography';
4
+
5
+ export const content: ToolLocaleContent<WatchSizeComparatorUI> = {
6
+ slug: 'comparador-de-tamano-de-reloj',
7
+ title: 'Comparador de Tamaño de Reloj: ajuste visual en tu muñeca',
8
+ description: 'Compara visualmente el tamaño de las cajas de los relojes. Introduce el diámetro, el ancho entre asas y el perímetro de muñeca para ver cómo te queda un reloj antes de comprarlo.',
9
+ ui: {
10
+ title: 'Comparador de Tamaño de Reloj',
11
+ addWatch: 'Añadir Reloj',
12
+ watchName: 'Nombre del Reloj',
13
+ watchNamePlaceholder: 'p. ej. Rolex Submariner',
14
+ caseDiameter: 'Diámetro de Caja',
15
+ lugToLug: 'Ancho entre Asas',
16
+ thickness: 'Grosor',
17
+ wristSize: 'Tamaño de Muñeca',
18
+ wristSizePlaceholder: 'p. ej. 17',
19
+ mm: 'mm',
20
+ cm: 'cm',
21
+ unitCm: 'CM',
22
+ unitInches: 'IN',
23
+ remove: 'Eliminar',
24
+ yourWatches: 'Tus Relojes',
25
+ fitLegend: 'Leyenda de Ajuste',
26
+ excellentFit: 'Excelente',
27
+ goodFit: 'Bueno',
28
+ borderlineFit: 'Justo',
29
+ largeFit: 'Demasiado Grande',
30
+ wristCurve: 'muñeca',
31
+ nameRequired: 'Introduce un nombre de reloj',
32
+ watchTooLarge: 'El reloj sobresale de la muñeca',
33
+ l2lExceedsWrist: 'El ancho entre asas supera la muñeca',
34
+ excellentDesc: 'Proporcional: el ancho entre asas queda dentro de tu muñeca.',
35
+ goodDesc: 'Buen ajuste: sobresale ligeramente pero sigue siendo cómodo.',
36
+ borderlineDesc: 'Justo: las asas se acercan al borde de la muñeca.',
37
+ largeDesc: 'Demasiado grande: las asas probablemente sobresalen.',
38
+ fitsWell: 'Queda bien',
39
+ slightlyLarge: 'Algo grande',
40
+ tooLarge: 'Muy grande',
41
+ source: 'Guía de tallas',
42
+ estimateNote: 'Introduce las medidas y añade un reloj para ver cómo se ajusta a tu muñeca.',
43
+ },
44
+ seo: [
45
+ { type: 'title', text: 'Comparador de Tamaño de Reloj: ajuste visual en tu muñeca', level: 2 },
46
+ { type: 'paragraph', html: '¿No sabes si un <strong>reloj de 42 mm</strong> te quedará bien en una <strong>muñeca de 17 cm</strong>? ¿O si ese ancho entre asas de 48 mm sobresaldrá? El Comparador de Tamaño de Reloj te da la respuesta visual. Introduce el diámetro de caja, el ancho entre asas, el grosor y el perímetro de muñeca: la herramienta dibuja el reloj a escala y colorea el ajuste desde <span style="color:#22c55e">verde (excelente)</span> hasta <span style="color:#ef4444">rojo (demasiado grande)</span>. Funciona tanto en unidades <strong>métricas como imperiales</strong>.' },
47
+ { type: 'title', text: 'Glosario de Tamaños de Reloj', level: 3 },
48
+ {
49
+ type: 'glossary', items: [
50
+ { term: 'Diámetro de Caja', definition: 'La anchura de la caja del reloj medida a través de la esfera, excluyendo la corona. Rango típico: 34-46 mm. Es la medida más mencionada, pero no el único factor de ajuste.' },
51
+ { term: 'Ancho entre Asas (L2L)', definition: 'La distancia entre las asas superior e inferior donde se engancha la correa. Determina si el reloj sobresale de tu muñeca. Un reloj de 40 mm con 50 mm L2L se ve más grande que uno de 42 mm con 46 mm L2L.' },
52
+ { term: 'Anchura Plana de Muñeca', definition: 'La anchura de la superficie superior de tu muñeca, a diferencia de su perímetro. Aproximadamente: perímetro de muñeca / π menos 2-4 cm. Es la dimensión sobre la que realmente se asienta el reloj.' },
53
+ { term: 'Relación Caja-Muñeca', definition: 'Diámetro de caja dividido por anchura de muñeca. Una relación de 0.6-0.75 (60-75 %) se considera el ajuste proporcional clásico.' },
54
+ ]
55
+ },
56
+
57
+ { type: 'title', text: '¿Qué Tamaño de Reloj se Adapta a Mi Muñeca?', level: 3 },
58
+ {
59
+ type: 'table', headers: ['Perímetro de Muñeca', 'Anchura Plana (aprox.)', 'Diámetro Ideal de Caja', 'Ancho Asas Máximo', 'Ideal Para'], rows: [
60
+ ['14-15 cm (5.5-5.9 in)', '38-42 mm', '30-34 mm', '38-42 mm', 'Relojes vintage y de vestir'],
61
+ ['15-16 cm (5.9-6.3 in)', '40-44 mm', '34-36 mm', '40-44 mm', 'Relojes clásicos pequeños'],
62
+ ['16-17 cm (6.3-6.7 in)', '42-46 mm', '36-39 mm', '42-46 mm', 'Talla versátil de uso diario'],
63
+ ['17-18 cm (6.7-7.1 in)', '44-48 mm', '38-42 mm', '44-48 mm', 'Punto óptimo para la mayoría de marcas'],
64
+ ['18-19 cm (7.1-7.5 in)', '46-50 mm', '40-44 mm', '46-50 mm', 'Relojes de buceo y GMT'],
65
+ ['19-20 cm (7.5-7.9 in)', '48-52 mm', '42-46 mm', '48-52 mm', 'Relojes herramienta y piloto'],
66
+ ['20-21 cm (7.9-8.3 in)', '50-54 mm', '44-48 mm', '50-54 mm', 'Relojes sobredimensionados y flieger'],
67
+ ]
68
+ },
69
+
70
+ { type: 'title', text: 'Cómo Medir tu Muñeca para un Reloj', level: 3 },
71
+ {
72
+ type: 'list', items: [
73
+ 'Envuelve una cinta métrica flexible alrededor de tu muñeca justo detrás del hueso (estiloides cubital). Debe quedar ajustada, no apretada.',
74
+ 'Si no tienes cinta, usa un cordel o un cable, marca la superposición y luego mide con una regla.',
75
+ 'Anota la medida en centímetros o pulgadas. La media en muñecas masculinas es 17-19 cm (6.7-7.5 in); en femeninas, 14-16 cm (5.5-6.3 in).',
76
+ 'Para estimar la anchura plana de tu muñeca, resta 2-4 cm del perímetro o usa la estimación automática de la herramienta.',
77
+ ]
78
+ },
79
+
80
+ { type: 'diagnostic', variant: 'info', title: 'El Ancho entre Asas es el Límite Real', icon: 'mdi:ruler', html: 'La mayoría se fija en el <strong>diámetro de caja</strong>, pero el <strong>ancho entre asas</strong> es lo que realmente determina si un reloj te queda bien. Un reloj con 48 mm L2L en una muñeca plana de 55 mm (17 cm de perímetro) ocupa el 87 % de la anchura. Por encima del 65 %, las asas empiezan a acercarse al borde de la muñeca. <strong>Revisa siempre el L2L primero.</strong>' },
81
+
82
+ { type: 'tip', title: '¿cm o Pulgadas? Usa lo que Conozcas', html: 'La herramienta ahora admite unidades métricas e imperiales. Mide tu muñeca en el sistema que uses a diario. Las dimensiones de la caja del reloj siempre están <strong>en milímetros</strong> (incluso en EE. UU.), así que el diámetro y el L2L se quedan en mm; solo la medida de la muñeca cambia. Esto refleja cómo funciona la industria relojera.' },
83
+
84
+ {
85
+ type: 'summary', title: 'Lista Rápida Antes de Comprar', items: [
86
+ 'Mide el perímetro de tu muñeca e introdúcelo en la herramienta.',
87
+ 'Consulta el ancho entre asas del reloj, no solo el diámetro de caja.',
88
+ 'El reloj debería ocupar entre el 60 y el 75 % de la anchura plana de tu muñeca para un ajuste clásico.',
89
+ 'Si las asas sobresalen de los bordes de tu muñeca, el reloj se sentirá demasiado grande sin importar el diámetro.',
90
+ 'Usa la herramienta para comparar varios relojes lado a lado antes de decidir tu compra.',
91
+ ]
92
+ },
93
+ ],
94
+ faq: [
95
+ {
96
+ question: '¿Cómo mido mi muñeca para un reloj?',
97
+ answer: 'Usa una cinta métrica flexible alrededor del hueso de la muñeca. Otra opción: enrolla un cordel, marca la superposición y mide con una regla. La media es 17-19 cm en hombres y 14-16 cm en mujeres.',
98
+ },
99
+ {
100
+ question: '¿Qué es el ancho entre asas y por qué importa?',
101
+ answer: 'Es la distancia entre las asas superior e inferior. Determina si el reloj sobresale de tu muñeca. Un reloj con 48 mm L2L en una muñeca de 17 cm (≈55 mm planos) resulta proporcionado al 87 %. Por encima del 65 % empieza a sobresalir.',
102
+ },
103
+ {
104
+ question: '¿Qué tamaño de reloj le queda a una muñeca de 17 cm?',
105
+ answer: 'Una muñeca de 17 cm (≈55 mm planos) admite cómodamente relojes de 36-42 mm de diámetro y 44-50 mm L2L. El punto óptimo es 38-40 mm con 46-48 mm L2L.',
106
+ },
107
+ ],
108
+ bibliography,
109
+ howTo: [
110
+ {
111
+ name: 'Introduce el tamaño de muñeca',
112
+ text: 'Escribe el perímetro de tu muñeca en centímetros. La herramienta actualiza la silueta visual de la muñeca.',
113
+ },
114
+ {
115
+ name: 'Introduce las dimensiones del reloj',
116
+ text: 'Indica el diámetro de caja, el ancho entre asas y el grosor en milímetros.',
117
+ },
118
+ {
119
+ name: 'Añade y compara',
120
+ text: 'Haz clic en «Añadir Reloj» para guardarlo. Añade varios relojes y alterna entre ellos para comparar el ajuste.',
121
+ },
122
+ {
123
+ name: 'Interpreta el color',
124
+ text: 'Verde = excelente, amarillo = justo, rojo = demasiado grande para tu muñeca.',
125
+ },
126
+ ],
127
+ schemas: [
128
+ {
129
+ '@context': 'https://schema.org',
130
+ '@type': 'FAQPage',
131
+ 'mainEntity': [
132
+ {
133
+ '@type': 'Question',
134
+ 'name': '¿Cómo mido mi muñeca para un reloj?',
135
+ 'acceptedAnswer': {
136
+ '@type': 'Answer',
137
+ 'text': 'Usa una cinta métrica flexible alrededor del hueso de la muñeca. La media es 17-19 cm para hombres y 14-16 cm para mujeres.',
138
+ },
139
+ },
140
+ {
141
+ '@type': 'Question',
142
+ 'name': '¿Qué es el ancho entre asas y por qué importa?',
143
+ 'acceptedAnswer': {
144
+ '@type': 'Answer',
145
+ 'text': 'El ancho entre asas es la distancia entre las asas superior e inferior. Determina si el reloj sobresale de la muñeca.',
146
+ },
147
+ },
148
+ {
149
+ '@type': 'Question',
150
+ 'name': '¿Qué tamaño de reloj le queda a una muñeca de 17 cm?',
151
+ 'acceptedAnswer': {
152
+ '@type': 'Answer',
153
+ 'text': 'Una muñeca de 17 cm admite relojes de 36-42 mm de diámetro con 44-50 mm L2L. El punto óptimo es 38-40 mm con 46-48 mm L2L.',
154
+ },
155
+ },
156
+ ],
157
+ },
158
+ {
159
+ '@context': 'https://schema.org',
160
+ '@type': 'SoftwareApplication',
161
+ 'name': 'Watch Size Comparator',
162
+ 'operatingSystem': 'All',
163
+ 'applicationCategory': 'UtilitiesApplication',
164
+ 'browserRequirements': 'Requires HTML5. Requires JavaScript.',
165
+ },
166
+ {
167
+ '@context': 'https://schema.org',
168
+ '@type': 'HowTo',
169
+ 'name': 'How to compare watch sizes',
170
+ 'step': [
171
+ {
172
+ '@type': 'HowToStep',
173
+ 'name': 'Enter your wrist size',
174
+ 'text': 'Type your wrist circumference in centimeters.',
175
+ },
176
+ {
177
+ '@type': 'HowToStep',
178
+ 'name': 'Enter watch dimensions',
179
+ 'text': 'Input case diameter, lug-to-lug, and thickness.',
180
+ },
181
+ {
182
+ '@type': 'HowToStep',
183
+ 'name': 'Add and compare',
184
+ 'text': 'Click Add Watch to save it. Add multiple watches to compare.',
185
+ },
186
+ ],
187
+ },
188
+ ],
189
+ };