@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,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: 'kalkulator-taper-strap',
|
|
7
|
+
title: 'Kalkulator Taper dan Proporsi Strap Jam Tangan',
|
|
8
|
+
description: 'Hitung taper strap ideal untuk jam tangan Anda berdasarkan diameter case dan lebar lug. Temukan lebar buckle yang sempurna untuk tampilan yang seimbang.',
|
|
9
|
+
ui: {
|
|
10
|
+
title: 'Kalkulator Taper Strap',
|
|
11
|
+
caseLabel: 'Ukuran Jam',
|
|
12
|
+
caseInput: 'Diameter case',
|
|
13
|
+
lugLabel: 'Lebar lug',
|
|
14
|
+
lugInput: 'Lebar lug',
|
|
15
|
+
taperLabel: 'Gaya Taper',
|
|
16
|
+
straight: 'Lurus',
|
|
17
|
+
classic: 'Klasik',
|
|
18
|
+
aggressive: 'Agresif',
|
|
19
|
+
customTaper: 'Kustom',
|
|
20
|
+
buckleWidth: 'Lebar buckle',
|
|
21
|
+
resultsTitle: 'Proporsi',
|
|
22
|
+
lugWidth: 'Lebar lug',
|
|
23
|
+
buckleWidthResult: 'Lebar buckle',
|
|
24
|
+
taperAmount: 'Taper',
|
|
25
|
+
taperRatio: 'Rasio',
|
|
26
|
+
proportionScore: 'Proporsi',
|
|
27
|
+
proportionExcellent: 'Sangat Baik',
|
|
28
|
+
proportionGood: 'Baik',
|
|
29
|
+
proportionFair: 'Cukup',
|
|
30
|
+
proportionUnbalanced: 'Tidak Seimbang',
|
|
31
|
+
mmUnit: 'mm',
|
|
32
|
+
arrow: '\u2192',
|
|
33
|
+
noteTitle: 'Catatan',
|
|
34
|
+
noteContent: 'Taper klasik 4 mm (mis., dari 20 ke 16 mm) cocok untuk jam tangan dress. Jam tangan selam dan tool sering terlihat lebih baik dengan taper lurus atau 2 mm untuk kesan kokoh.',
|
|
35
|
+
step1: 'Masukkan diameter case dan lebar lug.',
|
|
36
|
+
step2: 'Pilih gaya taper atau atur lebar buckle kustom.',
|
|
37
|
+
step3: 'Baca proporsi dan representasi visualnya.',
|
|
38
|
+
},
|
|
39
|
+
seo: [
|
|
40
|
+
{ type: 'title', text: 'Kalkulator Taper Strap \u2014 Proporsi, Lebar Buckle, dan Panduan Visual', level: 2 },
|
|
41
|
+
{ type: 'paragraph', html: 'Strap yang proporsional bisa membuat atau merusak tampilan jam tangan. Terlalu banyak taper pada jam selam membuatnya terlihat rapuh. Tanpa taper pada jam dress membuatnya terlihat kaku. Kalkulator ini membantu Anda menemukan <strong>rasio taper strap</strong> ideal berdasarkan diameter case dan lebar lug.' },
|
|
42
|
+
{ type: 'title', text: 'Apa Itu Taper Strap?', level: 3 },
|
|
43
|
+
{ type: 'paragraph', html: 'Taper strap adalah pengurangan lebar dari ujung lug ke ujung buckle. Jam dress klasik mungkin mengecil dari 20 mm di lug ke 16 mm di buckle \u2014 taper 4 mm. Jam selam mungkin tetap di 20 mm lurus untuk tampilan yang lebih kokoh.' },
|
|
44
|
+
{ type: 'title', text: 'Rasio Emas untuk Proporsi Strap', level: 3 },
|
|
45
|
+
{ type: 'paragraph', html: 'Penggemar jam tangan umumnya setuju bahwa lebar lug antara 45% dan 55% dari diameter case adalah yang terbaik. Untuk taper, lebar buckle yang 75% hingga 85% dari lebar lug menciptakan siluet yang seimbang dan elegan. Rasio di luar kisaran ini dapat membuat jam terlihat berat di atas atau terlalu rapuh.' },
|
|
46
|
+
{ type: 'title', text: 'Taper Berdasarkan Gaya Jam', level: 3 },
|
|
47
|
+
{ type: 'paragraph', html: 'Jam dress: taper 4 mm (20 ke 16 mm). Jam olahraga: taper 2 hingga 3 mm. Jam selam: taper 0 hingga 2 mm. Jam militer atau lapangan: taper lurus untuk tampilan kokoh. Jam pilot: taper minimal untuk mencocokkan estetika instrumen.' },
|
|
48
|
+
],
|
|
49
|
+
faq: [
|
|
50
|
+
{
|
|
51
|
+
question: 'Apa taper strap yang ideal untuk jam dress?',
|
|
52
|
+
answer: 'Taper 4 mm adalah pilihan klasik. Untuk lebar lug 20 mm, itu berarti buckle 16 mm. Ini menciptakan siluet elegan yang melengkapi tampilan jam dress yang rapi.',
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
question: 'Haruskah jam selam memiliki strap yang dikecilkan?',
|
|
56
|
+
answer: 'Sebagian besar jam selam terlihat terbaik dengan taper minimal atau tanpa taper. Strap lurus 20 mm dari ujung ke ujung memberikan kesan kokoh dan alat yang sesuai dengan sifat utilitarian jam selam.',
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
question: 'Apa yang terjadi jika taper terlalu agresif?',
|
|
60
|
+
answer: 'Taper yang agresif (6 mm atau lebih) dapat membuat kepala jam terlihat besar tidak proporsional dan berat di atas. Strap juga bisa terasa tipis di ujung buckle.',
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
question: 'Bagaimana cara mengukur lebar lug?',
|
|
64
|
+
answer: 'Ukur lebar bagian dalam antara lubang pegas pada case jam. Itu adalah lebar strap yang Anda butuhkan. Ukuran umum adalah 18 mm, 20 mm, dan 22 mm.',
|
|
65
|
+
},
|
|
66
|
+
],
|
|
67
|
+
bibliography,
|
|
68
|
+
howTo: [
|
|
69
|
+
{
|
|
70
|
+
name: 'Masukkan dimensi case dan lug',
|
|
71
|
+
text: 'Masukkan diameter case dan lebar lug dalam milimeter.',
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
name: 'Pilih gaya taper',
|
|
75
|
+
text: 'Pilih Lurus, Klasik, Agresif, atau Kustom. Visual diperbarui secara instan.',
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
name: 'Tinjau proporsi',
|
|
79
|
+
text: 'Periksa rasio dan skor proporsi untuk melihat apakah pilihan strap Anda seimbang.',
|
|
80
|
+
},
|
|
81
|
+
],
|
|
82
|
+
schemas: [
|
|
83
|
+
{
|
|
84
|
+
'@context': 'https://schema.org',
|
|
85
|
+
'@type': 'FAQPage',
|
|
86
|
+
'mainEntity': [
|
|
87
|
+
{
|
|
88
|
+
'@type': 'Question',
|
|
89
|
+
'name': 'Apa taper strap yang ideal untuk jam dress?',
|
|
90
|
+
'acceptedAnswer': {
|
|
91
|
+
'@type': 'Answer',
|
|
92
|
+
'text': 'Taper 4 mm adalah pilihan klasik. Untuk lebar lug 20 mm, itu berarti buckle 16 mm, menciptakan siluet elegan.',
|
|
93
|
+
},
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
'@type': 'Question',
|
|
97
|
+
'name': 'Haruskah jam selam memiliki strap yang dikecilkan?',
|
|
98
|
+
'acceptedAnswer': {
|
|
99
|
+
'@type': 'Answer',
|
|
100
|
+
'text': 'Sebagian besar jam selam terlihat terbaik dengan taper minimal atau tanpa taper. Strap lurus 20 mm memberikan kesan kokoh.',
|
|
101
|
+
},
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
'@type': 'Question',
|
|
105
|
+
'name': 'Apa yang terjadi jika taper terlalu agresif?',
|
|
106
|
+
'acceptedAnswer': {
|
|
107
|
+
'@type': 'Answer',
|
|
108
|
+
'text': 'Taper yang agresif dapat membuat kepala jam terlihat besar tidak proporsional dan strap terasa tipis di ujung buckle.',
|
|
109
|
+
},
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
'@type': 'Question',
|
|
113
|
+
'name': 'Bagaimana cara mengukur lebar lug?',
|
|
114
|
+
'acceptedAnswer': {
|
|
115
|
+
'@type': 'Answer',
|
|
116
|
+
'text': 'Ukur lebar bagian dalam antara lubang pegas pada case jam. Ukuran umum adalah 18 mm, 20 mm, dan 22 mm.',
|
|
117
|
+
},
|
|
118
|
+
},
|
|
119
|
+
],
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
'@context': 'https://schema.org',
|
|
123
|
+
'@type': 'SoftwareApplication',
|
|
124
|
+
'name': 'Kalkulator Taper Strap Jam Tangan',
|
|
125
|
+
'operatingSystem': 'All',
|
|
126
|
+
'applicationCategory': 'UtilitiesApplication',
|
|
127
|
+
'browserRequirements': 'Requires HTML5. Requires JavaScript.',
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
'@context': 'https://schema.org',
|
|
131
|
+
'@type': 'HowTo',
|
|
132
|
+
'name': 'Cara menghitung taper strap jam tangan',
|
|
133
|
+
'step': [
|
|
134
|
+
{
|
|
135
|
+
'@type': 'HowToStep',
|
|
136
|
+
'name': 'Masukkan dimensi case dan lug',
|
|
137
|
+
'text': 'Masukkan diameter case dan lebar lug dalam milimeter.',
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
'@type': 'HowToStep',
|
|
141
|
+
'name': 'Pilih gaya taper',
|
|
142
|
+
'text': 'Pilih Lurus, Klasik, Agresif, atau Kustom.',
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
'@type': 'HowToStep',
|
|
146
|
+
'name': 'Tinjau proporsi',
|
|
147
|
+
'text': 'Periksa rasio dan skor proporsi.',
|
|
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: 'calcolatore-rastremazione-cinturino',
|
|
7
|
+
title: 'Calcolatore di rastremazione e proporzioni del cinturino',
|
|
8
|
+
description: 'Calcola la rastremazione ideale del cinturino per il tuo orologio in base al diametro della cassa e alla larghezza tra le anse. Trova la larghezza della fibbia perfetta per un look equilibrato.',
|
|
9
|
+
ui: {
|
|
10
|
+
title: 'Calcolatore di rastremazione cinturino',
|
|
11
|
+
caseLabel: 'Dimensioni orologio',
|
|
12
|
+
caseInput: 'Diametro cassa',
|
|
13
|
+
lugLabel: 'Larghezza anse',
|
|
14
|
+
lugInput: 'Larghezza anse',
|
|
15
|
+
taperLabel: 'Stile rastremazione',
|
|
16
|
+
straight: 'Dritto',
|
|
17
|
+
classic: 'Classico',
|
|
18
|
+
aggressive: 'Marcato',
|
|
19
|
+
customTaper: 'Personalizzato',
|
|
20
|
+
buckleWidth: 'Larghezza fibbia',
|
|
21
|
+
resultsTitle: 'Proporzioni',
|
|
22
|
+
lugWidth: 'Larghezza anse',
|
|
23
|
+
buckleWidthResult: 'Larghezza fibbia',
|
|
24
|
+
taperAmount: 'Rastremazione',
|
|
25
|
+
taperRatio: 'Rapporto',
|
|
26
|
+
proportionScore: 'Proporzione',
|
|
27
|
+
proportionExcellent: 'Ottimo',
|
|
28
|
+
proportionGood: 'Buono',
|
|
29
|
+
proportionFair: 'Discreto',
|
|
30
|
+
proportionUnbalanced: 'Squilibrato',
|
|
31
|
+
mmUnit: 'mm',
|
|
32
|
+
arrow: '\u2192',
|
|
33
|
+
noteTitle: 'Nota',
|
|
34
|
+
noteContent: 'Una rastremazione classica di 4 mm (es., da 20 a 16 mm) si adatta agli orologi eleganti. Gli orologi subacquei e da strumento spesso hanno un aspetto migliore con una rastremazione dritta o di 2 mm per un feel robusto.',
|
|
35
|
+
step1: 'Inserisci il diametro della cassa e la larghezza tra le anse.',
|
|
36
|
+
step2: 'Scegli uno stile di rastremazione o imposta una larghezza fibbia personalizzata.',
|
|
37
|
+
step3: 'Leggi le proporzioni e la rappresentazione visiva.',
|
|
38
|
+
},
|
|
39
|
+
seo: [
|
|
40
|
+
{ type: 'title', text: 'Calcolatore di rastremazione cinturino \u2014 Proporzioni, larghezza fibbia e guida visiva', level: 2 },
|
|
41
|
+
{ type: 'paragraph', html: 'Un cinturino ben proporzionato può fare la differenza. Troppa rastremazione su un subacqueo lo rende fragile. Nessuna rastremazione su un elegante lo rende grossolano. Questo calcolatore ti aiuta a trovare il <strong>rapporto di rastremazione</strong> ideale in base al diametro della cassa e alla larghezza tra le anse.' },
|
|
42
|
+
{ type: 'title', text: 'Cos\'è la rastremazione del cinturino?', level: 3 },
|
|
43
|
+
{ type: 'paragraph', html: 'La rastremazione del cinturino è la riduzione di larghezza dalle anse alla fibbia. Un orologio elegante classico potrebbe restringersi da 20 mm alle anse a 16 mm alla fibbia \u2014 una rastremazione di 4 mm. Un subacqueo potrebbe rimanere dritto a 20 mm per un aspetto più robusto.' },
|
|
44
|
+
{ type: 'title', text: 'Il rapporto aureo per le proporzioni del cinturino', level: 3 },
|
|
45
|
+
{ type: 'paragraph', html: 'Gli appassionati di orologi concordano generalmente che una larghezza tra le anse tra il 45% e il 55% del diametro della cassa sia la più gradevole. Per la rastremazione, una larghezza fibbia tra il 75% e l\'85% della larghezza delle anse crea una silhouette equilibrata ed elegante. Rapporti al di fuori di questo intervallo possono far sembrare l\'orologio pesante o troppo fragile.' },
|
|
46
|
+
{ type: 'title', text: 'Rastremazione per stile di orologio', level: 3 },
|
|
47
|
+
{ type: 'paragraph', html: 'Orologi eleganti: rastremazione di 4 mm (20 a 16 mm). Orologi sportivi: rastremazione da 2 a 3 mm. Orologi subacquei: rastremazione da 0 a 2 mm. Orologi militari o da campo: rastremazione dritta per un look robusto. Orologi da pilota: rastremazione minima per abbinarsi all\'estetica da strumento.' },
|
|
48
|
+
],
|
|
49
|
+
faq: [
|
|
50
|
+
{
|
|
51
|
+
question: 'Qual è la rastremazione ideale per un orologio elegante?',
|
|
52
|
+
answer: 'Una rastremazione di 4 mm è la scelta classica. Per una larghezza tra le anse di 20 mm, significa una fibbia da 16 mm. Questo crea una silhouette elegante che completa il look raffinato di un orologio formale.',
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
question: 'Un orologio subacqueo dovrebbe avere un cinturino rastremato?',
|
|
56
|
+
answer: 'La maggior parte degli orologi subacquei ha un aspetto migliore con una rastrematura minima o assente. Un cinturino dritto da 20 mm per tutta la lunghezza dà una sensazione robusta e da strumento che si adatta alla natura utilitaria dei subacquei.',
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
question: 'Cosa succede se la rastremazione è troppo marcata?',
|
|
60
|
+
answer: 'Una rastremazione marcata (6 mm o più) può far sembrare la cassa sproporzionatamente grande e pesante. Il cinturino potrebbe anche sembrare sottile all\'estremità della fibbia.',
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
question: 'Come si misura la larghezza tra le anse?',
|
|
64
|
+
answer: 'Misura la larghezza interna tra i fori delle barre a molla sulla cassa. Questa è la larghezza del cinturino di cui hai bisogno. Le misure comuni sono 18 mm, 20 mm e 22 mm.',
|
|
65
|
+
},
|
|
66
|
+
],
|
|
67
|
+
bibliography,
|
|
68
|
+
howTo: [
|
|
69
|
+
{
|
|
70
|
+
name: 'Inserisci le dimensioni di cassa e anse',
|
|
71
|
+
text: 'Inserisci il diametro della cassa e la larghezza tra le anse in millimetri.',
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
name: 'Scegli uno stile di rastremazione',
|
|
75
|
+
text: 'Seleziona Dritto, Classico, Marcato o Personalizzato. Il visivo si aggiorna istantaneamente.',
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
name: 'Verifica le proporzioni',
|
|
79
|
+
text: 'Controlla il rapporto e il punteggio di proporzione per vedere se la scelta del cinturino è equilibrata.',
|
|
80
|
+
},
|
|
81
|
+
],
|
|
82
|
+
schemas: [
|
|
83
|
+
{
|
|
84
|
+
'@context': 'https://schema.org',
|
|
85
|
+
'@type': 'FAQPage',
|
|
86
|
+
'mainEntity': [
|
|
87
|
+
{
|
|
88
|
+
'@type': 'Question',
|
|
89
|
+
'name': 'Qual è la rastremazione ideale per un orologio elegante?',
|
|
90
|
+
'acceptedAnswer': {
|
|
91
|
+
'@type': 'Answer',
|
|
92
|
+
'text': 'Una rastremazione di 4 mm è la scelta classica. Per anse da 20 mm, significa una fibbia da 16 mm, creando una silhouette elegante.',
|
|
93
|
+
},
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
'@type': 'Question',
|
|
97
|
+
'name': 'Un orologio subacqueo dovrebbe avere un cinturino rastremato?',
|
|
98
|
+
'acceptedAnswer': {
|
|
99
|
+
'@type': 'Answer',
|
|
100
|
+
'text': 'La maggior parte degli orologi subacquei ha un aspetto migliore con rastrematura minima o assente. Un cinturino dritto da 20 mm dà una sensazione robusta.',
|
|
101
|
+
},
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
'@type': 'Question',
|
|
105
|
+
'name': 'Cosa succede se la rastremazione è troppo marcata?',
|
|
106
|
+
'acceptedAnswer': {
|
|
107
|
+
'@type': 'Answer',
|
|
108
|
+
'text': 'Una rastremazione marcata può far sembrare la cassa sproporzionata e il cinturino può sembrare sottile all\'estremità della fibbia.',
|
|
109
|
+
},
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
'@type': 'Question',
|
|
113
|
+
'name': 'Come si misura la larghezza tra le anse?',
|
|
114
|
+
'acceptedAnswer': {
|
|
115
|
+
'@type': 'Answer',
|
|
116
|
+
'text': 'Misura la larghezza interna tra i fori delle barre a molla. Le misure comuni sono 18 mm, 20 mm e 22 mm.',
|
|
117
|
+
},
|
|
118
|
+
},
|
|
119
|
+
],
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
'@context': 'https://schema.org',
|
|
123
|
+
'@type': 'SoftwareApplication',
|
|
124
|
+
'name': 'Calcolatore di rastremazione cinturino',
|
|
125
|
+
'operatingSystem': 'All',
|
|
126
|
+
'applicationCategory': 'UtilitiesApplication',
|
|
127
|
+
'browserRequirements': 'Requires HTML5. Requires JavaScript.',
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
'@context': 'https://schema.org',
|
|
131
|
+
'@type': 'HowTo',
|
|
132
|
+
'name': 'Come calcolare la rastremazione del cinturino',
|
|
133
|
+
'step': [
|
|
134
|
+
{
|
|
135
|
+
'@type': 'HowToStep',
|
|
136
|
+
'name': 'Inserisci le dimensioni di cassa e anse',
|
|
137
|
+
'text': 'Inserisci il diametro della cassa e la larghezza tra le anse in millimetri.',
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
'@type': 'HowToStep',
|
|
141
|
+
'name': 'Scegli uno stile di rastremazione',
|
|
142
|
+
'text': 'Seleziona Dritto, Classico, Marcato o Personalizzato.',
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
'@type': 'HowToStep',
|
|
146
|
+
'name': 'Verifica le proporzioni',
|
|
147
|
+
'text': 'Controlla il rapporto e il punteggio di proporzione.',
|
|
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: '時計ベルトのテーパーとプロポーション計算ツール',
|
|
8
|
+
description: 'ケース径とラグ幅に基づいて、時計に最適なベルトのテーパーを計算します。バランスの取れた見た目を実現する完璧なバックル幅を見つけましょう。',
|
|
9
|
+
ui: {
|
|
10
|
+
title: 'ベルトテーパー計算ツール',
|
|
11
|
+
caseLabel: '時計の寸法',
|
|
12
|
+
caseInput: 'ケース径',
|
|
13
|
+
lugLabel: 'ラグ幅',
|
|
14
|
+
lugInput: 'ラグ幅',
|
|
15
|
+
taperLabel: 'テーパースタイル',
|
|
16
|
+
straight: 'ストレート',
|
|
17
|
+
classic: 'クラシック',
|
|
18
|
+
aggressive: 'アグレッシブ',
|
|
19
|
+
customTaper: 'カスタム',
|
|
20
|
+
buckleWidth: 'バックル幅',
|
|
21
|
+
resultsTitle: 'プロポーション',
|
|
22
|
+
lugWidth: 'ラグ幅',
|
|
23
|
+
buckleWidthResult: 'バックル幅',
|
|
24
|
+
taperAmount: 'テーパー',
|
|
25
|
+
taperRatio: '比率',
|
|
26
|
+
proportionScore: 'プロポーション',
|
|
27
|
+
proportionExcellent: '優秀',
|
|
28
|
+
proportionGood: '良好',
|
|
29
|
+
proportionFair: '普通',
|
|
30
|
+
proportionUnbalanced: '不均衡',
|
|
31
|
+
mmUnit: 'mm',
|
|
32
|
+
arrow: '\u2192',
|
|
33
|
+
noteTitle: '注意',
|
|
34
|
+
noteContent: '4 mmのクラシックなテーパー(例:20 mmから16 mm)はドレスウォッチに適しています。ダイバーズやツールウォッチは、頑丈な印象を与えるためストレートまたは2 mmのテーパーの方が見栄えが良くなります。',
|
|
35
|
+
step1: 'ケース径とラグ幅を入力します。',
|
|
36
|
+
step2: 'テーパースタイルを選択するか、カスタムのバックル幅を設定します。',
|
|
37
|
+
step3: 'プロポーションと視覚的な表示を確認します。',
|
|
38
|
+
},
|
|
39
|
+
seo: [
|
|
40
|
+
{ type: 'title', text: '時計ベルトテーパー計算ツール \u2014 プロポーション、バックル幅、ビジュアルガイド', level: 2 },
|
|
41
|
+
{ type: 'paragraph', html: 'プロポーションの良いベルトは時計の印象を大きく左右します。ダイバーズウォッチに過度のテーパーをかけると脆弱に見えます。ドレスウォッチにテーパーがないと野暮ったく見えます。この計算ツールは、ケース径とラグ幅に基づいて理想的な<strong>ベルトテーパー比率</strong>を見つけるのに役立ちます。' },
|
|
42
|
+
{ type: 'title', text: 'ベルトテーパーとは?', level: 3 },
|
|
43
|
+
{ type: 'paragraph', html: 'ベルトテーパーとは、ラグ側からバックル側にかけてのベルト幅の減少のことです。クラシックなドレスウォッチでは、ラグで20 mmからバックルで16 mmへと4 mmテーパーするのが一般的です。ダイバーズウォッチでは、より道具らしい外観にするために20 mmのままストレートにすることもあります。' },
|
|
44
|
+
{ type: 'title', text: 'ストラッププロポーションの黄金比', level: 3 },
|
|
45
|
+
{ type: 'paragraph', html: '時計愛好家の間では、ラグ幅がケース径の45%から55%の間が最も見栄えが良いとされています。テーパーについては、バックル幅がラグ幅の75%から85%であると、バランスの取れたエレガントなシルエットが生まれます。この範囲を外れると、時計が頭でっかちに見えたり、逆に脆弱に見えたりする可能性があります。' },
|
|
46
|
+
{ type: 'title', text: '時計スタイル別テーパー', level: 3 },
|
|
47
|
+
{ type: 'paragraph', html: 'ドレスウォッチ:4 mmテーパー(20 mmから16 mm)。スポーツウォッチ:2〜3 mmテーパー。ダイバーズウォッチ:0〜2 mmテーパー。ミリタリー/フィールドウォッチ:頑丈な印象のストレートテーパー。パイロットウォッチ:計器類の美観に合わせて最小限のテーパー。' },
|
|
48
|
+
],
|
|
49
|
+
faq: [
|
|
50
|
+
{
|
|
51
|
+
question: 'ドレスウォッチに最適なベルトテーパーは?',
|
|
52
|
+
answer: '4 mmのテーパーがクラシックな選択です。ラグ幅20 mmの場合、バックル幅は16 mmになります。これにより、ドレスウォッチの洗練された外観を引き立てるエレガントなシルエットが生まれます。',
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
question: 'ダイバーズウォッチにはテーパー付きベルトが適していますか?',
|
|
56
|
+
answer: 'ほとんどのダイバーズウォッチは、テーパーを最小限にするか、またはまったくかけない方が見栄えが良くなります。20 mmのストレートベルトを全体に使用することで、ダイバーズの実用本位の性質に合った頑丈な道具感が得られます。',
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
question: 'テーパーが強すぎるとどうなりますか?',
|
|
60
|
+
answer: '強いテーパー(6 mm以上)は、時計のヘッド部分が不釣り合いに大きく見え、頭でっかちになります。また、バックル側のベルトが薄っぺらく感じられることもあります。',
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
question: 'ラグ幅の測り方は?',
|
|
64
|
+
answer: 'ケースのバネ棒穴の内側の幅を測ります。それが必要なベルト幅です。一般的なサイズは18 mm、20 mm、22 mmです。',
|
|
65
|
+
},
|
|
66
|
+
],
|
|
67
|
+
bibliography,
|
|
68
|
+
howTo: [
|
|
69
|
+
{
|
|
70
|
+
name: 'ケースとラグの寸法を入力',
|
|
71
|
+
text: 'ケース径とラグ幅をミリメートル単位で入力します。',
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
name: 'テーパースタイルを選択',
|
|
75
|
+
text: 'ストレート、クラシック、アグレッシブ、またはカスタムを選択します。ビジュアルが即座に更新されます。',
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
name: 'プロポーションを確認',
|
|
79
|
+
text: '比率とプロポーションスコアを確認して、ベルトの選択がバランスが取れているかどうかを判断します。',
|
|
80
|
+
},
|
|
81
|
+
],
|
|
82
|
+
schemas: [
|
|
83
|
+
{
|
|
84
|
+
'@context': 'https://schema.org',
|
|
85
|
+
'@type': 'FAQPage',
|
|
86
|
+
'mainEntity': [
|
|
87
|
+
{
|
|
88
|
+
'@type': 'Question',
|
|
89
|
+
'name': 'ドレスウォッチに最適なベルトテーパーは?',
|
|
90
|
+
'acceptedAnswer': {
|
|
91
|
+
'@type': 'Answer',
|
|
92
|
+
'text': '4 mmのテーパーがクラシックな選択です。ラグ幅20 mmの場合、バックル幅は16 mmになり、エレガントなシルエットが生まれます。',
|
|
93
|
+
},
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
'@type': 'Question',
|
|
97
|
+
'name': 'ダイバーズウォッチにはテーパー付きベルトが適していますか?',
|
|
98
|
+
'acceptedAnswer': {
|
|
99
|
+
'@type': 'Answer',
|
|
100
|
+
'text': 'ほとんどのダイバーズウォッチはテーパーを最小限にするか、かけない方が見栄えが良くなります。20 mmのストレートベルトが頑丈な印象を与えます。',
|
|
101
|
+
},
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
'@type': 'Question',
|
|
105
|
+
'name': 'テーパーが強すぎるとどうなりますか?',
|
|
106
|
+
'acceptedAnswer': {
|
|
107
|
+
'@type': 'Answer',
|
|
108
|
+
'text': '強いテーパーは時計のヘッドを不釣り合いに見せ、バックル側のベルトが薄っぺらく感じられることがあります。',
|
|
109
|
+
},
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
'@type': 'Question',
|
|
113
|
+
'name': 'ラグ幅の測り方は?',
|
|
114
|
+
'acceptedAnswer': {
|
|
115
|
+
'@type': 'Answer',
|
|
116
|
+
'text': 'ケースのバネ棒穴の内側の幅を測ります。一般的なサイズは18 mm、20 mm、22 mmです。',
|
|
117
|
+
},
|
|
118
|
+
},
|
|
119
|
+
],
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
'@context': 'https://schema.org',
|
|
123
|
+
'@type': 'SoftwareApplication',
|
|
124
|
+
'name': '時計ベルトテーパー計算ツール',
|
|
125
|
+
'operatingSystem': 'All',
|
|
126
|
+
'applicationCategory': 'UtilitiesApplication',
|
|
127
|
+
'browserRequirements': 'Requires HTML5. Requires JavaScript.',
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
'@context': 'https://schema.org',
|
|
131
|
+
'@type': 'HowTo',
|
|
132
|
+
'name': '時計ベルトのテーパープロポーションの計算方法',
|
|
133
|
+
'step': [
|
|
134
|
+
{
|
|
135
|
+
'@type': 'HowToStep',
|
|
136
|
+
'name': 'ケースとラグの寸法を入力',
|
|
137
|
+
'text': 'ケース径とラグ幅をミリメートル単位で入力します。',
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
'@type': 'HowToStep',
|
|
141
|
+
'name': 'テーパースタイルを選択',
|
|
142
|
+
'text': 'ストレート、クラシック、アグレッシブ、またはカスタムを選択します。',
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
'@type': 'HowToStep',
|
|
146
|
+
'name': 'プロポーションを確認',
|
|
147
|
+
'text': '比率とプロポーションスコアを確認します。',
|
|
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: '시계 스트랩 테이퍼 및 비율 계산기',
|
|
8
|
+
description: '케이스 직경과 러그 너비를 기반으로 시계에 이상적인 스트랩 테이퍼를 계산합니다. 균형 잡힌 룩을 위한 완벽한 버클 너비를 찾아보세요.',
|
|
9
|
+
ui: {
|
|
10
|
+
title: '스트랩 테이퍼 계산기',
|
|
11
|
+
caseLabel: '시계 치수',
|
|
12
|
+
caseInput: '케이스 직경',
|
|
13
|
+
lugLabel: '러그 너비',
|
|
14
|
+
lugInput: '러그 너비',
|
|
15
|
+
taperLabel: '테이퍼 스타일',
|
|
16
|
+
straight: '스트레이트',
|
|
17
|
+
classic: '클래식',
|
|
18
|
+
aggressive: '공격적',
|
|
19
|
+
customTaper: '사용자 지정',
|
|
20
|
+
buckleWidth: '버클 너비',
|
|
21
|
+
resultsTitle: '비율',
|
|
22
|
+
lugWidth: '러그 너비',
|
|
23
|
+
buckleWidthResult: '버클 너비',
|
|
24
|
+
taperAmount: '테이퍼',
|
|
25
|
+
taperRatio: '비율',
|
|
26
|
+
proportionScore: '프로포션',
|
|
27
|
+
proportionExcellent: '우수',
|
|
28
|
+
proportionGood: '양호',
|
|
29
|
+
proportionFair: '보통',
|
|
30
|
+
proportionUnbalanced: '불균형',
|
|
31
|
+
mmUnit: 'mm',
|
|
32
|
+
arrow: '\u2192',
|
|
33
|
+
noteTitle: '참고',
|
|
34
|
+
noteContent: '4 mm의 클래식 테이퍼(예: 20 mm에서 16 mm)는 드레스 워치에 적합합니다. 다이버 워치와 툴 워치는 견고한 느낌을 위해 스트레이트 또는 2 mm 테이퍼가 더 좋아 보이는 경우가 많습니다.',
|
|
35
|
+
step1: '케이스 직경과 러그 너비를 입력하세요.',
|
|
36
|
+
step2: '테이퍼 스타일을 선택하거나 사용자 지정 버클 너비를 설정하세요.',
|
|
37
|
+
step3: '비율과 시각적 표현을 확인하세요.',
|
|
38
|
+
},
|
|
39
|
+
seo: [
|
|
40
|
+
{ type: 'title', text: '시계 스트랩 테이퍼 계산기 \u2014 비율, 버클 너비 및 시각적 가이드', level: 2 },
|
|
41
|
+
{ type: 'paragraph', html: '균형 잡힌 스트랩은 시계의 완성도를 좌우합니다. 다이버 시계에 테이퍼가 너무 많으면 약해 보이고, 드레스 시계에 테이퍼가 없으면 투박해 보입니다. 이 계산기는 케이스 직경과 러그 너비를 기반으로 이상적인 <strong>스트랩 테이퍼 비율</strong>을 찾는 데 도움을 줍니다.' },
|
|
42
|
+
{ type: 'title', text: '스트랩 테이퍼란 무엇인가요?', level: 3 },
|
|
43
|
+
{ type: 'paragraph', html: '스트랩 테이퍼는 러그 끝에서 버클 끝까지 스트랩 너비가 줄어드는 것을 말합니다. 클래식한 드레스 워치는 러그에서 20 mm에서 버클에서 16 mm로 4 mm 테이퍼질 수 있습니다. 다이버 워치는 도구 같은 외관을 위해 20 mm 스트레이트를 유지할 수 있습니다.' },
|
|
44
|
+
{ type: 'title', text: '스트랩 비율의 황금비', level: 3 },
|
|
45
|
+
{ type: 'paragraph', html: '시계 애호가들은 일반적으로 러그 너비가 케이스 직경의 45%에서 55% 사이일 때 가장 보기 좋다고 동의합니다. 테이퍼의 경우 버클 너비가 러그 너비의 75%에서 85%이면 균형 잡히고 우아한 실루엣이 만들어집니다. 이 범위를 벗어나면 시계가 머리 부분이 무거워 보이거나 약해 보일 수 있습니다.' },
|
|
46
|
+
{ type: 'title', text: '시계 스타일별 테이퍼', level: 3 },
|
|
47
|
+
{ type: 'paragraph', html: '드레스 워치: 4 mm 테이퍼(20 mm에서 16 mm). 스포츠 워치: 2~3 mm 테이퍼. 다이버 워치: 0~2 mm 테이퍼. 밀리터리 또는 필드 워치: 견고한 룩을 위한 스트레이트 테이퍼. 파일럿 워치: 계기판 미학에 맞춘 최소 테이퍼.' },
|
|
48
|
+
],
|
|
49
|
+
faq: [
|
|
50
|
+
{
|
|
51
|
+
question: '드레스 워치에 이상적인 스트랩 테이퍼는 무엇인가요?',
|
|
52
|
+
answer: '4 mm 테이퍼가 클래식한 선택입니다. 러그 너비가 20 mm라면 버클은 16 mm입니다. 이는 드레스 워치의 세련된 룩을 보완하는 우아한 실루엣을 만듭니다.',
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
question: '다이버 워치에 테이퍼 스트랩을 사용해야 하나요?',
|
|
56
|
+
answer: '대부분의 다이버 워치는 테이퍼가 최소이거나 아예 없는 것이 가장 좋아 보입니다. 20 mm 스트레이트 스트랩을 끝까지 사용하면 다이버의 실용적인 특성에 맞는 견고한 툴 워치 느낌을 줍니다.',
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
question: '테이퍼가 너무 공격적이면 어떻게 되나요?',
|
|
60
|
+
answer: '공격적인 테이퍼(6 mm 이상)는 시계 헤드가 불균형적으로 크고 위가 무거워 보일 수 있습니다. 버클 쪽 스트랩이 얇게 느껴질 수도 있습니다.',
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
question: '러그 너비는 어떻게 측정하나요?',
|
|
64
|
+
answer: '시계 케이스의 스프링 바 구멍 사이의 안쪽 너비를 측정하세요. 그것이 필요한 스트랩 너비입니다. 일반적인 사이즈는 18 mm, 20 mm, 22 mm입니다.',
|
|
65
|
+
},
|
|
66
|
+
],
|
|
67
|
+
bibliography,
|
|
68
|
+
howTo: [
|
|
69
|
+
{
|
|
70
|
+
name: '케이스 및 러그 치수 입력',
|
|
71
|
+
text: '케이스 직경과 러그 너비를 밀리미터 단위로 입력하세요.',
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
name: '테이퍼 스타일 선택',
|
|
75
|
+
text: '스트레이트, 클래식, 공격적 또는 사용자 지정을 선택하세요. 시각적 표시가 즉시 업데이트됩니다.',
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
name: '비율 검토',
|
|
79
|
+
text: '비율과 프로포션 점수를 확인하여 스트랩 선택이 균형 잡혀 있는지 확인하세요.',
|
|
80
|
+
},
|
|
81
|
+
],
|
|
82
|
+
schemas: [
|
|
83
|
+
{
|
|
84
|
+
'@context': 'https://schema.org',
|
|
85
|
+
'@type': 'FAQPage',
|
|
86
|
+
'mainEntity': [
|
|
87
|
+
{
|
|
88
|
+
'@type': 'Question',
|
|
89
|
+
'name': '드레스 워치에 이상적인 스트랩 테이퍼는 무엇인가요?',
|
|
90
|
+
'acceptedAnswer': {
|
|
91
|
+
'@type': 'Answer',
|
|
92
|
+
'text': '4 mm 테이퍼가 클래식한 선택입니다. 러그 너비 20 mm의 경우 버클은 16 mm로, 우아한 실루엣을 만듭니다.',
|
|
93
|
+
},
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
'@type': 'Question',
|
|
97
|
+
'name': '다이버 워치에 테이퍼 스트랩을 사용해야 하나요?',
|
|
98
|
+
'acceptedAnswer': {
|
|
99
|
+
'@type': 'Answer',
|
|
100
|
+
'text': '대부분의 다이버 워치는 테이퍼가 최소이거나 없는 것이 가장 좋습니다. 20 mm 스트레이트 스트랩이 견고한 느낌을 줍니다.',
|
|
101
|
+
},
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
'@type': 'Question',
|
|
105
|
+
'name': '테이퍼가 너무 공격적이면 어떻게 되나요?',
|
|
106
|
+
'acceptedAnswer': {
|
|
107
|
+
'@type': 'Answer',
|
|
108
|
+
'text': '공격적인 테이퍼는 시계 헤드를 불균형적으로 보이게 하고 버클 쪽 스트랩이 얇게 느껴질 수 있습니다.',
|
|
109
|
+
},
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
'@type': 'Question',
|
|
113
|
+
'name': '러그 너비는 어떻게 측정하나요?',
|
|
114
|
+
'acceptedAnswer': {
|
|
115
|
+
'@type': 'Answer',
|
|
116
|
+
'text': '시계 케이스의 스프링 바 구멍 사이의 안쪽 너비를 측정하세요. 일반적인 사이즈는 18 mm, 20 mm, 22 mm입니다.',
|
|
117
|
+
},
|
|
118
|
+
},
|
|
119
|
+
],
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
'@context': 'https://schema.org',
|
|
123
|
+
'@type': 'SoftwareApplication',
|
|
124
|
+
'name': '시계 스트랩 테이퍼 계산기',
|
|
125
|
+
'operatingSystem': 'All',
|
|
126
|
+
'applicationCategory': 'UtilitiesApplication',
|
|
127
|
+
'browserRequirements': 'Requires HTML5. Requires JavaScript.',
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
'@context': 'https://schema.org',
|
|
131
|
+
'@type': 'HowTo',
|
|
132
|
+
'name': '시계 스트랩 테이퍼 비율 계산 방법',
|
|
133
|
+
'step': [
|
|
134
|
+
{
|
|
135
|
+
'@type': 'HowToStep',
|
|
136
|
+
'name': '케이스 및 러그 치수 입력',
|
|
137
|
+
'text': '케이스 직경과 러그 너비를 밀리미터 단위로 입력하세요.',
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
'@type': 'HowToStep',
|
|
141
|
+
'name': '테이퍼 스타일 선택',
|
|
142
|
+
'text': '스트레이트, 클래식, 공격적 또는 사용자 지정을 선택하세요.',
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
'@type': 'HowToStep',
|
|
146
|
+
'name': '비율 검토',
|
|
147
|
+
'text': '비율과 프로포션 점수를 확인하세요.',
|
|
148
|
+
},
|
|
149
|
+
],
|
|
150
|
+
},
|
|
151
|
+
],
|
|
152
|
+
};
|