@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.
- package/package.json +65 -0
- package/scripts/postinstall.mjs +27 -0
- package/src/category/ChronoCategorySEO.astro +8 -0
- package/src/category/i18n/de.ts +23 -0
- package/src/category/i18n/en.ts +23 -0
- package/src/category/i18n/es.ts +23 -0
- package/src/category/i18n/fr.ts +23 -0
- package/src/category/i18n/id.ts +23 -0
- package/src/category/i18n/it.ts +23 -0
- package/src/category/i18n/ja.ts +23 -0
- package/src/category/i18n/ko.ts +23 -0
- package/src/category/i18n/nl.ts +23 -0
- package/src/category/i18n/pl.ts +23 -0
- package/src/category/i18n/pt.ts +23 -0
- package/src/category/i18n/ru.ts +23 -0
- package/src/category/i18n/sv.ts +23 -0
- package/src/category/i18n/tr.ts +23 -0
- package/src/category/i18n/zh.ts +23 -0
- package/src/category/index.ts +42 -0
- package/src/components/PreviewNavSidebar.astro +116 -0
- package/src/components/PreviewToolbar.astro +143 -0
- package/src/data.ts +11 -0
- package/src/entries.ts +32 -0
- package/src/env.d.ts +5 -0
- package/src/index.ts +28 -0
- package/src/layouts/PreviewLayout.astro +117 -0
- package/src/pages/[locale]/[slug].astro +161 -0
- package/src/pages/[locale].astro +251 -0
- package/src/pages/index.astro +4 -0
- package/src/tests/faq_count.test.ts +19 -0
- package/src/tests/i18n_coverage.test.ts +36 -0
- package/src/tests/locale_completeness.test.ts +29 -0
- package/src/tests/mocks/astro_mock.js +2 -0
- package/src/tests/no_h1_in_components.test.ts +48 -0
- package/src/tests/schemas_fulfillment.test.ts +23 -0
- package/src/tests/seo_length.test.ts +22 -0
- package/src/tests/shared-test-helpers.ts +56 -0
- package/src/tests/slug_language_code_format.test.ts +23 -0
- package/src/tests/slug_uniqueness.test.ts +81 -0
- package/src/tests/title_quality.test.ts +55 -0
- package/src/tests/tool_exports.test.ts +34 -0
- package/src/tests/tool_validation.test.ts +18 -0
- package/src/tool/beat-rate-converter/beat-rate-converter.css +301 -0
- package/src/tool/beat-rate-converter/bibliography.astro +16 -0
- package/src/tool/beat-rate-converter/bibliography.ts +12 -0
- package/src/tool/beat-rate-converter/client.ts +46 -0
- package/src/tool/beat-rate-converter/component.astro +15 -0
- package/src/tool/beat-rate-converter/components/ConverterPanel.astro +87 -0
- package/src/tool/beat-rate-converter/entry.ts +42 -0
- package/src/tool/beat-rate-converter/i18n/de.ts +138 -0
- package/src/tool/beat-rate-converter/i18n/en.ts +138 -0
- package/src/tool/beat-rate-converter/i18n/es.ts +138 -0
- package/src/tool/beat-rate-converter/i18n/fr.ts +138 -0
- package/src/tool/beat-rate-converter/i18n/id.ts +138 -0
- package/src/tool/beat-rate-converter/i18n/it.ts +138 -0
- package/src/tool/beat-rate-converter/i18n/ja.ts +138 -0
- package/src/tool/beat-rate-converter/i18n/ko.ts +138 -0
- package/src/tool/beat-rate-converter/i18n/nl.ts +138 -0
- package/src/tool/beat-rate-converter/i18n/pl.ts +138 -0
- package/src/tool/beat-rate-converter/i18n/pt.ts +138 -0
- package/src/tool/beat-rate-converter/i18n/ru.ts +138 -0
- package/src/tool/beat-rate-converter/i18n/sv.ts +138 -0
- package/src/tool/beat-rate-converter/i18n/tr.ts +138 -0
- package/src/tool/beat-rate-converter/i18n/zh.ts +138 -0
- package/src/tool/beat-rate-converter/index.ts +11 -0
- package/src/tool/beat-rate-converter/seo.astro +16 -0
- package/src/tool/crown-reference-guide/bibliography.astro +16 -0
- package/src/tool/crown-reference-guide/bibliography.ts +20 -0
- package/src/tool/crown-reference-guide/client.ts +193 -0
- package/src/tool/crown-reference-guide/component.astro +69 -0
- package/src/tool/crown-reference-guide/components/CrownView.astro +40 -0
- package/src/tool/crown-reference-guide/components/MovementSelector.astro +26 -0
- package/src/tool/crown-reference-guide/components/PositionPanel.astro +59 -0
- package/src/tool/crown-reference-guide/crown-reference-guide.css +383 -0
- package/src/tool/crown-reference-guide/entry.ts +60 -0
- package/src/tool/crown-reference-guide/i18n/de.ts +207 -0
- package/src/tool/crown-reference-guide/i18n/en.ts +207 -0
- package/src/tool/crown-reference-guide/i18n/es.ts +207 -0
- package/src/tool/crown-reference-guide/i18n/fr.ts +207 -0
- package/src/tool/crown-reference-guide/i18n/id.ts +207 -0
- package/src/tool/crown-reference-guide/i18n/it.ts +207 -0
- package/src/tool/crown-reference-guide/i18n/ja.ts +207 -0
- package/src/tool/crown-reference-guide/i18n/ko.ts +207 -0
- package/src/tool/crown-reference-guide/i18n/nl.ts +207 -0
- package/src/tool/crown-reference-guide/i18n/pl.ts +207 -0
- package/src/tool/crown-reference-guide/i18n/pt.ts +207 -0
- package/src/tool/crown-reference-guide/i18n/ru.ts +207 -0
- package/src/tool/crown-reference-guide/i18n/sv.ts +207 -0
- package/src/tool/crown-reference-guide/i18n/tr.ts +207 -0
- package/src/tool/crown-reference-guide/i18n/zh.ts +207 -0
- package/src/tool/crown-reference-guide/index.ts +11 -0
- package/src/tool/crown-reference-guide/seo.astro +16 -0
- package/src/tool/crown-reference-guide/utils.ts +0 -0
- package/src/tool/demagnetizing-timer/bibliography.astro +16 -0
- package/src/tool/demagnetizing-timer/bibliography.ts +12 -0
- package/src/tool/demagnetizing-timer/client.ts +221 -0
- package/src/tool/demagnetizing-timer/component.astro +15 -0
- package/src/tool/demagnetizing-timer/components/TimerPanel.astro +92 -0
- package/src/tool/demagnetizing-timer/demagnetizing-timer.css +389 -0
- package/src/tool/demagnetizing-timer/entry.ts +50 -0
- package/src/tool/demagnetizing-timer/helpers/field.ts +134 -0
- package/src/tool/demagnetizing-timer/i18n/de.ts +143 -0
- package/src/tool/demagnetizing-timer/i18n/en.ts +143 -0
- package/src/tool/demagnetizing-timer/i18n/es.ts +143 -0
- package/src/tool/demagnetizing-timer/i18n/fr.ts +143 -0
- package/src/tool/demagnetizing-timer/i18n/id.ts +143 -0
- package/src/tool/demagnetizing-timer/i18n/it.ts +143 -0
- package/src/tool/demagnetizing-timer/i18n/ja.ts +143 -0
- package/src/tool/demagnetizing-timer/i18n/ko.ts +143 -0
- package/src/tool/demagnetizing-timer/i18n/nl.ts +143 -0
- package/src/tool/demagnetizing-timer/i18n/pl.ts +143 -0
- package/src/tool/demagnetizing-timer/i18n/pt.ts +143 -0
- package/src/tool/demagnetizing-timer/i18n/ru.ts +143 -0
- package/src/tool/demagnetizing-timer/i18n/sv.ts +143 -0
- package/src/tool/demagnetizing-timer/i18n/tr.ts +143 -0
- package/src/tool/demagnetizing-timer/i18n/zh.ts +143 -0
- package/src/tool/demagnetizing-timer/index.ts +11 -0
- package/src/tool/demagnetizing-timer/seo.astro +16 -0
- package/src/tool/demagnetizing-timer/utils.ts +0 -0
- package/src/tool/power-reserve-estimator/bibliography.astro +16 -0
- package/src/tool/power-reserve-estimator/bibliography.ts +16 -0
- package/src/tool/power-reserve-estimator/client.ts +139 -0
- package/src/tool/power-reserve-estimator/component.astro +15 -0
- package/src/tool/power-reserve-estimator/components/EstimatorPanel.astro +150 -0
- package/src/tool/power-reserve-estimator/entry.ts +51 -0
- package/src/tool/power-reserve-estimator/i18n/de.ts +158 -0
- package/src/tool/power-reserve-estimator/i18n/en.ts +158 -0
- package/src/tool/power-reserve-estimator/i18n/es.ts +158 -0
- package/src/tool/power-reserve-estimator/i18n/fr.ts +158 -0
- package/src/tool/power-reserve-estimator/i18n/id.ts +158 -0
- package/src/tool/power-reserve-estimator/i18n/it.ts +158 -0
- package/src/tool/power-reserve-estimator/i18n/ja.ts +158 -0
- package/src/tool/power-reserve-estimator/i18n/ko.ts +158 -0
- package/src/tool/power-reserve-estimator/i18n/nl.ts +158 -0
- package/src/tool/power-reserve-estimator/i18n/pl.ts +158 -0
- package/src/tool/power-reserve-estimator/i18n/pt.ts +158 -0
- package/src/tool/power-reserve-estimator/i18n/ru.ts +158 -0
- package/src/tool/power-reserve-estimator/i18n/sv.ts +158 -0
- package/src/tool/power-reserve-estimator/i18n/tr.ts +158 -0
- package/src/tool/power-reserve-estimator/i18n/zh.ts +158 -0
- package/src/tool/power-reserve-estimator/index.ts +11 -0
- package/src/tool/power-reserve-estimator/power-reserve-estimator.css +402 -0
- package/src/tool/power-reserve-estimator/seo.astro +16 -0
- package/src/tool/strap-taper-calculator/bibliography.astro +16 -0
- package/src/tool/strap-taper-calculator/bibliography.ts +12 -0
- package/src/tool/strap-taper-calculator/client.ts +129 -0
- package/src/tool/strap-taper-calculator/component.astro +15 -0
- package/src/tool/strap-taper-calculator/components/CalculatorPanel.astro +114 -0
- package/src/tool/strap-taper-calculator/entry.ts +56 -0
- package/src/tool/strap-taper-calculator/i18n/de.ts +152 -0
- package/src/tool/strap-taper-calculator/i18n/en.ts +152 -0
- package/src/tool/strap-taper-calculator/i18n/es.ts +152 -0
- package/src/tool/strap-taper-calculator/i18n/fr.ts +152 -0
- package/src/tool/strap-taper-calculator/i18n/id.ts +152 -0
- package/src/tool/strap-taper-calculator/i18n/it.ts +152 -0
- package/src/tool/strap-taper-calculator/i18n/ja.ts +152 -0
- package/src/tool/strap-taper-calculator/i18n/ko.ts +152 -0
- package/src/tool/strap-taper-calculator/i18n/nl.ts +152 -0
- package/src/tool/strap-taper-calculator/i18n/pl.ts +152 -0
- package/src/tool/strap-taper-calculator/i18n/pt.ts +152 -0
- package/src/tool/strap-taper-calculator/i18n/ru.ts +152 -0
- package/src/tool/strap-taper-calculator/i18n/sv.ts +152 -0
- package/src/tool/strap-taper-calculator/i18n/tr.ts +152 -0
- package/src/tool/strap-taper-calculator/i18n/zh.ts +152 -0
- package/src/tool/strap-taper-calculator/index.ts +11 -0
- package/src/tool/strap-taper-calculator/seo.astro +16 -0
- package/src/tool/strap-taper-calculator/strap-taper-calculator.css +320 -0
- package/src/tool/watch-accuracy-tracker/bibliography.astro +16 -0
- package/src/tool/watch-accuracy-tracker/bibliography.ts +12 -0
- package/src/tool/watch-accuracy-tracker/chart.ts +126 -0
- package/src/tool/watch-accuracy-tracker/client.ts +287 -0
- package/src/tool/watch-accuracy-tracker/component.astro +35 -0
- package/src/tool/watch-accuracy-tracker/components/AccuracyTracker.astro +96 -0
- package/src/tool/watch-accuracy-tracker/components/DriftPredictor.astro +126 -0
- package/src/tool/watch-accuracy-tracker/components/LogHistory.astro +66 -0
- package/src/tool/watch-accuracy-tracker/entry.ts +94 -0
- package/src/tool/watch-accuracy-tracker/i18n/de.ts +167 -0
- package/src/tool/watch-accuracy-tracker/i18n/en.ts +167 -0
- package/src/tool/watch-accuracy-tracker/i18n/es.ts +167 -0
- package/src/tool/watch-accuracy-tracker/i18n/fr.ts +167 -0
- package/src/tool/watch-accuracy-tracker/i18n/id.ts +167 -0
- package/src/tool/watch-accuracy-tracker/i18n/it.ts +167 -0
- package/src/tool/watch-accuracy-tracker/i18n/ja.ts +167 -0
- package/src/tool/watch-accuracy-tracker/i18n/ko.ts +167 -0
- package/src/tool/watch-accuracy-tracker/i18n/nl.ts +167 -0
- package/src/tool/watch-accuracy-tracker/i18n/pl.ts +167 -0
- package/src/tool/watch-accuracy-tracker/i18n/pt.ts +167 -0
- package/src/tool/watch-accuracy-tracker/i18n/ru.ts +167 -0
- package/src/tool/watch-accuracy-tracker/i18n/sv.ts +167 -0
- package/src/tool/watch-accuracy-tracker/i18n/tr.ts +167 -0
- package/src/tool/watch-accuracy-tracker/i18n/zh.ts +167 -0
- package/src/tool/watch-accuracy-tracker/index.ts +9 -0
- package/src/tool/watch-accuracy-tracker/logger.ts +105 -0
- package/src/tool/watch-accuracy-tracker/seo.astro +16 -0
- package/src/tool/watch-accuracy-tracker/utils.ts +99 -0
- package/src/tool/watch-accuracy-tracker/watch-accuracy-tracker.css +564 -0
- package/src/tool/watch-savings-planner/bibliography.astro +16 -0
- package/src/tool/watch-savings-planner/bibliography.ts +8 -0
- package/src/tool/watch-savings-planner/client.ts +271 -0
- package/src/tool/watch-savings-planner/component.astro +33 -0
- package/src/tool/watch-savings-planner/components/AddGoalForm.astro +49 -0
- package/src/tool/watch-savings-planner/components/GoalCard.astro +58 -0
- package/src/tool/watch-savings-planner/entry.ts +62 -0
- package/src/tool/watch-savings-planner/i18n/de.ts +153 -0
- package/src/tool/watch-savings-planner/i18n/en.ts +155 -0
- package/src/tool/watch-savings-planner/i18n/es.ts +153 -0
- package/src/tool/watch-savings-planner/i18n/fr.ts +153 -0
- package/src/tool/watch-savings-planner/i18n/id.ts +153 -0
- package/src/tool/watch-savings-planner/i18n/it.ts +153 -0
- package/src/tool/watch-savings-planner/i18n/ja.ts +153 -0
- package/src/tool/watch-savings-planner/i18n/ko.ts +153 -0
- package/src/tool/watch-savings-planner/i18n/nl.ts +153 -0
- package/src/tool/watch-savings-planner/i18n/pl.ts +153 -0
- package/src/tool/watch-savings-planner/i18n/pt.ts +153 -0
- package/src/tool/watch-savings-planner/i18n/ru.ts +153 -0
- package/src/tool/watch-savings-planner/i18n/sv.ts +153 -0
- package/src/tool/watch-savings-planner/i18n/tr.ts +153 -0
- package/src/tool/watch-savings-planner/i18n/zh.ts +153 -0
- package/src/tool/watch-savings-planner/index.ts +11 -0
- package/src/tool/watch-savings-planner/seo.astro +16 -0
- package/src/tool/watch-savings-planner/utils.ts +0 -0
- package/src/tool/watch-savings-planner/watch-savings-planner.css +460 -0
- package/src/tool/water-resistance-converter/bibliography.astro +16 -0
- package/src/tool/water-resistance-converter/bibliography.ts +16 -0
- package/src/tool/water-resistance-converter/client.ts +56 -0
- package/src/tool/water-resistance-converter/component.astro +15 -0
- package/src/tool/water-resistance-converter/components/ConverterPanel.astro +113 -0
- package/src/tool/water-resistance-converter/entry.ts +52 -0
- package/src/tool/water-resistance-converter/i18n/de.ts +148 -0
- package/src/tool/water-resistance-converter/i18n/en.ts +148 -0
- package/src/tool/water-resistance-converter/i18n/es.ts +148 -0
- package/src/tool/water-resistance-converter/i18n/fr.ts +148 -0
- package/src/tool/water-resistance-converter/i18n/id.ts +148 -0
- package/src/tool/water-resistance-converter/i18n/it.ts +148 -0
- package/src/tool/water-resistance-converter/i18n/ja.ts +148 -0
- package/src/tool/water-resistance-converter/i18n/ko.ts +148 -0
- package/src/tool/water-resistance-converter/i18n/nl.ts +148 -0
- package/src/tool/water-resistance-converter/i18n/pl.ts +148 -0
- package/src/tool/water-resistance-converter/i18n/pt.ts +148 -0
- package/src/tool/water-resistance-converter/i18n/ru.ts +148 -0
- package/src/tool/water-resistance-converter/i18n/sv.ts +148 -0
- package/src/tool/water-resistance-converter/i18n/tr.ts +148 -0
- package/src/tool/water-resistance-converter/i18n/zh.ts +148 -0
- package/src/tool/water-resistance-converter/index.ts +11 -0
- package/src/tool/water-resistance-converter/seo.astro +16 -0
- package/src/tool/water-resistance-converter/water-resistance-converter.css +254 -0
- package/src/tool/wrist-presence-calculator/bibliography.astro +16 -0
- package/src/tool/wrist-presence-calculator/bibliography.ts +12 -0
- package/src/tool/wrist-presence-calculator/client.ts +180 -0
- package/src/tool/wrist-presence-calculator/component.astro +23 -0
- package/src/tool/wrist-presence-calculator/components/CalculatorInputs.astro +97 -0
- package/src/tool/wrist-presence-calculator/components/FitResult.astro +68 -0
- package/src/tool/wrist-presence-calculator/components/Visualizer.astro +16 -0
- package/src/tool/wrist-presence-calculator/entry.ts +59 -0
- package/src/tool/wrist-presence-calculator/helpers/canvas.ts +189 -0
- package/src/tool/wrist-presence-calculator/helpers/results.ts +78 -0
- package/src/tool/wrist-presence-calculator/i18n/de.ts +139 -0
- package/src/tool/wrist-presence-calculator/i18n/en.ts +155 -0
- package/src/tool/wrist-presence-calculator/i18n/es.ts +139 -0
- package/src/tool/wrist-presence-calculator/i18n/fr.ts +139 -0
- package/src/tool/wrist-presence-calculator/i18n/id.ts +139 -0
- package/src/tool/wrist-presence-calculator/i18n/it.ts +139 -0
- package/src/tool/wrist-presence-calculator/i18n/ja.ts +139 -0
- package/src/tool/wrist-presence-calculator/i18n/ko.ts +139 -0
- package/src/tool/wrist-presence-calculator/i18n/nl.ts +139 -0
- package/src/tool/wrist-presence-calculator/i18n/pl.ts +139 -0
- package/src/tool/wrist-presence-calculator/i18n/pt.ts +139 -0
- package/src/tool/wrist-presence-calculator/i18n/ru.ts +139 -0
- package/src/tool/wrist-presence-calculator/i18n/sv.ts +139 -0
- package/src/tool/wrist-presence-calculator/i18n/tr.ts +139 -0
- package/src/tool/wrist-presence-calculator/i18n/zh.ts +155 -0
- package/src/tool/wrist-presence-calculator/index.ts +11 -0
- package/src/tool/wrist-presence-calculator/seo.astro +16 -0
- package/src/tool/wrist-presence-calculator/utils.ts +30 -0
- package/src/tool/wrist-presence-calculator/wrist-presence-calculator.css +372 -0
- package/src/tools.ts +26 -0
- package/src/types.ts +70 -0
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import type { ChronoToolEntry, ToolLocaleContent } from '../../types';
|
|
2
|
+
|
|
3
|
+
export type WaterResistanceConverterUI = {
|
|
4
|
+
title: string;
|
|
5
|
+
depthLabel: string;
|
|
6
|
+
enterDepth: string;
|
|
7
|
+
unitMeters: string;
|
|
8
|
+
unitFeet: string;
|
|
9
|
+
unitATM: string;
|
|
10
|
+
unitBar: string;
|
|
11
|
+
convertedValues: string;
|
|
12
|
+
ratingLabel: string;
|
|
13
|
+
whatItMeans: string;
|
|
14
|
+
notWaterResistant: string;
|
|
15
|
+
notWaterResistantDesc: string;
|
|
16
|
+
handWash: string;
|
|
17
|
+
handWashDesc: string;
|
|
18
|
+
showerSwim: string;
|
|
19
|
+
showerSwimDesc: string;
|
|
20
|
+
snorkeling: string;
|
|
21
|
+
snorkelingDesc: string;
|
|
22
|
+
scubaDiving: string;
|
|
23
|
+
scubaDivingDesc: string;
|
|
24
|
+
saturationDiving: string;
|
|
25
|
+
saturationDivingDesc: string;
|
|
26
|
+
tipTitle: string;
|
|
27
|
+
tipContent: string;
|
|
28
|
+
};
|
|
29
|
+
|
|
30
|
+
export type WaterResistanceConverterLocaleContent = ToolLocaleContent<WaterResistanceConverterUI>;
|
|
31
|
+
|
|
32
|
+
export const waterResistanceConverter: ChronoToolEntry<WaterResistanceConverterUI> = {
|
|
33
|
+
id: 'water-resistance-converter',
|
|
34
|
+
icons: { bg: 'mdi:water', fg: 'mdi:waves' },
|
|
35
|
+
i18n: {
|
|
36
|
+
de: () => import('./i18n/de').then((m) => m.content),
|
|
37
|
+
en: () => import('./i18n/en').then((m) => m.content),
|
|
38
|
+
es: () => import('./i18n/es').then((m) => m.content),
|
|
39
|
+
fr: () => import('./i18n/fr').then((m) => m.content),
|
|
40
|
+
id: () => import('./i18n/id').then((m) => m.content),
|
|
41
|
+
it: () => import('./i18n/it').then((m) => m.content),
|
|
42
|
+
ja: () => import('./i18n/ja').then((m) => m.content),
|
|
43
|
+
ko: () => import('./i18n/ko').then((m) => m.content),
|
|
44
|
+
nl: () => import('./i18n/nl').then((m) => m.content),
|
|
45
|
+
pl: () => import('./i18n/pl').then((m) => m.content),
|
|
46
|
+
pt: () => import('./i18n/pt').then((m) => m.content),
|
|
47
|
+
ru: () => import('./i18n/ru').then((m) => m.content),
|
|
48
|
+
sv: () => import('./i18n/sv').then((m) => m.content),
|
|
49
|
+
tr: () => import('./i18n/tr').then((m) => m.content),
|
|
50
|
+
zh: () => import('./i18n/zh').then((m) => m.content),
|
|
51
|
+
},
|
|
52
|
+
};
|
|
@@ -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: 'wasserdichtigkeit-umrechner',
|
|
7
|
+
title: 'Uhren Wasserdichtigkeit Umrechner — Meter, ATM, Bar & Feet',
|
|
8
|
+
description: 'Rechnen Sie Wasserdichtigkeitsangaben von Uhren zwischen Metern, Feet, ATM und Bar um. Erfahren Sie, was jede Angabe für den Alltag, beim Schwimmen und Tauchen bedeutet.',
|
|
9
|
+
ui: {
|
|
10
|
+
title: 'Wasserdichtigkeit Umrechner',
|
|
11
|
+
depthLabel: 'Wasserdichtigkeit',
|
|
12
|
+
enterDepth: 'Dichtigkeitswert eingeben',
|
|
13
|
+
unitMeters: 'Meter (m)',
|
|
14
|
+
unitFeet: 'Feet (ft)',
|
|
15
|
+
unitATM: 'Atmosphären (ATM)',
|
|
16
|
+
unitBar: 'Bar (bar)',
|
|
17
|
+
convertedValues: 'Entsprechende Werte',
|
|
18
|
+
ratingLabel: 'Bewertung',
|
|
19
|
+
whatItMeans: 'Bedeutung',
|
|
20
|
+
notWaterResistant: 'Nicht Wassergeschützt',
|
|
21
|
+
notWaterResistantDesc: 'Keine Spritzer. Ganz vom Wasser fernhalten.',
|
|
22
|
+
handWash: 'Spritzwassergeschützt',
|
|
23
|
+
handWashDesc: 'Händewaschen, Regen, leichte Spritzer. Nicht schwimmen oder duschen.',
|
|
24
|
+
showerSwim: 'Duschen & Oberflächenschwimmen',
|
|
25
|
+
showerSwimDesc: 'Duschen, flaches Schwimmen an der Oberfläche. Kein Tauchen oder Schnorcheln.',
|
|
26
|
+
snorkeling: 'Schwimmen & Schnorcheln',
|
|
27
|
+
snorkelingDesc: 'Beckenschwimmen, Schnorcheln, Wassersport. Ausgezeichnete Alltagsdichtigkeit.',
|
|
28
|
+
scubaDiving: 'Sporttauchen',
|
|
29
|
+
scubaDivingDesc: 'Gerätetauchen, anspruchsvolle Meeresaktivitäten. ISO konform.',
|
|
30
|
+
saturationDiving: 'Tiefen / Sättigungstauchen',
|
|
31
|
+
saturationDivingDesc: 'Professionelles Sättigungstauchen. Extreme Tiefen. Heliumauslassventil Kontext.',
|
|
32
|
+
tipTitle: 'Tipp',
|
|
33
|
+
tipContent: 'Wasserdichtigkeit lässt mit der Zeit nach. Dichtungen sollten jährlich geprüft und alle 3\u20135 Jahre ersetzt werden.',
|
|
34
|
+
},
|
|
35
|
+
seo: [
|
|
36
|
+
{ type: 'title', text: 'Uhren Wasserdichtigkeit Umrechner — Meter, ATM, Bar & Feet verstehen', level: 2 },
|
|
37
|
+
{ type: 'paragraph', html: 'Eine Wasserdichtigkeitsangabe von 30 Metern bedeutet nicht, dass Sie 30 Meter tief tauchen können. Sie bedeutet, dass die Uhr Spritzer und leichten Regen aushält. Dieser Umrechner übersetzt zwischen <strong>Metern, Feet, Atmosphären (ATM) und Bar</strong> und zeigt Ihnen, was jede Angabe tatsächlich erlaubt.' },
|
|
38
|
+
{ type: 'title', text: 'Die Wahrheit über Wasserdichtigkeitsangaben', level: 3 },
|
|
39
|
+
{ type: 'paragraph', html: 'Die Wasserdichtigkeit von Uhren wird unter statischem Druck im Labor geprüft. Im echten Alltag erzeugen Armbewegungen, Tauchen und Temperaturwechsel einen weit höheren dynamischen Druck. Eine 30m / 3 ATM Uhr ist nur spritzwassergeschützt. Zum Schwimmen brauchen Sie mindestens 100m / 10 ATM. Für Sporttauchen sind 200m / 20 ATM der Standardeinstieg.' },
|
|
40
|
+
{ type: 'title', text: 'Warum Wasserdichtigkeit mit der Zeit nachlässt', level: 3 },
|
|
41
|
+
{ type: 'paragraph', html: 'Die Gummidichtungen und O-Ringe, die Ihre Uhr abdichten, trocknen aus, werden rissig und verlieren mit der Zeit an Elastizität. Hitze, UV-Licht und Chemikalien beschleunigen diesen Prozess. Eine Uhr, die einst bis 100m wasserdicht war, kann nach 5 Jahren ohne Wartung nur noch spritzwassergeschützt sein. Lassen Sie Ihre Dichtungen jährlich prüfen und alle 3 bis 5 Jahre ersetzen.' },
|
|
42
|
+
{ type: 'title', text: 'ISO 6425 — Der Standard für Taucheruhren', level: 3 },
|
|
43
|
+
{ type: 'paragraph', html: 'Damit eine Uhr als "Taucheruhr" bezeichnet werden darf, muss sie die ISO 6425 Norm erfüllen: mindestens 100m Wasserdichtigkeit, eine einseitig drehbare Lünette, leuchtende Markierungen und eine verschraubte Krone. Uhren, die diesen Standard erfüllen, werden 25% über der angegebenen Tiefe geprüft. Eine ISO geprüfte 200m Uhr wird bei 250m getestet.' },
|
|
44
|
+
],
|
|
45
|
+
faq: [
|
|
46
|
+
{
|
|
47
|
+
question: 'Kann ich mit einer 30 Meter wasserdichten Uhr schwimmen?',
|
|
48
|
+
answer: 'Nein. Eine 30m / 3 ATM Angabe bedeutet nur Spritzwasserschutz — Händewaschen, Regen und Schweiß. Beim Schwimmen entsteht dynamischer Druck, der den statischen Prüfdruck übersteigt. Fürs Schwimmen wählen Sie mindestens 100m / 10 ATM.',
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
question: 'Was ist der Unterschied zwischen ATM, Bar und Metern?',
|
|
52
|
+
answer: '1 ATM = 1 bar ≈ 10 Meter statische Wassersäule. In der Uhrenindustrie sind sie im Wesentlichen gleichwertig. Eine 10 ATM Uhr ist dasselbe wie eine 10 Bar Uhr und für etwa 100 Meter ausgelegt.',
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
question: 'Wie oft sollte ich die Wasserdichtigkeit meiner Uhr prüfen lassen?',
|
|
56
|
+
answer: 'Einmal im Jahr, besonders vor dem Kontakt mit Wasser. Dichtungen verschleißen. Alle 3-5 Jahre sollten alle Dichtungen bei einer Generalüberholung ausgetauscht werden.',
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
question: 'Was bedeutet die ISO 6425 Zertifizierung?',
|
|
60
|
+
answer: 'ISO 6425 ist der internationale Standard für Taucheruhren. Er verlangt mindestens 100m Dichtigkeit, eine einseitig drehbare Lünette, leuchtende Markierungen und eine Prüfung 25% über der angegebenen Tiefe.',
|
|
61
|
+
},
|
|
62
|
+
],
|
|
63
|
+
bibliography,
|
|
64
|
+
howTo: [
|
|
65
|
+
{
|
|
66
|
+
name: 'Wert eingeben',
|
|
67
|
+
text: 'Geben Sie den Wasserdichtigkeitswert Ihrer Uhr ein und wählen Sie die Einheit (Meter, Feet, ATM oder Bar).',
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
name: 'Entsprechungen ablesen',
|
|
71
|
+
text: 'Die Karte zeigt die umgerechneten Werte in allen vier Einheiten gleichzeitig an.',
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
name: 'Empfehlung prüfen',
|
|
75
|
+
text: 'Die hervorgehobene Karte zeigt, welche Aktivitäten bei Ihrer Dichtigkeitsstufe sicher sind.',
|
|
76
|
+
},
|
|
77
|
+
],
|
|
78
|
+
schemas: [
|
|
79
|
+
{
|
|
80
|
+
'@context': 'https://schema.org',
|
|
81
|
+
'@type': 'FAQPage',
|
|
82
|
+
'mainEntity': [
|
|
83
|
+
{
|
|
84
|
+
'@type': 'Question',
|
|
85
|
+
'name': 'Kann ich mit einer 30 Meter wasserdichten Uhr schwimmen?',
|
|
86
|
+
'acceptedAnswer': {
|
|
87
|
+
'@type': 'Answer',
|
|
88
|
+
'text': 'Nein. Eine 30m / 3 ATM Angabe bedeutet nur Spritzwasserschutz — Händewaschen, Regen und Schweiß. Fürs Schwimmen wählen Sie mindestens 100m / 10 ATM.',
|
|
89
|
+
},
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
'@type': 'Question',
|
|
93
|
+
'name': 'Was ist der Unterschied zwischen ATM, Bar und Metern?',
|
|
94
|
+
'acceptedAnswer': {
|
|
95
|
+
'@type': 'Answer',
|
|
96
|
+
'text': '1 ATM = 1 bar ≈ 10 Meter statische Wassersäule. In der Uhrenindustrie sind sie im Wesentlichen gleichwertig.',
|
|
97
|
+
},
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
'@type': 'Question',
|
|
101
|
+
'name': 'Wie oft sollte ich die Wasserdichtigkeit meiner Uhr prüfen lassen?',
|
|
102
|
+
'acceptedAnswer': {
|
|
103
|
+
'@type': 'Answer',
|
|
104
|
+
'text': 'Einmal im Jahr, besonders vor dem Kontakt mit Wasser. Alle 3-5 Jahre sollten alle Dichtungen bei einer Generalüberholung ausgetauscht werden.',
|
|
105
|
+
},
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
'@type': 'Question',
|
|
109
|
+
'name': 'Was bedeutet die ISO 6425 Zertifizierung?',
|
|
110
|
+
'acceptedAnswer': {
|
|
111
|
+
'@type': 'Answer',
|
|
112
|
+
'text': 'ISO 6425 verlangt mindestens 100m Dichtigkeit, eine einseitig drehbare Lünette, leuchtende Markierungen und eine Prüfung 25% über der angegebenen Tiefe.',
|
|
113
|
+
},
|
|
114
|
+
},
|
|
115
|
+
],
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
'@context': 'https://schema.org',
|
|
119
|
+
'@type': 'SoftwareApplication',
|
|
120
|
+
'name': 'Uhren Wasserdichtigkeit Umrechner',
|
|
121
|
+
'operatingSystem': 'Alle',
|
|
122
|
+
'applicationCategory': 'UtilitiesApplication',
|
|
123
|
+
'browserRequirements': 'Erfordert HTML5. Erfordert JavaScript.',
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
'@context': 'https://schema.org',
|
|
127
|
+
'@type': 'HowTo',
|
|
128
|
+
'name': 'Wie man Wasserdichtigkeitsangaben von Uhren umrechnet',
|
|
129
|
+
'step': [
|
|
130
|
+
{
|
|
131
|
+
'@type': 'HowToStep',
|
|
132
|
+
'name': 'Wert eingeben',
|
|
133
|
+
'text': 'Geben Sie den Wasserdichtigkeitswert Ihrer Uhr ein und wählen Sie die Einheit.',
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
'@type': 'HowToStep',
|
|
137
|
+
'name': 'Entsprechungen ablesen',
|
|
138
|
+
'text': 'Die Karte zeigt die umgerechneten Werte in allen vier Einheiten gleichzeitig.',
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
'@type': 'HowToStep',
|
|
142
|
+
'name': 'Empfehlung prüfen',
|
|
143
|
+
'text': 'Die hervorgehobene Karte zeigt, welche Aktivitäten bei Ihrer Dichtigkeitsstufe sicher sind.',
|
|
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: 'Watch Water Resistance Converter — Meters, ATM, Bar & Feet',
|
|
8
|
+
description: 'Convert watch water resistance ratings between meters, feet, ATM, and bar. See what each rating actually means for daily wear, swimming, and diving.',
|
|
9
|
+
ui: {
|
|
10
|
+
title: 'Water Resistance Converter',
|
|
11
|
+
depthLabel: 'Water Resistance',
|
|
12
|
+
enterDepth: 'Enter depth rating',
|
|
13
|
+
unitMeters: 'Meters (m)',
|
|
14
|
+
unitFeet: 'Feet (ft)',
|
|
15
|
+
unitATM: 'Atmospheres (ATM)',
|
|
16
|
+
unitBar: 'Bar (bar)',
|
|
17
|
+
convertedValues: 'Equivalent Ratings',
|
|
18
|
+
ratingLabel: 'Rating',
|
|
19
|
+
whatItMeans: 'What It Means',
|
|
20
|
+
notWaterResistant: 'Not Water Resistant',
|
|
21
|
+
notWaterResistantDesc: 'No splashes. Keep away from water entirely.',
|
|
22
|
+
handWash: 'Splash Resistant',
|
|
23
|
+
handWashDesc: 'Hand washing, rain, light splashes. No swimming, no showering.',
|
|
24
|
+
showerSwim: 'Shower & Surface Swim',
|
|
25
|
+
showerSwimDesc: 'Showering, shallow surface swimming. No diving or snorkeling.',
|
|
26
|
+
snorkeling: 'Swimming & Snorkeling',
|
|
27
|
+
snorkelingDesc: 'Pool swimming, snorkeling, water sports. Excellent daily resistance.',
|
|
28
|
+
scubaDiving: 'Recreational Scuba',
|
|
29
|
+
scubaDivingDesc: 'Scuba diving, high-impact marine activities. ISO compliant.',
|
|
30
|
+
saturationDiving: 'Deep / Saturation Diving',
|
|
31
|
+
saturationDivingDesc: 'Professional saturation diving. Extreme depths. Helium escape valve context.',
|
|
32
|
+
tipTitle: 'Tip',
|
|
33
|
+
tipContent: 'Water resistance degrades over time. Gaskets and seals should be tested yearly and replaced every 3\u20135 years.',
|
|
34
|
+
},
|
|
35
|
+
seo: [
|
|
36
|
+
{ type: 'title', text: 'Watch Water Resistance Converter — Decoding Meters, ATM, Bar & Feet', level: 2 },
|
|
37
|
+
{ type: 'paragraph', html: 'A 30-meter water resistance rating does not mean you can dive to 30 meters. It means the watch can handle splashes and light rain. This converter translates between <strong>meters, feet, atmospheres (ATM), and bars</strong>, and tells you what each rating actually allows.' },
|
|
38
|
+
{ type: 'title', text: 'The Truth About Water Resistance Ratings', level: 3 },
|
|
39
|
+
{ type: 'paragraph', html: 'Watch water resistance is tested under static pressure in a lab. Real-world conditions — moving your arm, diving, temperature changes — create dynamic pressure that is much higher. A 30m / 3 ATM watch is only splash resistant. For swimming, you need at least 100m / 10 ATM. For scuba diving, 200m / 20 ATM is the standard entry point.' },
|
|
40
|
+
{ type: 'title', text: 'Why Water Resistance Degrades Over Time', level: 3 },
|
|
41
|
+
{ type: 'paragraph', html: 'The rubber gaskets and O-rings that seal your watch dry out, crack, and compress over time. Heat, UV light, and chemicals accelerate this process. A watch that was once water resistant to 100m may only be splash resistant after 5 years without service. Have your seals tested annually and replaced every 3 to 5 years.' },
|
|
42
|
+
{ type: 'title', text: 'ISO 6425 — The Diver Watch Standard', level: 3 },
|
|
43
|
+
{ type: 'paragraph', html: 'For a watch to be called a "diver\'s watch," it must meet ISO 6425 standards: at least 100m water resistance, a unidirectional bezel, luminous markings, and a screw-down crown. Watches that meet this standard are tested 25% above their rated depth. A 200m ISO-rated watch is tested at 250m.' },
|
|
44
|
+
],
|
|
45
|
+
faq: [
|
|
46
|
+
{
|
|
47
|
+
question: 'Can I swim with a 30-meter water resistant watch?',
|
|
48
|
+
answer: 'No. A 30m / 3 ATM rating means splash resistance only — hand washing, rain, and sweat. Swimming creates dynamic pressure that exceeds the static test pressure. For swimming, choose at least 100m / 10 ATM.',
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
question: 'What is the difference between ATM, bar, and meters?',
|
|
52
|
+
answer: '1 ATM = 1 bar ≈ 10 meters of static water column. They are essentially equivalent in the watch industry. A 10 ATM watch is the same as a 10 bar watch and is rated to approximately 100 meters.',
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
question: 'How often should I test my watch water resistance?',
|
|
56
|
+
answer: 'Once a year, especially before water exposure. Gaskets and seals wear out. Every 3-5 years, all seals should be replaced during a full service.',
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
question: 'What does ISO 6425 certified mean?',
|
|
60
|
+
answer: 'ISO 6425 is the international standard for diver watches. It requires at least 100m resistance, a unidirectional bezel, luminous markings, and testing 25% above the rated depth.',
|
|
61
|
+
},
|
|
62
|
+
],
|
|
63
|
+
bibliography,
|
|
64
|
+
howTo: [
|
|
65
|
+
{
|
|
66
|
+
name: 'Enter your rating',
|
|
67
|
+
text: 'Type your watch\'s water resistance number and select the unit (meters, feet, ATM, or bar).',
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
name: 'Read the equivalents',
|
|
71
|
+
text: 'The card shows the converted values in all four units simultaneously.',
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
name: 'Check the recommendation',
|
|
75
|
+
text: 'The highlighted card shows what activities are safe at your watch\'s rating.',
|
|
76
|
+
},
|
|
77
|
+
],
|
|
78
|
+
schemas: [
|
|
79
|
+
{
|
|
80
|
+
'@context': 'https://schema.org',
|
|
81
|
+
'@type': 'FAQPage',
|
|
82
|
+
'mainEntity': [
|
|
83
|
+
{
|
|
84
|
+
'@type': 'Question',
|
|
85
|
+
'name': 'Can I swim with a 30-meter water resistant watch?',
|
|
86
|
+
'acceptedAnswer': {
|
|
87
|
+
'@type': 'Answer',
|
|
88
|
+
'text': 'No. A 30m / 3 ATM rating means splash resistance only — hand washing, rain, and sweat. For swimming, choose at least 100m / 10 ATM.',
|
|
89
|
+
},
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
'@type': 'Question',
|
|
93
|
+
'name': 'What is the difference between ATM, bar, and meters?',
|
|
94
|
+
'acceptedAnswer': {
|
|
95
|
+
'@type': 'Answer',
|
|
96
|
+
'text': '1 ATM = 1 bar ≈ 10 meters of static water column. They are essentially equivalent in the watch industry.',
|
|
97
|
+
},
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
'@type': 'Question',
|
|
101
|
+
'name': 'How often should I test my watch water resistance?',
|
|
102
|
+
'acceptedAnswer': {
|
|
103
|
+
'@type': 'Answer',
|
|
104
|
+
'text': 'Once a year, especially before water exposure. Every 3-5 years, all seals should be replaced during a full service.',
|
|
105
|
+
},
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
'@type': 'Question',
|
|
109
|
+
'name': 'What does ISO 6425 certified mean?',
|
|
110
|
+
'acceptedAnswer': {
|
|
111
|
+
'@type': 'Answer',
|
|
112
|
+
'text': 'ISO 6425 requires at least 100m resistance, a unidirectional bezel, luminous markings, and testing 25% above the rated depth.',
|
|
113
|
+
},
|
|
114
|
+
},
|
|
115
|
+
],
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
'@context': 'https://schema.org',
|
|
119
|
+
'@type': 'SoftwareApplication',
|
|
120
|
+
'name': 'Watch Water Resistance Converter',
|
|
121
|
+
'operatingSystem': 'All',
|
|
122
|
+
'applicationCategory': 'UtilitiesApplication',
|
|
123
|
+
'browserRequirements': 'Requires HTML5. Requires JavaScript.',
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
'@context': 'https://schema.org',
|
|
127
|
+
'@type': 'HowTo',
|
|
128
|
+
'name': 'How to convert watch water resistance ratings',
|
|
129
|
+
'step': [
|
|
130
|
+
{
|
|
131
|
+
'@type': 'HowToStep',
|
|
132
|
+
'name': 'Enter your rating',
|
|
133
|
+
'text': 'Type your watch water resistance number and select the unit.',
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
'@type': 'HowToStep',
|
|
137
|
+
'name': 'Read the equivalents',
|
|
138
|
+
'text': 'The card shows the converted values in all four units simultaneously.',
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
'@type': 'HowToStep',
|
|
142
|
+
'name': 'Check the recommendation',
|
|
143
|
+
'text': 'The highlighted card shows what activities are safe at your watch rating.',
|
|
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: 'convertidor-resistencia-agua',
|
|
7
|
+
title: 'Convertidor de Resistencia al Agua de Relojes — Metros, ATM, Bar & Pies',
|
|
8
|
+
description: 'Convierta las clasificaciones de resistencia al agua de relojes entre metros, pies, ATM y bar. Descubra lo que realmente significa cada clasificación para el uso diario, la natación y el buceo.',
|
|
9
|
+
ui: {
|
|
10
|
+
title: 'Convertidor de Resistencia al Agua',
|
|
11
|
+
depthLabel: 'Resistencia al Agua',
|
|
12
|
+
enterDepth: 'Ingrese la clasificación de profundidad',
|
|
13
|
+
unitMeters: 'Metros (m)',
|
|
14
|
+
unitFeet: 'Pies (ft)',
|
|
15
|
+
unitATM: 'Atmósferas (ATM)',
|
|
16
|
+
unitBar: 'Bar (bar)',
|
|
17
|
+
convertedValues: 'Valores Equivalentes',
|
|
18
|
+
ratingLabel: 'Clasificación',
|
|
19
|
+
whatItMeans: 'Qué Significa',
|
|
20
|
+
notWaterResistant: 'No Resistente al Agua',
|
|
21
|
+
notWaterResistantDesc: 'Sin salpicaduras. Manténgalo alejado del agua por completo.',
|
|
22
|
+
handWash: 'Resistente a Salpicaduras',
|
|
23
|
+
handWashDesc: 'Lavado de manos, lluvia, salpicaduras ligeras. No nadar, no ducharse.',
|
|
24
|
+
showerSwim: 'Ducha y Natación Superficial',
|
|
25
|
+
showerSwimDesc: 'Ducharse, natación superficial en piscina. Sin buceo ni esnórquel.',
|
|
26
|
+
snorkeling: 'Natación y Esnórquel',
|
|
27
|
+
snorkelingDesc: 'Natación en piscina, esnórquel, deportes acuáticos. Excelente resistencia diaria.',
|
|
28
|
+
scubaDiving: 'Buceo Recreativo',
|
|
29
|
+
scubaDivingDesc: 'Buceo con tanque, actividades marinas de alto impacto. Conforme a ISO.',
|
|
30
|
+
saturationDiving: 'Buceo Profundo / Saturación',
|
|
31
|
+
saturationDivingDesc: 'Buceo de saturación profesional. Profundidades extremas. Contexto de válvula de escape de helio.',
|
|
32
|
+
tipTitle: 'Consejo',
|
|
33
|
+
tipContent: 'La resistencia al agua se degrada con el tiempo. Las juntas y sellos deben revisarse anualmente y reemplazarse cada 3\u20135 años.',
|
|
34
|
+
},
|
|
35
|
+
seo: [
|
|
36
|
+
{ type: 'title', text: 'Convertidor de Resistencia al Agua de Relojes — Metros, ATM, Bar y Pies descifrados', level: 2 },
|
|
37
|
+
{ type: 'paragraph', html: 'Una clasificación de resistencia al agua de 30 metros no significa que pueda bucear a 30 metros. Significa que el reloj soporta salpicaduras y lluvia ligera. Este convertidor traduce entre <strong>metros, pies, atmósferas (ATM) y bares</strong>, y le indica qué permite realmente cada clasificación.' },
|
|
38
|
+
{ type: 'title', text: 'La Verdad Sobre las Clasificaciones de Resistencia al Agua', level: 3 },
|
|
39
|
+
{ type: 'paragraph', html: 'La resistencia al agua de los relojes se prueba bajo presión estática en un laboratorio. Las condiciones reales — mover el brazo, bucear, cambios de temperatura — generan una presión dinámica mucho mayor. Un reloj de 30m / 3 ATM solo es resistente a salpicaduras. Para nadar, necesita al menos 100m / 10 ATM. Para buceo con tanque, 200m / 20 ATM es el punto de entrada estándar.' },
|
|
40
|
+
{ type: 'title', text: 'Por Qué la Resistencia al Agua se Degrada con el Tiempo', level: 3 },
|
|
41
|
+
{ type: 'paragraph', html: 'Las juntas de goma y los anillos O que sellan su reloj se secan, agrietan y comprimen con el tiempo. El calor, la luz UV y los productos químicos aceleran este proceso. Un reloj que alguna vez fue resistente al agua hasta 100m puede ser solo resistente a salpicaduras después de 5 años sin mantenimiento. Haga revisar sus sellos anualmente y reemplácelos cada 3 a 5 años.' },
|
|
42
|
+
{ type: 'title', text: 'ISO 6425 — El Estándar de Relojes de Buceo', level: 3 },
|
|
43
|
+
{ type: 'paragraph', html: 'Para que un reloj se llame "reloj de buceo", debe cumplir con la norma ISO 6425: al menos 100m de resistencia al agua, un bisel unidireccional, marcas luminiscentes y una corona de rosca. Los relojes que cumplen este estándar se prueban al 25% por encima de su profundidad nominal. Un reloj con certificación ISO de 200m se prueba a 250m.' },
|
|
44
|
+
],
|
|
45
|
+
faq: [
|
|
46
|
+
{
|
|
47
|
+
question: '¿Puedo nadar con un reloj resistente al agua de 30 metros?',
|
|
48
|
+
answer: 'No. Una clasificación de 30m / 3 ATM significa solo resistencia a salpicaduras — lavado de manos, lluvia y sudor. Nadar genera presión dinámica que supera la presión de prueba estática. Para nadar, elija al menos 100m / 10 ATM.',
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
question: '¿Cuál es la diferencia entre ATM, bar y metros?',
|
|
52
|
+
answer: '1 ATM = 1 bar ≈ 10 metros de columna de agua estática. En la industria relojera son esencialmente equivalentes. Un reloj de 10 ATM es lo mismo que un reloj de 10 bar y está clasificado para aproximadamente 100 metros.',
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
question: '¿Con qué frecuencia debo probar la resistencia al agua de mi reloj?',
|
|
56
|
+
answer: 'Una vez al año, especialmente antes de la exposición al agua. Las juntas y sellos se desgastan. Cada 3-5 años, todos los sellos deben reemplazarse durante un servicio completo.',
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
question: '¿Qué significa certificación ISO 6425?',
|
|
60
|
+
answer: 'ISO 6425 es el estándar internacional para relojes de buceo. Requiere al menos 100m de resistencia, un bisel unidireccional, marcas luminiscentes y pruebas al 25% por encima de la profundidad nominal.',
|
|
61
|
+
},
|
|
62
|
+
],
|
|
63
|
+
bibliography,
|
|
64
|
+
howTo: [
|
|
65
|
+
{
|
|
66
|
+
name: 'Ingrese su clasificación',
|
|
67
|
+
text: 'Escriba el número de resistencia al agua de su reloj y seleccione la unidad (metros, pies, ATM o bar).',
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
name: 'Lea los equivalentes',
|
|
71
|
+
text: 'La tarjeta muestra los valores convertidos en las cuatro unidades simultáneamente.',
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
name: 'Revise la recomendación',
|
|
75
|
+
text: 'La tarjeta resaltada muestra qué actividades son seguras con la clasificación de su reloj.',
|
|
76
|
+
},
|
|
77
|
+
],
|
|
78
|
+
schemas: [
|
|
79
|
+
{
|
|
80
|
+
'@context': 'https://schema.org',
|
|
81
|
+
'@type': 'FAQPage',
|
|
82
|
+
'mainEntity': [
|
|
83
|
+
{
|
|
84
|
+
'@type': 'Question',
|
|
85
|
+
'name': '¿Puedo nadar con un reloj resistente al agua de 30 metros?',
|
|
86
|
+
'acceptedAnswer': {
|
|
87
|
+
'@type': 'Answer',
|
|
88
|
+
'text': 'No. Una clasificación de 30m / 3 ATM significa solo resistencia a salpicaduras — lavado de manos, lluvia y sudor. Para nadar, elija al menos 100m / 10 ATM.',
|
|
89
|
+
},
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
'@type': 'Question',
|
|
93
|
+
'name': '¿Cuál es la diferencia entre ATM, bar y metros?',
|
|
94
|
+
'acceptedAnswer': {
|
|
95
|
+
'@type': 'Answer',
|
|
96
|
+
'text': '1 ATM = 1 bar ≈ 10 metros de columna de agua estática. En la industria relojera son esencialmente equivalentes.',
|
|
97
|
+
},
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
'@type': 'Question',
|
|
101
|
+
'name': '¿Con qué frecuencia debo probar la resistencia al agua de mi reloj?',
|
|
102
|
+
'acceptedAnswer': {
|
|
103
|
+
'@type': 'Answer',
|
|
104
|
+
'text': 'Una vez al año, especialmente antes de la exposición al agua. Cada 3-5 años, todos los sellos deben reemplazarse durante un servicio completo.',
|
|
105
|
+
},
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
'@type': 'Question',
|
|
109
|
+
'name': '¿Qué significa certificación ISO 6425?',
|
|
110
|
+
'acceptedAnswer': {
|
|
111
|
+
'@type': 'Answer',
|
|
112
|
+
'text': 'ISO 6425 requiere al menos 100m de resistencia, un bisel unidireccional, marcas luminiscentes y pruebas al 25% por encima de la profundidad nominal.',
|
|
113
|
+
},
|
|
114
|
+
},
|
|
115
|
+
],
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
'@context': 'https://schema.org',
|
|
119
|
+
'@type': 'SoftwareApplication',
|
|
120
|
+
'name': 'Convertidor de Resistencia al Agua de Relojes',
|
|
121
|
+
'operatingSystem': 'Todos',
|
|
122
|
+
'applicationCategory': 'UtilitiesApplication',
|
|
123
|
+
'browserRequirements': 'Requiere HTML5. Requiere JavaScript.',
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
'@context': 'https://schema.org',
|
|
127
|
+
'@type': 'HowTo',
|
|
128
|
+
'name': 'Cómo convertir clasificaciones de resistencia al agua de relojes',
|
|
129
|
+
'step': [
|
|
130
|
+
{
|
|
131
|
+
'@type': 'HowToStep',
|
|
132
|
+
'name': 'Ingrese su clasificación',
|
|
133
|
+
'text': 'Escriba el número de resistencia al agua de su reloj y seleccione la unidad.',
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
'@type': 'HowToStep',
|
|
137
|
+
'name': 'Lea los equivalentes',
|
|
138
|
+
'text': 'La tarjeta muestra los valores convertidos en las cuatro unidades simultáneamente.',
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
'@type': 'HowToStep',
|
|
142
|
+
'name': 'Revise la recomendación',
|
|
143
|
+
'text': 'La tarjeta resaltada muestra qué actividades son seguras con la clasificación de su reloj.',
|
|
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: 'convertisseur-resistance-eau',
|
|
7
|
+
title: 'Convertisseur d\'Étanchéité de Montres — Mètres, ATM, Bar & Pieds',
|
|
8
|
+
description: 'Convertissez les indices d\'étanchéité des montres entre mètres, pieds, ATM et bar. Découvrez ce que chaque indice signifie réellement pour un usage quotidien, la natation et la plongée.',
|
|
9
|
+
ui: {
|
|
10
|
+
title: 'Convertisseur d\'Étanchéité',
|
|
11
|
+
depthLabel: 'Étanchéité',
|
|
12
|
+
enterDepth: 'Entrez l\'indice de profondeur',
|
|
13
|
+
unitMeters: 'Mètres (m)',
|
|
14
|
+
unitFeet: 'Pieds (ft)',
|
|
15
|
+
unitATM: 'Atmosphères (ATM)',
|
|
16
|
+
unitBar: 'Bar (bar)',
|
|
17
|
+
convertedValues: 'Valeurs Équivalentes',
|
|
18
|
+
ratingLabel: 'Indice',
|
|
19
|
+
whatItMeans: 'Signification',
|
|
20
|
+
notWaterResistant: 'Non Étanche',
|
|
21
|
+
notWaterResistantDesc: 'Aucune éclaboussure. Tenez-la complètement à l\'écart de l\'eau.',
|
|
22
|
+
handWash: 'Résistant aux Éclaboussures',
|
|
23
|
+
handWashDesc: 'Lavage des mains, pluie, légères éclaboussures. Pas de natation, pas de douche.',
|
|
24
|
+
showerSwim: 'Douche et Natation en Surface',
|
|
25
|
+
showerSwimDesc: 'Douche, natation en surface en piscine. Pas de plongée ni de snorkeling.',
|
|
26
|
+
snorkeling: 'Natation et Snorkeling',
|
|
27
|
+
snorkelingDesc: 'Natation en piscine, snorkeling, sports nautiques. Excellente résistance quotidienne.',
|
|
28
|
+
scubaDiving: 'Plongée Loisir',
|
|
29
|
+
scubaDivingDesc: 'Plongée sous-marine, activités marines intenses. Conforme à la norme ISO.',
|
|
30
|
+
saturationDiving: 'Plongée Profonde / Saturation',
|
|
31
|
+
saturationDivingDesc: 'Plongée à saturation professionnelle. Profondeurs extrêmes. Contexte de valve d\'échappement d\'hélium.',
|
|
32
|
+
tipTitle: 'Astuce',
|
|
33
|
+
tipContent: 'L\'étanchéité se dégrade avec le temps. Les joints doivent être vérifiés chaque année et remplacés tous les 3\u20135 ans.',
|
|
34
|
+
},
|
|
35
|
+
seo: [
|
|
36
|
+
{ type: 'title', text: 'Convertisseur d\'Étanchéité de Montres — Décoder les Mètres, ATM, Bar & Pieds', level: 2 },
|
|
37
|
+
{ type: 'paragraph', html: 'Un indice d\'étanchéité de 30 mètres ne signifie pas que vous pouvez plonger à 30 mètres. Cela signifie que la montresupport les éclaboussures et la pluie légère. Ce convertisseur traduit entre <strong>mètres, pieds, atmosphères (ATM) et bars</strong>, et vous indique ce que chaque indice autorise réellement.' },
|
|
38
|
+
{ type: 'title', text: 'La Vérité sur les Indices d\'Étanchéité', level: 3 },
|
|
39
|
+
{ type: 'paragraph', html: 'L\'étanchéité des montres est testée sous pression statique en laboratoire. Les conditions réelles — bouger le bras, plonger, changements de température — créent une pression dynamique bien plus élevée. Une montre 30m / 3 ATM est seulement résistante aux éclaboussures. Pour nager, vous avez besoin d\'au moins 100m / 10 ATM. Pour la plongée sous-marine, 200m / 20 ATM est le seuil d\'entrée standard.' },
|
|
40
|
+
{ type: 'title', text: 'Pourquoi l\'Étanchéité se Détériore avec le Temps', level: 3 },
|
|
41
|
+
{ type: 'paragraph', html: 'Les joints en caoutchouc et les joints toriques qui scellent votre montresèchent, se fissurent et se compriment avec le temps. La chaleur, la lumière UV et les produits chimiques accélèrent ce processus. Une montre qui était autrefois étanche à 100m peut n\'être plus que résistante aux éclaboussures après 5 ans sans entretien. Faites vérifier vos joints chaque année et remplacez-les tous les 3 à 5 ans.' },
|
|
42
|
+
{ type: 'title', text: 'ISO 6425 — La Norme pour les Montres de Plongée', level: 3 },
|
|
43
|
+
{ type: 'paragraph', html: 'Pour qu\'une montre soit appelée "montre de plongée", elle doit répondre à la norme ISO 6425 : au moins 100m d\'étanchéité, une lunette unidirectionnelle, des marquages luminescents et une couronne vissée. Les montres conformes à cette norme sont testées 25% au-dessus de leur profondeur nominale. Une montre certifiée ISO de 200m est testée à 250m.' },
|
|
44
|
+
],
|
|
45
|
+
faq: [
|
|
46
|
+
{
|
|
47
|
+
question: 'Puis-je nager avec une montre étanche à 30 mètres ?',
|
|
48
|
+
answer: 'Non. Un indice de 30m / 3 ATM signifie uniquement une résistance aux éclaboussures — lavage des mains, pluie et transpiration. La natation crée une pression dynamique qui dépasse la pression d\'essai statique. Pour nager, choisissez au moins 100m / 10 ATM.',
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
question: 'Quelle est la différence entre ATM, bar et mètres ?',
|
|
52
|
+
answer: '1 ATM = 1 bar ≈ 10 mètres de colonne d\'eau statique. Dans l\'industrie horlogère, ils sont essentiellement équivalents. Une montre 10 ATM est identique à une montre 10 bar et est conçue pour environ 100 mètres.',
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
question: 'À quelle fréquence dois-je tester l\'étanchéité de ma montre ?',
|
|
56
|
+
answer: 'Une fois par an, surtout avant une exposition à l\'eau. Les joints s\'usent. Tous les 3-5 ans, tous les joints doivent être remplacés lors d\'une révision complète.',
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
question: 'Que signifie la certification ISO 6425 ?',
|
|
60
|
+
answer: 'ISO 6425 est la norme internationale pour les montres de plongée. Elle exige au moins 100m de résistance, une lunette unidirectionnelle, des marquages luminescents et des tests 25% au-dessus de la profondeur nominale.',
|
|
61
|
+
},
|
|
62
|
+
],
|
|
63
|
+
bibliography,
|
|
64
|
+
howTo: [
|
|
65
|
+
{
|
|
66
|
+
name: 'Entrez votre indice',
|
|
67
|
+
text: 'Saisissez l\'indice d\'étanchéité de votre montre et sélectionnez l\'unité (mètres, pieds, ATM ou bar).',
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
name: 'Lisez les équivalences',
|
|
71
|
+
text: 'La carte affiche les valeurs converties dans les quatre unités simultanément.',
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
name: 'Vérifiez la recommandation',
|
|
75
|
+
text: 'La carte surlignée montre les activités sûres pour l\'indice de votre montre.',
|
|
76
|
+
},
|
|
77
|
+
],
|
|
78
|
+
schemas: [
|
|
79
|
+
{
|
|
80
|
+
'@context': 'https://schema.org',
|
|
81
|
+
'@type': 'FAQPage',
|
|
82
|
+
'mainEntity': [
|
|
83
|
+
{
|
|
84
|
+
'@type': 'Question',
|
|
85
|
+
'name': 'Puis-je nager avec une montre étanche à 30 mètres ?',
|
|
86
|
+
'acceptedAnswer': {
|
|
87
|
+
'@type': 'Answer',
|
|
88
|
+
'text': 'Non. Un indice de 30m / 3 ATM signifie uniquement une résistance aux éclaboussures — lavage des mains, pluie et transpiration. Pour nager, choisissez au moins 100m / 10 ATM.',
|
|
89
|
+
},
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
'@type': 'Question',
|
|
93
|
+
'name': 'Quelle est la différence entre ATM, bar et mètres ?',
|
|
94
|
+
'acceptedAnswer': {
|
|
95
|
+
'@type': 'Answer',
|
|
96
|
+
'text': '1 ATM = 1 bar ≈ 10 mètres de colonne d\'eau statique. Dans l\'industrie horlogère, ils sont essentiellement équivalents.',
|
|
97
|
+
},
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
'@type': 'Question',
|
|
101
|
+
'name': 'À quelle fréquence dois-je tester l\'étanchéité de ma montre ?',
|
|
102
|
+
'acceptedAnswer': {
|
|
103
|
+
'@type': 'Answer',
|
|
104
|
+
'text': 'Une fois par an, surtout avant une exposition à l\'eau. Tous les 3-5 ans, tous les joints doivent être remplacés lors d\'une révision complète.',
|
|
105
|
+
},
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
'@type': 'Question',
|
|
109
|
+
'name': 'Que signifie la certification ISO 6425 ?',
|
|
110
|
+
'acceptedAnswer': {
|
|
111
|
+
'@type': 'Answer',
|
|
112
|
+
'text': 'ISO 6425 exige au moins 100m de résistance, une lunette unidirectionnelle, des marquages luminescents et des tests 25% au-dessus de la profondeur nominale.',
|
|
113
|
+
},
|
|
114
|
+
},
|
|
115
|
+
],
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
'@context': 'https://schema.org',
|
|
119
|
+
'@type': 'SoftwareApplication',
|
|
120
|
+
'name': 'Convertisseur d\'Étanchéité de Montres',
|
|
121
|
+
'operatingSystem': 'Tous',
|
|
122
|
+
'applicationCategory': 'UtilitiesApplication',
|
|
123
|
+
'browserRequirements': 'Nécessite HTML5. Nécessite JavaScript.',
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
'@context': 'https://schema.org',
|
|
127
|
+
'@type': 'HowTo',
|
|
128
|
+
'name': 'Comment convertir les indices d\'étanchéité des montres',
|
|
129
|
+
'step': [
|
|
130
|
+
{
|
|
131
|
+
'@type': 'HowToStep',
|
|
132
|
+
'name': 'Entrez votre indice',
|
|
133
|
+
'text': 'Saisissez l\'indice d\'étanchéité de votre montre et sélectionnez l\'unité.',
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
'@type': 'HowToStep',
|
|
137
|
+
'name': 'Lisez les équivalences',
|
|
138
|
+
'text': 'La carte affiche les valeurs converties dans les quatre unités simultanément.',
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
'@type': 'HowToStep',
|
|
142
|
+
'name': 'Vérifiez la recommandation',
|
|
143
|
+
'text': 'La carte surlignée montre les activités sûres pour l\'indice de votre montre.',
|
|
144
|
+
},
|
|
145
|
+
],
|
|
146
|
+
},
|
|
147
|
+
],
|
|
148
|
+
};
|