@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,148 @@
1
+ import type { ToolLocaleContent } from '../../../types';
2
+ import type { WaterResistanceConverterUI } from '../entry';
3
+ import { bibliography } from '../bibliography';
4
+
5
+ export const content: ToolLocaleContent<WaterResistanceConverterUI> = {
6
+ slug: 'konverter-ketahanan-air',
7
+ title: 'Konverter Ketahanan Air Jam Tangan — Meter, ATM, Bar & Kaki',
8
+ description: 'Konversikan peringkat ketahanan air jam tangan antara meter, kaki, ATM, dan bar. Lihat arti sebenarnya dari setiap peringkat untuk pemakaian sehari-hari, berenang, dan menyelam.',
9
+ ui: {
10
+ title: 'Konverter Ketahanan Air',
11
+ depthLabel: 'Ketahanan Air',
12
+ enterDepth: 'Masukkan peringkat kedalaman',
13
+ unitMeters: 'Meter (m)',
14
+ unitFeet: 'Kaki (ft)',
15
+ unitATM: 'Atmosfer (ATM)',
16
+ unitBar: 'Bar (bar)',
17
+ convertedValues: 'Nilai Setara',
18
+ ratingLabel: 'Peringkat',
19
+ whatItMeans: 'Artinya',
20
+ notWaterResistant: 'Tidak Tahan Air',
21
+ notWaterResistantDesc: 'Tidak boleh kena percikan. Jauhkan sepenuhnya dari air.',
22
+ handWash: 'Tahan Percikan',
23
+ handWashDesc: 'Cuci tangan, hujan, percikan ringan. Tidak boleh berenang atau mandi.',
24
+ showerSwim: 'Mandi & Renang Permukaan',
25
+ showerSwimDesc: 'Mandi, berenang di permukaan kolam. Tidak boleh menyelam atau snorkeling.',
26
+ snorkeling: 'Berenang & Snorkeling',
27
+ snorkelingDesc: 'Berenang di kolam, snorkeling, olahraga air. Ketahanan harian yang sangat baik.',
28
+ scubaDiving: 'Selam Rekreasi',
29
+ scubaDivingDesc: 'Menyelam scuba, aktivitas laut berdampak tinggi. Sesuai ISO.',
30
+ saturationDiving: 'Selam Dalam / Saturasi',
31
+ saturationDivingDesc: 'Penyelaman saturasi profesional. Kedalaman ekstrem. Konteks katup pelepas helium.',
32
+ tipTitle: 'Tips',
33
+ tipContent: 'Ketahanan air menurun seiring waktu. Gasket dan segel harus diuji setiap tahun dan diganti setiap 3\u20135 tahun.',
34
+ },
35
+ seo: [
36
+ { type: 'title', text: 'Konverter Ketahanan Air Jam Tangan — Memahami Meter, ATM, Bar & Kaki', level: 2 },
37
+ { type: 'paragraph', html: 'Peringkat ketahanan air 30 meter tidak berarti Anda dapat menyelam hingga 30 meter. Itu berarti jam tangan dapat menahan percikan air dan hujan ringan. Konverter ini menerjemahkan antara <strong>meter, kaki, atmosfer (ATM), dan bar</strong>, dan memberi tahu Anda apa yang sebenarnya diizinkan oleh setiap peringkat.' },
38
+ { type: 'title', text: 'Kebenaran tentang Peringkat Ketahanan Air', level: 3 },
39
+ { type: 'paragraph', html: 'Ketahanan air jam tangan diuji di bawah tekanan statis di laboratorium. Kondisi dunia nyata — menggerakkan lengan, menyelam, perubahan suhu — menciptakan tekanan dinamis yang jauh lebih tinggi. Jam tangan 30m / 3 ATM hanya tahan percikan. Untuk berenang, Anda membutuhkan setidaknya 100m / 10 ATM. Untuk menyelam scuba, 200m / 20 ATM adalah titik masuk standar.' },
40
+ { type: 'title', text: 'Mengapa Ketahanan Air Menurun Seiring Waktu', level: 3 },
41
+ { type: 'paragraph', html: 'Gasket karet dan O-ring yang menyegel jam tangan Anda mengering, retak, dan terkompresi seiring waktu. Panas, sinar UV, dan bahan kimia mempercepat proses ini. Jam tangan yang dulunya tahan air hingga 100m mungkin hanya tahan percikan setelah 5 tahun tanpa perawatan. Uji segel Anda setiap tahun dan ganti setiap 3 hingga 5 tahun.' },
42
+ { type: 'title', text: 'ISO 6425 — Standar Jam Tangan Selam', level: 3 },
43
+ { type: 'paragraph', html: 'Agar jam tangan bisa disebut "jam tangan selam," jam tangan harus memenuhi standar ISO 6425: setidaknya 100m ketahanan air, bezel satu arah, tanda bercahaya, dan mahkota ulir. Jam tangan yang memenuhi standar ini diuji 25% di atas kedalaman teratanya. Jam tangan bersertifikasi ISO 200m diuji pada 250m.' },
44
+ ],
45
+ faq: [
46
+ {
47
+ question: 'Bisakah saya berenang dengan jam tangan tahan air 30 meter?',
48
+ answer: 'Tidak. Peringkat 30m / 3 ATM berarti hanya tahan percikan — cuci tangan, hujan, dan keringat. Berenang menciptakan tekanan dinamis yang melebihi tekanan uji statis. Untuk berenang, pilih setidaknya 100m / 10 ATM.',
49
+ },
50
+ {
51
+ question: 'Apa perbedaan antara ATM, bar, dan meter?',
52
+ answer: '1 ATM = 1 bar ≈ 10 meter kolom air statis. Pada industri jam tangan, ketiganya pada dasarnya setara. Jam tangan 10 ATM sama dengan jam tangan 10 bar dan diperingkat hingga sekitar 100 meter.',
53
+ },
54
+ {
55
+ question: 'Seberapa sering saya harus menguji ketahanan air jam tangan?',
56
+ answer: 'Setahun sekali, terutama sebelum terkena air. Gasket dan segel aus. Setiap 3-5 tahun, semua segel harus diganti saat servis penuh.',
57
+ },
58
+ {
59
+ question: 'Apa arti sertifikasi ISO 6425?',
60
+ answer: 'ISO 6425 adalah standar internasional untuk jam tangan selam. Ini membutuhkan setidaknya 100m ketahanan, bezel satu arah, tanda bercahaya, dan pengujian 25% di atas kedalaman teratanya.',
61
+ },
62
+ ],
63
+ bibliography,
64
+ howTo: [
65
+ {
66
+ name: 'Masukkan peringkat Anda',
67
+ text: 'Ketik angka ketahanan air jam tangan Anda dan pilih satuannya (meter, kaki, ATM, atau bar).',
68
+ },
69
+ {
70
+ name: 'Baca nilai setara',
71
+ text: 'Kartu menunjukkan nilai yang dikonversi dalam keempat satuan secara bersamaan.',
72
+ },
73
+ {
74
+ name: 'Periksa rekomendasi',
75
+ text: 'Kartu yang disorot menunjukkan aktivitas apa yang aman pada peringkat jam tangan Anda.',
76
+ },
77
+ ],
78
+ schemas: [
79
+ {
80
+ '@context': 'https://schema.org',
81
+ '@type': 'FAQPage',
82
+ 'mainEntity': [
83
+ {
84
+ '@type': 'Question',
85
+ 'name': 'Bisakah saya berenang dengan jam tangan tahan air 30 meter?',
86
+ 'acceptedAnswer': {
87
+ '@type': 'Answer',
88
+ 'text': 'Tidak. Peringkat 30m / 3 ATM berarti hanya tahan percikan — cuci tangan, hujan, dan keringat. Untuk berenang, pilih setidaknya 100m / 10 ATM.',
89
+ },
90
+ },
91
+ {
92
+ '@type': 'Question',
93
+ 'name': 'Apa perbedaan antara ATM, bar, dan meter?',
94
+ 'acceptedAnswer': {
95
+ '@type': 'Answer',
96
+ 'text': '1 ATM = 1 bar ≈ 10 meter kolom air statis. Pada industri jam tangan, ketiganya pada dasarnya setara.',
97
+ },
98
+ },
99
+ {
100
+ '@type': 'Question',
101
+ 'name': 'Seberapa sering saya harus menguji ketahanan air jam tangan?',
102
+ 'acceptedAnswer': {
103
+ '@type': 'Answer',
104
+ 'text': 'Setahun sekali, terutama sebelum terkena air. Setiap 3-5 tahun, semua segel harus diganti saat servis penuh.',
105
+ },
106
+ },
107
+ {
108
+ '@type': 'Question',
109
+ 'name': 'Apa arti sertifikasi ISO 6425?',
110
+ 'acceptedAnswer': {
111
+ '@type': 'Answer',
112
+ 'text': 'ISO 6425 membutuhkan setidaknya 100m ketahanan, bezel satu arah, tanda bercahaya, dan pengujian 25% di atas kedalaman teratanya.',
113
+ },
114
+ },
115
+ ],
116
+ },
117
+ {
118
+ '@context': 'https://schema.org',
119
+ '@type': 'SoftwareApplication',
120
+ 'name': 'Konverter Ketahanan Air Jam Tangan',
121
+ 'operatingSystem': 'Semua',
122
+ 'applicationCategory': 'UtilitiesApplication',
123
+ 'browserRequirements': 'Memerlukan HTML5. Memerlukan JavaScript.',
124
+ },
125
+ {
126
+ '@context': 'https://schema.org',
127
+ '@type': 'HowTo',
128
+ 'name': 'Cara mengonversi peringkat ketahanan air jam tangan',
129
+ 'step': [
130
+ {
131
+ '@type': 'HowToStep',
132
+ 'name': 'Masukkan peringkat Anda',
133
+ 'text': 'Ketik angka ketahanan air jam tangan Anda dan pilih satuannya.',
134
+ },
135
+ {
136
+ '@type': 'HowToStep',
137
+ 'name': 'Baca nilai setara',
138
+ 'text': 'Kartu menunjukkan nilai yang dikonversi dalam keempat satuan secara bersamaan.',
139
+ },
140
+ {
141
+ '@type': 'HowToStep',
142
+ 'name': 'Periksa rekomendasi',
143
+ 'text': 'Kartu yang disorot menunjukkan aktivitas yang aman pada peringkat jam tangan Anda.',
144
+ },
145
+ ],
146
+ },
147
+ ],
148
+ };
@@ -0,0 +1,148 @@
1
+ import type { ToolLocaleContent } from '../../../types';
2
+ import type { WaterResistanceConverterUI } from '../entry';
3
+ import { bibliography } from '../bibliography';
4
+
5
+ export const content: ToolLocaleContent<WaterResistanceConverterUI> = {
6
+ slug: 'convertitore-resistenza-acqua',
7
+ title: 'Convertitore di Resistenza all\'Acqua per Orologi — Metri, ATM, Bar & Piedi',
8
+ description: 'Converti i gradi di resistenza all\'acqua degli orologi tra metri, piedi, ATM e bar. Scopri cosa significa ogni grado per l\'uso quotidiano, il nuoto e le immersioni.',
9
+ ui: {
10
+ title: 'Convertitore di Resistenza all\'Acqua',
11
+ depthLabel: 'Resistenza all\'Acqua',
12
+ enterDepth: 'Inserisci il grado di profondità',
13
+ unitMeters: 'Metri (m)',
14
+ unitFeet: 'Piedi (ft)',
15
+ unitATM: 'Atmosfere (ATM)',
16
+ unitBar: 'Bar (bar)',
17
+ convertedValues: 'Valori Equivalenti',
18
+ ratingLabel: 'Grado',
19
+ whatItMeans: 'Cosa Significa',
20
+ notWaterResistant: 'Non Resistente all\'Acqua',
21
+ notWaterResistantDesc: 'Niente schizzi. Tenerlo completamente lontano dall\'acqua.',
22
+ handWash: 'Resistente agli Schizzi',
23
+ handWashDesc: 'Lavaggio mani, pioggia, leggeri schizzi. Non nuotare, non fare la doccia.',
24
+ showerSwim: 'Doccia e Nuoto in Superficie',
25
+ showerSwimDesc: 'Doccia, nuoto in superficie in piscina. Niente immersioni o snorkeling.',
26
+ snorkeling: 'Nuoto e Snorkeling',
27
+ snorkelingDesc: 'Nuoto in piscina, snorkeling, sport acquatici. Eccellente resistenza quotidiana.',
28
+ scubaDiving: 'Subacquea Ricreativa',
29
+ scubaDivingDesc: 'Immersione subacquea, attività marine ad alto impatto. Conforme ISO.',
30
+ saturationDiving: 'Immersione Profonda / Saturazione',
31
+ saturationDivingDesc: 'Immersione di saturazione professionale. Profondità estreme. Contesto valvola di scarico elio.',
32
+ tipTitle: 'Consiglio',
33
+ tipContent: 'La resistenza all\'acqua diminuisce nel tempo. Le guarnizioni devono essere controllate annualmente e sostituite ogni 3\u20135 anni.',
34
+ },
35
+ seo: [
36
+ { type: 'title', text: 'Convertitore di Resistenza all\'Acqua per Orologi — Decodificare Metri, ATM, Bar & Piedi', level: 2 },
37
+ { type: 'paragraph', html: 'Un grado di resistenza all\'acqua di 30 metri non significa che puoi immergerti a 30 metri. Significa che l\'orologio sopporta schizzi e pioggia leggera. Questo convertitore traduce tra <strong>metri, piedi, atmosfere (ATM) e bar</strong> e ti dice cosa ogni grado consente effettivamente.' },
38
+ { type: 'title', text: 'La Verità sui Gradi di Resistenza all\'Acqua', level: 3 },
39
+ { type: 'paragraph', html: 'La resistenza all\'acqua degli orologi viene testata in laboratorio sotto pressione statica. Le condizioni reali — muovere il braccio, immergersi, sbalzi di temperatura — creano una pressione dinamica molto più elevata. Un orologio da 30m / 3 ATM è solo resistente agli schizzi. Per nuotare, serve almeno 100m / 10 ATM. Per le immersioni subacquee, 200m / 20 ATM è il punto di ingresso standard.' },
40
+ { type: 'title', text: 'Perché la Resistenza all\'Acqua Diminuisce col Tempo', level: 3 },
41
+ { type: 'paragraph', html: 'Le guarnizioni in gomma e gli O-ring che sigillano l\'orologio si seccano, si crepano e si comprimono col tempo. Calore, luce UV e sostanze chimiche accelerano questo processo. Un orologio un tempo resistente all\'acqua fino a 100m può diventare solo resistente agli schizzi dopo 5 anni senza manutenzione. Fai controllare le guarnizioni ogni anno e sostituiscile ogni 3-5 anni.' },
42
+ { type: 'title', text: 'ISO 6425 — Lo Standard per Orologi Subacquei', level: 3 },
43
+ { type: 'paragraph', html: 'Perché un orologio possa essere chiamato "orologio subacqueo," deve soddisfare gli standard ISO 6425: almeno 100m di resistenza all\'acqua, una lunetta unidirezionale, marcature luminescenti e una corona a vite. Gli orologi che soddisfano questo standard vengono testati al 25% oltre la profondità nominale. Un orologio con certificazione ISO da 200m viene testato a 250m.' },
44
+ ],
45
+ faq: [
46
+ {
47
+ question: 'Posso nuotare con un orologio resistente all\'acqua fino a 30 metri?',
48
+ answer: 'No. Un grado di 30m / 3 ATM significa solo resistenza agli schizzi — lavaggio mani, pioggia e sudore. Il nuoto crea una pressione dinamica che supera la pressione di prova statica. Per nuotare, scegli almeno 100m / 10 ATM.',
49
+ },
50
+ {
51
+ question: 'Qual è la differenza tra ATM, bar e metri?',
52
+ answer: '1 ATM = 1 bar ≈ 10 metri di colonna d\'acqua statica. Nell\'industria orologiera sono essenzialmente equivalenti. Un orologio da 10 ATM è uguale a un orologio da 10 bar ed è classificato per circa 100 metri.',
53
+ },
54
+ {
55
+ question: 'Con quale frequenza dovrei testare la resistenza all\'acqua del mio orologio?',
56
+ answer: 'Una volta all\'anno, specialmente prima dell\'esposizione all\'acqua. Le guarnizioni si usurano. Ogni 3-5 anni, tutte le guarnizioni dovrebbero essere sostituite durante un服务 completo.',
57
+ },
58
+ {
59
+ question: 'Cosa significa certificazione ISO 6425?',
60
+ answer: 'ISO 6425 è lo standard internazionale per gli orologi subacquei. Richiede almeno 100m di resistenza, una lunetta unidirezionale, marcature luminescenti e test al 25% sopra la profondità nominale.',
61
+ },
62
+ ],
63
+ bibliography,
64
+ howTo: [
65
+ {
66
+ name: 'Inserisci il tuo grado',
67
+ text: 'Digita il numero di resistenza all\'acqua del tuo orologio e seleziona l\'unità (metri, piedi, ATM o bar).',
68
+ },
69
+ {
70
+ name: 'Leggi gli equivalenti',
71
+ text: 'La scheda mostra i valori convertiti in tutte e quattro le unità simultaneamente.',
72
+ },
73
+ {
74
+ name: 'Controlla la raccomandazione',
75
+ text: 'La scheda evidenziata mostra quali attività sono sicure con il tuo grado di resistenza.',
76
+ },
77
+ ],
78
+ schemas: [
79
+ {
80
+ '@context': 'https://schema.org',
81
+ '@type': 'FAQPage',
82
+ 'mainEntity': [
83
+ {
84
+ '@type': 'Question',
85
+ 'name': 'Posso nuotare con un orologio resistente all\'acqua fino a 30 metri?',
86
+ 'acceptedAnswer': {
87
+ '@type': 'Answer',
88
+ 'text': 'No. Un grado di 30m / 3 ATM significa solo resistenza agli schizzi — lavaggio mani, pioggia e sudore. Per nuotare, scegli almeno 100m / 10 ATM.',
89
+ },
90
+ },
91
+ {
92
+ '@type': 'Question',
93
+ 'name': 'Qual è la differenza tra ATM, bar e metri?',
94
+ 'acceptedAnswer': {
95
+ '@type': 'Answer',
96
+ 'text': '1 ATM = 1 bar ≈ 10 metri di colonna d\'acqua statica. Nell\'industria orologiera sono essenzialmente equivalenti.',
97
+ },
98
+ },
99
+ {
100
+ '@type': 'Question',
101
+ 'name': 'Con quale frequenza dovrei testare la resistenza all\'acqua del mio orologio?',
102
+ 'acceptedAnswer': {
103
+ '@type': 'Answer',
104
+ 'text': 'Una volta all\'anno, specialmente prima dell\'esposizione all\'acqua. Ogni 3-5 anni, tutte le guarnizioni dovrebbero essere sostituite durante una revisione completa.',
105
+ },
106
+ },
107
+ {
108
+ '@type': 'Question',
109
+ 'name': 'Cosa significa certificazione ISO 6425?',
110
+ 'acceptedAnswer': {
111
+ '@type': 'Answer',
112
+ 'text': 'ISO 6425 richiede almeno 100m di resistenza, una lunetta unidirezionale, marcature luminescenti e test al 25% sopra la profondità nominale.',
113
+ },
114
+ },
115
+ ],
116
+ },
117
+ {
118
+ '@context': 'https://schema.org',
119
+ '@type': 'SoftwareApplication',
120
+ 'name': 'Convertitore di Resistenza all\'Acqua per Orologi',
121
+ 'operatingSystem': 'Tutti',
122
+ 'applicationCategory': 'UtilitiesApplication',
123
+ 'browserRequirements': 'Richiede HTML5. Richiede JavaScript.',
124
+ },
125
+ {
126
+ '@context': 'https://schema.org',
127
+ '@type': 'HowTo',
128
+ 'name': 'Come convertire i gradi di resistenza all\'acqua degli orologi',
129
+ 'step': [
130
+ {
131
+ '@type': 'HowToStep',
132
+ 'name': 'Inserisci il tuo grado',
133
+ 'text': 'Digita il numero di resistenza all\'acqua del tuo orologio e seleziona l\'unità.',
134
+ },
135
+ {
136
+ '@type': 'HowToStep',
137
+ 'name': 'Leggi gli equivalenti',
138
+ 'text': 'La scheda mostra i valori convertiti in tutte e quattro le unità simultaneamente.',
139
+ },
140
+ {
141
+ '@type': 'HowToStep',
142
+ 'name': 'Controlla la raccomandazione',
143
+ 'text': 'La scheda evidenziata mostra quali attività sono sicure con il tuo grado di resistenza.',
144
+ },
145
+ ],
146
+ },
147
+ ],
148
+ };
@@ -0,0 +1,148 @@
1
+ import type { ToolLocaleContent } from '../../../types';
2
+ import type { WaterResistanceConverterUI } from '../entry';
3
+ import { bibliography } from '../bibliography';
4
+
5
+ export const content: ToolLocaleContent<WaterResistanceConverterUI> = {
6
+ slug: 'water-resistance-converter',
7
+ title: '時計の防水変換ツール — メートル、ATM、バー、フィート',
8
+ description: '時計の防水性能をメートル、フィート、ATM、バーの間で変換します。各性能が日常使い、水泳、ダイビングで実際に何を意味するかを確認しましょう。',
9
+ ui: {
10
+ title: '防水変換ツール',
11
+ depthLabel: '防水性能',
12
+ enterDepth: '耐圧深度を入力',
13
+ unitMeters: 'メートル (m)',
14
+ unitFeet: 'フィート (ft)',
15
+ unitATM: '気圧 (ATM)',
16
+ unitBar: 'バー (bar)',
17
+ convertedValues: '換算値',
18
+ ratingLabel: '性能',
19
+ whatItMeans: '意味',
20
+ notWaterResistant: '非防水',
21
+ notWaterResistantDesc: '水滴も避けてください。完全に水から遠ざけてください。',
22
+ handWash: '生活防水',
23
+ handWashDesc: '手洗い、雨、軽い水滴。水泳やシャワーは避けてください。',
24
+ showerSwim: 'シャワーと水泳',
25
+ showerSwimDesc: 'シャワー、プールでの浅い水泳。潜水やシュノーケリングは避けてください。',
26
+ snorkeling: '水泳とシュノーケリング',
27
+ snorkelingDesc: 'プール水泳、シュノーケリング、ウォータースポーツ。日常使いに優れた防水性。',
28
+ scubaDiving: 'レクリエーションダイビング',
29
+ scubaDivingDesc: 'スキューバダイビング、高負荷のマリンアクティビティ。ISO準拠。',
30
+ saturationDiving: '飽和潜水',
31
+ saturationDivingDesc: 'プロフェッショナルな飽和潜水。極限深度。ヘリウムエスケープバルブ対応。',
32
+ tipTitle: 'ヒント',
33
+ tipContent: '防水性能は経年劣化します。ガスケットとシールは毎年点検し、3\u20135年ごとに交換してください。',
34
+ },
35
+ seo: [
36
+ { type: 'title', text: '時計の防水変換ツール — メートル、ATM、バー、フィートを解説', level: 2 },
37
+ { type: 'paragraph', html: '30メートル防水の表示は、30メートルまで潜れるという意味ではありません。水滴や軽い雨に耐えられるという意味です。この変換ツールは<strong>メートル、フィート、気圧(ATM)、バー</strong>の間を変換し、各性能で実際に何が可能かを示します。' },
38
+ { type: 'title', text: '防水性能の真実', level: 3 },
39
+ { type: 'paragraph', html: '時計の防水性能は実験室で静水圧下でテストされます。実際の使用条件 — 腕を動かす、潜る、温度変化 — では、はるかに高い動水圧が発生します。30m / 3 ATMの時計は生活防水のみです。泳ぐには最低100m / 10 ATMが必要です。スキューバダイビングには200m / 20 ATMが標準的な目安です。' },
40
+ { type: 'title', text: '防水性能が経年劣化する理由', level: 3 },
41
+ { type: 'paragraph', html: '時計を密閉するゴム製のガスケットとOリングは、時間の経過とともに乾燥し、ひび割れ、圧縮されます。熱、紫外線、化学薬品はこのプロセスを加速します。かつて100m防水だった時計でも、5年間メンテナンスなしでは生活防水程度になることがあります。シールは毎年点検し、3〜5年ごとに交換してください。' },
42
+ { type: 'title', text: 'ISO 6425 — ダイバーズウォッチの基準', level: 3 },
43
+ { type: 'paragraph', html: '時計が「ダイバーズウォッチ」と呼ばれるには、ISO 6425規格を満たす必要があります:最低100mの防水性、一方向回転ベゼル、蓄光表示、ねじ込み式リューズです。この規格を満たす時計は、定格深度の25%増しでテストされます。200mのISO認証時計は250mでテストされます。' },
44
+ ],
45
+ faq: [
46
+ {
47
+ question: '30メートル防水の時計で泳げますか?',
48
+ answer: 'いいえ。30m / 3 ATMの表示は生活防水のみ — 手洗い、雨、汗に対応します。水泳では静水圧テストを超える動水圧が発生します。泳ぐ場合は最低100m / 10 ATMをお選びください。',
49
+ },
50
+ {
51
+ question: 'ATM、バー、メートルの違いは何ですか?',
52
+ answer: '1 ATM = 1バー ≈ 10メートルの静水柱です。時計業界では基本的に同等です。10 ATMの時計は10バーの時計と同じで、約100メートルまで対応します。',
53
+ },
54
+ {
55
+ question: '時計の防水テストはどのくらいの頻度で行うべきですか?',
56
+ answer: '年に1回、特に水に触れる前に。ガスケットとシールは劣化します。3〜5年ごとに、フルメンテナンスですべてのシールを交換する必要があります。',
57
+ },
58
+ {
59
+ question: 'ISO 6425認証とは何ですか?',
60
+ answer: 'ISO 6425はダイバーズウォッチの国際規格です。最低100mの防水性、一方向回転ベゼル、蓄光表示、定格深度の25%増しでのテストを要求します。',
61
+ },
62
+ ],
63
+ bibliography,
64
+ howTo: [
65
+ {
66
+ name: '数値を入力',
67
+ text: '時計の防水性能の数値を入力し、単位(メートル、フィート、ATM、バー)を選択します。',
68
+ },
69
+ {
70
+ name: '換算値を確認',
71
+ text: 'カードに4つの単位すべての換算値が同時に表示されます。',
72
+ },
73
+ {
74
+ name: '推奨を確認',
75
+ text: 'ハイライトされたカードは、その防水性能で安全なアクティビティを示します。',
76
+ },
77
+ ],
78
+ schemas: [
79
+ {
80
+ '@context': 'https://schema.org',
81
+ '@type': 'FAQPage',
82
+ 'mainEntity': [
83
+ {
84
+ '@type': 'Question',
85
+ 'name': '30メートル防水の時計で泳げますか?',
86
+ 'acceptedAnswer': {
87
+ '@type': 'Answer',
88
+ 'text': 'いいえ。30m / 3 ATMの表示は生活防水のみ — 手洗い、雨、汗に対応します。泳ぐ場合は最低100m / 10 ATMをお選びください。',
89
+ },
90
+ },
91
+ {
92
+ '@type': 'Question',
93
+ 'name': 'ATM、バー、メートルの違いは何ですか?',
94
+ 'acceptedAnswer': {
95
+ '@type': 'Answer',
96
+ 'text': '1 ATM = 1バー ≈ 10メートルの静水柱です。時計業界では基本的に同等です。',
97
+ },
98
+ },
99
+ {
100
+ '@type': 'Question',
101
+ 'name': '時計の防水テストはどのくらいの頻度で行うべきですか?',
102
+ 'acceptedAnswer': {
103
+ '@type': 'Answer',
104
+ 'text': '年に1回、特に水に触れる前に。3〜5年ごとに、フルメンテナンスですべてのシールを交換する必要があります。',
105
+ },
106
+ },
107
+ {
108
+ '@type': 'Question',
109
+ 'name': 'ISO 6425認証とは何ですか?',
110
+ 'acceptedAnswer': {
111
+ '@type': 'Answer',
112
+ 'text': 'ISO 6425は最低100mの防水性、一方向回転ベゼル、蓄光表示、定格深度の25%増しでのテストを要求します。',
113
+ },
114
+ },
115
+ ],
116
+ },
117
+ {
118
+ '@context': 'https://schema.org',
119
+ '@type': 'SoftwareApplication',
120
+ 'name': '時計の防水変換ツール',
121
+ 'operatingSystem': 'すべて',
122
+ 'applicationCategory': 'UtilitiesApplication',
123
+ 'browserRequirements': 'HTML5対応。JavaScript対応。',
124
+ },
125
+ {
126
+ '@context': 'https://schema.org',
127
+ '@type': 'HowTo',
128
+ 'name': '時計の防水性能を変換する方法',
129
+ 'step': [
130
+ {
131
+ '@type': 'HowToStep',
132
+ 'name': '数値を入力',
133
+ 'text': '時計の防水性能の数値を入力し、単位を選択します。',
134
+ },
135
+ {
136
+ '@type': 'HowToStep',
137
+ 'name': '換算値を確認',
138
+ 'text': 'カードに4つの単位すべての換算値が同時に表示されます。',
139
+ },
140
+ {
141
+ '@type': 'HowToStep',
142
+ 'name': '推奨を確認',
143
+ 'text': 'ハイライトされたカードは、その防水性能で安全なアクティビティを示します。',
144
+ },
145
+ ],
146
+ },
147
+ ],
148
+ };
@@ -0,0 +1,148 @@
1
+ import type { ToolLocaleContent } from '../../../types';
2
+ import type { WaterResistanceConverterUI } from '../entry';
3
+ import { bibliography } from '../bibliography';
4
+
5
+ export const content: ToolLocaleContent<WaterResistanceConverterUI> = {
6
+ slug: 'water-resistance-converter',
7
+ title: '시계 방수 변환기 — 미터, ATM, Bar, 피트',
8
+ description: '시계 방수 등급을 미터, 피트, ATM, Bar 간에 변환합니다. 일상 사용, 수영, 다이빙에서 각 등급이 실제로 의미하는 바를 확인하세요.',
9
+ ui: {
10
+ title: '방수 변환기',
11
+ depthLabel: '방수 등급',
12
+ enterDepth: '방수 깊이 입력',
13
+ unitMeters: '미터 (m)',
14
+ unitFeet: '피트 (ft)',
15
+ unitATM: '기압 (ATM)',
16
+ unitBar: 'Bar (bar)',
17
+ convertedValues: '변환 값',
18
+ ratingLabel: '등급',
19
+ whatItMeans: '의미',
20
+ notWaterResistant: '방수 아님',
21
+ notWaterResistantDesc: '물방울도 피하세요. 물과 완전히 멀리하세요.',
22
+ handWash: '생활 방수',
23
+ handWashDesc: '손 씻기, 비, 가벼운 물방울. 수영이나 샤워는 안 됩니다.',
24
+ showerSwim: '샤워와 수영',
25
+ showerSwimDesc: '샤워, 수영장 얕은 수영. 잠수나 스노클링은 안 됩니다.',
26
+ snorkeling: '수영과 스노클링',
27
+ snorkelingDesc: '수영장 수영, 스노클링, 수상 스포츠. 일상 사용에 우수한 방수 성능.',
28
+ scubaDiving: '레크리에이션 다이빙',
29
+ scubaDivingDesc: '스쿠버 다이빙, 고강도 해양 활동. ISO 준수.',
30
+ saturationDiving: '포화 잠수',
31
+ saturationDivingDesc: '전문 포화 잠수. 극한 수심. 헬륨 이스케이프 밸브 컨텍스트.',
32
+ tipTitle: '팁',
33
+ tipContent: '방수 성능은 시간이 지남에 따라 저하됩니다. 개스킷과 실링은 매년 점검하고 3\u20135년마다 교체해야 합니다.',
34
+ },
35
+ seo: [
36
+ { type: 'title', text: '시계 방수 변환기 — 미터, ATM, Bar, 피트 이해하기', level: 2 },
37
+ { type: 'paragraph', html: '30미터 방수 등급이 30미터까지 잠수할 수 있다는 의미는 아닙니다. 물방울과 가벼운 비를 견딜 수 있다는 뜻입니다. 이 변환기는 <strong>미터, 피트, 기압(ATM), Bar</strong> 간을 변환하고 각 등급이 실제로 허용하는 활동을 알려줍니다.' },
38
+ { type: 'title', text: '방수 등급에 대한 진실', level: 3 },
39
+ { type: 'paragraph', html: '시계 방수 성능은 실험실에서 정적 수압으로 테스트됩니다. 실제 환경 — 팔 움직임, 다이빙, 온도 변화 — 에서는 훨씬 더 높은 동적 압력이 발생합니다. 30m / 3 ATM 시계는 생활 방수만 가능합니다. 수영을 위해서는 최소 100m / 10 ATM이 필요합니다. 스쿠버 다이빙을 위해서는 200m / 20 ATM이 표준 기준입니다.' },
40
+ { type: 'title', text: '방수 성능이 시간이 지나면서 저하되는 이유', level: 3 },
41
+ { type: 'paragraph', html: '시계를 밀봉하는 고무 개스킷과 O링은 시간이 지나면서 건조해지고, 균열이 생기고, 압축됩니다. 열, 자외선, 화학 물질이 이 과정을 가속화합니다. 한때 100m 방수였던 시계도 5년간 관리 없이 방치하면 생활 방수 수준으로 저하될 수 있습니다. 실링은 매년 점검하고 3~5년마다 교체하세요.' },
42
+ { type: 'title', text: 'ISO 6425 — 다이버 시계 표준', level: 3 },
43
+ { type: 'paragraph', html: '시계가 "다이버 시계"로 불리려면 ISO 6425 표준을 충족해야 합니다: 최소 100m 방수, 단방향 베젤, 야광 표시, 나사식 크라운. 이 표준을 충족하는 시계는 정격 수심보다 25% 높은 압력에서 테스트됩니다. 200m ISO 인증 시계는 250m에서 테스트됩니다.' },
44
+ ],
45
+ faq: [
46
+ {
47
+ question: '30미터 방수 시계로 수영할 수 있나요?',
48
+ answer: '아니요. 30m / 3 ATM 등급은 생활 방수만 의미합니다 — 손 씻기, 비, 땀. 수영은 정적 테스트 압력을 초과하는 동적 압력을 만듭니다. 수영을 위해서는 최소 100m / 10 ATM을 선택하세요.',
49
+ },
50
+ {
51
+ question: 'ATM, Bar, 미터의 차이점은 무엇인가요?',
52
+ answer: '1 ATM = 1 Bar ≈ 10미터의 정적 수주입니다. 시계 업계에서는 본질적으로 동일합니다. 10 ATM 시계는 10 Bar 시계와 같으며 약 100미터까지 사용 가능합니다.',
53
+ },
54
+ {
55
+ question: '시계 방수 테스트는 얼마나 자주 해야 하나요?',
56
+ answer: '1년에 한 번, 특히 물에 노출되기 전에. 개스킷과 실링은 마모됩니다. 3~5년마다 모든 실링을 전체 서비스 시 교체해야 합니다.',
57
+ },
58
+ {
59
+ question: 'ISO 6425 인증이란 무엇인가요?',
60
+ answer: 'ISO 6425는 다이버 시계에 대한 국제 표준입니다. 최소 100m 방수, 단방향 베젤, 야광 표시, 정격 수심의 25% 초과 테스트를 요구합니다.',
61
+ },
62
+ ],
63
+ bibliography,
64
+ howTo: [
65
+ {
66
+ name: '등급 입력',
67
+ text: '시계의 방수 등급 숫자를 입력하고 단위(미터, 피트, ATM, Bar)를 선택하세요.',
68
+ },
69
+ {
70
+ name: '변환 값 확인',
71
+ text: '카드에 네 가지 단위의 변환 값이 동시에 표시됩니다.',
72
+ },
73
+ {
74
+ name: '권장 사항 확인',
75
+ text: '강조 표시된 카드는 해당 방수 등급에서 안전한 활동을 보여줍니다.',
76
+ },
77
+ ],
78
+ schemas: [
79
+ {
80
+ '@context': 'https://schema.org',
81
+ '@type': 'FAQPage',
82
+ 'mainEntity': [
83
+ {
84
+ '@type': 'Question',
85
+ 'name': '30미터 방수 시계로 수영할 수 있나요?',
86
+ 'acceptedAnswer': {
87
+ '@type': 'Answer',
88
+ 'text': '아니요. 30m / 3 ATM 등급은 생활 방수만 의미합니다 — 손 씻기, 비, 땀. 수영을 위해서는 최소 100m / 10 ATM을 선택하세요.',
89
+ },
90
+ },
91
+ {
92
+ '@type': 'Question',
93
+ 'name': 'ATM, Bar, 미터의 차이점은 무엇인가요?',
94
+ 'acceptedAnswer': {
95
+ '@type': 'Answer',
96
+ 'text': '1 ATM = 1 Bar ≈ 10미터의 정적 수주입니다. 시계 업계에서는 본질적으로 동일합니다.',
97
+ },
98
+ },
99
+ {
100
+ '@type': 'Question',
101
+ 'name': '시계 방수 테스트는 얼마나 자주 해야 하나요?',
102
+ 'acceptedAnswer': {
103
+ '@type': 'Answer',
104
+ 'text': '1년에 한 번, 특히 물에 노출되기 전에. 3~5년마다 모든 실링을 전체 서비스 시 교체해야 합니다.',
105
+ },
106
+ },
107
+ {
108
+ '@type': 'Question',
109
+ 'name': 'ISO 6425 인증이란 무엇인가요?',
110
+ 'acceptedAnswer': {
111
+ '@type': 'Answer',
112
+ 'text': 'ISO 6425는 최소 100m 방수, 단방향 베젤, 야광 표시, 정격 수심의 25% 초과 테스트를 요구합니다.',
113
+ },
114
+ },
115
+ ],
116
+ },
117
+ {
118
+ '@context': 'https://schema.org',
119
+ '@type': 'SoftwareApplication',
120
+ 'name': '시계 방수 변환기',
121
+ 'operatingSystem': '모두',
122
+ 'applicationCategory': 'UtilitiesApplication',
123
+ 'browserRequirements': 'HTML5 필요. JavaScript 필요.',
124
+ },
125
+ {
126
+ '@context': 'https://schema.org',
127
+ '@type': 'HowTo',
128
+ 'name': '시계 방수 등급 변환 방법',
129
+ 'step': [
130
+ {
131
+ '@type': 'HowToStep',
132
+ 'name': '등급 입력',
133
+ 'text': '시계의 방수 등급 숫자를 입력하고 단위를 선택하세요.',
134
+ },
135
+ {
136
+ '@type': 'HowToStep',
137
+ 'name': '변환 값 확인',
138
+ 'text': '카드에 네 가지 단위의 변환 값이 동시에 표시됩니다.',
139
+ },
140
+ {
141
+ '@type': 'HowToStep',
142
+ 'name': '권장 사항 확인',
143
+ 'text': '강조 표시된 카드는 해당 방수 등급에서 안전한 활동을 보여줍니다.',
144
+ },
145
+ ],
146
+ },
147
+ ],
148
+ };