@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,94 @@
1
+ import type { ChronoToolEntry, ToolLocaleContent } from '../../types';
2
+
3
+ export type WatchAccuracyTrackerUI = {
4
+ title: string;
5
+ selectWatch: string;
6
+ watchPlaceholder: string;
7
+ addWatch: string;
8
+ deleteWatch: string;
9
+ addLog: string;
10
+ offsetLabel: string;
11
+ offsetPlaceholder: string;
12
+ dateLabel: string;
13
+ saveLog: string;
14
+ avgRate: string;
15
+ consistency: string;
16
+ totalLogs: string;
17
+ historyTitle: string;
18
+ noLogs: string;
19
+ tableDate: string;
20
+ tableOffset: string;
21
+ tableRate: string;
22
+ tableActions: string;
23
+ deleteLog: string;
24
+ coscExcellent: string;
25
+ excellent: string;
26
+ good: string;
27
+ needsService: string;
28
+ secondsPerDay: string;
29
+ seconds: string;
30
+ referenceTime: string;
31
+ watchTime: string;
32
+ useCurrentTime: string;
33
+ calculatedRate: string;
34
+ driftPredictorTitle: string;
35
+ driftPredictorDesc: string;
36
+ dailyRateInput: string;
37
+ dailyRatePlaceholder: string;
38
+ driftHeading: string;
39
+ period: string;
40
+ accumulatedDrift: string;
41
+ day: string;
42
+ week: string;
43
+ month: string;
44
+ months3: string;
45
+ months6: string;
46
+ year: string;
47
+ years5: string;
48
+ watchStandardTitle: string;
49
+ trackerHeading: string;
50
+ driftCalculatorTab: string;
51
+ trackerTab: string;
52
+ stdRolex: string;
53
+ stdCosc: string;
54
+ stdMetas: string;
55
+ stdStdMech: string;
56
+ stdQuartz: string;
57
+ stdHaq: string;
58
+ presetRolex: string;
59
+ presetCosc: string;
60
+ presetStdMech: string;
61
+ presetQuartz: string;
62
+ statusPass: string;
63
+ statusFail: string;
64
+ toleranceRolex: string;
65
+ toleranceCosc: string;
66
+ toleranceMetas: string;
67
+ toleranceStdMech: string;
68
+ toleranceQuartz: string;
69
+ toleranceHaq: string;
70
+ };
71
+
72
+ export type WatchAccuracyTrackerLocaleContent = ToolLocaleContent<WatchAccuracyTrackerUI>;
73
+
74
+ export const watchAccuracyTracker: ChronoToolEntry<WatchAccuracyTrackerUI> = {
75
+ id: 'watch-accuracy-tracker',
76
+ icons: { bg: 'mdi:clock-outline', fg: 'mdi:clock-check' },
77
+ i18n: {
78
+ en: () => import('./i18n/en').then((m) => m.content),
79
+ de: () => import('./i18n/de').then((m) => m.content),
80
+ es: () => import('./i18n/es').then((m) => m.content),
81
+ fr: () => import('./i18n/fr').then((m) => m.content),
82
+ id: () => import('./i18n/id').then((m) => m.content),
83
+ it: () => import('./i18n/it').then((m) => m.content),
84
+ ja: () => import('./i18n/ja').then((m) => m.content),
85
+ ko: () => import('./i18n/ko').then((m) => m.content),
86
+ nl: () => import('./i18n/nl').then((m) => m.content),
87
+ pl: () => import('./i18n/pl').then((m) => m.content),
88
+ pt: () => import('./i18n/pt').then((m) => m.content),
89
+ ru: () => import('./i18n/ru').then((m) => m.content),
90
+ sv: () => import('./i18n/sv').then((m) => m.content),
91
+ tr: () => import('./i18n/tr').then((m) => m.content),
92
+ zh: () => import('./i18n/zh').then((m) => m.content),
93
+ },
94
+ };
@@ -0,0 +1,167 @@
1
+ import { bibliography } from '../bibliography';
2
+ import type { ToolLocaleContent } from '../../../types';
3
+
4
+ export const content: ToolLocaleContent = {
5
+ slug: 'uhrgenauigkeit-rechner',
6
+ title: 'Ganggenauigkeit & Gangabweichung von Uhren Berechnen',
7
+ description: 'Protokollieren und berechnen Sie die tägliche Gangabweichung Ihrer mechanischen Uhren oder Quarzuhren, um deren Präzision und Konstanz zu analysieren.',
8
+ ui: {
9
+ title: 'Uhrenpräzisionsrechner',
10
+ selectWatch: 'Uhr auswählen oder hinzufügen',
11
+ watchPlaceholder: 'z. B. Seiko SKX007',
12
+ addWatch: 'Uhr hinzufügen',
13
+ deleteWatch: 'Uhr löschen',
14
+ addLog: 'Neue Messung protokollieren',
15
+ offsetLabel: 'Abweichung (Sekunden)',
16
+ offsetPlaceholder: '0',
17
+ dateLabel: 'Messzeitpunkt',
18
+ saveLog: 'Messung speichern',
19
+ avgRate: 'Mittlere tägliche Gangabweichung',
20
+ consistency: 'Präzisionsstatus',
21
+ totalLogs: 'Messungen gesamt',
22
+ historyTitle: 'Messverlauf',
23
+ noLogs: 'Noch keine Messungen für diese Uhr vorhanden. Fügen Sie mindestens zwei Messungen hinzu, um die Genauigkeit zu berechnen.',
24
+ tableDate: 'Datum & Uhrzeit',
25
+ tableOffset: 'Abweichung',
26
+ tableRate: 'Tägliche Gangabweichung',
27
+ tableActions: 'Aktionen',
28
+ deleteLog: 'Löschen',
29
+ coscExcellent: 'COSC-Chronometer (+4/-6 s/d)',
30
+ excellent: 'Ausgezeichnet (0 bis +5 s/d)',
31
+ good: 'Gut (+/- 10 s/d)',
32
+ needsService: 'Service empfohlen (> +/- 20 s/d)',
33
+ secondsPerDay: 's/d',
34
+ seconds: 'Sekunden',
35
+ referenceTime: 'Referenzzeit',
36
+ watchTime: 'Uhrzeit',
37
+ useCurrentTime: 'Aktuelle Zeit verwenden',
38
+ calculatedRate: 'Berechnete Abweichung',
39
+ driftPredictorTitle: 'Abweichungsprognose & Gangrechner',
40
+ driftPredictorDesc: 'Projizieren Sie die kumulierte Gangabweichung über Tage, Monate und Jahre und vergleichen Sie diese mit Industriestandards.',
41
+ dailyRateInput: 'Tägliche Abweichung (Sekunden/Tag)',
42
+ dailyRatePlaceholder: 'z. B. +4.5 oder -3',
43
+ driftHeading: 'Prognosen',
44
+ period: 'Zeitraum',
45
+ accumulatedDrift: 'Projizierte Abweichung',
46
+ day: '1 Tag',
47
+ week: '1 Woche',
48
+ month: '1 Monat',
49
+ months3: '3 Monate',
50
+ months6: '6 Monate',
51
+ year: '1 Jahr',
52
+ years5: '5 Jahre',
53
+ watchStandardTitle: 'Zertifizierungsstandards',
54
+ trackerHeading: 'Echtzeit-Gangmessung',
55
+ driftCalculatorTab: 'Gangprognose',
56
+ trackerTab: 'Gangprotokoll',
57
+ stdRolex: 'Rolex Superlative',
58
+ stdCosc: 'COSC Chronometer',
59
+ stdMetas: 'METAS Master',
60
+ stdStdMech: 'Standard Mechanisch',
61
+ stdQuartz: 'Standard Quarz',
62
+ stdHaq: 'Hochpräzises Quarzwerk',
63
+ presetRolex: 'Rolex (+2 s/d)',
64
+ presetCosc: 'COSC (+4 s/d)',
65
+ presetStdMech: 'Standard (+15 s/d)',
66
+ presetQuartz: 'Quarz (+0.5 s/d)',
67
+ statusPass: 'Bestanden',
68
+ statusFail: 'Nicht bestanden',
69
+ toleranceRolex: '±2 s/d',
70
+ toleranceCosc: '-4 / +6 s/d',
71
+ toleranceMetas: '0 / +5 s/d',
72
+ toleranceStdMech: '±15 s/d',
73
+ toleranceQuartz: '±0.5 s/d',
74
+ toleranceHaq: '±10 s/Jahr',
75
+ },
76
+ seo: [
77
+ { type: 'title', text: 'Der ultimative Leitfaden zur Ganggenauigkeit und Regulierung von mechanischen Uhren', level: 2 },
78
+ { type: 'paragraph', html: 'Mechanische Uhren sind Meisterwerke der Mikromechanik. Im Gegensatz zu Quarzuhren unterliegen sie verschiedenen physikalischen und umweltbedingten Kräften, die ihre Ganggenauigkeit beeinflussen. Das regelmäßige Überwachen und Dokumentieren der täglichen Gangabweichung ist der beste Weg, um den Zustand Ihrer Uhr zu beurteilen und festzustellen, wann ein professioneller Service erforderlich ist.' },
79
+ { type: 'title', text: 'Warum mechanische Uhren abweichen: Die wichtigsten Faktoren', level: 2 },
80
+ { type: 'paragraph', html: 'Viele Faktoren beeinflussen die tägliche Gangrate. Die Schwerkraft wirkt sich je nach Lage der Uhr unterschiedlich auf die Unruh und die Spiralfeder aus (sogenannte Lagenfehler). Temperaturschwankungen dehnen die Spirale aus oder ziehen sie zusammen, was die Schwingungsfrequenz verändert. Zudem beeinflusst die Federspannung (Gangreserve) die Amplitude: Voll aufgezogene Uhren laufen meist stabiler als solche am Ende ihrer Gangreserve.' },
81
+ { type: 'title', text: 'Kumulierte Gangabweichung: Wie sich Sekunden aufsummieren', level: 2 },
82
+ { type: 'paragraph', html: 'Eine tägliche Abweichung von nur +5 Sekunden klingt minimal, summiert sich jedoch schnell auf. In einer Woche sind es 35 Sekunden, in einem Monat 2,5 Minuten und nach einem Jahr geht die Uhr bereits über 30 Minuten vor oder nach. Diese exponentielle Abweichung verdeutlicht, warum eine präzise Überwachung für Sammler, die ihre Uhren rotieren lassen, so wichtig ist.' },
83
+ { type: 'title', text: 'Uhren-Ganggenauigkeit manuell messen und berechnen', level: 2 },
84
+ { type: 'paragraph', html: 'Sie können die Ganggenauigkeit Ihrer Uhr auch ohne teure Zeitwaage manuell ermitteln. Synchronisieren Sie dazu Ihre Uhr mit einer präzisen Atomuhr (z. B. UTC-Zeit). Notieren Sie nach 24 bis 48 Stunden Tragezeit die Abweichung in Sekunden. Teilen Sie diese Differenz durch die Anzahl der Tage, um die durchschnittliche tägliche Gangabweichung zu berechnen.' },
85
+ { type: 'title', text: 'Die nächtliche Ablage zur Gangregulierung nutzen', level: 2 },
86
+ { type: 'paragraph', html: 'Mechanische Uhren lassen sich oft allein durch die Art ihrer nächtlichen Ablage leicht regulieren. Wird die Uhr flach auf den Boden gelegt (Zifferblatt oben), läuft sie meist etwas schneller. Wird sie hochkant abgelegt (Krone unten), verliert sie tendenziell an Zeit. Durch gezieltes Ablegen können Sie die tägliche Abweichung minimieren, ohne das Gehäuse zu öffnen.' },
87
+ ],
88
+ faq: [
89
+ {
90
+ question: 'Welche tägliche Gangabweichung ist bei mechanischen Uhren normal?',
91
+ answer: 'Standardmäßige mechanische Uhren weichen in der Regel um +/- 10 bis 20 Sekunden pro Tag ab. Chronometer mit COSC-Zertifikat sind auf -4 bis +6 Sekunden pro Tag einreguliert. Hochwertige Quarzwerke erreichen Abweichungen von weniger als +/- 0.5 Sekunden pro Tag.',
92
+ },
93
+ {
94
+ question: 'Warum ändert sich die Genauigkeit meiner Uhr je nach Lage?',
95
+ answer: 'Die Schwerkraft zieht die Unruh und die Spiralfeder unterschiedlich stark an, je nachdem, ob die Uhr flach liegt (Zifferblatt oben/unten) oder seitlich steht (Krone oben/unten). Diese Lagenabweichungen führen zu leichten Veränderungen der Amplitude und damit der Ganggeschwindigkeit.',
96
+ },
97
+ ],
98
+ bibliography,
99
+ howTo: [
100
+ {
101
+ name: 'Startwert aufzeichnen',
102
+ text: 'Synchronisieren Sie die Uhr mit einer zuverlässigen Atomuhr und notieren Sie die Abweichung in Sekunden.',
103
+ },
104
+ {
105
+ name: 'Tragen und Warten',
106
+ text: 'Tragen Sie die Uhr ganz normal oder lagern Sie sie mindestens 12 bis 24 Stunden lang in einer festen Position.',
107
+ },
108
+ {
109
+ name: 'Endwert aufzeichnen',
110
+ text: 'Tragen Sie die neue Abweichung zur Referenzzeit ein. Das System berechnet automatisch die tägliche Gangabweichung.',
111
+ },
112
+ ],
113
+ schemas: [
114
+ {
115
+ '@context': 'https://schema.org',
116
+ '@type': 'SoftwareApplication',
117
+ 'name': 'Ganggenauigkeit & Gangabweichung von Uhren Berechnen',
118
+ 'operatingSystem': 'All',
119
+ 'applicationCategory': 'UtilitiesApplication',
120
+ 'browserRequirements': 'Requires HTML5. Requires JavaScript.'
121
+ },
122
+ {
123
+ '@context': 'https://schema.org',
124
+ '@type': 'FAQPage',
125
+ 'mainEntity': [
126
+ {
127
+ '@type': 'Question',
128
+ 'name': 'Welche tägliche Gangabweichung ist bei mechanischen Uhren normal?',
129
+ 'acceptedAnswer': {
130
+ '@type': 'Answer',
131
+ 'text': 'Standardmäßige mechanische Uhren weichen in der Regel um +/- 10 bis 20 Sekunden pro Tag ab. Chronometer mit COSC-Zertifikat sind auf -4 bis +6 Sekunden pro Tag einreguliert. Hochwertige Quarzwerke erreichen Abweichungen von weniger als +/- 0.5 Sekunden pro Tag.'
132
+ }
133
+ },
134
+ {
135
+ '@type': 'Question',
136
+ 'name': 'Warum ändert sich die Genauigkeit meiner Uhr je nach Lage?',
137
+ 'acceptedAnswer': {
138
+ '@type': 'Answer',
139
+ 'text': 'Die Schwerkraft zieht die Unruh und die Spiralfeder unterschiedlich stark an, je nachdem, ob die Uhr flach liegt (Zifferblatt oben/unten) oder seitlich steht (Krone oben/unten). Diese Lagenabweichungen führen zu leichten Veränderungen der Amplitude und damit der Ganggeschwindigkeit.'
140
+ }
141
+ }
142
+ ]
143
+ },
144
+ {
145
+ '@context': 'https://schema.org',
146
+ '@type': 'HowTo',
147
+ 'name': 'Uhren-Ganggenauigkeit manuell messen und berechnen',
148
+ 'step': [
149
+ {
150
+ '@type': 'HowToStep',
151
+ 'name': 'Startwert aufzeichnen',
152
+ 'text': 'Synchronisieren Sie die Uhr mit einer zuverlässigen Atomuhr und notieren Sie die Abweichung in Sekunden.'
153
+ },
154
+ {
155
+ '@type': 'HowToStep',
156
+ 'name': 'Tragen und Warten',
157
+ 'text': 'Tragen Sie die Uhr ganz normal oder lagern Sie sie mindestens 12 bis 24 Stunden lang in einer festen Position.'
158
+ },
159
+ {
160
+ '@type': 'HowToStep',
161
+ 'name': 'Endwert aufzeichnen',
162
+ 'text': 'Tragen Sie die neue Abweichung zur Referenzzeit ein. Das System berechnet automatisch die tägliche Gangabweichung.'
163
+ }
164
+ ]
165
+ }
166
+ ],
167
+ };
@@ -0,0 +1,167 @@
1
+ import { bibliography } from '../bibliography';
2
+ import type { ToolLocaleContent } from '../../../types';
3
+
4
+ export const content: ToolLocaleContent = {
5
+ slug: 'watch-accuracy-tracker',
6
+ title: 'Watch Accuracy Tracker & Logger',
7
+ description: 'Log and calculate the daily rate deviation of your mechanical or quartz watches to analyze precision and consistency.',
8
+ ui: {
9
+ title: 'Watch Accuracy Tracker',
10
+ selectWatch: 'Select or Add a Watch',
11
+ watchPlaceholder: 'e.g. Seiko SKX007',
12
+ addWatch: 'Add Watch',
13
+ deleteWatch: 'Delete Watch',
14
+ addLog: 'Log New Measurement',
15
+ offsetLabel: 'Offset (seconds)',
16
+ offsetPlaceholder: '0',
17
+ dateLabel: 'Measurement Time',
18
+ saveLog: 'Save Log',
19
+ avgRate: 'Average Daily Rate',
20
+ consistency: 'Precision Status',
21
+ totalLogs: 'Total Logs',
22
+ historyTitle: 'Measurement History',
23
+ noLogs: 'No logs recorded for this watch yet. Add at least two logs to calculate accuracy.',
24
+ tableDate: 'Date & Time',
25
+ tableOffset: 'Offset',
26
+ tableRate: 'Daily Rate',
27
+ tableActions: 'Actions',
28
+ deleteLog: 'Delete',
29
+ coscExcellent: 'COSC Chronometer (+4/-6 s/d)',
30
+ excellent: 'Excellent (0 to +5 s/d)',
31
+ good: 'Good (+/- 10 s/d)',
32
+ needsService: 'Needs Service (> +/- 20 s/d)',
33
+ secondsPerDay: 's/d',
34
+ seconds: 'seconds',
35
+ referenceTime: 'Reference Time',
36
+ watchTime: 'Watch Time',
37
+ useCurrentTime: 'Use Current Time',
38
+ calculatedRate: 'Calculated Rate',
39
+ driftPredictorTitle: 'Drift Predictor & Projection',
40
+ driftPredictorDesc: 'Project accumulated rate deviation over time and compare with standards.',
41
+ dailyRateInput: 'Daily Rate Deviation (seconds/day)',
42
+ dailyRatePlaceholder: 'e.g. +4.5 or -3',
43
+ driftHeading: 'Projections',
44
+ period: 'Period',
45
+ accumulatedDrift: 'Projected Drift',
46
+ day: '1 Day',
47
+ week: '1 Week',
48
+ month: '1 Month',
49
+ months3: '3 Months',
50
+ months6: '6 Months',
51
+ year: '1 Year',
52
+ years5: '5 Years',
53
+ watchStandardTitle: 'Standards Certification',
54
+ trackerHeading: 'Live Rate Tracker',
55
+ driftCalculatorTab: 'Drift Predictor',
56
+ trackerTab: 'Rate Logger',
57
+ stdRolex: 'Rolex Superlative',
58
+ stdCosc: 'COSC Chronometer',
59
+ stdMetas: 'METAS Master',
60
+ stdStdMech: 'Standard Mechanical',
61
+ stdQuartz: 'Standard Quartz',
62
+ stdHaq: 'High-Precision Quartz',
63
+ presetRolex: 'Rolex (+2 s/d)',
64
+ presetCosc: 'COSC (+4 s/d)',
65
+ presetStdMech: 'Standard (+15 s/d)',
66
+ presetQuartz: 'Quartz (+0.5 s/d)',
67
+ statusPass: 'Pass',
68
+ statusFail: 'Fail',
69
+ toleranceRolex: '±2 s/d',
70
+ toleranceCosc: '-4 / +6 s/d',
71
+ toleranceMetas: '0 / +5 s/d',
72
+ toleranceStdMech: '±15 s/d',
73
+ toleranceQuartz: '±0.5 s/d',
74
+ toleranceHaq: '±10 s/year',
75
+ },
76
+ seo: [
77
+ { type: 'title', text: 'The Ultimate Guide to Watch Accuracy and Daily Rate Regulation', level: 2 },
78
+ { type: 'paragraph', html: 'Mechanical watches are marvels of micro-engineering, but unlike quartz movements, they are subject to various environmental and physical forces that affect their timekeeping precision. Understanding and monitoring your watch\'s daily rate deviation is key to maintaining its health and deciding when it requires professional servicing.' },
79
+ { type: 'title', text: 'Why Mechanical Watches Deviate: Key Factors', level: 2 },
80
+ { type: 'paragraph', html: 'Several elements influence how fast or slow a watch runs on a daily basis. Gravity affects the balance wheel differently depending on the watch\'s position. Temperature changes can cause the hairspring to expand or contract, altering the rate of oscillation. Additionally, the mainspring\'s state of wind (power reserve) affects the amplitude, where a fully wound watch tends to be more stable than one near the end of its power reserve.' },
81
+ { type: 'title', text: 'Understanding Cumulative Drift: How Small Deviations Compound', level: 2 },
82
+ { type: 'paragraph', html: 'A daily deviation of just +5 seconds per day sounds negligible, but time is cumulative. Over a single week, that accumulates to 35 seconds. In a month, it grows to 2.5 minutes, and in a year, your watch will be over 30 minutes off. This compound drift highlights why precise tracking is essential for collectors who rotate timepieces and want their watches synchronized to atomic reference time.' },
83
+ { type: 'title', text: 'How to Track and Calculate Watch Accuracy Manually', level: 2 },
84
+ { type: 'paragraph', html: 'To measure your watch\'s rate deviation without a professional timegrapher, you can use the Rate Logger feature. First, synchronize your watch or note its offset relative to an atomic time reference (like UTC or NTP clocks). After 24 to 48 hours, record the offset again. Divide the change in offset by the elapsed days to find your watch\'s average daily rate deviation.' },
85
+ { type: 'title', text: 'Using Positional Variance for Self-Regulation', level: 2 },
86
+ { type: 'paragraph', html: 'Many mechanical watches can be slightly regulated by how they are placed when not worn. For example, leaving a watch dial up overnight might cause it to gain a few seconds, while resting it crown down might cause it to lose seconds. By tracking these positions and using our calculator, you can determine how to rest your watch overnight to naturally offset its daily deviation.' },
87
+ ],
88
+ faq: [
89
+ {
90
+ question: 'What is a normal daily rate deviation for a mechanical watch?',
91
+ answer: 'Standard mechanical watches usually deviate by +/- 10 to 20 seconds per day. Certified COSC chronometers are regulated to perform within -4 to +6 seconds per day, while high-grade quartz movements can achieve less than +/- 0.5 seconds deviation per day.',
92
+ },
93
+ {
94
+ question: 'Why does my watch accuracy change depending on position?',
95
+ answer: 'Gravity pulls on the balance wheel and hairspring differently when the watch is face up, face down, crown up, or crown down. This positional variation causes slight differences in amplitude and rate.',
96
+ },
97
+ ],
98
+ bibliography,
99
+ howTo: [
100
+ {
101
+ name: 'Record Initial State',
102
+ text: 'Synchronize your watch with a reliable atomic clock or write down the current offset in seconds.',
103
+ },
104
+ {
105
+ name: 'Wait and Track',
106
+ text: 'Wear your watch normally or keep it in a single position for at least 12 to 24 hours.',
107
+ },
108
+ {
109
+ name: 'Record Second State',
110
+ text: 'Log the watch offset again. The system will automatically calculate the rate deviation in seconds per day.',
111
+ },
112
+ ],
113
+ schemas: [
114
+ {
115
+ '@context': 'https://schema.org',
116
+ '@type': 'SoftwareApplication',
117
+ 'name': 'Watch Accuracy Tracker & Logger',
118
+ 'operatingSystem': 'All',
119
+ 'applicationCategory': 'UtilitiesApplication',
120
+ 'browserRequirements': 'Requires HTML5. Requires JavaScript.'
121
+ },
122
+ {
123
+ '@context': 'https://schema.org',
124
+ '@type': 'FAQPage',
125
+ 'mainEntity': [
126
+ {
127
+ '@type': 'Question',
128
+ 'name': 'What is a normal daily rate deviation for a mechanical watch?',
129
+ 'acceptedAnswer': {
130
+ '@type': 'Answer',
131
+ 'text': 'Standard mechanical watches usually deviate by +/- 10 to 20 seconds per day. Certified COSC chronometers are regulated to perform within -4 to +6 seconds per day, while high-grade quartz movements can achieve less than +/- 0.5 seconds deviation per day.'
132
+ }
133
+ },
134
+ {
135
+ '@type': 'Question',
136
+ 'name': 'Why does my watch accuracy change depending on position?',
137
+ 'acceptedAnswer': {
138
+ '@type': 'Answer',
139
+ 'text': 'Gravity pulls on the balance wheel and hairspring differently when the watch is face up, face down, crown up, or crown down. This positional variation causes slight differences in amplitude and rate.'
140
+ }
141
+ }
142
+ ]
143
+ },
144
+ {
145
+ '@context': 'https://schema.org',
146
+ '@type': 'HowTo',
147
+ 'name': 'How to Measure Watch Accuracy Manually',
148
+ 'step': [
149
+ {
150
+ '@type': 'HowToStep',
151
+ 'name': 'Record Initial State',
152
+ 'text': 'Synchronize your watch with a reliable atomic clock or write down the current offset in seconds.'
153
+ },
154
+ {
155
+ '@type': 'HowToStep',
156
+ 'name': 'Wait and Track',
157
+ 'text': 'Wear your watch normally or keep it in a single position for at least 12 to 24 hours.'
158
+ },
159
+ {
160
+ '@type': 'HowToStep',
161
+ 'name': 'Record Second State',
162
+ 'text': 'Log the watch offset again. The system will automatically calculate the rate deviation in seconds per day.'
163
+ }
164
+ ]
165
+ }
166
+ ],
167
+ };
@@ -0,0 +1,167 @@
1
+ import { bibliography } from '../bibliography';
2
+ import type { ToolLocaleContent } from '../../../types';
3
+
4
+ export const content: ToolLocaleContent = {
5
+ slug: 'calculadora-precision-marcha-reloj',
6
+ title: 'Calculadora de Precisión de Marcha y Desviación del Reloj',
7
+ description: 'Registra y calcula la desviación diaria de tus relojes mecánicos o de cuarzo para analizar su precisión y constancia.',
8
+ ui: {
9
+ title: 'Precisión del Reloj',
10
+ selectWatch: 'Seleccionar o añadir un reloj',
11
+ watchPlaceholder: 'ej. Seiko SKX007',
12
+ addWatch: 'Añadir reloj',
13
+ deleteWatch: 'Eliminar reloj',
14
+ addLog: 'Registrar nueva medición',
15
+ offsetLabel: 'Desviación (segundos)',
16
+ offsetPlaceholder: '0',
17
+ dateLabel: 'Hora de la medición',
18
+ saveLog: 'Guardar registro',
19
+ avgRate: 'Desviación media diaria',
20
+ consistency: 'Estado de precisión',
21
+ totalLogs: 'Registros totales',
22
+ historyTitle: 'Historial de mediciones',
23
+ noLogs: 'Aún no hay registros para este reloj. Añade al menos dos registros para calcular la precisión.',
24
+ tableDate: 'Fecha y hora',
25
+ tableOffset: 'Desviación',
26
+ tableRate: 'Desviación diaria',
27
+ tableActions: 'Acciones',
28
+ deleteLog: 'Eliminar',
29
+ coscExcellent: 'Cronómetro COSC (+4/-6 s/d)',
30
+ excellent: 'Excelente (0 a +5 s/d)',
31
+ good: 'Bueno (+/- 10 s/d)',
32
+ needsService: 'Necesita servicio (> +/- 20 s/d)',
33
+ secondsPerDay: 's/d',
34
+ seconds: 'segundos',
35
+ referenceTime: 'Hora de referencia',
36
+ watchTime: 'Hora del reloj',
37
+ useCurrentTime: 'Usar hora actual',
38
+ calculatedRate: 'Desviación calculada',
39
+ driftPredictorTitle: 'Calculadora y Proyección de Deriva',
40
+ driftPredictorDesc: 'Proyecta la desviación acumulada en el tiempo y compárala con los estándares.',
41
+ dailyRateInput: 'Desviación diaria (segundos/día)',
42
+ dailyRatePlaceholder: 'ej. +4.5 o -3',
43
+ driftHeading: 'Proyecciones',
44
+ period: 'Período',
45
+ accumulatedDrift: 'Deriva proyectada',
46
+ day: '1 Día',
47
+ week: '1 Semana',
48
+ month: '1 Mes',
49
+ months3: '3 Meses',
50
+ months6: '6 Meses',
51
+ year: '1 Año',
52
+ years5: '5 Años',
53
+ watchStandardTitle: 'Certificación de Estándares',
54
+ trackerHeading: 'Seguimiento en Vivo',
55
+ driftCalculatorTab: 'Proyección de Deriva',
56
+ trackerTab: 'Registro de Precisión',
57
+ stdRolex: 'Superlativo Rolex',
58
+ stdCosc: 'Cronómetro COSC',
59
+ stdMetas: 'Master METAS',
60
+ stdStdMech: 'Mecánico Estándar',
61
+ stdQuartz: 'Cuarzo Estándar',
62
+ stdHaq: 'Cuarzo de Alta Precisión',
63
+ presetRolex: 'Rolex (+2 s/d)',
64
+ presetCosc: 'COSC (+4 s/d)',
65
+ presetStdMech: 'Estándar (+15 s/d)',
66
+ presetQuartz: 'Cuarzo (+0.5 s/d)',
67
+ statusPass: 'Apto',
68
+ statusFail: 'No apto',
69
+ toleranceRolex: '±2 s/d',
70
+ toleranceCosc: '-4 / +6 s/d',
71
+ toleranceMetas: '0 / +5 s/d',
72
+ toleranceStdMech: '±15 s/d',
73
+ toleranceQuartz: '±0.5 s/d',
74
+ toleranceHaq: '±10 s/año',
75
+ },
76
+ seo: [
77
+ { type: 'title', text: 'La Guía Definitiva sobre Precisión de Relojes y Regulación de Marcha', level: 2 },
78
+ { type: 'paragraph', html: 'Los relojes mecánicos son maravillas de la microingeniería pero están sujetos a fuerzas físicas y ambientales que afectan su precisión de marcha. Monitorear y comprender la desviación diaria es fundamental para mantener su salud y determinar cuándo requieren un servicio técnico profesional.' },
79
+ { type: 'title', text: 'Por qué Desvían los Relojes Mecánicos: Factores Clave', level: 2 },
80
+ { type: 'paragraph', html: 'Múltiples factores influyen en la marcha diaria de un reloj. La gravedad afecta al volante según la posición física del reloj. Los cambios térmicos dilatan o contraen el espiral, alterando la frecuencia. Además, el nivel de carga del muelle real modifica la amplitud de oscilación, siendo el rendimiento más estable a carga completa.' },
81
+ { type: 'title', text: 'Comprensión de la Deriva Acumulada: El Impacto del Tiempo', level: 2 },
82
+ { type: 'paragraph', html: 'Una desviación de solo +5 segundos al día parece insignificante, pero el error es acumulativo. En una semana representa 35 segundos de adelanto; en un mes son 2.5 minutos y al cabo de un año sumará más de 30 minutos de desfase. Este comportamiento resalta la importancia de registrar la marcha regularmente.' },
83
+ { type: 'title', text: 'Cómo Medir y Calcular la Precisión de Marcha Manualmente', level: 2 },
84
+ { type: 'paragraph', html: 'Puedes medir la desviación de tu reloj sin necesidad de un cronocomparador profesional usando nuestro Registro de Precisión. Sincroniza tu reloj con una fuente horaria de referencia atómica. Transcurridas de 24 a 48 horas, comprueba y anota la nueva diferencia. Divide este desfase por el número de días transcurridos para obtener la tasa de marcha media.' },
85
+ { type: 'title', text: 'Uso de la Variación Posicional para la Autorregulación', level: 2 },
86
+ { type: 'paragraph', html: 'Muchos calibres mecánicos se pueden autorregular de forma natural según su posición de descanso nocturno. Por ejemplo, dejar el reloj plano con la esfera hacia arriba puede hacer que gane unos segundos, mientras que apoyarlo sobre la corona puede hacer que los pierda. Registrando las posiciones podrás contrarrestar su desviación natural sin abrir la caja.' },
87
+ ],
88
+ faq: [
89
+ {
90
+ question: '¿Qué es una desviación diaria normal para un reloj mecánico?',
91
+ answer: 'Los calibres mecánicos estándar suelen desviar entre +/- 10 y 20 segundos diarios. Los cronómetros con certificación oficial COSC están regulados en un margen de -4 a +6 segundos diarios, mientras que los movimientos de cuarzo de alta gama pueden lograr precisiones inferiores a +/- 0.5 segundos por día.',
92
+ },
93
+ {
94
+ question: '¿Por qué cambia la precisión según la posición del reloj?',
95
+ answer: 'La gravedad de la Tierra ejerce fuerza sobre el volante y la espiral de forma distinta si la esfera está arriba, abajo o si la corona descansa hacia un lado. Esta variación posicional provoca ligeras diferencias en la amplitud de oscilación y la tasa de marcha.',
96
+ },
97
+ ],
98
+ bibliography,
99
+ howTo: [
100
+ {
101
+ name: 'Registrar Estado Inicial',
102
+ text: 'Sincroniza el reloj con un reloj atómico de referencia y anota el desfase inicial en segundos.',
103
+ },
104
+ {
105
+ name: 'Esperar y Registrar',
106
+ text: 'Usa el reloj con normalidad o déjalo en reposo en una posición fija durante al menos 12 a 24 horas.',
107
+ },
108
+ {
109
+ name: 'Registrar Estado Final',
110
+ text: 'Anota de nuevo el desfase del reloj respecto a la referencia. El sistema calculará la desviación media diaria.',
111
+ },
112
+ ],
113
+ schemas: [
114
+ {
115
+ '@context': 'https://schema.org',
116
+ '@type': 'SoftwareApplication',
117
+ 'name': 'Calculadora de Precisión de Marcha y Desviación del Reloj',
118
+ 'operatingSystem': 'All',
119
+ 'applicationCategory': 'UtilitiesApplication',
120
+ 'browserRequirements': 'Requires HTML5. Requires JavaScript.'
121
+ },
122
+ {
123
+ '@context': 'https://schema.org',
124
+ '@type': 'FAQPage',
125
+ 'mainEntity': [
126
+ {
127
+ '@type': 'Question',
128
+ 'name': '¿Qué es una desviación diaria normal para un reloj mecánico?',
129
+ 'acceptedAnswer': {
130
+ '@type': 'Answer',
131
+ 'text': 'Los calibres mecánicos estándar suelen desviar entre +/- 10 y 20 segundos diarios. Los cronómetros con certificación oficial COSC están regulados en un margen de -4 a +6 segundos diarios, mientras que los movimientos de cuarzo de alta gama pueden lograr precisiones inferiores a +/- 0.5 segundos por día.'
132
+ }
133
+ },
134
+ {
135
+ '@type': 'Question',
136
+ 'name': '¿Por qué cambia la precisión según la posición del reloj?',
137
+ 'acceptedAnswer': {
138
+ '@type': 'Answer',
139
+ 'text': 'La gravedad de la Tierra ejerce fuerza sobre el volante y la espiral de forma distinta si la esfera está arriba, abajo o si la corona descansa hacia un lado. Esta variación posicional provoca ligeras diferencias en la amplitud de oscilación y la tasa de marcha.'
140
+ }
141
+ }
142
+ ]
143
+ },
144
+ {
145
+ '@context': 'https://schema.org',
146
+ '@type': 'HowTo',
147
+ 'name': 'Cómo Medir y Calcular la Precisión de Marcha Manualmente',
148
+ 'step': [
149
+ {
150
+ '@type': 'HowToStep',
151
+ 'name': 'Registrar Estado Inicial',
152
+ 'text': 'Sincroniza el reloj con un reloj atómico de referencia y anota el desfase inicial en segundos.'
153
+ },
154
+ {
155
+ '@type': 'HowToStep',
156
+ 'name': 'Esperar y Registrar',
157
+ 'text': 'Usa el reloj con normalidad o déjalo en reposo en una posición fija durante al menos 12 a 24 horas.'
158
+ },
159
+ {
160
+ '@type': 'HowToStep',
161
+ 'name': 'Registrar Estado Final',
162
+ 'text': 'Anota de nuevo el desfase del reloj respecto a la referencia. El sistema calculará la desviación media diaria.'
163
+ }
164
+ ]
165
+ }
166
+ ],
167
+ };