@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,56 @@
|
|
|
1
|
+
import type { ChronoToolEntry, ToolLocaleContent } from '../../types';
|
|
2
|
+
|
|
3
|
+
export type StrapTaperCalculatorUI = {
|
|
4
|
+
title: string;
|
|
5
|
+
caseLabel: string;
|
|
6
|
+
caseInput: string;
|
|
7
|
+
lugLabel: string;
|
|
8
|
+
lugInput: string;
|
|
9
|
+
taperLabel: string;
|
|
10
|
+
straight: string;
|
|
11
|
+
classic: string;
|
|
12
|
+
aggressive: string;
|
|
13
|
+
customTaper: string;
|
|
14
|
+
buckleWidth: string;
|
|
15
|
+
resultsTitle: string;
|
|
16
|
+
lugWidth: string;
|
|
17
|
+
buckleWidthResult: string;
|
|
18
|
+
taperAmount: string;
|
|
19
|
+
taperRatio: string;
|
|
20
|
+
proportionScore: string;
|
|
21
|
+
proportionExcellent: string;
|
|
22
|
+
proportionGood: string;
|
|
23
|
+
proportionFair: string;
|
|
24
|
+
proportionUnbalanced: string;
|
|
25
|
+
mmUnit: string;
|
|
26
|
+
arrow: string;
|
|
27
|
+
noteTitle: string;
|
|
28
|
+
noteContent: string;
|
|
29
|
+
step1: string;
|
|
30
|
+
step2: string;
|
|
31
|
+
step3: string;
|
|
32
|
+
};
|
|
33
|
+
|
|
34
|
+
export type StrapTaperCalculatorLocaleContent = ToolLocaleContent<StrapTaperCalculatorUI>;
|
|
35
|
+
|
|
36
|
+
export const strapTaperCalculator: ChronoToolEntry<StrapTaperCalculatorUI> = {
|
|
37
|
+
id: 'strap-taper-calculator',
|
|
38
|
+
icons: { bg: 'mdi:ruler', fg: 'mdi:tape-measure' },
|
|
39
|
+
i18n: {
|
|
40
|
+
de: () => import('./i18n/de').then((m) => m.content),
|
|
41
|
+
en: () => import('./i18n/en').then((m) => m.content),
|
|
42
|
+
es: () => import('./i18n/es').then((m) => m.content),
|
|
43
|
+
fr: () => import('./i18n/fr').then((m) => m.content),
|
|
44
|
+
id: () => import('./i18n/id').then((m) => m.content),
|
|
45
|
+
it: () => import('./i18n/it').then((m) => m.content),
|
|
46
|
+
ja: () => import('./i18n/ja').then((m) => m.content),
|
|
47
|
+
ko: () => import('./i18n/ko').then((m) => m.content),
|
|
48
|
+
nl: () => import('./i18n/nl').then((m) => m.content),
|
|
49
|
+
pl: () => import('./i18n/pl').then((m) => m.content),
|
|
50
|
+
pt: () => import('./i18n/pt').then((m) => m.content),
|
|
51
|
+
ru: () => import('./i18n/ru').then((m) => m.content),
|
|
52
|
+
sv: () => import('./i18n/sv').then((m) => m.content),
|
|
53
|
+
tr: () => import('./i18n/tr').then((m) => m.content),
|
|
54
|
+
zh: () => import('./i18n/zh').then((m) => m.content),
|
|
55
|
+
},
|
|
56
|
+
};
|
|
@@ -0,0 +1,152 @@
|
|
|
1
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
2
|
+
import type { StrapTaperCalculatorUI } from '../entry';
|
|
3
|
+
import { bibliography } from '../bibliography';
|
|
4
|
+
|
|
5
|
+
export const content: ToolLocaleContent<StrapTaperCalculatorUI> = {
|
|
6
|
+
slug: 'armbandproportionen-rechner',
|
|
7
|
+
title: 'Armbandverjüngung und Proportionen Rechner',
|
|
8
|
+
description: 'Berechne die ideale Armbandverjüngung für deine Uhr anhand von Gehäusedurchmesser und Stegbreite. Finde die perfekte Schließenbreite für einen ausgewogenen Look.',
|
|
9
|
+
ui: {
|
|
10
|
+
title: 'Armbandverjüngung Rechner',
|
|
11
|
+
caseLabel: 'Uhrenmaße',
|
|
12
|
+
caseInput: 'Gehäusedurchmesser',
|
|
13
|
+
lugLabel: 'Stegbreite',
|
|
14
|
+
lugInput: 'Stegbreite',
|
|
15
|
+
taperLabel: 'Verjüngungsstil',
|
|
16
|
+
straight: 'Gerade',
|
|
17
|
+
classic: 'Klassisch',
|
|
18
|
+
aggressive: 'Stark',
|
|
19
|
+
customTaper: 'Benutzerdefiniert',
|
|
20
|
+
buckleWidth: 'Schließenbreite',
|
|
21
|
+
resultsTitle: 'Proportionen',
|
|
22
|
+
lugWidth: 'Stegbreite',
|
|
23
|
+
buckleWidthResult: 'Schließenbreite',
|
|
24
|
+
taperAmount: 'Verjüngung',
|
|
25
|
+
taperRatio: 'Verhältnis',
|
|
26
|
+
proportionScore: 'Proportion',
|
|
27
|
+
proportionExcellent: 'Hervorragend',
|
|
28
|
+
proportionGood: 'Gut',
|
|
29
|
+
proportionFair: 'Akzeptabel',
|
|
30
|
+
proportionUnbalanced: 'Unausgewogen',
|
|
31
|
+
mmUnit: 'mm',
|
|
32
|
+
arrow: '\u2192',
|
|
33
|
+
noteTitle: 'Hinweis',
|
|
34
|
+
noteContent: 'Eine klassische Verjüngung von 4 mm (z. B. von 20 auf 16 mm) passt zu eleganteren Uhren. Taucher- und Werkzeughuhren wirken oft besser mit einer geraden oder 2 mm Verjüngung für einen robusten Look.',
|
|
35
|
+
step1: 'Gib Gehäusedurchmesser und Stegbreite ein.',
|
|
36
|
+
step2: 'Wähle einen Verjüngungsstil oder lege eine eigene Schließenbreite fest.',
|
|
37
|
+
step3: 'Lies die Proportionen und die visuelle Darstellung ab.',
|
|
38
|
+
},
|
|
39
|
+
seo: [
|
|
40
|
+
{ type: 'title', text: 'Armbandverjüngung Rechner \u2014 Proportionen, Schließenbreite und Leitfaden', level: 2 },
|
|
41
|
+
{ type: 'paragraph', html: 'Ein gut proportioniertes Armband macht oder zerbricht den Eindruck einer Uhr. Zu viel Verjüngung bei einem Tauchermodell wirkt fragil. Keine Verjüngung bei einer eleganten Uhr wirkt klobig. Dieser Rechner hilft dir, das ideale <strong>Verjüngungsverhältnis</strong> anhand von Gehäusedurchmesser und Stegbreite zu finden.' },
|
|
42
|
+
{ type: 'title', text: 'Was ist Armbandverjüngung?', level: 3 },
|
|
43
|
+
{ type: 'paragraph', html: 'Armbandverjüngung bezeichnet die Verringerung der Breite vom Steg zum Schließenende eines Uhrarmbands. Eine klassische elegante Uhr könnte von 20 mm an den Stegen auf 16 mm an der Schließe verjüngen \u2014 eine Verjüngung um 4 mm. Eine Taucheruhr könnte durchgehend bei 20 mm bleiben, um einen robusteren Werkzeughuhrencharakter zu erzielen.' },
|
|
44
|
+
{ type: 'title', text: 'Der goldene Schnitt für Armbandproportionen', level: 3 },
|
|
45
|
+
{ type: 'paragraph', html: 'Uhrenliebhaber sind sich weitgehend einig, dass eine Stegbreite zwischen 45 % und 55 % des Gehäusedurchmessers am besten aussieht. Bei der Verjüngung sorgt eine Schließenbreite von 75 % bis 85 % der Stegbreite für eine ausgewogene, elegante Silhouette. Verhältnisse außerhalb dieses Bereichs können die Uhr kopflastig oder zu filigran wirken lassen.' },
|
|
46
|
+
{ type: 'title', text: 'Verjüngung nach Uhrenstil', level: 3 },
|
|
47
|
+
{ type: 'paragraph', html: 'Eleganzuhren: 4 mm Verjüngung (20 auf 16 mm). Sportuhren: 2 bis 3 mm Verjüngung. Taucheruhren: 0 bis 2 mm Verjüngung. Militär- oder Felduhren: gerade Verjüngung für einen robusten Look. Pilotenuhren: minimale Verjüngung passend zur Instrumentenästhetik.' },
|
|
48
|
+
],
|
|
49
|
+
faq: [
|
|
50
|
+
{
|
|
51
|
+
question: 'Was ist die ideale Armbandverjüngung für eine elegante Uhr?',
|
|
52
|
+
answer: 'Eine Verjüngung von 4 mm ist die klassische Wahl. Bei einer Stegbreite von 20 mm bedeutet das eine 16 mm Schließe. So entsteht eine elegante Silhouette, die den edlen Look einer Anzugsuhr unterstreicht.',
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
question: 'Sollte eine Taucheruhr ein verjüngtes Armband haben?',
|
|
56
|
+
answer: 'Die meisten Taucheruhren sehen mit minimaler oder gar keiner Verjüngung am besten aus. Ein durchgehend gerades 20 mm Armband verleiht einen robusten Werkzeughuhrencharakter, der zum nüchternen Design von Taucheruhren passt.',
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
question: 'Was passiert, wenn die Verjüngung zu stark ist?',
|
|
60
|
+
answer: 'Eine starke Verjüngung (6 mm oder mehr) kann den Uhrenkopf unverhältnismäßig groß und kopflastig wirken lassen. Das Armband kann sich am Schließenende zudem zu dünn anfühlen.',
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
question: 'Wie messe ich die Stegbreite?',
|
|
64
|
+
answer: 'Miss den inneren Abstand zwischen den Federsteglöchern am Uhrengehäuse. Das ist die benötigte Armbandbreite. Übliche Größen sind 18 mm, 20 mm und 22 mm.',
|
|
65
|
+
},
|
|
66
|
+
],
|
|
67
|
+
bibliography,
|
|
68
|
+
howTo: [
|
|
69
|
+
{
|
|
70
|
+
name: 'Gehäuse- und Stegmaße eingeben',
|
|
71
|
+
text: 'Gib Gehäusedurchmesser und Stegbreite in Millimetern ein.',
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
name: 'Verjüngungsstil wählen',
|
|
75
|
+
text: 'Wähle Gerade, Klassisch, Stark oder Benutzerdefiniert. Die Darstellung aktualisiert sich sofort.',
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
name: 'Proportionen prüfen',
|
|
79
|
+
text: 'Überprüfe das Verhältnis und die Prozentzahl, um zu sehen, ob deine Armbandwahl ausgewogen ist.',
|
|
80
|
+
},
|
|
81
|
+
],
|
|
82
|
+
schemas: [
|
|
83
|
+
{
|
|
84
|
+
'@context': 'https://schema.org',
|
|
85
|
+
'@type': 'FAQPage',
|
|
86
|
+
'mainEntity': [
|
|
87
|
+
{
|
|
88
|
+
'@type': 'Question',
|
|
89
|
+
'name': 'Was ist die ideale Armbandverjüngung für eine elegante Uhr?',
|
|
90
|
+
'acceptedAnswer': {
|
|
91
|
+
'@type': 'Answer',
|
|
92
|
+
'text': 'Eine Verjüngung von 4 mm ist die klassische Wahl. Bei einer Stegbreite von 20 mm bedeutet das eine 16 mm Schließe, was eine elegante Silhouette ergibt.',
|
|
93
|
+
},
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
'@type': 'Question',
|
|
97
|
+
'name': 'Sollte eine Taucheruhr ein verjüngtes Armband haben?',
|
|
98
|
+
'acceptedAnswer': {
|
|
99
|
+
'@type': 'Answer',
|
|
100
|
+
'text': 'Die meisten Taucheruhren sehen mit minimaler oder keiner Verjüngung am besten aus. Ein gerades 20 mm Armband vermittelt einen robusten Werkzeughuhrencharakter.',
|
|
101
|
+
},
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
'@type': 'Question',
|
|
105
|
+
'name': 'Was passiert, wenn die Verjüngung zu stark ist?',
|
|
106
|
+
'acceptedAnswer': {
|
|
107
|
+
'@type': 'Answer',
|
|
108
|
+
'text': 'Eine starke Verjüngung kann den Uhrenkopf unverhältnismäßig groß wirken lassen, und das Armband kann am Schließenende zu dünn sein.',
|
|
109
|
+
},
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
'@type': 'Question',
|
|
113
|
+
'name': 'Wie messe ich die Stegbreite?',
|
|
114
|
+
'acceptedAnswer': {
|
|
115
|
+
'@type': 'Answer',
|
|
116
|
+
'text': 'Miss den inneren Abstand zwischen den Federsteglöchern am Uhrengehäuse. Übliche Größen sind 18 mm, 20 mm und 22 mm.',
|
|
117
|
+
},
|
|
118
|
+
},
|
|
119
|
+
],
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
'@context': 'https://schema.org',
|
|
123
|
+
'@type': 'SoftwareApplication',
|
|
124
|
+
'name': 'Armbandverjüngung Rechner',
|
|
125
|
+
'operatingSystem': 'All',
|
|
126
|
+
'applicationCategory': 'UtilitiesApplication',
|
|
127
|
+
'browserRequirements': 'Requires HTML5. Requires JavaScript.',
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
'@context': 'https://schema.org',
|
|
131
|
+
'@type': 'HowTo',
|
|
132
|
+
'name': 'So berechnest du die Armbandverjüngung einer Uhr',
|
|
133
|
+
'step': [
|
|
134
|
+
{
|
|
135
|
+
'@type': 'HowToStep',
|
|
136
|
+
'name': 'Gehäuse- und Stegmaße eingeben',
|
|
137
|
+
'text': 'Gib Gehäusedurchmesser und Stegbreite in Millimetern ein.',
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
'@type': 'HowToStep',
|
|
141
|
+
'name': 'Verjüngungsstil wählen',
|
|
142
|
+
'text': 'Wähle Gerade, Klassisch, Stark oder Benutzerdefiniert.',
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
'@type': 'HowToStep',
|
|
146
|
+
'name': 'Proportionen prüfen',
|
|
147
|
+
'text': 'Überprüfe das Verhältnis und die Prozentzahl.',
|
|
148
|
+
},
|
|
149
|
+
],
|
|
150
|
+
},
|
|
151
|
+
],
|
|
152
|
+
};
|
|
@@ -0,0 +1,152 @@
|
|
|
1
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
2
|
+
import type { StrapTaperCalculatorUI } from '../entry';
|
|
3
|
+
import { bibliography } from '../bibliography';
|
|
4
|
+
|
|
5
|
+
export const content: ToolLocaleContent<StrapTaperCalculatorUI> = {
|
|
6
|
+
slug: 'strap-taper-calculator',
|
|
7
|
+
title: 'Watch Strap Taper & Proportions Calculator',
|
|
8
|
+
description: 'Calculate the ideal strap taper for your watch based on case diameter and lug width. Find the perfect buckle width for a balanced look.',
|
|
9
|
+
ui: {
|
|
10
|
+
title: 'Strap Taper Calculator',
|
|
11
|
+
caseLabel: 'Watch Dimensions',
|
|
12
|
+
caseInput: 'Case diameter',
|
|
13
|
+
lugLabel: 'Lug width',
|
|
14
|
+
lugInput: 'Lug width',
|
|
15
|
+
taperLabel: 'Taper Style',
|
|
16
|
+
straight: 'Straight',
|
|
17
|
+
classic: 'Classic',
|
|
18
|
+
aggressive: 'Aggressive',
|
|
19
|
+
customTaper: 'Custom',
|
|
20
|
+
buckleWidth: 'Buckle width',
|
|
21
|
+
resultsTitle: 'Proportions',
|
|
22
|
+
lugWidth: 'Lug width',
|
|
23
|
+
buckleWidthResult: 'Buckle width',
|
|
24
|
+
taperAmount: 'Taper',
|
|
25
|
+
taperRatio: 'Ratio',
|
|
26
|
+
proportionScore: 'Proportion',
|
|
27
|
+
proportionExcellent: 'Excellent',
|
|
28
|
+
proportionGood: 'Good',
|
|
29
|
+
proportionFair: 'Fair',
|
|
30
|
+
proportionUnbalanced: 'Unbalanced',
|
|
31
|
+
mmUnit: 'mm',
|
|
32
|
+
arrow: '\u2192',
|
|
33
|
+
noteTitle: 'Note',
|
|
34
|
+
noteContent: 'A classic taper of 4 mm (e.g., 20 to 16 mm) suits dress watches. Divers and tool watches often look better with a straight or 2 mm taper for a robust feel.',
|
|
35
|
+
step1: 'Enter your case diameter and lug width.',
|
|
36
|
+
step2: 'Choose a taper style or set a custom buckle width.',
|
|
37
|
+
step3: 'Read the proportions and visual representation.',
|
|
38
|
+
},
|
|
39
|
+
seo: [
|
|
40
|
+
{ type: 'title', text: 'Watch Strap Taper Calculator — Proportions, Buckle Width & Visual Guide', level: 2 },
|
|
41
|
+
{ type: 'paragraph', html: 'A well proportioned strap makes or breaks a watch. Too much taper on a diver makes it look fragile. No taper on a dress watch makes it look clunky. This calculator helps you find the ideal <strong>strap taper ratio</strong> based on your case diameter and lug width.' },
|
|
42
|
+
{ type: 'title', text: 'What Is Strap Taper?', level: 3 },
|
|
43
|
+
{ type: 'paragraph', html: 'Strap taper is the reduction in width from the lug end to the buckle end of a watch strap. A classic dress watch might taper from 20 mm at the lugs to 16 mm at the buckle — a 4 mm taper. A dive watch might stay at 20 mm straight through for a more tool-like appearance.' },
|
|
44
|
+
{ type: 'title', text: 'The Golden Ratio for Strap Proportions', level: 3 },
|
|
45
|
+
{ type: 'paragraph', html: 'Watch enthusiasts generally agree that a lug width between 45% and 55% of the case diameter looks best. For the taper, a buckle width that is 75% to 85% of the lug width creates a balanced, elegant silhouette. Ratios outside this range can make the watch look top heavy or fragile.' },
|
|
46
|
+
{ type: 'title', text: 'Taper by Watch Style', level: 3 },
|
|
47
|
+
{ type: 'paragraph', html: 'Dress watches: 4 mm taper (20 to 16 mm). Sports watches: 2 to 3 mm taper. Dive watches: 0 to 2 mm taper. Military or field watches: straight taper for a rugged look. Pilot watches: minimal taper to match the instrument aesthetic.' },
|
|
48
|
+
],
|
|
49
|
+
faq: [
|
|
50
|
+
{
|
|
51
|
+
question: 'What is the ideal strap taper for a dress watch?',
|
|
52
|
+
answer: 'A 4 mm taper is the classic choice. For a 20 mm lug width, that means an 16 mm buckle. This creates an elegant silhouette that complements the refined look of a dress watch.',
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
question: 'Should a dive watch have a tapered strap?',
|
|
56
|
+
answer: 'Most dive watches look best with minimal or no taper. A straight 20 mm strap throughout gives a robust, tool watch feel that matches the utilitarian nature of divers.',
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
question: 'What happens if the taper is too aggressive?',
|
|
60
|
+
answer: 'An aggressive taper (6 mm or more) can make the watch head look disproportionately large and top heavy. The strap may also feel flimsy at the buckle end.',
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
question: 'How do I measure lug width?',
|
|
64
|
+
answer: 'Measure the inner width between the spring bar holes on the watch case. This is the strap width you need. Common sizes are 18 mm, 20 mm, and 22 mm.',
|
|
65
|
+
},
|
|
66
|
+
],
|
|
67
|
+
bibliography,
|
|
68
|
+
howTo: [
|
|
69
|
+
{
|
|
70
|
+
name: 'Enter case and lug dimensions',
|
|
71
|
+
text: 'Input your case diameter and lug width in millimeters.',
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
name: 'Choose a taper style',
|
|
75
|
+
text: 'Select Straight, Classic, Aggressive, or Custom. The visual updates instantly.',
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
name: 'Review proportions',
|
|
79
|
+
text: 'Check the ratio and proportion score to see if your strap choice is balanced.',
|
|
80
|
+
},
|
|
81
|
+
],
|
|
82
|
+
schemas: [
|
|
83
|
+
{
|
|
84
|
+
'@context': 'https://schema.org',
|
|
85
|
+
'@type': 'FAQPage',
|
|
86
|
+
'mainEntity': [
|
|
87
|
+
{
|
|
88
|
+
'@type': 'Question',
|
|
89
|
+
'name': 'What is the ideal strap taper for a dress watch?',
|
|
90
|
+
'acceptedAnswer': {
|
|
91
|
+
'@type': 'Answer',
|
|
92
|
+
'text': 'A 4 mm taper is the classic choice. For a 20 mm lug width, that means a 16 mm buckle. This creates an elegant silhouette.',
|
|
93
|
+
},
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
'@type': 'Question',
|
|
97
|
+
'name': 'Should a dive watch have a tapered strap?',
|
|
98
|
+
'acceptedAnswer': {
|
|
99
|
+
'@type': 'Answer',
|
|
100
|
+
'text': 'Most dive watches look best with minimal or no taper. A straight 20 mm strap gives a robust, tool watch feel.',
|
|
101
|
+
},
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
'@type': 'Question',
|
|
105
|
+
'name': 'What happens if the taper is too aggressive?',
|
|
106
|
+
'acceptedAnswer': {
|
|
107
|
+
'@type': 'Answer',
|
|
108
|
+
'text': 'An aggressive taper can make the watch head look disproportionately large and the strap may feel flimsy at the buckle end.',
|
|
109
|
+
},
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
'@type': 'Question',
|
|
113
|
+
'name': 'How do I measure lug width?',
|
|
114
|
+
'acceptedAnswer': {
|
|
115
|
+
'@type': 'Answer',
|
|
116
|
+
'text': 'Measure the inner width between the spring bar holes on the watch case. Common sizes are 18 mm, 20 mm, and 22 mm.',
|
|
117
|
+
},
|
|
118
|
+
},
|
|
119
|
+
],
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
'@context': 'https://schema.org',
|
|
123
|
+
'@type': 'SoftwareApplication',
|
|
124
|
+
'name': 'Watch Strap Taper Calculator',
|
|
125
|
+
'operatingSystem': 'All',
|
|
126
|
+
'applicationCategory': 'UtilitiesApplication',
|
|
127
|
+
'browserRequirements': 'Requires HTML5. Requires JavaScript.',
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
'@context': 'https://schema.org',
|
|
131
|
+
'@type': 'HowTo',
|
|
132
|
+
'name': 'How to calculate watch strap taper proportions',
|
|
133
|
+
'step': [
|
|
134
|
+
{
|
|
135
|
+
'@type': 'HowToStep',
|
|
136
|
+
'name': 'Enter case and lug dimensions',
|
|
137
|
+
'text': 'Input your case diameter and lug width in millimeters.',
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
'@type': 'HowToStep',
|
|
141
|
+
'name': 'Choose a taper style',
|
|
142
|
+
'text': 'Select Straight, Classic, Aggressive, or Custom.',
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
'@type': 'HowToStep',
|
|
146
|
+
'name': 'Review proportions',
|
|
147
|
+
'text': 'Check the ratio and proportion score.',
|
|
148
|
+
},
|
|
149
|
+
],
|
|
150
|
+
},
|
|
151
|
+
],
|
|
152
|
+
};
|
|
@@ -0,0 +1,152 @@
|
|
|
1
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
2
|
+
import type { StrapTaperCalculatorUI } from '../entry';
|
|
3
|
+
import { bibliography } from '../bibliography';
|
|
4
|
+
|
|
5
|
+
export const content: ToolLocaleContent<StrapTaperCalculatorUI> = {
|
|
6
|
+
slug: 'calculadora-estrechamiento-correa',
|
|
7
|
+
title: 'Calculadora de estrechamiento y proporciones de correa de reloj',
|
|
8
|
+
description: 'Calcula el estrechamiento ideal de la correa para tu reloj según el diámetro de la caja y el ancho entre asas. Encuentra el ancho de hebilla perfecto para un aspecto equilibrado.',
|
|
9
|
+
ui: {
|
|
10
|
+
title: 'Calculadora de estrechamiento de correa',
|
|
11
|
+
caseLabel: 'Dimensiones del reloj',
|
|
12
|
+
caseInput: 'Diámetro de la caja',
|
|
13
|
+
lugLabel: 'Ancho entre asas',
|
|
14
|
+
lugInput: 'Ancho entre asas',
|
|
15
|
+
taperLabel: 'Estilo de estrechamiento',
|
|
16
|
+
straight: 'Recto',
|
|
17
|
+
classic: 'Clásico',
|
|
18
|
+
aggressive: 'Pronunciado',
|
|
19
|
+
customTaper: 'Personalizado',
|
|
20
|
+
buckleWidth: 'Ancho de hebilla',
|
|
21
|
+
resultsTitle: 'Proporciones',
|
|
22
|
+
lugWidth: 'Ancho entre asas',
|
|
23
|
+
buckleWidthResult: 'Ancho de hebilla',
|
|
24
|
+
taperAmount: 'Estrechamiento',
|
|
25
|
+
taperRatio: 'Proporción',
|
|
26
|
+
proportionScore: 'Puntuación',
|
|
27
|
+
proportionExcellent: 'Excelente',
|
|
28
|
+
proportionGood: 'Buena',
|
|
29
|
+
proportionFair: 'Aceptable',
|
|
30
|
+
proportionUnbalanced: 'Desequilibrada',
|
|
31
|
+
mmUnit: 'mm',
|
|
32
|
+
arrow: '\u2192',
|
|
33
|
+
noteTitle: 'Nota',
|
|
34
|
+
noteContent: 'Un estrechamiento clásico de 4 mm (p. ej., de 20 a 16 mm) es ideal para relojes formales. Los relojes de buceo y herramientas suelen lucir mejor con un estrechamiento recto o de 2 mm para un aspecto robusto.',
|
|
35
|
+
step1: 'Ingresa el diámetro de la caja y el ancho entre asas.',
|
|
36
|
+
step2: 'Elige un estilo de estrechamiento o fija un ancho de hebilla personalizado.',
|
|
37
|
+
step3: 'Lee las proporciones y la representación visual.',
|
|
38
|
+
},
|
|
39
|
+
seo: [
|
|
40
|
+
{ type: 'title', text: 'Calculadora de estrechamiento de correa \u2014 Proporciones, ancho de hebilla y guía visual', level: 2 },
|
|
41
|
+
{ type: 'paragraph', html: 'Una correa bien proporcionada realza o arruina un reloj. Demasiado estrechamiento en un buceador lo hace ver frágil. Sin estrechamiento en un reloj formal se ve tosco. Esta calculadora te ayuda a encontrar la <strong>proporción de estrechamiento</strong> ideal según el diámetro de tu caja y el ancho entre asas.' },
|
|
42
|
+
{ type: 'title', text: '¿Qué es el estrechamiento de correa?', level: 3 },
|
|
43
|
+
{ type: 'paragraph', html: 'El estrechamiento de correa es la reducción de ancho desde las asas hasta la hebilla. Un reloj formal clásico puede estrechar de 20 mm en las asas a 16 mm en la hebilla \u2014 un estrechamiento de 4 mm. Un reloj de buceo puede mantenerse en 20 mm recto para una apariencia más robusta.' },
|
|
44
|
+
{ type: 'title', text: 'La proporción áurea para las proporciones de la correa', level: 3 },
|
|
45
|
+
{ type: 'paragraph', html: 'Los entusiastas del reloj coinciden en que un ancho entre asas de entre el 45 % y el 55 % del diámetro de la caja es el más favorecedor. En cuanto al estrechamiento, un ancho de hebilla del 75 % al 85 % del ancho entre asas crea una silueta equilibrada y elegante. Proporciones fuera de este rango pueden hacer que el reloj se vea descompensado o demasiado frágil.' },
|
|
46
|
+
{ type: 'title', text: 'Estrechamiento según el estilo del reloj', level: 3 },
|
|
47
|
+
{ type: 'paragraph', html: 'Relojes formales: estrechamiento de 4 mm (20 a 16 mm). Relojes deportivos: estrechamiento de 2 a 3 mm. Relojes de buceo: estrechamiento de 0 a 2 mm. Relojes militares o de campo: estrechamiento recto para un look robusto. Relojes de piloto: estrechamiento mínimo para mantener la estética de instrumento.' },
|
|
48
|
+
],
|
|
49
|
+
faq: [
|
|
50
|
+
{
|
|
51
|
+
question: '¿Cuál es el estrechamiento ideal para un reloj formal?',
|
|
52
|
+
answer: 'Un estrechamiento de 4 mm es la opción clásica. Para un ancho entre asas de 20 mm, eso significa una hebilla de 16 mm. Esto crea una silueta elegante que complementa el aspecto refinado de un reloj formal.',
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
question: '¿Un reloj de buceo debería tener correa estrechada?',
|
|
56
|
+
answer: 'La mayoría de los relojes de buceo lucen mejor con un estrechamiento mínimo o nulo. Una correa recta de 20 mm de principio a fin da una sensación robusta y de herramienta que combina con la naturaleza utilitaria de los buceadores.',
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
question: '¿Qué ocurre si el estrechamiento es demasiado pronunciado?',
|
|
60
|
+
answer: 'Un estrechamiento pronunciado (6 mm o más) puede hacer que la caja del reloj se vea desproporcionadamente grande y descompensada. La correa también puede sentirse frágil en el extremo de la hebilla.',
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
question: '¿Cómo se mide el ancho entre asas?',
|
|
64
|
+
answer: 'Mide el ancho interior entre los agujeros de las barras de resorte en la caja del reloj. Ese es el ancho de correa que necesitas. Los tamaños más comunes son 18 mm, 20 mm y 22 mm.',
|
|
65
|
+
},
|
|
66
|
+
],
|
|
67
|
+
bibliography,
|
|
68
|
+
howTo: [
|
|
69
|
+
{
|
|
70
|
+
name: 'Ingresa las dimensiones de la caja y las asas',
|
|
71
|
+
text: 'Introduce el diámetro de la caja y el ancho entre asas en milímetros.',
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
name: 'Elige un estilo de estrechamiento',
|
|
75
|
+
text: 'Selecciona Recto, Clásico, Pronunciado o Personalizado. La representación visual se actualiza al instante.',
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
name: 'Revisa las proporciones',
|
|
79
|
+
text: 'Verifica la proporción y la puntuación para ver si tu elección de correa está equilibrada.',
|
|
80
|
+
},
|
|
81
|
+
],
|
|
82
|
+
schemas: [
|
|
83
|
+
{
|
|
84
|
+
'@context': 'https://schema.org',
|
|
85
|
+
'@type': 'FAQPage',
|
|
86
|
+
'mainEntity': [
|
|
87
|
+
{
|
|
88
|
+
'@type': 'Question',
|
|
89
|
+
'name': '¿Cuál es el estrechamiento ideal para un reloj formal?',
|
|
90
|
+
'acceptedAnswer': {
|
|
91
|
+
'@type': 'Answer',
|
|
92
|
+
'text': 'Un estrechamiento de 4 mm es la opción clásica. Para un ancho entre asas de 20 mm, eso significa una hebilla de 16 mm, creando una silueta elegante.',
|
|
93
|
+
},
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
'@type': 'Question',
|
|
97
|
+
'name': '¿Un reloj de buceo debería tener correa estrechada?',
|
|
98
|
+
'acceptedAnswer': {
|
|
99
|
+
'@type': 'Answer',
|
|
100
|
+
'text': 'La mayoría de los relojes de buceo lucen mejor con estrechamiento mínimo o nulo. Una correa recta de 20 mm da una sensación robusta de herramienta.',
|
|
101
|
+
},
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
'@type': 'Question',
|
|
105
|
+
'name': '¿Qué ocurre si el estrechamiento es demasiado pronunciado?',
|
|
106
|
+
'acceptedAnswer': {
|
|
107
|
+
'@type': 'Answer',
|
|
108
|
+
'text': 'Un estrechamiento pronunciado puede hacer que la caja se vea desproporcionadamente grande y la correa puede sentirse frágil en el extremo de la hebilla.',
|
|
109
|
+
},
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
'@type': 'Question',
|
|
113
|
+
'name': '¿Cómo se mide el ancho entre asas?',
|
|
114
|
+
'acceptedAnswer': {
|
|
115
|
+
'@type': 'Answer',
|
|
116
|
+
'text': 'Mide el ancho interior entre los agujeros de las barras de resorte. Los tamaños comunes son 18 mm, 20 mm y 22 mm.',
|
|
117
|
+
},
|
|
118
|
+
},
|
|
119
|
+
],
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
'@context': 'https://schema.org',
|
|
123
|
+
'@type': 'SoftwareApplication',
|
|
124
|
+
'name': 'Calculadora de estrechamiento de correa de reloj',
|
|
125
|
+
'operatingSystem': 'All',
|
|
126
|
+
'applicationCategory': 'UtilitiesApplication',
|
|
127
|
+
'browserRequirements': 'Requires HTML5. Requires JavaScript.',
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
'@context': 'https://schema.org',
|
|
131
|
+
'@type': 'HowTo',
|
|
132
|
+
'name': 'Cómo calcular el estrechamiento de correa de un reloj',
|
|
133
|
+
'step': [
|
|
134
|
+
{
|
|
135
|
+
'@type': 'HowToStep',
|
|
136
|
+
'name': 'Ingresa las dimensiones de la caja y las asas',
|
|
137
|
+
'text': 'Introduce el diámetro de la caja y el ancho entre asas en milímetros.',
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
'@type': 'HowToStep',
|
|
141
|
+
'name': 'Elige un estilo de estrechamiento',
|
|
142
|
+
'text': 'Selecciona Recto, Clásico, Pronunciado o Personalizado.',
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
'@type': 'HowToStep',
|
|
146
|
+
'name': 'Revisa las proporciones',
|
|
147
|
+
'text': 'Verifica la proporción y la puntuación.',
|
|
148
|
+
},
|
|
149
|
+
],
|
|
150
|
+
},
|
|
151
|
+
],
|
|
152
|
+
};
|
|
@@ -0,0 +1,152 @@
|
|
|
1
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
2
|
+
import type { StrapTaperCalculatorUI } from '../entry';
|
|
3
|
+
import { bibliography } from '../bibliography';
|
|
4
|
+
|
|
5
|
+
export const content: ToolLocaleContent<StrapTaperCalculatorUI> = {
|
|
6
|
+
slug: 'calculatrice-conicite-bracelet',
|
|
7
|
+
title: 'Calculateur de conicité et proportions de bracelet de montre',
|
|
8
|
+
description: 'Calculez la conicité idéale du bracelet pour votre montre en fonction du diamètre du boîtier et de l\'entrecorne. Trouvez la largeur de boucle parfaite pour un look équilibré.',
|
|
9
|
+
ui: {
|
|
10
|
+
title: 'Calculateur de conicité de bracelet',
|
|
11
|
+
caseLabel: 'Dimensions de la montre',
|
|
12
|
+
caseInput: 'Diamètre du boîtier',
|
|
13
|
+
lugLabel: 'Entrecorne',
|
|
14
|
+
lugInput: 'Entrecorne',
|
|
15
|
+
taperLabel: 'Style de conicité',
|
|
16
|
+
straight: 'Droit',
|
|
17
|
+
classic: 'Classique',
|
|
18
|
+
aggressive: 'Marqué',
|
|
19
|
+
customTaper: 'Personnalisé',
|
|
20
|
+
buckleWidth: 'Largeur de boucle',
|
|
21
|
+
resultsTitle: 'Proportions',
|
|
22
|
+
lugWidth: 'Entrecorne',
|
|
23
|
+
buckleWidthResult: 'Largeur de boucle',
|
|
24
|
+
taperAmount: 'Conicité',
|
|
25
|
+
taperRatio: 'Ratio',
|
|
26
|
+
proportionScore: 'Proportion',
|
|
27
|
+
proportionExcellent: 'Excellent',
|
|
28
|
+
proportionGood: 'Bon',
|
|
29
|
+
proportionFair: 'Correct',
|
|
30
|
+
proportionUnbalanced: 'Déséquilibré',
|
|
31
|
+
mmUnit: 'mm',
|
|
32
|
+
arrow: '\u2192',
|
|
33
|
+
noteTitle: 'Remarque',
|
|
34
|
+
noteContent: 'Une conicité classique de 4 mm (p. ex., de 20 à 16 mm) convient aux montres habillées. Les montres de plongée et les montres-outils sont souvent plus belles avec une conicité droite ou de 2 mm pour un aspect robuste.',
|
|
35
|
+
step1: 'Entrez le diamètre du boîtier et l\'entrecorne.',
|
|
36
|
+
step2: 'Choisissez un style de conicité ou définissez une largeur de boucle personnalisée.',
|
|
37
|
+
step3: 'Consultez les proportions et la représentation visuelle.',
|
|
38
|
+
},
|
|
39
|
+
seo: [
|
|
40
|
+
{ type: 'title', text: 'Calculateur de conicité de bracelet \u2014 Proportions, largeur de boucle et guide visuel', level: 2 },
|
|
41
|
+
{ type: 'paragraph', html: 'Un bracelet bien proportionné peut faire ou défaire une montre. Trop de conicité sur une plongeuse la rend fragile. Pas de conicité sur une montre habillée la rend grossière. Ce calculateur vous aide à trouver le <strong>ratio de conicité</strong> idéal selon le diamètre de votre boîtier et votre entrecorne.' },
|
|
42
|
+
{ type: 'title', text: 'Qu\'est-ce que la conicité d\'un bracelet?', level: 3 },
|
|
43
|
+
{ type: 'paragraph', html: 'La conicité d\'un bracelet est la réduction de largeur entre l\'entrecorne et la boucle. Une montre habillée classique peut passer de 20 mm aux cornes à 16 mm à la boucle \u2014 une conicité de 4 mm. Une montre de plongée peut rester à 20 mm droit pour un aspect plus utilitaire.' },
|
|
44
|
+
{ type: 'title', text: 'Le ratio idéal pour les proportions du bracelet', level: 3 },
|
|
45
|
+
{ type: 'paragraph', html: 'Les passionnés de montres s\'accordent généralement à dire qu\'un entrecorne entre 45 % et 55 % du diamètre du boîtier est le plus flatteur. Pour la conicité, une largeur de boucle entre 75 % et 85 % de l\'entrecorne crée une silhouette équilibrée et élégante. Les ratios en dehors de cette plage peuvent donner l\'impression que la montre est trop lourde ou trop fragile.' },
|
|
46
|
+
{ type: 'title', text: 'Conicité selon le style de montre', level: 3 },
|
|
47
|
+
{ type: 'paragraph', html: 'Montres habillées : conicité de 4 mm (20 à 16 mm). Montres sportives : conicité de 2 à 3 mm. Montres de plongée : conicité de 0 à 2 mm. Montres militaires ou de terrain : conicité droite pour un look robuste. Montres de pilote : conicité minimale pour correspondre à l\'esthétique d\'instrument.' },
|
|
48
|
+
],
|
|
49
|
+
faq: [
|
|
50
|
+
{
|
|
51
|
+
question: 'Quelle est la conicité idéale pour une montre habillée?',
|
|
52
|
+
answer: 'Une conicité de 4 mm est le choix classique. Pour un entrecorne de 20 mm, cela signifie une boucle de 16 mm. Cela crée une silhouette élégante qui complète le look raffiné d\'une montre habillée.',
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
question: 'Une montre de plongée devrait-elle avoir un bracelet conique?',
|
|
56
|
+
answer: 'La plupart des montres de plongée sont plus belles avec une conicité minimale ou nulle. Un bracelet droit de 20 mm sur toute sa longueur donne une sensation robuste d\'outil qui correspond à la nature utilitaire des plongeuses.',
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
question: 'Que se passe-t-il si la conicité est trop marquée?',
|
|
60
|
+
answer: 'Une conicité marquée (6 mm ou plus) peut donner l\'impression que le boîtier est disproportionné et trop lourd. Le bracelet peut également sembler fragile au niveau de la boucle.',
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
question: 'Comment mesure-t-on l\'entrecorne?',
|
|
64
|
+
answer: 'Mesurez la largeur intérieure entre les trous de barre à ressort sur le boîtier. C\'est la largeur de bracelet dont vous avez besoin. Les tailles courantes sont 18 mm, 20 mm et 22 mm.',
|
|
65
|
+
},
|
|
66
|
+
],
|
|
67
|
+
bibliography,
|
|
68
|
+
howTo: [
|
|
69
|
+
{
|
|
70
|
+
name: 'Saisissez les dimensions du boîtier et des cornes',
|
|
71
|
+
text: 'Entrez le diamètre du boîtier et l\'entrecorne en millimètres.',
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
name: 'Choisissez un style de conicité',
|
|
75
|
+
text: 'Sélectionnez Droit, Classique, Marqué ou Personnalisé. Le visuel se met à jour instantanément.',
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
name: 'Consultez les proportions',
|
|
79
|
+
text: 'Vérifiez le ratio et le score de proportion pour voir si votre choix de bracelet est équilibré.',
|
|
80
|
+
},
|
|
81
|
+
],
|
|
82
|
+
schemas: [
|
|
83
|
+
{
|
|
84
|
+
'@context': 'https://schema.org',
|
|
85
|
+
'@type': 'FAQPage',
|
|
86
|
+
'mainEntity': [
|
|
87
|
+
{
|
|
88
|
+
'@type': 'Question',
|
|
89
|
+
'name': 'Quelle est la conicité idéale pour une montre habillée?',
|
|
90
|
+
'acceptedAnswer': {
|
|
91
|
+
'@type': 'Answer',
|
|
92
|
+
'text': 'Une conicité de 4 mm est le choix classique. Pour un entrecorne de 20 mm, cela donne une boucle de 16 mm, créant une silhouette élégante.',
|
|
93
|
+
},
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
'@type': 'Question',
|
|
97
|
+
'name': 'Une montre de plongée devrait-elle avoir un bracelet conique?',
|
|
98
|
+
'acceptedAnswer': {
|
|
99
|
+
'@type': 'Answer',
|
|
100
|
+
'text': 'La plupart des montres de plongée sont plus belles avec une conicité minimale ou nulle. Un bracelet droit de 20 mm donne une sensation robuste d\'outil.',
|
|
101
|
+
},
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
'@type': 'Question',
|
|
105
|
+
'name': 'Que se passe-t-il si la conicité est trop marquée?',
|
|
106
|
+
'acceptedAnswer': {
|
|
107
|
+
'@type': 'Answer',
|
|
108
|
+
'text': 'Une conicité marquée peut donner l\'impression que le boîtier est disproportionné et le bracelet peut sembler fragile au niveau de la boucle.',
|
|
109
|
+
},
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
'@type': 'Question',
|
|
113
|
+
'name': 'Comment mesure-t-on l\'entrecorne?',
|
|
114
|
+
'acceptedAnswer': {
|
|
115
|
+
'@type': 'Answer',
|
|
116
|
+
'text': 'Mesurez la largeur intérieure entre les trous de barre à ressort. Les tailles courantes sont 18 mm, 20 mm et 22 mm.',
|
|
117
|
+
},
|
|
118
|
+
},
|
|
119
|
+
],
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
'@context': 'https://schema.org',
|
|
123
|
+
'@type': 'SoftwareApplication',
|
|
124
|
+
'name': 'Calculateur de conicité de bracelet de montre',
|
|
125
|
+
'operatingSystem': 'All',
|
|
126
|
+
'applicationCategory': 'UtilitiesApplication',
|
|
127
|
+
'browserRequirements': 'Requires HTML5. Requires JavaScript.',
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
'@context': 'https://schema.org',
|
|
131
|
+
'@type': 'HowTo',
|
|
132
|
+
'name': 'Comment calculer la conicité du bracelet d\'une montre',
|
|
133
|
+
'step': [
|
|
134
|
+
{
|
|
135
|
+
'@type': 'HowToStep',
|
|
136
|
+
'name': 'Saisissez les dimensions du boîtier et des cornes',
|
|
137
|
+
'text': 'Entrez le diamètre du boîtier et l\'entrecorne en millimètres.',
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
'@type': 'HowToStep',
|
|
141
|
+
'name': 'Choisissez un style de conicité',
|
|
142
|
+
'text': 'Sélectionnez Droit, Classique, Marqué ou Personnalisé.',
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
'@type': 'HowToStep',
|
|
146
|
+
'name': 'Consultez les proportions',
|
|
147
|
+
'text': 'Vérifiez le ratio et le score de proportion.',
|
|
148
|
+
},
|
|
149
|
+
],
|
|
150
|
+
},
|
|
151
|
+
],
|
|
152
|
+
};
|