@jjlmoya/utils-chrono 1.2.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 (277) hide show
  1. package/package.json +65 -0
  2. package/scripts/postinstall.mjs +27 -0
  3. package/src/category/ChronoCategorySEO.astro +8 -0
  4. package/src/category/i18n/de.ts +23 -0
  5. package/src/category/i18n/en.ts +23 -0
  6. package/src/category/i18n/es.ts +23 -0
  7. package/src/category/i18n/fr.ts +23 -0
  8. package/src/category/i18n/id.ts +23 -0
  9. package/src/category/i18n/it.ts +23 -0
  10. package/src/category/i18n/ja.ts +23 -0
  11. package/src/category/i18n/ko.ts +23 -0
  12. package/src/category/i18n/nl.ts +23 -0
  13. package/src/category/i18n/pl.ts +23 -0
  14. package/src/category/i18n/pt.ts +23 -0
  15. package/src/category/i18n/ru.ts +23 -0
  16. package/src/category/i18n/sv.ts +23 -0
  17. package/src/category/i18n/tr.ts +23 -0
  18. package/src/category/i18n/zh.ts +23 -0
  19. package/src/category/index.ts +42 -0
  20. package/src/components/PreviewNavSidebar.astro +116 -0
  21. package/src/components/PreviewToolbar.astro +143 -0
  22. package/src/data.ts +11 -0
  23. package/src/entries.ts +32 -0
  24. package/src/env.d.ts +5 -0
  25. package/src/index.ts +28 -0
  26. package/src/layouts/PreviewLayout.astro +117 -0
  27. package/src/pages/[locale]/[slug].astro +161 -0
  28. package/src/pages/[locale].astro +251 -0
  29. package/src/pages/index.astro +4 -0
  30. package/src/tests/faq_count.test.ts +19 -0
  31. package/src/tests/i18n_coverage.test.ts +36 -0
  32. package/src/tests/locale_completeness.test.ts +29 -0
  33. package/src/tests/mocks/astro_mock.js +2 -0
  34. package/src/tests/no_h1_in_components.test.ts +48 -0
  35. package/src/tests/schemas_fulfillment.test.ts +23 -0
  36. package/src/tests/seo_length.test.ts +22 -0
  37. package/src/tests/shared-test-helpers.ts +56 -0
  38. package/src/tests/slug_language_code_format.test.ts +23 -0
  39. package/src/tests/slug_uniqueness.test.ts +81 -0
  40. package/src/tests/title_quality.test.ts +55 -0
  41. package/src/tests/tool_exports.test.ts +34 -0
  42. package/src/tests/tool_validation.test.ts +18 -0
  43. package/src/tool/beat-rate-converter/beat-rate-converter.css +301 -0
  44. package/src/tool/beat-rate-converter/bibliography.astro +16 -0
  45. package/src/tool/beat-rate-converter/bibliography.ts +12 -0
  46. package/src/tool/beat-rate-converter/client.ts +46 -0
  47. package/src/tool/beat-rate-converter/component.astro +15 -0
  48. package/src/tool/beat-rate-converter/components/ConverterPanel.astro +87 -0
  49. package/src/tool/beat-rate-converter/entry.ts +42 -0
  50. package/src/tool/beat-rate-converter/i18n/de.ts +138 -0
  51. package/src/tool/beat-rate-converter/i18n/en.ts +138 -0
  52. package/src/tool/beat-rate-converter/i18n/es.ts +138 -0
  53. package/src/tool/beat-rate-converter/i18n/fr.ts +138 -0
  54. package/src/tool/beat-rate-converter/i18n/id.ts +138 -0
  55. package/src/tool/beat-rate-converter/i18n/it.ts +138 -0
  56. package/src/tool/beat-rate-converter/i18n/ja.ts +138 -0
  57. package/src/tool/beat-rate-converter/i18n/ko.ts +138 -0
  58. package/src/tool/beat-rate-converter/i18n/nl.ts +138 -0
  59. package/src/tool/beat-rate-converter/i18n/pl.ts +138 -0
  60. package/src/tool/beat-rate-converter/i18n/pt.ts +138 -0
  61. package/src/tool/beat-rate-converter/i18n/ru.ts +138 -0
  62. package/src/tool/beat-rate-converter/i18n/sv.ts +138 -0
  63. package/src/tool/beat-rate-converter/i18n/tr.ts +138 -0
  64. package/src/tool/beat-rate-converter/i18n/zh.ts +138 -0
  65. package/src/tool/beat-rate-converter/index.ts +11 -0
  66. package/src/tool/beat-rate-converter/seo.astro +16 -0
  67. package/src/tool/crown-reference-guide/bibliography.astro +16 -0
  68. package/src/tool/crown-reference-guide/bibliography.ts +20 -0
  69. package/src/tool/crown-reference-guide/client.ts +193 -0
  70. package/src/tool/crown-reference-guide/component.astro +69 -0
  71. package/src/tool/crown-reference-guide/components/CrownView.astro +40 -0
  72. package/src/tool/crown-reference-guide/components/MovementSelector.astro +26 -0
  73. package/src/tool/crown-reference-guide/components/PositionPanel.astro +59 -0
  74. package/src/tool/crown-reference-guide/crown-reference-guide.css +383 -0
  75. package/src/tool/crown-reference-guide/entry.ts +60 -0
  76. package/src/tool/crown-reference-guide/i18n/de.ts +207 -0
  77. package/src/tool/crown-reference-guide/i18n/en.ts +207 -0
  78. package/src/tool/crown-reference-guide/i18n/es.ts +207 -0
  79. package/src/tool/crown-reference-guide/i18n/fr.ts +207 -0
  80. package/src/tool/crown-reference-guide/i18n/id.ts +207 -0
  81. package/src/tool/crown-reference-guide/i18n/it.ts +207 -0
  82. package/src/tool/crown-reference-guide/i18n/ja.ts +207 -0
  83. package/src/tool/crown-reference-guide/i18n/ko.ts +207 -0
  84. package/src/tool/crown-reference-guide/i18n/nl.ts +207 -0
  85. package/src/tool/crown-reference-guide/i18n/pl.ts +207 -0
  86. package/src/tool/crown-reference-guide/i18n/pt.ts +207 -0
  87. package/src/tool/crown-reference-guide/i18n/ru.ts +207 -0
  88. package/src/tool/crown-reference-guide/i18n/sv.ts +207 -0
  89. package/src/tool/crown-reference-guide/i18n/tr.ts +207 -0
  90. package/src/tool/crown-reference-guide/i18n/zh.ts +207 -0
  91. package/src/tool/crown-reference-guide/index.ts +11 -0
  92. package/src/tool/crown-reference-guide/seo.astro +16 -0
  93. package/src/tool/crown-reference-guide/utils.ts +0 -0
  94. package/src/tool/demagnetizing-timer/bibliography.astro +16 -0
  95. package/src/tool/demagnetizing-timer/bibliography.ts +12 -0
  96. package/src/tool/demagnetizing-timer/client.ts +221 -0
  97. package/src/tool/demagnetizing-timer/component.astro +15 -0
  98. package/src/tool/demagnetizing-timer/components/TimerPanel.astro +92 -0
  99. package/src/tool/demagnetizing-timer/demagnetizing-timer.css +389 -0
  100. package/src/tool/demagnetizing-timer/entry.ts +50 -0
  101. package/src/tool/demagnetizing-timer/helpers/field.ts +134 -0
  102. package/src/tool/demagnetizing-timer/i18n/de.ts +143 -0
  103. package/src/tool/demagnetizing-timer/i18n/en.ts +143 -0
  104. package/src/tool/demagnetizing-timer/i18n/es.ts +143 -0
  105. package/src/tool/demagnetizing-timer/i18n/fr.ts +143 -0
  106. package/src/tool/demagnetizing-timer/i18n/id.ts +143 -0
  107. package/src/tool/demagnetizing-timer/i18n/it.ts +143 -0
  108. package/src/tool/demagnetizing-timer/i18n/ja.ts +143 -0
  109. package/src/tool/demagnetizing-timer/i18n/ko.ts +143 -0
  110. package/src/tool/demagnetizing-timer/i18n/nl.ts +143 -0
  111. package/src/tool/demagnetizing-timer/i18n/pl.ts +143 -0
  112. package/src/tool/demagnetizing-timer/i18n/pt.ts +143 -0
  113. package/src/tool/demagnetizing-timer/i18n/ru.ts +143 -0
  114. package/src/tool/demagnetizing-timer/i18n/sv.ts +143 -0
  115. package/src/tool/demagnetizing-timer/i18n/tr.ts +143 -0
  116. package/src/tool/demagnetizing-timer/i18n/zh.ts +143 -0
  117. package/src/tool/demagnetizing-timer/index.ts +11 -0
  118. package/src/tool/demagnetizing-timer/seo.astro +16 -0
  119. package/src/tool/demagnetizing-timer/utils.ts +0 -0
  120. package/src/tool/power-reserve-estimator/bibliography.astro +16 -0
  121. package/src/tool/power-reserve-estimator/bibliography.ts +16 -0
  122. package/src/tool/power-reserve-estimator/client.ts +139 -0
  123. package/src/tool/power-reserve-estimator/component.astro +15 -0
  124. package/src/tool/power-reserve-estimator/components/EstimatorPanel.astro +150 -0
  125. package/src/tool/power-reserve-estimator/entry.ts +51 -0
  126. package/src/tool/power-reserve-estimator/i18n/de.ts +158 -0
  127. package/src/tool/power-reserve-estimator/i18n/en.ts +158 -0
  128. package/src/tool/power-reserve-estimator/i18n/es.ts +158 -0
  129. package/src/tool/power-reserve-estimator/i18n/fr.ts +158 -0
  130. package/src/tool/power-reserve-estimator/i18n/id.ts +158 -0
  131. package/src/tool/power-reserve-estimator/i18n/it.ts +158 -0
  132. package/src/tool/power-reserve-estimator/i18n/ja.ts +158 -0
  133. package/src/tool/power-reserve-estimator/i18n/ko.ts +158 -0
  134. package/src/tool/power-reserve-estimator/i18n/nl.ts +158 -0
  135. package/src/tool/power-reserve-estimator/i18n/pl.ts +158 -0
  136. package/src/tool/power-reserve-estimator/i18n/pt.ts +158 -0
  137. package/src/tool/power-reserve-estimator/i18n/ru.ts +158 -0
  138. package/src/tool/power-reserve-estimator/i18n/sv.ts +158 -0
  139. package/src/tool/power-reserve-estimator/i18n/tr.ts +158 -0
  140. package/src/tool/power-reserve-estimator/i18n/zh.ts +158 -0
  141. package/src/tool/power-reserve-estimator/index.ts +11 -0
  142. package/src/tool/power-reserve-estimator/power-reserve-estimator.css +402 -0
  143. package/src/tool/power-reserve-estimator/seo.astro +16 -0
  144. package/src/tool/strap-taper-calculator/bibliography.astro +16 -0
  145. package/src/tool/strap-taper-calculator/bibliography.ts +12 -0
  146. package/src/tool/strap-taper-calculator/client.ts +129 -0
  147. package/src/tool/strap-taper-calculator/component.astro +15 -0
  148. package/src/tool/strap-taper-calculator/components/CalculatorPanel.astro +114 -0
  149. package/src/tool/strap-taper-calculator/entry.ts +56 -0
  150. package/src/tool/strap-taper-calculator/i18n/de.ts +152 -0
  151. package/src/tool/strap-taper-calculator/i18n/en.ts +152 -0
  152. package/src/tool/strap-taper-calculator/i18n/es.ts +152 -0
  153. package/src/tool/strap-taper-calculator/i18n/fr.ts +152 -0
  154. package/src/tool/strap-taper-calculator/i18n/id.ts +152 -0
  155. package/src/tool/strap-taper-calculator/i18n/it.ts +152 -0
  156. package/src/tool/strap-taper-calculator/i18n/ja.ts +152 -0
  157. package/src/tool/strap-taper-calculator/i18n/ko.ts +152 -0
  158. package/src/tool/strap-taper-calculator/i18n/nl.ts +152 -0
  159. package/src/tool/strap-taper-calculator/i18n/pl.ts +152 -0
  160. package/src/tool/strap-taper-calculator/i18n/pt.ts +152 -0
  161. package/src/tool/strap-taper-calculator/i18n/ru.ts +152 -0
  162. package/src/tool/strap-taper-calculator/i18n/sv.ts +152 -0
  163. package/src/tool/strap-taper-calculator/i18n/tr.ts +152 -0
  164. package/src/tool/strap-taper-calculator/i18n/zh.ts +152 -0
  165. package/src/tool/strap-taper-calculator/index.ts +11 -0
  166. package/src/tool/strap-taper-calculator/seo.astro +16 -0
  167. package/src/tool/strap-taper-calculator/strap-taper-calculator.css +320 -0
  168. package/src/tool/watch-accuracy-tracker/bibliography.astro +16 -0
  169. package/src/tool/watch-accuracy-tracker/bibliography.ts +12 -0
  170. package/src/tool/watch-accuracy-tracker/chart.ts +126 -0
  171. package/src/tool/watch-accuracy-tracker/client.ts +287 -0
  172. package/src/tool/watch-accuracy-tracker/component.astro +35 -0
  173. package/src/tool/watch-accuracy-tracker/components/AccuracyTracker.astro +96 -0
  174. package/src/tool/watch-accuracy-tracker/components/DriftPredictor.astro +126 -0
  175. package/src/tool/watch-accuracy-tracker/components/LogHistory.astro +66 -0
  176. package/src/tool/watch-accuracy-tracker/entry.ts +94 -0
  177. package/src/tool/watch-accuracy-tracker/i18n/de.ts +167 -0
  178. package/src/tool/watch-accuracy-tracker/i18n/en.ts +167 -0
  179. package/src/tool/watch-accuracy-tracker/i18n/es.ts +167 -0
  180. package/src/tool/watch-accuracy-tracker/i18n/fr.ts +167 -0
  181. package/src/tool/watch-accuracy-tracker/i18n/id.ts +167 -0
  182. package/src/tool/watch-accuracy-tracker/i18n/it.ts +167 -0
  183. package/src/tool/watch-accuracy-tracker/i18n/ja.ts +167 -0
  184. package/src/tool/watch-accuracy-tracker/i18n/ko.ts +167 -0
  185. package/src/tool/watch-accuracy-tracker/i18n/nl.ts +167 -0
  186. package/src/tool/watch-accuracy-tracker/i18n/pl.ts +167 -0
  187. package/src/tool/watch-accuracy-tracker/i18n/pt.ts +167 -0
  188. package/src/tool/watch-accuracy-tracker/i18n/ru.ts +167 -0
  189. package/src/tool/watch-accuracy-tracker/i18n/sv.ts +167 -0
  190. package/src/tool/watch-accuracy-tracker/i18n/tr.ts +167 -0
  191. package/src/tool/watch-accuracy-tracker/i18n/zh.ts +167 -0
  192. package/src/tool/watch-accuracy-tracker/index.ts +9 -0
  193. package/src/tool/watch-accuracy-tracker/logger.ts +105 -0
  194. package/src/tool/watch-accuracy-tracker/seo.astro +16 -0
  195. package/src/tool/watch-accuracy-tracker/utils.ts +99 -0
  196. package/src/tool/watch-accuracy-tracker/watch-accuracy-tracker.css +564 -0
  197. package/src/tool/watch-savings-planner/bibliography.astro +16 -0
  198. package/src/tool/watch-savings-planner/bibliography.ts +8 -0
  199. package/src/tool/watch-savings-planner/client.ts +271 -0
  200. package/src/tool/watch-savings-planner/component.astro +33 -0
  201. package/src/tool/watch-savings-planner/components/AddGoalForm.astro +49 -0
  202. package/src/tool/watch-savings-planner/components/GoalCard.astro +58 -0
  203. package/src/tool/watch-savings-planner/entry.ts +62 -0
  204. package/src/tool/watch-savings-planner/i18n/de.ts +153 -0
  205. package/src/tool/watch-savings-planner/i18n/en.ts +155 -0
  206. package/src/tool/watch-savings-planner/i18n/es.ts +153 -0
  207. package/src/tool/watch-savings-planner/i18n/fr.ts +153 -0
  208. package/src/tool/watch-savings-planner/i18n/id.ts +153 -0
  209. package/src/tool/watch-savings-planner/i18n/it.ts +153 -0
  210. package/src/tool/watch-savings-planner/i18n/ja.ts +153 -0
  211. package/src/tool/watch-savings-planner/i18n/ko.ts +153 -0
  212. package/src/tool/watch-savings-planner/i18n/nl.ts +153 -0
  213. package/src/tool/watch-savings-planner/i18n/pl.ts +153 -0
  214. package/src/tool/watch-savings-planner/i18n/pt.ts +153 -0
  215. package/src/tool/watch-savings-planner/i18n/ru.ts +153 -0
  216. package/src/tool/watch-savings-planner/i18n/sv.ts +153 -0
  217. package/src/tool/watch-savings-planner/i18n/tr.ts +153 -0
  218. package/src/tool/watch-savings-planner/i18n/zh.ts +153 -0
  219. package/src/tool/watch-savings-planner/index.ts +11 -0
  220. package/src/tool/watch-savings-planner/seo.astro +16 -0
  221. package/src/tool/watch-savings-planner/utils.ts +0 -0
  222. package/src/tool/watch-savings-planner/watch-savings-planner.css +460 -0
  223. package/src/tool/water-resistance-converter/bibliography.astro +16 -0
  224. package/src/tool/water-resistance-converter/bibliography.ts +16 -0
  225. package/src/tool/water-resistance-converter/client.ts +56 -0
  226. package/src/tool/water-resistance-converter/component.astro +15 -0
  227. package/src/tool/water-resistance-converter/components/ConverterPanel.astro +113 -0
  228. package/src/tool/water-resistance-converter/entry.ts +52 -0
  229. package/src/tool/water-resistance-converter/i18n/de.ts +148 -0
  230. package/src/tool/water-resistance-converter/i18n/en.ts +148 -0
  231. package/src/tool/water-resistance-converter/i18n/es.ts +148 -0
  232. package/src/tool/water-resistance-converter/i18n/fr.ts +148 -0
  233. package/src/tool/water-resistance-converter/i18n/id.ts +148 -0
  234. package/src/tool/water-resistance-converter/i18n/it.ts +148 -0
  235. package/src/tool/water-resistance-converter/i18n/ja.ts +148 -0
  236. package/src/tool/water-resistance-converter/i18n/ko.ts +148 -0
  237. package/src/tool/water-resistance-converter/i18n/nl.ts +148 -0
  238. package/src/tool/water-resistance-converter/i18n/pl.ts +148 -0
  239. package/src/tool/water-resistance-converter/i18n/pt.ts +148 -0
  240. package/src/tool/water-resistance-converter/i18n/ru.ts +148 -0
  241. package/src/tool/water-resistance-converter/i18n/sv.ts +148 -0
  242. package/src/tool/water-resistance-converter/i18n/tr.ts +148 -0
  243. package/src/tool/water-resistance-converter/i18n/zh.ts +148 -0
  244. package/src/tool/water-resistance-converter/index.ts +11 -0
  245. package/src/tool/water-resistance-converter/seo.astro +16 -0
  246. package/src/tool/water-resistance-converter/water-resistance-converter.css +254 -0
  247. package/src/tool/wrist-presence-calculator/bibliography.astro +16 -0
  248. package/src/tool/wrist-presence-calculator/bibliography.ts +12 -0
  249. package/src/tool/wrist-presence-calculator/client.ts +180 -0
  250. package/src/tool/wrist-presence-calculator/component.astro +23 -0
  251. package/src/tool/wrist-presence-calculator/components/CalculatorInputs.astro +97 -0
  252. package/src/tool/wrist-presence-calculator/components/FitResult.astro +68 -0
  253. package/src/tool/wrist-presence-calculator/components/Visualizer.astro +16 -0
  254. package/src/tool/wrist-presence-calculator/entry.ts +59 -0
  255. package/src/tool/wrist-presence-calculator/helpers/canvas.ts +189 -0
  256. package/src/tool/wrist-presence-calculator/helpers/results.ts +78 -0
  257. package/src/tool/wrist-presence-calculator/i18n/de.ts +139 -0
  258. package/src/tool/wrist-presence-calculator/i18n/en.ts +155 -0
  259. package/src/tool/wrist-presence-calculator/i18n/es.ts +139 -0
  260. package/src/tool/wrist-presence-calculator/i18n/fr.ts +139 -0
  261. package/src/tool/wrist-presence-calculator/i18n/id.ts +139 -0
  262. package/src/tool/wrist-presence-calculator/i18n/it.ts +139 -0
  263. package/src/tool/wrist-presence-calculator/i18n/ja.ts +139 -0
  264. package/src/tool/wrist-presence-calculator/i18n/ko.ts +139 -0
  265. package/src/tool/wrist-presence-calculator/i18n/nl.ts +139 -0
  266. package/src/tool/wrist-presence-calculator/i18n/pl.ts +139 -0
  267. package/src/tool/wrist-presence-calculator/i18n/pt.ts +139 -0
  268. package/src/tool/wrist-presence-calculator/i18n/ru.ts +139 -0
  269. package/src/tool/wrist-presence-calculator/i18n/sv.ts +139 -0
  270. package/src/tool/wrist-presence-calculator/i18n/tr.ts +139 -0
  271. package/src/tool/wrist-presence-calculator/i18n/zh.ts +155 -0
  272. package/src/tool/wrist-presence-calculator/index.ts +11 -0
  273. package/src/tool/wrist-presence-calculator/seo.astro +16 -0
  274. package/src/tool/wrist-presence-calculator/utils.ts +30 -0
  275. package/src/tool/wrist-presence-calculator/wrist-presence-calculator.css +372 -0
  276. package/src/tools.ts +26 -0
  277. package/src/types.ts +70 -0
