@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,143 @@
1
+ import type { ToolLocaleContent } from '../../../types';
2
+ import type { DemagnetizingTimerUI } from '../entry';
3
+ import { bibliography } from '../bibliography';
4
+
5
+ export const content: ToolLocaleContent<DemagnetizingTimerUI> = {
6
+ slug: 'demagnetizing-timer',
7
+ title: 'Watch Demagnetizing Timer & Guide',
8
+ description: 'A precise countdown timer with audio cues for DIY watch demagnetization. Get the exact press duration needed for your demagnetizing coil.',
9
+ ui: {
10
+ title: 'Timer Settings',
11
+ durationLabel: 'Pulse Duration',
12
+ duration1s: '1 Second',
13
+ duration2s: '2 Seconds',
14
+ duration3s: '3 Seconds',
15
+ customLabel: 'Custom',
16
+ startButton: 'Start',
17
+ stopButton: 'Stop',
18
+ resetButton: 'Reset',
19
+ pressPhase: 'Press the demagnetizer button now!',
20
+ holdPhase: 'Hold the button...',
21
+ releasePhase: 'Release now!',
22
+ completePhase: 'Done! Move the watch away.',
23
+ ready: 'Ready',
24
+ seconds: 's',
25
+ instructions: 'How to Demagnetize',
26
+ step1: 'Place the watch on the demagnetizer platform.',
27
+ step2: 'Press Start and hold the demagnetizer button for the set duration.',
28
+ step3: 'Release the button and slowly move the watch away.',
29
+ step4: 'Repeat 2–3 times if needed, rotating the watch each time.',
30
+ tipTitle: 'Tip',
31
+ tipContent: 'Keep the watch at least 1 meter away from the demagnetizer when powered on to avoid re-magnetization.',
32
+ },
33
+ seo: [
34
+ { type: 'title', text: 'Watch Demagnetizing Timer — Precise Pulse Timing for DIY Demagnetization', level: 2 },
35
+ { type: 'paragraph', html: 'Demagnetizing a watch requires exact button-press timing. Most DIY demagnetizers work by generating a decaying alternating magnetic field, and the ideal pulse lasts between <strong>1 and 3 seconds</strong>. Hold it too short and the field won\'t neutralize the magnetization; hold it too long and you risk saturating the movement.' },
36
+ { type: 'title', text: 'Why Timing Matters for Watch Demagnetization', level: 3 },
37
+ { type: 'paragraph', html: 'When you press the button on a demagnetizer, an alternating magnetic field is created inside the coil. The field oscillates at mains frequency (50/60 Hz) and decays when you release. The goal is to subject the watch to this decaying field for <strong>just long enough</strong> to randomize the magnetic domains in the hairspring and other steel components. A 1-to-3-second pulse is the sweet spot for most movements.' },
38
+ { type: 'title', text: 'How a Demagnetizer Works', level: 3 },
39
+ { type: 'paragraph', html: 'A demagnetizer is essentially a coil of wire that produces a strong alternating magnetic field when energized. Placing a magnetized watch in this field causes its internal magnetic domains to flip rapidly. When the field is removed abruptly (by releasing the button), the domains settle in a randomized pattern, effectively canceling out the net magnetization.' },
40
+ { type: 'title', text: 'Signs Your Watch Needs Demagnetizing', level: 3 },
41
+ { type: 'paragraph', html: 'Common symptoms of a magnetized watch include: gaining several minutes per day, inconsistent timekeeping across positions, an audible ticking speed increase, and in extreme cases, the watch stopping entirely. If your automatic watch suddenly starts running fast, magnetization is often the culprit and demagnetization is a simple fix.' },
42
+ ],
43
+ faq: [
44
+ {
45
+ question: 'How long should I press the demagnetizer button?',
46
+ answer: '1 to 3 seconds is the recommended pulse duration. Start with 1 second and increase if needed. Overly long pulses can cause the coil to overheat and may not improve results.',
47
+ },
48
+ {
49
+ question: 'Can I demagnetize a watch more than once?',
50
+ answer: 'Yes. Repeat the process 2 to 3 times, rotating the watch 90 degrees each time. This ensures all axes are exposed to the alternating field. There is no risk of over-demagnetizing.',
51
+ },
52
+ {
53
+ question: 'Does demagnetization work on quartz watches?',
54
+ answer: 'Quartz watches are rarely affected by magnetization since they contain few ferromagnetic components. However, the stepping motor in some quartz movements can become magnetized, causing erratic hand movement. Demagnetizing is safe for quartz watches.',
55
+ },
56
+ ],
57
+ bibliography,
58
+ howTo: [
59
+ {
60
+ name: 'Set Duration',
61
+ text: 'Choose 1, 2, or 3 seconds depending on the severity of magnetization.',
62
+ },
63
+ {
64
+ name: 'Position the Watch',
65
+ text: 'Place the watch flat on the demagnetizer platform, centered over the coil.',
66
+ },
67
+ {
68
+ name: 'Press and Hold',
69
+ text: 'Press the Start button simultaneously with the demagnetizer button and hold for the set duration.',
70
+ },
71
+ {
72
+ name: 'Release and Move Away',
73
+ text: 'Release the button and slowly move the watch at least 1 meter away before turning off the demagnetizer.',
74
+ },
75
+ ],
76
+ schemas: [
77
+ {
78
+ '@context': 'https://schema.org',
79
+ '@type': 'FAQPage',
80
+ 'mainEntity': [
81
+ {
82
+ '@type': 'Question',
83
+ 'name': 'How long should I press the demagnetizer button?',
84
+ 'acceptedAnswer': {
85
+ '@type': 'Answer',
86
+ 'text': '1 to 3 seconds is the recommended pulse duration. Start with 1 second and increase if needed. Overly long pulses can cause the coil to overheat and may not improve results.',
87
+ },
88
+ },
89
+ {
90
+ '@type': 'Question',
91
+ 'name': 'Can I demagnetize a watch more than once?',
92
+ 'acceptedAnswer': {
93
+ '@type': 'Answer',
94
+ 'text': 'Yes. Repeat the process 2 to 3 times, rotating the watch 90 degrees each time. This ensures all axes are exposed to the alternating field. There is no risk of over-demagnetizing.',
95
+ },
96
+ },
97
+ {
98
+ '@type': 'Question',
99
+ 'name': 'Does demagnetization work on quartz watches?',
100
+ 'acceptedAnswer': {
101
+ '@type': 'Answer',
102
+ 'text': 'Quartz watches are rarely affected by magnetization since they contain few ferromagnetic components. However, the stepping motor in some quartz movements can become magnetized, causing erratic hand movement. Demagnetizing is safe for quartz watches.',
103
+ },
104
+ },
105
+ ],
106
+ },
107
+ {
108
+ '@context': 'https://schema.org',
109
+ '@type': 'SoftwareApplication',
110
+ 'name': 'Watch Demagnetizing Timer & Guide',
111
+ 'operatingSystem': 'All',
112
+ 'applicationCategory': 'UtilitiesApplication',
113
+ 'browserRequirements': 'Requires HTML5. Requires JavaScript.',
114
+ },
115
+ {
116
+ '@context': 'https://schema.org',
117
+ '@type': 'HowTo',
118
+ 'name': 'How to Demagnetize a Watch',
119
+ 'step': [
120
+ {
121
+ '@type': 'HowToStep',
122
+ 'name': 'Set Duration',
123
+ 'text': 'Choose 1, 2, or 3 seconds depending on the severity of magnetization.',
124
+ },
125
+ {
126
+ '@type': 'HowToStep',
127
+ 'name': 'Position the Watch',
128
+ 'text': 'Place the watch flat on the demagnetizer platform, centered over the coil.',
129
+ },
130
+ {
131
+ '@type': 'HowToStep',
132
+ 'name': 'Press and Hold',
133
+ 'text': 'Press the Start button simultaneously with the demagnetizer button and hold for the set duration.',
134
+ },
135
+ {
136
+ '@type': 'HowToStep',
137
+ 'name': 'Release and Move Away',
138
+ 'text': 'Release the button and slowly move the watch at least 1 meter away before turning off the demagnetizer.',
139
+ },
140
+ ],
141
+ },
142
+ ],
143
+ };
@@ -0,0 +1,143 @@
1
+ import type { ToolLocaleContent } from '../../../types';
2
+ import type { DemagnetizingTimerUI } from '../entry';
3
+ import { bibliography } from '../bibliography';
4
+
5
+ export const content: ToolLocaleContent<DemagnetizingTimerUI> = {
6
+ slug: 'temporizador-desmagnetizacion',
7
+ title: 'Temporizador de Desmagnetización de Relojes',
8
+ description: 'Un temporizador de cuenta atrás preciso con señales sonoras para la desmagnetización casera de relojes. Obtén la duración exacta de pulsación para tu bobina desmagnetizadora.',
9
+ ui: {
10
+ title: 'Ajustes del Temporizador',
11
+ durationLabel: 'Duración del Pulso',
12
+ duration1s: '1 Segundo',
13
+ duration2s: '2 Segundos',
14
+ duration3s: '3 Segundos',
15
+ customLabel: 'Personalizado',
16
+ startButton: 'Iniciar',
17
+ stopButton: 'Detener',
18
+ resetButton: 'Reiniciar',
19
+ pressPhase: '¡Presiona el botón del desmagnetizador ahora!',
20
+ holdPhase: 'Mantén presionado...',
21
+ releasePhase: '¡Suelta ahora!',
22
+ completePhase: '¡Listo! Retira el reloj.',
23
+ ready: 'Listo',
24
+ seconds: 's',
25
+ instructions: 'Cómo Desmagnetizar',
26
+ step1: 'Coloca el reloj sobre la plataforma del desmagnetizador.',
27
+ step2: 'Presiona Inicio y mantén el botón del desmagnetizador durante el tiempo configurado.',
28
+ step3: 'Suelta el botón y aleja el reloj lentamente.',
29
+ step4: 'Repite 2–3 veces si es necesario, girando el reloj cada vez.',
30
+ tipTitle: 'Consejo',
31
+ tipContent: 'Mantén el reloj al menos 1 metro de distancia del desmagnetizador encendido para evitar re-imantación.',
32
+ },
33
+ seo: [
34
+ { type: 'title', text: 'Temporizador de Desmagnetización — Timing Preciso para Desmagnetización Casera', level: 2 },
35
+ { type: 'paragraph', html: 'Desmagnetizar un reloj requiere una sincronización exacta del botón. La mayoría de los desmagnetizadores caseros funcionan generando un campo magnético alterno decreciente, y el pulso ideal dura entre <strong>1 y 3 segundos</strong>. Si lo mantienes muy poco, el campo no neutralizará la magnetización; si lo mantienes demasiado, corres el riesgo de saturar el movimiento.' },
36
+ { type: 'title', text: 'Por qué es importante el tiempo en la desmagnetización', level: 3 },
37
+ { type: 'paragraph', html: 'Al presionar el botón del desmagnetizador, se crea un campo magnético alterno dentro de la bobina. El campo oscila a la frecuencia de red (50/60 Hz) y se desvanece al soltar el botón. El objetivo es exponer el reloj a este campo decreciente <strong>el tiempo justo</strong> para aleatorizar los dominios magnéticos del espiral y otros componentes de acero. Un pulso de 1 a 3 segundos es el punto óptimo para la mayoría de los movimientos.' },
38
+ { type: 'title', text: 'Cómo funciona un desmagnetizador', level: 3 },
39
+ { type: 'paragraph', html: 'Un desmagnetizador es esencialmente una bobina de alambre que produce un campo magnético alterno intenso al energizarse. Al colocar un reloj magnetizado en este campo, sus dominios magnéticos internos se invierten rápidamente. Cuando el campo se elimina de forma abrupta (al soltar el botón), los dominios se estabilizan en un patrón aleatorio, cancelando efectivamente la magnetización neta.' },
40
+ { type: 'title', text: 'Señales de que tu reloj necesita desmagnetización', level: 3 },
41
+ { type: 'paragraph', html: 'Los síntomas comunes de un reloj magnetizado incluyen: adelantarse varios minutos al día, falta de precisión según la posición, un tic-tac audiblemente más rápido y, en casos extremos, que el reloj se detenga por completo. Si tu reloj automático de repente empieza a adelantarse, la magnetización suele ser la causa y la desmagnetización es una solución sencilla.' },
42
+ ],
43
+ faq: [
44
+ {
45
+ question: '¿Cuánto tiempo debo presionar el botón del desmagnetizador?',
46
+ answer: 'De 1 a 3 segundos es la duración recomendada. Empieza con 1 segundo y aumenta si es necesario. Pulsos demasiado largos pueden sobrecalentar la bobina y no mejoran los resultados.',
47
+ },
48
+ {
49
+ question: '¿Se puede desmagnetizar un reloj más de una vez?',
50
+ answer: 'Sí. Repite el proceso de 2 a 3 veces, girando el reloj 90 grados cada vez. Esto asegura que todos los ejes queden expuestos al campo alterno. No hay riesgo de sobredesmagnetización.',
51
+ },
52
+ {
53
+ question: '¿La desmagnetización funciona en relojes de cuarzo?',
54
+ answer: 'Los relojes de cuarzo rara vez se ven afectados por la magnetización porque contienen pocos componentes ferromagnéticos. Sin embargo, el motor paso a paso de algunos movimientos de cuarzo puede magnetizarse, causando un movimiento errático de las agujas. La desmagnetización es segura para relojes de cuarzo.',
55
+ },
56
+ ],
57
+ bibliography,
58
+ howTo: [
59
+ {
60
+ name: 'Configurar duración',
61
+ text: 'Elige 1, 2 o 3 segundos según la severidad de la magnetización.',
62
+ },
63
+ {
64
+ name: 'Colocar el reloj',
65
+ text: 'Coloca el reloj plano sobre la plataforma del desmagnetizador, centrado sobre la bobina.',
66
+ },
67
+ {
68
+ name: 'Presionar y mantener',
69
+ text: 'Presiona el botón de Inicio simultáneamente con el botón del desmagnetizador y mantenlo durante la duración configurada.',
70
+ },
71
+ {
72
+ name: 'Soltar y retirar',
73
+ text: 'Suelta el botón y aleja el reloj al menos 1 metro antes de apagar el desmagnetizador.',
74
+ },
75
+ ],
76
+ schemas: [
77
+ {
78
+ '@context': 'https://schema.org',
79
+ '@type': 'FAQPage',
80
+ 'mainEntity': [
81
+ {
82
+ '@type': 'Question',
83
+ 'name': '¿Cuánto tiempo debo presionar el botón del desmagnetizador?',
84
+ 'acceptedAnswer': {
85
+ '@type': 'Answer',
86
+ 'text': 'De 1 a 3 segundos es la duración recomendada. Empieza con 1 segundo y aumenta si es necesario. Pulsos demasiado largos pueden sobrecalentar la bobina y no mejoran los resultados.',
87
+ },
88
+ },
89
+ {
90
+ '@type': 'Question',
91
+ 'name': '¿Se puede desmagnetizar un reloj más de una vez?',
92
+ 'acceptedAnswer': {
93
+ '@type': 'Answer',
94
+ 'text': 'Sí. Repite el proceso de 2 a 3 veces, girando el reloj 90 grados cada vez. Esto asegura que todos los ejes queden expuestos al campo alterno. No hay riesgo de sobredesmagnetización.',
95
+ },
96
+ },
97
+ {
98
+ '@type': 'Question',
99
+ 'name': '¿La desmagnetización funciona en relojes de cuarzo?',
100
+ 'acceptedAnswer': {
101
+ '@type': 'Answer',
102
+ 'text': 'Los relojes de cuarzo rara vez se ven afectados por la magnetización porque contienen pocos componentes ferromagnéticos. Sin embargo, el motor paso a paso de algunos movimientos de cuarzo puede magnetizarse, causando un movimiento errático de las agujas. La desmagnetización es segura para relojes de cuarzo.',
103
+ },
104
+ },
105
+ ],
106
+ },
107
+ {
108
+ '@context': 'https://schema.org',
109
+ '@type': 'SoftwareApplication',
110
+ 'name': 'Temporizador de Desmagnetización de Relojes',
111
+ 'operatingSystem': 'All',
112
+ 'applicationCategory': 'UtilitiesApplication',
113
+ 'browserRequirements': 'Requires HTML5. Requires JavaScript.',
114
+ },
115
+ {
116
+ '@context': 'https://schema.org',
117
+ '@type': 'HowTo',
118
+ 'name': 'Cómo desmagnetizar un reloj',
119
+ 'step': [
120
+ {
121
+ '@type': 'HowToStep',
122
+ 'name': 'Configurar duración',
123
+ 'text': 'Elige 1, 2 o 3 segundos según la severidad de la magnetización.',
124
+ },
125
+ {
126
+ '@type': 'HowToStep',
127
+ 'name': 'Colocar el reloj',
128
+ 'text': 'Coloca el reloj plano sobre la plataforma del desmagnetizador, centrado sobre la bobina.',
129
+ },
130
+ {
131
+ '@type': 'HowToStep',
132
+ 'name': 'Presionar y mantener',
133
+ 'text': 'Presiona el botón de Inicio simultáneamente con el botón del desmagnetizador y mantenlo durante la duración configurada.',
134
+ },
135
+ {
136
+ '@type': 'HowToStep',
137
+ 'name': 'Soltar y retirar',
138
+ 'text': 'Suelta el botón y aleja el reloj al menos 1 metro antes de apagar el desmagnetizador.',
139
+ },
140
+ ],
141
+ },
142
+ ],
143
+ };
@@ -0,0 +1,143 @@
1
+ import type { ToolLocaleContent } from '../../../types';
2
+ import type { DemagnetizingTimerUI } from '../entry';
3
+ import { bibliography } from '../bibliography';
4
+
5
+ export const content: ToolLocaleContent<DemagnetizingTimerUI> = {
6
+ slug: 'minuteur-demagnetisation',
7
+ title: 'Minuteur de Démagnétisation de Montre',
8
+ description: 'Un minuteur de compte à rebours précis avec signaux sonores pour la démagnétisation maison des montres. Obtenez la durée d\'impulsion exacte pour votre bobine de démagnétisation.',
9
+ ui: {
10
+ title: 'Paramètres du Minuteur',
11
+ durationLabel: 'Durée d\'impulsion',
12
+ duration1s: '1 Seconde',
13
+ duration2s: '2 Secondes',
14
+ duration3s: '3 Secondes',
15
+ customLabel: 'Personnalisé',
16
+ startButton: 'Démarrer',
17
+ stopButton: 'Arrêter',
18
+ resetButton: 'Réinitialiser',
19
+ pressPhase: 'Appuyez sur le bouton du démagnétiseur maintenant !',
20
+ holdPhase: 'Maintenez enfoncé...',
21
+ releasePhase: 'Relâchez maintenant !',
22
+ completePhase: 'Terminé ! Éloignez la montre.',
23
+ ready: 'Prêt',
24
+ seconds: 's',
25
+ instructions: 'Comment Démagnétiser',
26
+ step1: 'Placez la montre sur la plateforme du démagnétiseur.',
27
+ step2: 'Appuyez sur Démarrer et maintenez le bouton du démagnétiseur pendant la durée définie.',
28
+ step3: 'Relâchez le bouton et éloignez lentement la montre.',
29
+ step4: 'Répétez 2 à 3 fois si nécessaire, en tournant la montre à chaque fois.',
30
+ tipTitle: 'Astuce',
31
+ tipContent: 'Gardez la montre à au moins 1 mètre du démagnétiseur lorsqu\'il est allumé pour éviter une re-magnétisation.',
32
+ },
33
+ seo: [
34
+ { type: 'title', text: 'Minuteur de Démagnétisation de Montre — Chronométrage Précis pour le DIY', level: 2 },
35
+ { type: 'paragraph', html: 'Démagnétiser une montre nécessite un timing précis du bouton. La plupart des démagnétiseurs DIY fonctionnent en générant un champ magnétique alternatif décroissant, et l\'impulsion idéale dure entre <strong>1 et 3 secondes</strong>. Trop courte et le champ ne neutralise pas la magnétisation ; trop longue et vous risquez de saturer le mouvement.' },
36
+ { type: 'title', text: 'Pourquoi le timing est crucial pour la démagnétisation', level: 3 },
37
+ { type: 'paragraph', html: 'Lorsque vous appuyez sur le bouton du démagnétiseur, un champ magnétique alternatif est créé à l\'intérieur de la bobine. Le champ oscille à la fréquence du secteur (50/60 Hz) et s\'atténue lorsque vous relâchez. L\'objectif est d\'exposer la montre à ce champ décroissant <strong>juste assez longtemps</strong> pour randomiser les domaines magnétiques du spiral et des autres composants en acier. Une impulsion de 1 à 3 secondes est le point idéal pour la plupart des mouvements.' },
38
+ { type: 'title', text: 'Comment fonctionne un démagnétiseur', level: 3 },
39
+ { type: 'paragraph', html: 'Un démagnétiseur est essentiellement une bobine de fil qui produit un champ magnétique alternatif puissant lorsqu\'elle est alimentée. Placer une montre magnétisée dans ce champ provoque le basculement rapide de ses domaines magnétiques internes. Lorsque le champ est supprimé brusquement (en relâchant le bouton), les domaines se stabilisent dans un motif aléatoire, annulant ainsi la magnétisation nette.' },
40
+ { type: 'title', text: 'Signes que votre montre a besoin d\'être démagnétisée', level: 3 },
41
+ { type: 'paragraph', html: 'Les symptômes courants d\'une montre magnétisée incluent : une avance de plusieurs minutes par jour, un chronométrage irrégulier selon les positions, un tic-tac audiblement plus rapide et, dans les cas extrêmes, l\'arrêt complet de la montre. Si votre montre automatique se met soudainement à accélérer, la magnétisation en est souvent la cause et la démagnétisation est une solution simple.' },
42
+ ],
43
+ faq: [
44
+ {
45
+ question: 'Combien de temps dois-je appuyer sur le bouton du démagnétiseur ?',
46
+ answer: '1 à 3 secondes est la durée d\'impulsion recommandée. Commencez par 1 seconde et augmentez si nécessaire. Des impulsions trop longues peuvent surchauffer la bobine sans améliorer les résultats.',
47
+ },
48
+ {
49
+ question: 'Peut-on démagnétiser une montre plusieurs fois ?',
50
+ answer: 'Oui. Répétez le processus 2 à 3 fois en tournant la montre de 90 degrés à chaque fois. Cela garantit que tous les axes sont exposés au champ alternatif. Il n\'y a aucun risque de sur-démagnétisation.',
51
+ },
52
+ {
53
+ question: 'La démagnétisation fonctionne-t-elle sur les montres à quartz ?',
54
+ answer: 'Les montres à quartz sont rarement affectées par la magnétisation car elles contiennent peu de composants ferromagnétiques. Cependant, le moteur pas à pas de certains mouvements à quartz peut se magnétiser, provoquant un mouvement erratique des aiguilles. La démagnétisation est sans danger pour les montres à quartz.',
55
+ },
56
+ ],
57
+ bibliography,
58
+ howTo: [
59
+ {
60
+ name: 'Régler la durée',
61
+ text: 'Choisissez 1, 2 ou 3 secondes selon la sévérité de la magnétisation.',
62
+ },
63
+ {
64
+ name: 'Positionner la montre',
65
+ text: 'Placez la montre à plat sur la plateforme du démagnétiseur, centrée sur la bobine.',
66
+ },
67
+ {
68
+ name: 'Appuyer et maintenir',
69
+ text: 'Appuyez simultanément sur le bouton Démarrer et le bouton du démagnétiseur et maintenez pendant la durée définie.',
70
+ },
71
+ {
72
+ name: 'Relâcher et éloigner',
73
+ text: 'Relâchez le bouton et éloignez la montre d\'au moins 1 mètre avant d\'éteindre le démagnétiseur.',
74
+ },
75
+ ],
76
+ schemas: [
77
+ {
78
+ '@context': 'https://schema.org',
79
+ '@type': 'FAQPage',
80
+ 'mainEntity': [
81
+ {
82
+ '@type': 'Question',
83
+ 'name': 'Combien de temps dois-je appuyer sur le bouton du démagnétiseur ?',
84
+ 'acceptedAnswer': {
85
+ '@type': 'Answer',
86
+ 'text': '1 à 3 secondes est la durée d\'impulsion recommandée. Commencez par 1 seconde et augmentez si nécessaire. Des impulsions trop longues peuvent surchauffer la bobine sans améliorer les résultats.',
87
+ },
88
+ },
89
+ {
90
+ '@type': 'Question',
91
+ 'name': 'Peut-on démagnétiser une montre plusieurs fois ?',
92
+ 'acceptedAnswer': {
93
+ '@type': 'Answer',
94
+ 'text': 'Oui. Répétez le processus 2 à 3 fois en tournant la montre de 90 degrés à chaque fois. Cela garantit que tous les axes sont exposés au champ alternatif. Il n\'y a aucun risque de sur-démagnétisation.',
95
+ },
96
+ },
97
+ {
98
+ '@type': 'Question',
99
+ 'name': 'La démagnétisation fonctionne-t-elle sur les montres à quartz ?',
100
+ 'acceptedAnswer': {
101
+ '@type': 'Answer',
102
+ 'text': 'Les montres à quartz sont rarement affectées par la magnétisation car elles contiennent peu de composants ferromagnétiques. Cependant, le moteur pas à pas de certains mouvements à quartz peut se magnétiser, provoquant un mouvement erratique des aiguilles. La démagnétisation est sans danger pour les montres à quartz.',
103
+ },
104
+ },
105
+ ],
106
+ },
107
+ {
108
+ '@context': 'https://schema.org',
109
+ '@type': 'SoftwareApplication',
110
+ 'name': 'Minuteur de Démagnétisation de Montre',
111
+ 'operatingSystem': 'All',
112
+ 'applicationCategory': 'UtilitiesApplication',
113
+ 'browserRequirements': 'Requires HTML5. Requires JavaScript.',
114
+ },
115
+ {
116
+ '@context': 'https://schema.org',
117
+ '@type': 'HowTo',
118
+ 'name': 'Comment démagnétiser une montre',
119
+ 'step': [
120
+ {
121
+ '@type': 'HowToStep',
122
+ 'name': 'Régler la durée',
123
+ 'text': 'Choisissez 1, 2 ou 3 secondes selon la sévérité de la magnétisation.',
124
+ },
125
+ {
126
+ '@type': 'HowToStep',
127
+ 'name': 'Positionner la montre',
128
+ 'text': 'Placez la montre à plat sur la plateforme du démagnétiseur, centrée sur la bobine.',
129
+ },
130
+ {
131
+ '@type': 'HowToStep',
132
+ 'name': 'Appuyer et maintenir',
133
+ 'text': 'Appuyez simultanément sur le bouton Démarrer et le bouton du démagnétiseur et maintenez pendant la durée définie.',
134
+ },
135
+ {
136
+ '@type': 'HowToStep',
137
+ 'name': 'Relâcher et éloigner',
138
+ 'text': 'Relâchez le bouton et éloignez la montre d\'au moins 1 mètre avant d\'éteindre le démagnétiseur.',
139
+ },
140
+ ],
141
+ },
142
+ ],
143
+ };
@@ -0,0 +1,143 @@
1
+ import type { ToolLocaleContent } from '../../../types';
2
+ import type { DemagnetizingTimerUI } from '../entry';
3
+ import { bibliography } from '../bibliography';
4
+
5
+ export const content: ToolLocaleContent<DemagnetizingTimerUI> = {
6
+ slug: 'timer-demagnetisasi',
7
+ title: 'Timer & Panduan Demagnetisasi Jam Tangan',
8
+ description: 'Penghitung waktu mundur presisi dengan isyarat audio untuk demagnetisasi jam tangan DIY. Dapatkan durasi tekan yang tepat untuk kumparan demagnetisasi Anda.',
9
+ ui: {
10
+ title: 'Pengaturan Timer',
11
+ durationLabel: 'Durasi Pulsa',
12
+ duration1s: '1 Detik',
13
+ duration2s: '2 Detik',
14
+ duration3s: '3 Detik',
15
+ customLabel: 'Kustom',
16
+ startButton: 'Mulai',
17
+ stopButton: 'Berhenti',
18
+ resetButton: 'Reset',
19
+ pressPhase: 'Tekan tombol demagnetizer sekarang!',
20
+ holdPhase: 'Tahan tombol...',
21
+ releasePhase: 'Lepaskan sekarang!',
22
+ completePhase: 'Selesai! Jauhkan jam tangan.',
23
+ ready: 'Siap',
24
+ seconds: 'd',
25
+ instructions: 'Cara Mendemagnetisasi',
26
+ step1: 'Tempatkan jam tangan di atas platform demagnetizer.',
27
+ step2: 'Tekan Mulai dan tahan tombol demagnetizer selama durasi yang ditentukan.',
28
+ step3: 'Lepaskan tombol dan perlahan jauhkan jam tangan.',
29
+ step4: 'Ulangi 2–3 kali jika perlu, putar jam tangan setiap kali.',
30
+ tipTitle: 'Tips',
31
+ tipContent: 'Jaga jarak jam tangan minimal 1 meter dari demagnetizer saat menyala untuk menghindari magnetisasi ulang.',
32
+ },
33
+ seo: [
34
+ { type: 'title', text: 'Timer Demagnetisasi Jam Tangan — Waktu Pulsa Presisi untuk Demagnetisasi DIY', level: 2 },
35
+ { type: 'paragraph', html: 'Mendemagnetisasi jam tangan memerlukan waktu tekan tombol yang tepat. Sebagian besar demagnetizer DIY bekerja dengan menghasilkan medan magnet bolak-balik yang meluruh, dan pulsa ideal berlangsung antara <strong>1 dan 3 detik</strong>. Terlalu pendek dan medan tidak akan menetralkan magnetisasi; terlalu lama dan Anda berisiko menjenuhkan pergerakan.' },
36
+ { type: 'title', text: 'Mengapa Waktu Penting untuk Demagnetisasi Jam Tangan', level: 3 },
37
+ { type: 'paragraph', html: 'Saat Anda menekan tombol pada demagnetizer, medan magnet bolak-balik tercipta di dalam kumparan. Medan berosilasi pada frekuensi listrik (50/60 Hz) dan meluruh saat Anda melepaskan. Tujuannya adalah untuk menjadarkan jam tangan pada medan yang meluruh ini <strong>cukup lama</strong> untuk mengacak domain magnetik pada hairspring dan komponen baja lainnya. Pulsa 1 hingga 3 detik adalah titik optimal untuk sebagian besar pergerakan.' },
38
+ { type: 'title', text: 'Bagaimana Demagnetizer Bekerja', level: 3 },
39
+ { type: 'paragraph', html: 'Demagnetizer pada dasarnya adalah kumparan kawat yang menghasilkan medan magnet bolak-balik kuat saat dialiri listrik. Menempatkan jam tangan yang termagnetisasi dalam medan ini menyebabkan domain magnetik internalnya berbalik dengan cepat. Saat medan dihilangkan secara tiba-tiba (dengan melepaskan tombol), domain-domain tersebut menetap dalam pola acak, secara efektif membatalkan magnetisasi bersih.' },
40
+ { type: 'title', text: 'Tanda Jam Tangan Anda Perlu Demagnetisasi', level: 3 },
41
+ { type: 'paragraph', html: 'Gejala umum jam tangan yang termagnetisasi meliputi: maju beberapa menit per hari, ketidakakuratan waktu antar posisi, suara detak yang lebih cepat, dan dalam kasus ekstrem, jam tangan berhenti total. Jika jam tangan otomatis Anda tiba-tiba berlari cepat, magnetisasi sering kali menjadi penyebabnya dan demagnetisasi adalah perbaikan sederhana.' },
42
+ ],
43
+ faq: [
44
+ {
45
+ question: 'Berapa lama saya harus menekan tombol demagnetizer?',
46
+ answer: '1 hingga 3 detik adalah durasi pulsa yang direkomendasikan. Mulai dengan 1 detik dan tingkatkan jika perlu. Pulsa yang terlalu lama dapat menyebabkan kumparan overheat dan tidak meningkatkan hasil.',
47
+ },
48
+ {
49
+ question: 'Bisakah jam tangan didemagnetisasi lebih dari sekali?',
50
+ answer: 'Ya. Ulangi proses 2 hingga 3 kali, putar jam tangan 90 derajat setiap kali. Ini memastikan semua sumbu terpapar medan bolak-balik. Tidak ada risiko demagnetisasi berlebihan.',
51
+ },
52
+ {
53
+ question: 'Apakah demagnetisasi berfungsi pada jam tangan kuarsa?',
54
+ answer: 'Jam tangan kuarsa jarang terpengaruh oleh magnetisasi karena mengandung sedikit komponen feromagnetik. Namun, motor stepper pada beberapa pergerakan kuarsa dapat termagnetisasi, menyebabkan pergerakan jarum yang tidak menentu. Demagnetisasi aman untuk jam tangan kuarsa.',
55
+ },
56
+ ],
57
+ bibliography,
58
+ howTo: [
59
+ {
60
+ name: 'Atur Durasi',
61
+ text: 'Pilih 1, 2, atau 3 detik tergantung pada tingkat keparahan magnetisasi.',
62
+ },
63
+ {
64
+ name: 'Posisikan Jam Tangan',
65
+ text: 'Tempatkan jam tangan rata di platform demagnetizer, terpusat di atas kumparan.',
66
+ },
67
+ {
68
+ name: 'Tekan dan Tahan',
69
+ text: 'Tekan tombol Mulai bersamaan dengan tombol demagnetizer dan tahan selama durasi yang ditentukan.',
70
+ },
71
+ {
72
+ name: 'Lepaskan dan Jauhkan',
73
+ text: 'Lepaskan tombol dan perlahan jauhkan jam tangan setidaknya 1 meter sebelum mematikan demagnetizer.',
74
+ },
75
+ ],
76
+ schemas: [
77
+ {
78
+ '@context': 'https://schema.org',
79
+ '@type': 'FAQPage',
80
+ 'mainEntity': [
81
+ {
82
+ '@type': 'Question',
83
+ 'name': 'Berapa lama saya harus menekan tombol demagnetizer?',
84
+ 'acceptedAnswer': {
85
+ '@type': 'Answer',
86
+ 'text': '1 hingga 3 detik adalah durasi pulsa yang direkomendasikan. Mulai dengan 1 detik dan tingkatkan jika perlu. Pulsa yang terlalu lama dapat menyebabkan kumparan overheat dan tidak meningkatkan hasil.',
87
+ },
88
+ },
89
+ {
90
+ '@type': 'Question',
91
+ 'name': 'Bisakah jam tangan didemagnetisasi lebih dari sekali?',
92
+ 'acceptedAnswer': {
93
+ '@type': 'Answer',
94
+ 'text': 'Ya. Ulangi proses 2 hingga 3 kali, putar jam tangan 90 derajat setiap kali. Ini memastikan semua sumbu terpapar medan bolak-balik. Tidak ada risiko demagnetisasi berlebihan.',
95
+ },
96
+ },
97
+ {
98
+ '@type': 'Question',
99
+ 'name': 'Apakah demagnetisasi berfungsi pada jam tangan kuarsa?',
100
+ 'acceptedAnswer': {
101
+ '@type': 'Answer',
102
+ 'text': 'Jam tangan kuarsa jarang terpengaruh oleh magnetisasi karena mengandung sedikit komponen feromagnetik. Namun, motor stepper pada beberapa pergerakan kuarsa dapat termagnetisasi, menyebabkan pergerakan jarum yang tidak menentu. Demagnetisasi aman untuk jam tangan kuarsa.',
103
+ },
104
+ },
105
+ ],
106
+ },
107
+ {
108
+ '@context': 'https://schema.org',
109
+ '@type': 'SoftwareApplication',
110
+ 'name': 'Timer & Panduan Demagnetisasi Jam Tangan',
111
+ 'operatingSystem': 'All',
112
+ 'applicationCategory': 'UtilitiesApplication',
113
+ 'browserRequirements': 'Requires HTML5. Requires JavaScript.',
114
+ },
115
+ {
116
+ '@context': 'https://schema.org',
117
+ '@type': 'HowTo',
118
+ 'name': 'Cara mendemagnetisasi jam tangan',
119
+ 'step': [
120
+ {
121
+ '@type': 'HowToStep',
122
+ 'name': 'Atur Durasi',
123
+ 'text': 'Pilih 1, 2, atau 3 detik tergantung pada tingkat keparahan magnetisasi.',
124
+ },
125
+ {
126
+ '@type': 'HowToStep',
127
+ 'name': 'Posisikan Jam Tangan',
128
+ 'text': 'Tempatkan jam tangan rata di platform demagnetizer, terpusat di atas kumparan.',
129
+ },
130
+ {
131
+ '@type': 'HowToStep',
132
+ 'name': 'Tekan dan Tahan',
133
+ 'text': 'Tekan tombol Mulai bersamaan dengan tombol demagnetizer dan tahan selama durasi yang ditentukan.',
134
+ },
135
+ {
136
+ '@type': 'HowToStep',
137
+ 'name': 'Lepaskan dan Jauhkan',
138
+ 'text': 'Lepaskan tombol dan perlahan jauhkan jam tangan setidaknya 1 meter sebelum mematikan demagnetizer.',
139
+ },
140
+ ],
141
+ },
142
+ ],
143
+ };