@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,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: 'waterbestendigheid-omzetter',
|
|
7
|
+
title: 'Horloge Waterbestendigheid Omzetter — Meters, ATM, Bar & Voet',
|
|
8
|
+
description: 'Converteer waterbestendigheidsclassificaties van horloges tussen meters, voet, ATM en bar. Ontdek wat elke classificatie werkelijk betekent voor dagelijks gebruik, zwemmen en duiken.',
|
|
9
|
+
ui: {
|
|
10
|
+
title: 'Waterbestendigheid Omzetter',
|
|
11
|
+
depthLabel: 'Waterbestendigheid',
|
|
12
|
+
enterDepth: 'Voer dieptewaarde in',
|
|
13
|
+
unitMeters: 'Meters (m)',
|
|
14
|
+
unitFeet: 'Voet (ft)',
|
|
15
|
+
unitATM: 'Atmosferen (ATM)',
|
|
16
|
+
unitBar: 'Bar (bar)',
|
|
17
|
+
convertedValues: 'Gelijkwaardige Waarden',
|
|
18
|
+
ratingLabel: 'Classificatie',
|
|
19
|
+
whatItMeans: 'Wat Het Betekent',
|
|
20
|
+
notWaterResistant: 'Niet Waterbestendig',
|
|
21
|
+
notWaterResistantDesc: 'Geen spatwater. Volledig uit de buurt van water houden.',
|
|
22
|
+
handWash: 'Spaterwaterdicht',
|
|
23
|
+
handWashDesc: 'Handen wassen, regen, lichte spatwater. Niet zwemmen, niet douchen.',
|
|
24
|
+
showerSwim: 'Douche en Zwemmen aan Oppervlak',
|
|
25
|
+
showerSwimDesc: 'Douchen, zwemmen aan het wateroppervlak. Niet duiken of snorkelen.',
|
|
26
|
+
snorkeling: 'Zwemmen en Snorkelen',
|
|
27
|
+
snorkelingDesc: 'Baantjes trekken, snorkelen, watersporten. Uitstekende dagelijkse bestendigheid.',
|
|
28
|
+
scubaDiving: 'Recreatief Duiken',
|
|
29
|
+
scubaDivingDesc: 'Scubaduiken, intensieve maritieme activiteiten. ISO conform.',
|
|
30
|
+
saturationDiving: 'Diep / Verzadigingsduiken',
|
|
31
|
+
saturationDivingDesc: 'Professioneel verzadigingsduiken. Extreme dieptes. Context van heliumontsnappingsventiel.',
|
|
32
|
+
tipTitle: 'Tip',
|
|
33
|
+
tipContent: 'Waterbestendigheid neemt in de loop van de tijd af. Pakkingen en afdichtingen moeten jaarlijks worden getest en elke 3\u20135 jaar worden vervangen.',
|
|
34
|
+
},
|
|
35
|
+
seo: [
|
|
36
|
+
{ type: 'title', text: 'Horloge Waterbestendigheid Omzetter — Meters, ATM, Bar & Voet ontcijferd', level: 2 },
|
|
37
|
+
{ type: 'paragraph', html: 'Een waterbestendigheidsclassificatie van 30 meter betekent niet dat u tot 30 meter kunt duiken. Het betekent dat het horloge spatwater en lichte regen aankan. Deze omzetter vertaalt tussen <strong>meters, voet, atmosferen (ATM) en bar</strong>, en vertelt u wat elke classificatie werkelijk toestaat.' },
|
|
38
|
+
{ type: 'title', text: 'De Waarheid over Waterbestendigheidsclassificaties', level: 3 },
|
|
39
|
+
{ type: 'paragraph', html: 'Horlogewaterbestendigheid wordt getest onder statische druk in een laboratorium. In de praktijk — armbewegingen, duiken, temperatuurveranderingen — ontstaat dynamische druk die veel hoger is. Een 30m / 3 ATM horloge is alleen spatwaterdicht. Voor zwemmen heeft u minstens 100m / 10 ATM nodig. Voor scubaduiken is 200m / 20 ATM het standaard beginpunt.' },
|
|
40
|
+
{ type: 'title', text: 'Waarom Waterbestendigheid na Verloop van Tijd Afneemt', level: 3 },
|
|
41
|
+
{ type: 'paragraph', html: 'De rubberen pakkingen en O-ringen die uw horloge afdichten, drogen uit, barsten en comprimeren na verloop van tijd. Hitte, UV-licht en chemicaliën versnellen dit proces. Een horloge dat ooit waterbestendig was tot 100m, kan na 5 jaar zonder onderhoud slechts spatwaterdicht zijn. Laat uw afdichtingen jaarlijks testen en elke 3 tot 5 jaar vervangen.' },
|
|
42
|
+
{ type: 'title', text: 'ISO 6425 — De Norm voor Duikerhorloges', level: 3 },
|
|
43
|
+
{ type: 'paragraph', html: 'Om een "duikershorloge" genoemd te worden, moet een horloge voldoen aan ISO 6425 normen: minstens 100m waterbestendigheid, een unidirectionele ring, lichtgevende markeringen en een schroefkroon. Horloges die aan deze norm voldoen, worden 25% boven hun nominale diepte getest. Een ISO gecertificeerd 200m horloge wordt getest op 250m.' },
|
|
44
|
+
],
|
|
45
|
+
faq: [
|
|
46
|
+
{
|
|
47
|
+
question: 'Kan ik zwemmen met een 30 meter waterbestendig horloge?',
|
|
48
|
+
answer: 'Nee. Een 30m / 3 ATM classificatie betekent alleen spatwaterdichtheid — handen wassen, regen en zweet. Zwemmen creëert dynamische druk die de statische testdruk overschrijdt. Kies voor zwemmen minstens 100m / 10 ATM.',
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
question: 'Wat is het verschil tussen ATM, bar en meters?',
|
|
52
|
+
answer: '1 ATM = 1 bar ≈ 10 meter statische waterkolom. In de horloge-industrie zijn ze in wezen gelijkwaardig. Een 10 ATM horloge is hetzelfde als een 10 bar horloge en is geschikt tot ongeveer 100 meter.',
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
question: 'Hoe vaak moet ik de waterbestendigheid van mijn horloge testen?',
|
|
56
|
+
answer: 'Eenmaal per jaar, vooral voor blootstelling aan water. Pakkingen en afdichtingen slijten. Elke 3-5 jaar moeten alle afdichtingen worden vervangen tijdens een volledige onderhoudsbeurt.',
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
question: 'Wat betekent ISO 6425 gecertificeerd?',
|
|
60
|
+
answer: 'ISO 6425 is de internationale norm voor duikerhorloges. Het vereist minstens 100m bestendigheid, een unidirectionele ring, lichtgevende markeringen en testen 25% boven de nominale diepte.',
|
|
61
|
+
},
|
|
62
|
+
],
|
|
63
|
+
bibliography,
|
|
64
|
+
howTo: [
|
|
65
|
+
{
|
|
66
|
+
name: 'Voer uw classificatie in',
|
|
67
|
+
text: 'Typ het waterbestendigheidsgetal van uw horloge en selecteer de eenheid (meters, voet, ATM of bar).',
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
name: 'Lees de equivalenten',
|
|
71
|
+
text: 'De kaart toont de geconverteerde waarden in alle vier de eenheden tegelijkertijd.',
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
name: 'Controleer de aanbeveling',
|
|
75
|
+
text: 'De gemarkeerde kaart toont welke activiteiten veilig zijn bij de classificatie van uw horloge.',
|
|
76
|
+
},
|
|
77
|
+
],
|
|
78
|
+
schemas: [
|
|
79
|
+
{
|
|
80
|
+
'@context': 'https://schema.org',
|
|
81
|
+
'@type': 'FAQPage',
|
|
82
|
+
'mainEntity': [
|
|
83
|
+
{
|
|
84
|
+
'@type': 'Question',
|
|
85
|
+
'name': 'Kan ik zwemmen met een 30 meter waterbestendig horloge?',
|
|
86
|
+
'acceptedAnswer': {
|
|
87
|
+
'@type': 'Answer',
|
|
88
|
+
'text': 'Nee. Een 30m / 3 ATM classificatie betekent alleen spatwaterdichtheid — handen wassen, regen en zweet. Kies voor zwemmen minstens 100m / 10 ATM.',
|
|
89
|
+
},
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
'@type': 'Question',
|
|
93
|
+
'name': 'Wat is het verschil tussen ATM, bar en meters?',
|
|
94
|
+
'acceptedAnswer': {
|
|
95
|
+
'@type': 'Answer',
|
|
96
|
+
'text': '1 ATM = 1 bar ≈ 10 meter statische waterkolom. In de horloge-industrie zijn ze in wezen gelijkwaardig.',
|
|
97
|
+
},
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
'@type': 'Question',
|
|
101
|
+
'name': 'Hoe vaak moet ik de waterbestendigheid van mijn horloge testen?',
|
|
102
|
+
'acceptedAnswer': {
|
|
103
|
+
'@type': 'Answer',
|
|
104
|
+
'text': 'Eenmaal per jaar, vooral voor blootstelling aan water. Elke 3-5 jaar moeten alle afdichtingen worden vervangen tijdens een volledige onderhoudsbeurt.',
|
|
105
|
+
},
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
'@type': 'Question',
|
|
109
|
+
'name': 'Wat betekent ISO 6425 gecertificeerd?',
|
|
110
|
+
'acceptedAnswer': {
|
|
111
|
+
'@type': 'Answer',
|
|
112
|
+
'text': 'ISO 6425 vereist minstens 100m bestendigheid, een unidirectionele ring, lichtgevende markeringen en testen 25% boven de nominale diepte.',
|
|
113
|
+
},
|
|
114
|
+
},
|
|
115
|
+
],
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
'@context': 'https://schema.org',
|
|
119
|
+
'@type': 'SoftwareApplication',
|
|
120
|
+
'name': 'Horloge Waterbestendigheid Omzetter',
|
|
121
|
+
'operatingSystem': 'Alle',
|
|
122
|
+
'applicationCategory': 'UtilitiesApplication',
|
|
123
|
+
'browserRequirements': 'Vereist HTML5. Vereist JavaScript.',
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
'@context': 'https://schema.org',
|
|
127
|
+
'@type': 'HowTo',
|
|
128
|
+
'name': 'Hoe horloge waterbestendigheidsclassificaties om te zetten',
|
|
129
|
+
'step': [
|
|
130
|
+
{
|
|
131
|
+
'@type': 'HowToStep',
|
|
132
|
+
'name': 'Voer uw classificatie in',
|
|
133
|
+
'text': 'Typ het waterbestendigheidsgetal van uw horloge en selecteer de eenheid.',
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
'@type': 'HowToStep',
|
|
137
|
+
'name': 'Lees de equivalenten',
|
|
138
|
+
'text': 'De kaart toont de geconverteerde waarden in alle vier de eenheden tegelijkertijd.',
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
'@type': 'HowToStep',
|
|
142
|
+
'name': 'Controleer de aanbeveling',
|
|
143
|
+
'text': 'De gemarkeerde kaart toont welke activiteiten veilig zijn bij de classificatie van uw horloge.',
|
|
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: 'konwerter-wodoszczelnosci',
|
|
7
|
+
title: 'Konwerter Wodoszczelności Zegarków — Metry, ATM, Bar & Stopy',
|
|
8
|
+
description: 'Przelicz klasy wodoszczelności zegarków między metrami, stopami, ATM i bar. Sprawdź, co każda klasa oznacza w codziennym użytkowaniu, podczas pływania i nurkowania.',
|
|
9
|
+
ui: {
|
|
10
|
+
title: 'Konwerter Wodoszczelności',
|
|
11
|
+
depthLabel: 'Wodoszczelność',
|
|
12
|
+
enterDepth: 'Wpisz klasę głębokości',
|
|
13
|
+
unitMeters: 'Metry (m)',
|
|
14
|
+
unitFeet: 'Stopy (ft)',
|
|
15
|
+
unitATM: 'Atmosfery (ATM)',
|
|
16
|
+
unitBar: 'Bar (bar)',
|
|
17
|
+
convertedValues: 'Równoważne Wartości',
|
|
18
|
+
ratingLabel: 'Klasa',
|
|
19
|
+
whatItMeans: 'Co Oznacza',
|
|
20
|
+
notWaterResistant: 'Brak Wodoszczelności',
|
|
21
|
+
notWaterResistantDesc: 'Żadnych zachlapań. Trzymaj z dala od wody.',
|
|
22
|
+
handWash: 'Odporny na Zachlapania',
|
|
23
|
+
handWashDesc: 'Mycie rąk, deszcz, lekkie zachlapania. Bez pływania, bez prysznica.',
|
|
24
|
+
showerSwim: 'Prysznic i Pływanie po Powierzchni',
|
|
25
|
+
showerSwimDesc: 'Prysznic, pływanie przy powierzchni. Bez nurkowania i snorkelingu.',
|
|
26
|
+
snorkeling: 'Pływanie i Snorkeling',
|
|
27
|
+
snorkelingDesc: 'Pływanie w basenie, snorkeling, sporty wodne. Doskonała codzienna odporność.',
|
|
28
|
+
scubaDiving: 'Nurkowanie Rekreacyjne',
|
|
29
|
+
scubaDivingDesc: 'Nurkowanie butlowe, intensywne aktywności morskie. Zgodne z ISO.',
|
|
30
|
+
saturationDiving: 'Nurkowanie Głębokie / Saturacja',
|
|
31
|
+
saturationDivingDesc: 'Profesjonalne nurkowanie saturowane. Ekstremalne głębokości. Kontekst zaworu ucieczki helu.',
|
|
32
|
+
tipTitle: 'Wskazówka',
|
|
33
|
+
tipContent: 'Wodoszczelność pogarsza się z czasem. Uszczelki powinny być testowane corocznie i wymieniane co 3\u20135 lat.',
|
|
34
|
+
},
|
|
35
|
+
seo: [
|
|
36
|
+
{ type: 'title', text: 'Konwerter Wodoszczelności Zegarków — Rozszyfrowanie Metrów, ATM, Bar & Stóp', level: 2 },
|
|
37
|
+
{ type: 'paragraph', html: 'Klasa wodoszczelności 30 metrów nie oznacza, że możesz nurkować na 30 metrów. Oznacza, że zegarek wytrzyma zachlapania i lekki deszcz. Ten konwerter tłumaczy między <strong>metrami, stopami, atmosferami (ATM) i barami</strong> i mówi, co każda klasa faktycznie pozwala robić.' },
|
|
38
|
+
{ type: 'title', text: 'Prawda o Klasach Wodoszczelności', level: 3 },
|
|
39
|
+
{ type: 'paragraph', html: 'Wodoszczelność zegarków testuje się w laboratorium pod ciśnieniem statycznym. Warunki rzeczywiste — poruszanie ręką, nurkowanie, zmiany temperatury — tworzą ciśnienie dynamiczne, które jest znacznie wyższe. Zegarek 30m / 3 ATM jest tylko odporny na zachlapania. Do pływania potrzebujesz co najmniej 100m / 10 ATM. Do nurkowania butlowego 200m / 20 ATM to standardowy próg wejścia.' },
|
|
40
|
+
{ type: 'title', text: 'Dlaczego Wodoszczelność Pogarsza się z Czasem', level: 3 },
|
|
41
|
+
{ type: 'paragraph', html: 'Gumowe uszczelki i O-ringi uszczelniające zegarek z czasem wysychają, pękają i ulegają kompresji. Ciepło, światło UV i chemikalia przyspieszają ten proces. Zegarek, który kiedyś był wodoszczelny do 100m, po 5 latach bez serwisu może być tylko odporny na zachlapania. Zlecaj coroczne testowanie uszczelek i wymieniaj je co 3 do 5 lat.' },
|
|
42
|
+
{ type: 'title', text: 'ISO 6425 — Norma dla Zegarków Nurkowych', level: 3 },
|
|
43
|
+
{ type: 'paragraph', html: 'Aby zegarek mógł być nazwany "zegarkiem nurkowym," musi spełniać normę ISO 6425: co najmniej 100m wodoszczelności, jednokierunkowy bezel, świecące oznaczenia i zakręcana koronka. Zegarki spełniające tę normę są testowane 25% powyżej deklarowanej głębokości. Zegarek z certyfikatem ISO 200m jest testowany na 250m.' },
|
|
44
|
+
],
|
|
45
|
+
faq: [
|
|
46
|
+
{
|
|
47
|
+
question: 'Czy mogę pływać z zegarkiem wodoszczelnym do 30 metrów?',
|
|
48
|
+
answer: 'Nie. Klasa 30m / 3 ATM oznacza tylko odporność na zachlapania — mycie rąk, deszcz i pot. Pływanie wytwarza ciśnienie dynamiczne przekraczające statyczne ciśnienie testowe. Do pływania wybierz co najmniej 100m / 10 ATM.',
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
question: 'Jaka jest różnica między ATM, bar i metrami?',
|
|
52
|
+
answer: '1 ATM = 1 bar ≈ 10 metrów statycznego słupa wody. W branży zegarkowej są one zasadniczo równoważne. Zegarek 10 ATM jest tym samym co zegarek 10 bar i jest klasyfikowany do około 100 metrów.',
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
question: 'Jak często powinienem testować wodoszczelność mojego zegarka?',
|
|
56
|
+
answer: 'Raz w roku, szczególnie przed kontaktem z wodą. Uszczelki się zużywają. Co 3-5 lat wszystkie uszczelki należy wymienić podczas pełnego serwisu.',
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
question: 'Co oznacza certyfikat ISO 6425?',
|
|
60
|
+
answer: 'ISO 6425 to międzynarodowa norma dla zegarków nurkowych. Wymaga co najmniej 100m odporności, jednokierunkowego bezela, świecących oznaczeń i testowania 25% powyżej deklarowanej głębokości.',
|
|
61
|
+
},
|
|
62
|
+
],
|
|
63
|
+
bibliography,
|
|
64
|
+
howTo: [
|
|
65
|
+
{
|
|
66
|
+
name: 'Wpisz swoją klasę',
|
|
67
|
+
text: 'Wpisz liczbę wodoszczelności swojego zegarka i wybierz jednostkę (metry, stopy, ATM lub bar).',
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
name: 'Odczytaj równoważniki',
|
|
71
|
+
text: 'Karta pokazuje przeliczone wartości we wszystkich czterech jednostkach jednocześnie.',
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
name: 'Sprawdź zalecenie',
|
|
75
|
+
text: 'Podświetlona karta pokazuje, które aktywności są bezpieczne przy klasie twojego zegarka.',
|
|
76
|
+
},
|
|
77
|
+
],
|
|
78
|
+
schemas: [
|
|
79
|
+
{
|
|
80
|
+
'@context': 'https://schema.org',
|
|
81
|
+
'@type': 'FAQPage',
|
|
82
|
+
'mainEntity': [
|
|
83
|
+
{
|
|
84
|
+
'@type': 'Question',
|
|
85
|
+
'name': 'Czy mogę pływać z zegarkiem wodoszczelnym do 30 metrów?',
|
|
86
|
+
'acceptedAnswer': {
|
|
87
|
+
'@type': 'Answer',
|
|
88
|
+
'text': 'Nie. Klasa 30m / 3 ATM oznacza tylko odporność na zachlapania — mycie rąk, deszcz i pot. Do pływania wybierz co najmniej 100m / 10 ATM.',
|
|
89
|
+
},
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
'@type': 'Question',
|
|
93
|
+
'name': 'Jaka jest różnica między ATM, bar i metrami?',
|
|
94
|
+
'acceptedAnswer': {
|
|
95
|
+
'@type': 'Answer',
|
|
96
|
+
'text': '1 ATM = 1 bar ≈ 10 metrów statycznego słupa wody. W branży zegarkowej są one zasadniczo równoważne.',
|
|
97
|
+
},
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
'@type': 'Question',
|
|
101
|
+
'name': 'Jak często powinienem testować wodoszczelność mojego zegarka?',
|
|
102
|
+
'acceptedAnswer': {
|
|
103
|
+
'@type': 'Answer',
|
|
104
|
+
'text': 'Raz w roku, szczególnie przed kontaktem z wodą. Co 3-5 lat wszystkie uszczelki należy wymienić podczas pełnego serwisu.',
|
|
105
|
+
},
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
'@type': 'Question',
|
|
109
|
+
'name': 'Co oznacza certyfikat ISO 6425?',
|
|
110
|
+
'acceptedAnswer': {
|
|
111
|
+
'@type': 'Answer',
|
|
112
|
+
'text': 'ISO 6425 wymaga co najmniej 100m odporności, jednokierunkowego bezela, świecących oznaczeń i testowania 25% powyżej deklarowanej głębokości.',
|
|
113
|
+
},
|
|
114
|
+
},
|
|
115
|
+
],
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
'@context': 'https://schema.org',
|
|
119
|
+
'@type': 'SoftwareApplication',
|
|
120
|
+
'name': 'Konwerter Wodoszczelności Zegarków',
|
|
121
|
+
'operatingSystem': 'Wszystkie',
|
|
122
|
+
'applicationCategory': 'UtilitiesApplication',
|
|
123
|
+
'browserRequirements': 'Wymaga HTML5. Wymaga JavaScript.',
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
'@context': 'https://schema.org',
|
|
127
|
+
'@type': 'HowTo',
|
|
128
|
+
'name': 'Jak przeliczać klasy wodoszczelności zegarków',
|
|
129
|
+
'step': [
|
|
130
|
+
{
|
|
131
|
+
'@type': 'HowToStep',
|
|
132
|
+
'name': 'Wpisz swoją klasę',
|
|
133
|
+
'text': 'Wpisz liczbę wodoszczelności swojego zegarka i wybierz jednostkę.',
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
'@type': 'HowToStep',
|
|
137
|
+
'name': 'Odczytaj równoważniki',
|
|
138
|
+
'text': 'Karta pokazuje przeliczone wartości we wszystkich czterech jednostkach jednocześnie.',
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
'@type': 'HowToStep',
|
|
142
|
+
'name': 'Sprawdź zalecenie',
|
|
143
|
+
'text': 'Podświetlona karta pokazuje, które aktywności są bezpieczne przy klasie twojego zegarka.',
|
|
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: 'conversor-resistencia-agua',
|
|
7
|
+
title: 'Conversor de Resistência à Água de Relógios — Metros, ATM, Bar & Pés',
|
|
8
|
+
description: 'Converta classificações de resistência à água de relógios entre metros, pés, ATM e bar. Veja o que cada classificação realmente significa para uso diário, natação e mergulho.',
|
|
9
|
+
ui: {
|
|
10
|
+
title: 'Conversor de Resistência à Água',
|
|
11
|
+
depthLabel: 'Resistência à Água',
|
|
12
|
+
enterDepth: 'Insira a classificação de profundidade',
|
|
13
|
+
unitMeters: 'Metros (m)',
|
|
14
|
+
unitFeet: 'Pés (ft)',
|
|
15
|
+
unitATM: 'Atmosferas (ATM)',
|
|
16
|
+
unitBar: 'Bar (bar)',
|
|
17
|
+
convertedValues: 'Valores Equivalentes',
|
|
18
|
+
ratingLabel: 'Classificação',
|
|
19
|
+
whatItMeans: 'O Que Significa',
|
|
20
|
+
notWaterResistant: 'Não Resistente à Água',
|
|
21
|
+
notWaterResistantDesc: 'Sem respingos. Mantenha completamente longe da água.',
|
|
22
|
+
handWash: 'Resistente a Respingos',
|
|
23
|
+
handWashDesc: 'Lavar as mãos, chuva, respingos leves. Não nade, não tome banho.',
|
|
24
|
+
showerSwim: 'Chuveiro e Natação Superficial',
|
|
25
|
+
showerSwimDesc: 'Tomar banho, natação superficial em piscina. Sem mergulho ou snorkeling.',
|
|
26
|
+
snorkeling: 'Natação e Snorkeling',
|
|
27
|
+
snorkelingDesc: 'Natação em piscina, snorkeling, esportes aquáticos. Excelente resistência diária.',
|
|
28
|
+
scubaDiving: 'Mergulho Recreativo',
|
|
29
|
+
scubaDivingDesc: 'Mergulho autônomo, atividades marinhas de alto impacto. Em conformidade com ISO.',
|
|
30
|
+
saturationDiving: 'Mergulho Profundo / Saturação',
|
|
31
|
+
saturationDivingDesc: 'Mergulho de saturação profissional. Profundidades extremas. Contexto de válvula de escape de hélio.',
|
|
32
|
+
tipTitle: 'Dica',
|
|
33
|
+
tipContent: 'A resistência à água degrada-se ao longo do tempo. Juntas e vedações devem ser testadas anualmente e substituídas a cada 3\u20135 anos.',
|
|
34
|
+
},
|
|
35
|
+
seo: [
|
|
36
|
+
{ type: 'title', text: 'Conversor de Resistência à Água de Relógios — Decifrando Metros, ATM, Bar & Pés', level: 2 },
|
|
37
|
+
{ type: 'paragraph', html: 'Uma classificação de resistência à água de 30 metros não significa que você pode mergulhar a 30 metros. Significa que o relógio suporta respingos e chuva leve. Este conversor traduz entre <strong>metros, pés, atmosferas (ATM) e bares</strong>, e informa o que cada classificação realmente permite.' },
|
|
38
|
+
{ type: 'title', text: 'A Verdade Sobre as Classificações de Resistência à Água', level: 3 },
|
|
39
|
+
{ type: 'paragraph', html: 'A resistência à água dos relógios é testada sob pressão estática em laboratório. As condições reais — mover o braço, mergulhar, mudanças de temperatura — criam pressão dinâmica muito mais elevada. Um relógio de 30m / 3 ATM é apenas resistente a respingos. Para nadar, precisa de pelo menos 100m / 10 ATM. Para mergulho autônomo, 200m / 20 ATM é o ponto de entrada padrão.' },
|
|
40
|
+
{ type: 'title', text: 'Porque a Resistência à Água se Degrada com o Tempo', level: 3 },
|
|
41
|
+
{ type: 'paragraph', html: 'As juntas de borracha e anéis O que vedam o seu relógio secam, racham e comprimem com o tempo. Calor, luz UV e produtos químicos aceleram este processo. Um relógio que antes era resistente à água até 100m pode tornar-se apenas resistente a respingos após 5 anos sem manutenção. Mande testar as vedações anualmente e substitua-as a cada 3 a 5 anos.' },
|
|
42
|
+
{ type: 'title', text: 'ISO 6425 — O Padrão para Relógios de Mergulho', level: 3 },
|
|
43
|
+
{ type: 'paragraph', html: 'Para um relógio ser chamado de "relógio de mergulho," deve cumprir a norma ISO 6425: pelo menos 100m de resistência à água, um bisel unidirecional, marcações luminosas e coroa de rosca. Os relógios que cumprem esta norma são testados 25% acima da profundidade nominal. Um relógio com certificação ISO de 200m é testado a 250m.' },
|
|
44
|
+
],
|
|
45
|
+
faq: [
|
|
46
|
+
{
|
|
47
|
+
question: 'Posso nadar com um relógio resistente à água de 30 metros?',
|
|
48
|
+
answer: 'Não. Uma classificação de 30m / 3 ATM significa apenas resistência a respingos — lavar as mãos, chuva e suor. A natação cria pressão dinâmica que excede a pressão de teste estática. Para nadar, escolha pelo menos 100m / 10 ATM.',
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
question: 'Qual é a diferença entre ATM, bar e metros?',
|
|
52
|
+
answer: '1 ATM = 1 bar ≈ 10 metros de coluna de água estática. Na indústria relojoeira são essencialmente equivalentes. Um relógio de 10 ATM é o mesmo que um relógio de 10 bar e está classificado para aproximadamente 100 metros.',
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
question: 'Com que frequência devo testar a resistência à água do meu relógio?',
|
|
56
|
+
answer: 'Uma vez por ano, especialmente antes da exposição à água. As juntas e vedações desgastam-se. A cada 3-5 anos, todas as vedações devem ser substituídas durante uma revisão completa.',
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
question: 'O que significa certificação ISO 6425?',
|
|
60
|
+
answer: 'A ISO 6425 é a norma internacional para relógios de mergulho. Exige pelo menos 100m de resistência, um bisel unidirecional, marcações luminosas e testes 25% acima da profundidade nominal.',
|
|
61
|
+
},
|
|
62
|
+
],
|
|
63
|
+
bibliography,
|
|
64
|
+
howTo: [
|
|
65
|
+
{
|
|
66
|
+
name: 'Insira a classificação',
|
|
67
|
+
text: 'Digite o número de resistência à água do seu relógio e selecione a unidade (metros, pés, ATM ou bar).',
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
name: 'Leia os equivalentes',
|
|
71
|
+
text: 'O cartão mostra os valores convertidos nas quatro unidades simultaneamente.',
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
name: 'Verifique a recomendação',
|
|
75
|
+
text: 'O cartão destacado mostra quais atividades são seguras com a classificação do seu relógio.',
|
|
76
|
+
},
|
|
77
|
+
],
|
|
78
|
+
schemas: [
|
|
79
|
+
{
|
|
80
|
+
'@context': 'https://schema.org',
|
|
81
|
+
'@type': 'FAQPage',
|
|
82
|
+
'mainEntity': [
|
|
83
|
+
{
|
|
84
|
+
'@type': 'Question',
|
|
85
|
+
'name': 'Posso nadar com um relógio resistente à água de 30 metros?',
|
|
86
|
+
'acceptedAnswer': {
|
|
87
|
+
'@type': 'Answer',
|
|
88
|
+
'text': 'Não. Uma classificação de 30m / 3 ATM significa apenas resistência a respingos — lavar as mãos, chuva e suor. Para nadar, escolha pelo menos 100m / 10 ATM.',
|
|
89
|
+
},
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
'@type': 'Question',
|
|
93
|
+
'name': 'Qual é a diferença entre ATM, bar e metros?',
|
|
94
|
+
'acceptedAnswer': {
|
|
95
|
+
'@type': 'Answer',
|
|
96
|
+
'text': '1 ATM = 1 bar ≈ 10 metros de coluna de água estática. Na indústria relojoeira são essencialmente equivalentes.',
|
|
97
|
+
},
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
'@type': 'Question',
|
|
101
|
+
'name': 'Com que frequência devo testar a resistência à água do meu relógio?',
|
|
102
|
+
'acceptedAnswer': {
|
|
103
|
+
'@type': 'Answer',
|
|
104
|
+
'text': 'Uma vez por ano, especialmente antes da exposição à água. A cada 3-5 anos, todas as vedações devem ser substituídas durante uma revisão completa.',
|
|
105
|
+
},
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
'@type': 'Question',
|
|
109
|
+
'name': 'O que significa certificação ISO 6425?',
|
|
110
|
+
'acceptedAnswer': {
|
|
111
|
+
'@type': 'Answer',
|
|
112
|
+
'text': 'A ISO 6425 exige pelo menos 100m de resistência, um bisel unidirecional, marcações luminosas e testes 25% acima da profundidade nominal.',
|
|
113
|
+
},
|
|
114
|
+
},
|
|
115
|
+
],
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
'@context': 'https://schema.org',
|
|
119
|
+
'@type': 'SoftwareApplication',
|
|
120
|
+
'name': 'Conversor de Resistência à Água de Relógios',
|
|
121
|
+
'operatingSystem': 'Todos',
|
|
122
|
+
'applicationCategory': 'UtilitiesApplication',
|
|
123
|
+
'browserRequirements': 'Requer HTML5. Requer JavaScript.',
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
'@context': 'https://schema.org',
|
|
127
|
+
'@type': 'HowTo',
|
|
128
|
+
'name': 'Como converter classificações de resistência à água de relógios',
|
|
129
|
+
'step': [
|
|
130
|
+
{
|
|
131
|
+
'@type': 'HowToStep',
|
|
132
|
+
'name': 'Insira a classificação',
|
|
133
|
+
'text': 'Digite o número de resistência à água do seu relógio e selecione a unidade.',
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
'@type': 'HowToStep',
|
|
137
|
+
'name': 'Leia os equivalentes',
|
|
138
|
+
'text': 'O cartão mostra os valores convertidos nas quatro unidades simultaneamente.',
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
'@type': 'HowToStep',
|
|
142
|
+
'name': 'Verifique a recomendação',
|
|
143
|
+
'text': 'O cartão destacado mostra quais atividades são seguras com a classificação do seu relógio.',
|
|
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: 'konverter-vodonepronitsaemosti',
|
|
7
|
+
title: 'Конвертер водонепроницаемости часов — Метры, ATM, Bar & Футы',
|
|
8
|
+
description: 'Конвертируйте классы водонепроницаемости часов между метрами, футами, ATM и bar. Узнайте, что на самом деле означает каждый класс для повседневного ношения, плавания и дайвинга.',
|
|
9
|
+
ui: {
|
|
10
|
+
title: 'Конвертер водонепроницаемости',
|
|
11
|
+
depthLabel: 'Водонепроницаемость',
|
|
12
|
+
enterDepth: 'Введите класс глубины',
|
|
13
|
+
unitMeters: 'Метры (м)',
|
|
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) и барами</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: 'Резиновые прокладки и уплотнительные кольца, герметизирующие часы, со временем высыхают, трескаются и сжимаются. Жара, ультрафиолет и химикаты ускоряют этот процесс. Часы, когда-то водонепроницаемые до 100m, после 5 лет без обслуживания могут стать только брызгозащищёнными. Проверяйте уплотнения ежегодно и заменяйте их каждые 3-5 лет.' },
|
|
42
|
+
{ type: 'title', text: 'ISO 6425 — Стандарт для дайверских часов', level: 3 },
|
|
43
|
+
{ type: 'paragraph', html: 'Чтобы часы назывались "дайверскими", они должны соответствовать стандарту ISO 6425: не менее 100m водонепроницаемости, однонаправленный безель, люминесцентная разметка и завинчивающаяся заводная головка. Часы, соответствующие этому стандарту, тестируются на 25% выше заявленной глубины. Часы с сертификацией ISO на 200m тестируются на 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: 'Раз в год, особенно перед контактом с водой. Прокладки и уплотнения изнашиваются. Каждые 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': 'Раз в год, особенно перед контактом с водой. Каждые 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
|
+
};
|