@@ -0,0 +1,51 @@
1
+ import type { ChronoToolEntry, ToolLocaleContent } from '../../types';
2
+
3
+ export type PowerReserveEstimatorUI = {
4
+ title: string;
5
+ movementLabel: string;
6
+ selectMovement: string;
7
+ customMovement: string;
8
+ turnsLabel: string;
9
+ hoursLabel: string;
10
+ turnsInput: string;
11
+ hoursInput: string;
12
+ activityLabel: string;
13
+ activityLow: string;
14
+ activityMedium: string;
15
+ activityHigh: string;
16
+ calculate: string;
17
+ reserveRemaining: string;
18
+ hoursRemaining: string;
19
+ chargePercent: string;
20
+ resultLabel: string;
21
+ stopTimeLabel: string;
22
+ step1: string;
23
+ step2: string;
24
+ step3: string;
25
+ tipTitle: string;
26
+ tipContent: string;
27
+ };
28
+
29
+ export type PowerReserveEstimatorLocaleContent = ToolLocaleContent<PowerReserveEstimatorUI>;
30
+
31
+ export const powerReserveEstimator: ChronoToolEntry<PowerReserveEstimatorUI> = {
32
+ id: 'power-reserve-estimator',
33
+ icons: { bg: 'mdi:battery-charging', fg: 'mdi:timelapse' },
34
+ i18n: {
35
+ de: () => import('./i18n/de').then((m) => m.content),
36
+ en: () => import('./i18n/en').then((m) => m.content),
37
+ es: () => import('./i18n/es').then((m) => m.content),
38
+ fr: () => import('./i18n/fr').then((m) => m.content),
39
+ id: () => import('./i18n/id').then((m) => m.content),
40
+ it: () => import('./i18n/it').then((m) => m.content),
41
+ ja: () => import('./i18n/ja').then((m) => m.content),
42
+ ko: () => import('./i18n/ko').then((m) => m.content),
43
+ nl: () => import('./i18n/nl').then((m) => m.content),
44
+ pl: () => import('./i18n/pl').then((m) => m.content),
45
+ pt: () => import('./i18n/pt').then((m) => m.content),
46
+ ru: () => import('./i18n/ru').then((m) => m.content),
47
+ sv: () => import('./i18n/sv').then((m) => m.content),
48
+ tr: () => import('./i18n/tr').then((m) => m.content),
49
+ zh: () => import('./i18n/zh').then((m) => m.content),
50
+ },
51
+ };
@@ -0,0 +1,158 @@
1
+ import type { ToolLocaleContent } from '../../../types';
2
+ import type { PowerReserveEstimatorUI } from '../entry';
3
+ import { bibliography } from '../bibliography';
4
+
5
+ export const content: ToolLocaleContent<PowerReserveEstimatorUI> = {
6
+ slug: 'gangreserve-rechner',
7
+ title: 'Gangreserveschätzer f\u00fcr Uhren',
8
+ description: 'Berechnen Sie die verbleibende Gangreserve Ihrer Uhr anhand von Kronenumdrehungen und Tragedauer. Kompatibel mit g\u00e4ngigen ETA-, Sellita-, Miyota-, Seiko- und Rolex-Kalibern.',
9
+ ui: {
10
+ title: 'Gangreserveschätzer',
11
+ movementLabel: 'Werk',
12
+ selectMovement: 'Werk ausw\u00e4hlen',
13
+ customMovement: 'Benutzerdefiniert',
14
+ turnsLabel: 'Kronenumdrehungen',
15
+ hoursLabel: 'Tragedauer',
16
+ turnsInput: 'Umdrehungen',
17
+ hoursInput: 'Stunden',
18
+ activityLabel: 'Aktivit\u00e4t',
19
+ activityLow: 'B\u00fcro',
20
+ activityMedium: 'Gehen',
21
+ activityHigh: 'Aktiv',
22
+ calculate: 'Berechnen',
23
+ reserveRemaining: 'Verbleibende Gangreserve',
24
+ hoursRemaining: 'Verbleibend',
25
+ chargePercent: 'Ladung',
26
+ resultLabel: 'Gesch\u00e4tzte Reserve',
27
+ stopTimeLabel: 'L\u00e4uft bis',
28
+ powerReserveHours: 'Gangreserve (h)',
29
+ fullWindTurns: 'Umdrehungen bis Vollaufzug',
30
+ step1: 'W\u00e4hlen Sie Ihr Werk aus dem Dropdown-Men\u00fc.',
31
+ step2: 'Geben Sie Kronenumdrehungen und Tragedauer ein.',
32
+ step3: 'Dr\u00fccken Sie auf Berechnen, um Ihre Reserve zu sehen.',
33
+ tipTitle: 'Tipp',
34
+ tipContent: 'Handaufzugswerke werden nur durch Drehen der Krone geladen. Automatikwerke laden sich auch beim Tragen auf.',
35
+ },
36
+ seo: [
37
+ { type: 'title', text: 'Gangreserveschätzer f\u00fcr Uhren \u2014 Wie viel Reserve hat Ihr Werk noch?', level: 2 },
38
+ { type: 'paragraph', html: 'Sie m\u00f6chten wissen, wie viel Energie Ihre mechanische Uhr noch hat? Ob Sie heute Morgen die Krone gedreht oder die Uhr den ganzen Tag getragen haben \u2014 dieser Rechner zeigt Ihnen den ungef\u00e4hren Ladezustand und die verbleibenden Stunden f\u00fcr g\u00e4ngige Kaliber wie <strong>ETA, Sellita, Miyota, Seiko und Rolex</strong>.' },
39
+ { type: 'title', text: 'Wie die Gangreserve bei einer mechanischen Uhr funktioniert', level: 3 },
40
+ { type: 'paragraph', html: 'Die Gangreserve ist die in der Zugfeder gespeicherte Energiemenge. Beim Aufziehen der Krone spannen Sie die Zugfeder und speichern potenzielle Energie. Ein Automatikrotor spannt die Zugfeder ebenfalls, w\u00e4hrend Sie die Uhr tragen. Die Energie entl\u00e4dt sich dann gleichm\u00e4\u00dfig \u2014 typischerweise 2\u20133 % pro Stunde \u2014 bis die Uhr stehen bleibt.' },
41
+ { type: 'title', text: 'Kronenaufzug vs. Rotorladung', level: 3 },
42
+ { type: 'paragraph', html: 'Der manuelle Aufzug \u00fcber die Krone ist die effizienteste Methode, eine Uhr zu laden \u2014 jede volle Umdrehung gibt eine vorhersagbare Energiemenge ab, typischerweise etwa 2,5 % der Gesamtreserve. Das Tragen der Uhr l\u00e4dt langsamer und h\u00e4ngt vom Aktivit\u00e4tsniveau ab: Ein B\u00fcroangestellter l\u00e4dt etwa 4\u20136 % pro Stunde, bei aktiver Bewegung sind es 8\u201310 %. Dieser Rechner verwendet einen konservativen Durchschnitt.' },
43
+ { type: 'title', text: 'Warum die Gangreserve-Sch\u00e4tzung wichtig ist', level: 3 },
44
+ { type: 'paragraph', html: 'Wenn Sie den Ladezustand Ihrer Uhr kennen, vermeiden Sie unerwartete Stillst\u00e4nde. Eine Uhr, die \u00fcber Nacht stehen bleibt, braucht m\u00f6glicherweise mehr Aufzug vor dem Schlafengehen oder wird nicht genug getragen. Nutzen Sie dieses Tool, um Ihre Ladegewohnheiten zu verstehen und Ihre Automatik am Laufen zu halten.' },
45
+ ],
46
+ faq: [
47
+ {
48
+ question: 'Wie viel l\u00e4dt eine Kronenumdrehung die Uhr?',
49
+ answer: 'Das h\u00e4ngt vom Werk ab. Die meisten Automatikkaliber erreichen nach 30\u201340 Umdrehungen den Vollaufzug, sodass jede Umdrehung etwa 2,5\u20133,3 % der Gesamtreserve ausmacht. Handaufzugswerke wie das Unitas 6498 ben\u00f6tigen ebenfalls etwa 35 Umdrehungen f\u00fcr einen Vollaufzug.',
50
+ },
51
+ {
52
+ question: 'L\u00e4dt das Tragen der Uhr genauso stark wie der Aufzug?',
53
+ answer: 'Das Tragen l\u00e4dt langsamer und variabler. Bei B\u00fcroarbeit laden Sie etwa 4\u20136 % pro Stunde \u00fcber den Rotor. Bei aktiver Bewegung (Gehen, Sport) k\u00f6nnen es 8\u201310 % pro Stunde sein. Das Aufziehen von Hand ist schneller und zuverl\u00e4ssiger.',
54
+ },
55
+ {
56
+ question: 'Wie viel Reserve verliert eine Uhr pro Stunde?',
57
+ answer: 'Der Verlust ist konstant: Teilen Sie 100 durch die Gangreserve in Stunden. Ein 38-Stunden-Werk verliert etwa 2,6 % pro Stunde, ein 42-Stunden-Werk 2,4 % und ein 70-Stunden-Werk etwa 1,4 % pro Stunde.',
58
+ },
59
+ {
60
+ question: 'Kann ich meine Uhr \u00fcberdrehen?',
61
+ answer: 'Moderne Automatikwerke haben eine Rutschkupplung, die ein \u00dcberdrehen verhindert. Sobald die Zugfeder vollst\u00e4ndig gespannt ist, rutschen weitere Umdrehungen einfach durch. Handaufzugswerke verf\u00fcgen ebenfalls \u00fcber einen Anschlag, wobei ein gewaltsames Weiterdrehen die Zugfeder besch\u00e4digen kann.',
62
+ },
63
+ ],
64
+ bibliography,
65
+ howTo: [
66
+ {
67
+ name: 'Werk ausw\u00e4hlen',
68
+ text: 'W\u00e4hlen Sie Ihr Uhrwerk aus dem Dropdown-Men\u00fc. Falls nicht aufgef\u00fchrt, w\u00e4hlen Sie Benutzerdefiniert und geben Sie Gangreserve sowie Umdrehungen bis Vollaufzug ein.',
69
+ },
70
+ {
71
+ name: 'Eingaben machen',
72
+ text: 'Geben Sie ein, wie viele Kronenumdrehungen Sie gemacht oder wie viele Stunden Sie die Uhr heute getragen haben. Sie k\u00f6nnen beides ausf\u00fcllen, um eine kombinierte Sch\u00e4tzung zu erhalten.',
73
+ },
74
+ {
75
+ name: 'Berechnen',
76
+ text: 'Dr\u00fccken Sie auf Berechnen. Das Ergebnis zeigt den gesch\u00e4tzten Ladestand in Prozent und die verbleibenden Stunden Gangreserve.',
77
+ },
78
+ {
79
+ name: 'Gewohnheiten anpassen',
80
+ text: 'Nutzen Sie die Ergebnisse, um zu entscheiden, ob Sie vor dem Schlafengehen mehr aufziehen oder die Uhr tags\u00fcber l\u00e4nger tragen m\u00fcssen, damit sie am Laufen bleibt.',
81
+ },
82
+ ],
83
+ schemas: [
84
+ {
85
+ '@context': 'https://schema.org',
86
+ '@type': 'FAQPage',
87
+ 'mainEntity': [
88
+ {
89
+ '@type': 'Question',
90
+ 'name': 'Wie viel lädt eine Kronenumdrehung die Uhr?',
91
+ 'acceptedAnswer': {
92
+ '@type': 'Answer',
93
+ 'text': 'Das hängt vom Werk ab. Die meisten Automatikkaliber erreichen nach 30–40 Umdrehungen den Vollaufzug, sodass jede Umdrehung etwa 2,5–3,3 % der Gesamtreserve ausmacht. Handaufzugswerke wie das Unitas 6498 benötigen ebenfalls etwa 35 Umdrehungen für einen Vollaufzug.',
94
+ },
95
+ },
96
+ {
97
+ '@type': 'Question',
98
+ 'name': 'Lädt das Tragen der Uhr genauso stark wie der Aufzug?',
99
+ 'acceptedAnswer': {
100
+ '@type': 'Answer',
101
+ 'text': 'Das Tragen lädt langsamer und variabler. Bei Büroarbeit laden Sie etwa 4–6 % pro Stunde über den Rotor. Bei aktiver Bewegung kann es 8–10 % pro Stunde erreichen. Das Aufziehen von Hand ist schneller und zuverlässiger.',
102
+ },
103
+ },
104
+ {
105
+ '@type': 'Question',
106
+ 'name': 'Wie viel Reserve verliert eine Uhr pro Stunde?',
107
+ 'acceptedAnswer': {
108
+ '@type': 'Answer',
109
+ 'text': 'Der Verlust ist konstant: Teilen Sie 100 durch die Gangreserve in Stunden. Ein 38-Stunden-Werk verliert etwa 2,6 % pro Stunde, ein 42-Stunden-Werk 2,4 % und ein 70-Stunden-Werk etwa 1,4 % pro Stunde.',
110
+ },
111
+ },
112
+ {
113
+ '@type': 'Question',
114
+ 'name': 'Kann ich meine Uhr überdrehen?',
115
+ 'acceptedAnswer': {
116
+ '@type': 'Answer',
117
+ 'text': 'Moderne Automatikwerke haben eine Rutschkupplung, die ein Überdrehen verhindert. Sobald die Zugfeder vollständig gespannt ist, rutschen weitere Umdrehungen einfach durch.',
118
+ },
119
+ },
120
+ ],
121
+ },
122
+ {
123
+ '@context': 'https://schema.org',
124
+ '@type': 'SoftwareApplication',
125
+ 'name': 'Gangreserveschätzer für Uhren',
126
+ 'operatingSystem': 'Alle',
127
+ 'applicationCategory': 'UtilitiesApplication',
128
+ 'browserRequirements': 'Erfordert HTML5. Erfordert JavaScript.',
129
+ },
130
+ {
131
+ '@context': 'https://schema.org',
132
+ '@type': 'HowTo',
133
+ 'name': 'So schätzen Sie die Gangreserve Ihrer Uhr',
134
+ 'step': [
135
+ {
136
+ '@type': 'HowToStep',
137
+ 'name': 'Werk auswählen',
138
+ 'text': 'Wählen Sie Ihr Uhrwerk aus dem Dropdown-Menü. Falls nicht aufgeführt, wählen Sie Benutzerdefiniert und geben Sie Gangreserve sowie Umdrehungen bis Vollaufzug ein.',
139
+ },
140
+ {
141
+ '@type': 'HowToStep',
142
+ 'name': 'Eingaben machen',
143
+ 'text': 'Geben Sie ein, wie viele Kronenumdrehungen Sie gemacht oder wie viele Stunden Sie die Uhr heute getragen haben. Sie können beides ausfüllen, um eine kombinierte Schätzung zu erhalten.',
144
+ },
145
+ {
146
+ '@type': 'HowToStep',
147
+ 'name': 'Berechnen',
148
+ 'text': 'Drücken Sie auf Berechnen. Das Ergebnis zeigt den geschätzten Ladestand in Prozent und die verbleibenden Stunden Gangreserve.',
149
+ },
150
+ {
151
+ '@type': 'HowToStep',
152
+ 'name': 'Gewohnheiten anpassen',
153
+ 'text': 'Nutzen Sie die Ergebnisse, um zu entscheiden, ob Sie vor dem Schlafengehen mehr aufziehen oder die Uhr tagsüber länger tragen müssen, damit sie am Laufen bleibt.',
154
+ },
155
+ ],
156
+ },
157
+ ],
158
+ };
@@ -0,0 +1,158 @@
1
+ import type { ToolLocaleContent } from '../../../types';
2
+ import type { PowerReserveEstimatorUI } from '../entry';
3
+ import { bibliography } from '../bibliography';
4
+
5
+ export const content: ToolLocaleContent<PowerReserveEstimatorUI> = {
6
+ slug: 'power-reserve-estimator',
7
+ title: 'Watch Power Reserve Estimator',
8
+ description: 'Estimate how much power reserve your watch has left based on crown turns and hours worn. Works with popular ETA, Sellita, Miyota, Seiko, and Rolex calibers.',
9
+ ui: {
10
+ title: 'Power Reserve Estimator',
11
+ movementLabel: 'Movement',
12
+ selectMovement: 'Select movement',
13
+ customMovement: 'Custom',
14
+ turnsLabel: 'Crown Turns',
15
+ hoursLabel: 'Wear Time',
16
+ turnsInput: 'Turns',
17
+ hoursInput: 'Hours',
18
+ activityLabel: 'Activity',
19
+ activityLow: 'Desk',
20
+ activityMedium: 'Walk',
21
+ activityHigh: 'Active',
22
+ calculate: 'Calculate',
23
+ reserveRemaining: 'Reserve Remaining',
24
+ hoursRemaining: 'Remaining',
25
+ chargePercent: 'Charge',
26
+ resultLabel: 'Estimated Reserve',
27
+ stopTimeLabel: 'Runs until',
28
+ powerReserveHours: 'Reserve (h)',
29
+ fullWindTurns: 'Turns to full',
30
+ step1: 'Select your movement from the dropdown.',
31
+ step2: 'Enter crown turns and hours worn.',
32
+ step3: 'Press Calculate to see your reserve.',
33
+ tipTitle: 'Tip',
34
+ tipContent: 'Manual-wind movements only charge when you turn the crown. Automatic movements also charge while worn.',
35
+ },
36
+ seo: [
37
+ { type: 'title', text: 'Watch Power Reserve Estimator — How Much Reserve Does Your Movement Have Left?', level: 2 },
38
+ { type: 'paragraph', html: 'Wondering how much power is left in your mechanical watch? Whether you wound the crown this morning or wore it all day, this estimator tells you the approximate charge level and remaining hours for popular calibers like <strong>ETA, Sellita, Miyota, Seiko, and Rolex</strong>.' },
39
+ { type: 'title', text: 'How Power Reserve Works in a Mechanical Watch', level: 3 },
40
+ { type: 'paragraph', html: 'The power reserve is the amount of energy stored in the mainspring. When you wind the crown, you tighten the mainspring, storing potential energy. An automatic rotor also winds the mainspring while you wear the watch. The energy then drains at a steady rate — typically 2-3% per hour — until the watch stops.' },
41
+ { type: 'title', text: 'Crown Winding vs. Rotor Charging', level: 3 },
42
+ { type: 'paragraph', html: 'Manual winding via the crown is the most efficient way to charge a watch — each full rotation adds a predictable amount of energy, typically around 2.5% of the total reserve. Wearing the watch charges more slowly and depends on your activity level: an office worker might charge 4-6% per hour, while someone active might charge 8-10%. This estimator uses a conservative average.' },
43
+ { type: 'title', text: 'Why Power Reserve Estimation Matters', level: 3 },
44
+ { type: 'paragraph', html: 'Knowing your watch\'s charge level helps avoid unexpected stops. A watch that runs down overnight may need more winding before bed, or may not be getting enough wear time. Use this tool to understand your charging habits and keep your automatic running.' },
45
+ ],
46
+ faq: [
47
+ {
48
+ question: 'How much does one crown turn charge the watch?',
49
+ answer: 'It depends on the movement. Most automatic calibers reach full wind in 30-40 turns, so each turn adds about 2.5-3.3% of the total reserve. Hand-wound movements like the Unitas 6498 also need about 35 turns for a full wind.',
50
+ },
51
+ {
52
+ question: 'Does wearing the watch charge it as much as winding?',
53
+ answer: 'Wearing charges more slowly and variably. At a desk job, you might charge 4-6% per hour through the rotor. During active movement (walking, sports), it can reach 8-10% per hour. Winding by hand is faster and more predictable.',
54
+ },
55
+ {
56
+ question: 'How much reserve does a watch lose per hour?',
57
+ answer: 'The drain is constant: divide 100 by the power reserve in hours. A 38-hour movement loses about 2.6% per hour, a 42-hour loses 2.4%, and a 70-hour loses about 1.4% per hour.',
58
+ },
59
+ {
60
+ question: 'Can I overwind my watch?',
61
+ answer: 'Modern automatic movements have a slipping clutch that prevents overwinding. Once the mainspring is fully wound, additional turns simply slip. Hand-wound movements also have a stop mechanism, though forcing past the stop can damage the mainspring.',
62
+ },
63
+ ],
64
+ bibliography,
65
+ howTo: [
66
+ {
67
+ name: 'Select your movement',
68
+ text: 'Choose your watch caliber from the dropdown. If not listed, select Custom and enter its power reserve and turns-to-full.',
69
+ },
70
+ {
71
+ name: 'Enter your input',
72
+ text: 'Type how many crown turns you gave it, or how many hours you wore it today. You can fill both for a combined estimate.',
73
+ },
74
+ {
75
+ name: 'Calculate',
76
+ text: 'Press the Calculate button. The result shows the estimated charge percentage and remaining hours of power reserve.',
77
+ },
78
+ {
79
+ name: 'Adjust your habits',
80
+ text: 'Use the results to decide if you need more winding before bed or more wear time during the day to keep the watch running.',
81
+ },
82
+ ],
83
+ schemas: [
84
+ {
85
+ '@context': 'https://schema.org',
86
+ '@type': 'FAQPage',
87
+ 'mainEntity': [
88
+ {
89
+ '@type': 'Question',
90
+ 'name': 'How much does one crown turn charge the watch?',
91
+ 'acceptedAnswer': {
92
+ '@type': 'Answer',
93
+ 'text': 'It depends on the movement. Most automatic calibers reach full wind in 30-40 turns, so each turn adds about 2.5-3.3% of the total reserve. Hand-wound movements like the Unitas 6498 also need about 35 turns for a full wind.',
94
+ },
95
+ },
96
+ {
97
+ '@type': 'Question',
98
+ 'name': 'Does wearing the watch charge it as much as winding?',
99
+ 'acceptedAnswer': {
100
+ '@type': 'Answer',
101
+ 'text': 'Wearing charges more slowly and variably. At a desk job, you might charge 4-6% per hour through the rotor. During active movement it can reach 8-10% per hour. Winding by hand is faster and more predictable.',
102
+ },
103
+ },
104
+ {
105
+ '@type': 'Question',
106
+ 'name': 'How much reserve does a watch lose per hour?',
107
+ 'acceptedAnswer': {
108
+ '@type': 'Answer',
109
+ 'text': 'The drain is constant: divide 100 by the power reserve in hours. A 38-hour movement loses about 2.6% per hour, a 42-hour loses 2.4%, and a 70-hour loses about 1.4% per hour.',
110
+ },
111
+ },
112
+ {
113
+ '@type': 'Question',
114
+ 'name': 'Can I overwind my watch?',
115
+ 'acceptedAnswer': {
116
+ '@type': 'Answer',
117
+ 'text': 'Modern automatic movements have a slipping clutch that prevents overwinding. Once the mainspring is fully wound, additional turns simply slip.',
118
+ },
119
+ },
120
+ ],
121
+ },
122
+ {
123
+ '@context': 'https://schema.org',
124
+ '@type': 'SoftwareApplication',
125
+ 'name': 'Watch Power Reserve Estimator',
126
+ 'operatingSystem': 'All',
127
+ 'applicationCategory': 'UtilitiesApplication',
128
+ 'browserRequirements': 'Requires HTML5. Requires JavaScript.',
129
+ },
130
+ {
131
+ '@context': 'https://schema.org',
132
+ '@type': 'HowTo',
133
+ 'name': 'How to estimate your watch power reserve',
134
+ 'step': [
135
+ {
136
+ '@type': 'HowToStep',
137
+ 'name': 'Select your movement',
138
+ 'text': 'Choose your watch caliber from the dropdown. If not listed, select Custom and enter its power reserve and turns-to-full.',
139
+ },
140
+ {
141
+ '@type': 'HowToStep',
142
+ 'name': 'Enter your input',
143
+ 'text': 'Type how many crown turns you gave it, or how many hours you wore it today. You can fill both for a combined estimate.',
144
+ },
145
+ {
146
+ '@type': 'HowToStep',
147
+ 'name': 'Calculate',
148
+ 'text': 'Press the Calculate button. The result shows the estimated charge percentage and remaining hours of power reserve.',
149
+ },
150
+ {
151
+ '@type': 'HowToStep',
152
+ 'name': 'Adjust your habits',
153
+ 'text': 'Use the results to decide if you need more winding before bed or more wear time during the day to keep the watch running.',
154
+ },
155
+ ],
156
+ },
157
+ ],
158
+ };
@@ -0,0 +1,158 @@
1
+ import type { ToolLocaleContent } from '../../../types';
2
+ import type { PowerReserveEstimatorUI } from '../entry';
3
+ import { bibliography } from '../bibliography';
4
+
5
+ export const content: ToolLocaleContent<PowerReserveEstimatorUI> = {
6
+ slug: 'estimador-reserva-de-marcha',
7
+ title: 'Estimador de Reserva de Marcha',
8
+ description: 'Calcule la reserva de marcha restante de su reloj seg\u00fan las vueltas de corona y las horas de uso. Compatible con calibres populares ETA, Sellita, Miyota, Seiko y Rolex.',
9
+ ui: {
10
+ title: 'Estimador de Reserva de Marcha',
11
+ movementLabel: 'Calibre',
12
+ selectMovement: 'Seleccionar calibre',
13
+ customMovement: 'Personalizado',
14
+ turnsLabel: 'Vueltas de Corona',
15
+ hoursLabel: 'Horas de Uso',
16
+ turnsInput: 'Vueltas',
17
+ hoursInput: 'Horas',
18
+ activityLabel: 'Actividad',
19
+ activityLow: 'Oficina',
20
+ activityMedium: 'Caminar',
21
+ activityHigh: 'Activo',
22
+ calculate: 'Calcular',
23
+ reserveRemaining: 'Reserva Restante',
24
+ hoursRemaining: 'Restante',
25
+ chargePercent: 'Carga',
26
+ resultLabel: 'Reserva Estimada',
27
+ stopTimeLabel: 'Funciona hasta',
28
+ powerReserveHours: 'Reserva (h)',
29
+ fullWindTurns: 'Vueltas a plena carga',
30
+ step1: 'Seleccione su calibre en el men\u00fa desplegable.',
31
+ step2: 'Ingrese las vueltas de corona y las horas de uso.',
32
+ step3: 'Presione Calcular para ver su reserva.',
33
+ tipTitle: 'Consejo',
34
+ tipContent: 'Los movimientos de cuerda manual solo se cargan al girar la corona. Los movimientos autom\u00e1ticos tambi\u00e9n se cargan mientras se usan.',
35
+ },
36
+ seo: [
37
+ { type: 'title', text: 'Estimador de Reserva de Marcha \u2014 \u00bfCu\u00e1nta reserva le queda a su movimiento?', level: 2 },
38
+ { type: 'paragraph', html: '\u00bfSe pregunta cu\u00e1nta energ\u00eda le queda a su reloj mec\u00e1nico? Ya sea que haya dado cuerda esta ma\u00f1ana o lo haya usado todo el d\u00eda, este estimador le indica el nivel de carga aproximado y las horas restantes para calibres populares como <strong>ETA, Sellita, Miyota, Seiko y Rolex</strong>.' },
39
+ { type: 'title', text: 'C\u00f3mo funciona la reserva de marcha en un reloj mec\u00e1nico', level: 3 },
40
+ { type: 'paragraph', html: 'La reserva de marcha es la cantidad de energ\u00eda almacenada en el muelle real. Al dar cuerda a la corona, tensa el muelle y almacena energ\u00eda potencial. Un rotor autom\u00e1tico tambi\u00e9n tensa el muelle mientras usa el reloj. La energ\u00eda se libera a un ritmo constante \u2014 normalmente 2\u20133 % por hora \u2014 hasta que el reloj se detiene.' },
41
+ { type: 'title', text: 'Cuerda manual vs. Carga por rotor', level: 3 },
42
+ { type: 'paragraph', html: 'La cuerda manual mediante la corona es la forma m\u00e1s eficiente de cargar un reloj: cada vuelta completa a\u00f1ade una cantidad predecible de energ\u00eda, normalmente alrededor del 2,5 % de la reserva total. Usar el reloj carga m\u00e1s lentamente y depende de su nivel de actividad: un oficinista puede cargar un 4\u20136 % por hora, mientras que una persona activa puede cargar un 8\u201310 %. Este estimador usa un promedio conservador.' },
43
+ { type: 'title', text: 'Por qu\u00e9 importa estimar la reserva de marcha', level: 3 },
44
+ { type: 'paragraph', html: 'Conocer el nivel de carga de su reloj ayuda a evitar paradas inesperadas. Si el reloj se detiene durante la noche, quiz\u00e1s necesite m\u00e1s cuerda antes de acostarse o no reciba suficiente uso diurno. Use esta herramienta para entender sus h\u00e1bitos de carga y mantener su autom\u00e1tico en funcionamiento.' },
45
+ ],
46
+ faq: [
47
+ {
48
+ question: '\u00bfCu\u00e1nto carga una vuelta de corona el reloj?',
49
+ answer: 'Depende del calibre. La mayor\u00eda de los calibres autom\u00e1ticos alcanzan la carga completa en 30\u201340 vueltas, por lo que cada vuelta a\u00f1ade entre un 2,5 y un 3,3 % de la reserva total. Los movimientos de cuerda manual como el Unitas 6498 tambi\u00e9n necesitan unas 35 vueltas para una carga completa.',
50
+ },
51
+ {
52
+ question: '\u00bfUsar el reloj lo carga tanto como darle cuerda?',
53
+ answer: 'Usarlo carga m\u00e1s lento y de forma variable. En un trabajo de oficina, puede cargar un 4\u20136 % por hora mediante el rotor. Con movimiento activo (caminar, deporte), puede alcanzar el 8\u201310 % por hora. La cuerda manual es m\u00e1s r\u00e1pida y predecible.',
54
+ },
55
+ {
56
+ question: '\u00bfCu\u00e1nta reserva pierde un reloj por hora?',
57
+ answer: 'El consumo es constante: divida 100 entre la reserva de marcha en horas. Un calibre de 38 horas pierde aproximadamente un 2,6 % por hora, uno de 42 horas pierde un 2,4 % y uno de 70 horas pierde alrededor de un 1,4 % por hora.',
58
+ },
59
+ {
60
+ question: '\u00bfPuedo darle demasiada cuerda a mi reloj?',
61
+ answer: 'Los movimientos autom\u00e1ticos modernos tienen un embrague deslizante que evita la sobrecarga. Una vez que el muelle real est\u00e1 completamente tenso, las vueltas adicionales simplemente resbalan. Los movimientos de cuerda manual tambi\u00e9n tienen un tope, aunque forzarlo puede da\u00f1ar el muelle real.',
62
+ },
63
+ ],
64
+ bibliography,
65
+ howTo: [
66
+ {
67
+ name: 'Seleccione su calibre',
68
+ text: 'Elija el calibre de su reloj en el men\u00fa desplegable. Si no aparece, seleccione Personalizado e ingrese su reserva de marcha y vueltas a plena carga.',
69
+ },
70
+ {
71
+ name: 'Ingrese sus datos',
72
+ text: 'Escriba cu\u00e1ntas vueltas de corona le ha dado o cu\u00e1ntas horas lo ha usado hoy. Puede completar ambos campos para obtener una estimaci\u00f3n combinada.',
73
+ },
74
+ {
75
+ name: 'Calcular',
76
+ text: 'Presione el bot\u00f3n Calcular. El resultado muestra el porcentaje de carga estimado y las horas restantes de reserva de marcha.',
77
+ },
78
+ {
79
+ name: 'Ajuste sus h\u00e1bitos',
80
+ text: 'Use los resultados para decidir si necesita darle m\u00e1s cuerda antes de dormir o m\u00e1s horas de uso durante el d\u00eda para mantener el reloj funcionando.',
81
+ },
82
+ ],
83
+ schemas: [
84
+ {
85
+ '@context': 'https://schema.org',
86
+ '@type': 'FAQPage',
87
+ 'mainEntity': [
88
+ {
89
+ '@type': 'Question',
90
+ 'name': '¿Cuánto carga una vuelta de corona el reloj?',
91
+ 'acceptedAnswer': {
92
+ '@type': 'Answer',
93
+ 'text': 'Depende del calibre. La mayoría de los calibres automáticos alcanzan la carga completa en 30–40 vueltas, por lo que cada vuelta añade entre un 2,5 y un 3,3 % de la reserva total. Los movimientos de cuerda manual como el Unitas 6498 también necesitan unas 35 vueltas para una carga completa.',
94
+ },
95
+ },
96
+ {
97
+ '@type': 'Question',
98
+ 'name': '¿Usar el reloj lo carga tanto como darle cuerda?',
99
+ 'acceptedAnswer': {
100
+ '@type': 'Answer',
101
+ 'text': 'Usarlo carga más lento y de forma variable. En un trabajo de oficina, puede cargar un 4–6 % por hora mediante el rotor. Durante movimiento activo puede alcanzar el 8–10 % por hora. La cuerda manual es más rápida y predecible.',
102
+ },
103
+ },
104
+ {
105
+ '@type': 'Question',
106
+ 'name': '¿Cuánta reserva pierde un reloj por hora?',
107
+ 'acceptedAnswer': {
108
+ '@type': 'Answer',
109
+ 'text': 'El consumo es constante: divida 100 entre la reserva de marcha en horas. Un calibre de 38 horas pierde aproximadamente un 2,6 % por hora, uno de 42 horas pierde un 2,4 % y uno de 70 horas pierde alrededor de un 1,4 % por hora.',
110
+ },
111
+ },
112
+ {
113
+ '@type': 'Question',
114
+ 'name': '¿Puedo darle demasiada cuerda a mi reloj?',
115
+ 'acceptedAnswer': {
116
+ '@type': 'Answer',
117
+ 'text': 'Los movimientos automáticos modernos tienen un embrague deslizante que evita la sobrecarga. Una vez que el muelle real está completamente tenso, las vueltas adicionales simplemente resbalan.',
118
+ },
119
+ },
120
+ ],
121
+ },
122
+ {
123
+ '@context': 'https://schema.org',
124
+ '@type': 'SoftwareApplication',
125
+ 'name': 'Estimador de Reserva de Marcha',
126
+ 'operatingSystem': 'Todos',
127
+ 'applicationCategory': 'UtilitiesApplication',
128
+ 'browserRequirements': 'Requiere HTML5. Requiere JavaScript.',
129
+ },
130
+ {
131
+ '@context': 'https://schema.org',
132
+ '@type': 'HowTo',
133
+ 'name': 'Cómo estimar la reserva de marcha de su reloj',
134
+ 'step': [
135
+ {
136
+ '@type': 'HowToStep',
137
+ 'name': 'Seleccione su calibre',
138
+ 'text': 'Elija el calibre de su reloj en el menú desplegable. Si no aparece, seleccione Personalizado e ingrese su reserva de marcha y vueltas a plena carga.',
139
+ },
140
+ {
141
+ '@type': 'HowToStep',
142
+ 'name': 'Ingrese sus datos',
143
+ 'text': 'Escriba cuántas vueltas de corona le ha dado o cuántas horas lo ha usado hoy. Puede completar ambos campos para obtener una estimación combinada.',
144
+ },
145
+ {
146
+ '@type': 'HowToStep',
147
+ 'name': 'Calcular',
148
+ 'text': 'Presione el botón Calcular. El resultado muestra el porcentaje de carga estimado y las horas restantes de reserva de marcha.',
149
+ },
150
+ {
151
+ '@type': 'HowToStep',
152
+ 'name': 'Ajuste sus hábitos',
153
+ 'text': 'Use los resultados para decidir si necesita darle más cuerda antes de dormir o más horas de uso durante el día para mantener el reloj funcionando.',
154
+ },
155
+ ],
156
+ },
157
+ ],
158
+ };