@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,207 @@
|
|
|
1
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
2
|
+
import type { CrownReferenceGuideUI } from '../entry';
|
|
3
|
+
import { bibliography } from '../bibliography';
|
|
4
|
+
|
|
5
|
+
export const content: ToolLocaleContent<CrownReferenceGuideUI> = {
|
|
6
|
+
slug: 'panduan-referensi-mahkota',
|
|
7
|
+
title: 'Panduan Referensi Mahkota Jam Tangan',
|
|
8
|
+
description: 'Panduan interaktif posisi mahkota jam, arah penggulungan, dan fungsi pengaturan untuk mesin jam populer.',
|
|
9
|
+
ui: {
|
|
10
|
+
title: 'Pengaturan Mahkota',
|
|
11
|
+
movementLabel: 'Mesin',
|
|
12
|
+
selectMovement: 'Pilih mesin jam',
|
|
13
|
+
customMovement: 'Kustom',
|
|
14
|
+
positionLabel: 'Posisi',
|
|
15
|
+
unscrewFirst: 'Buka sekrup mahkota terlebih dahulu',
|
|
16
|
+
windingLabel: 'Gulungan',
|
|
17
|
+
hackLabel: 'Henti',
|
|
18
|
+
dangerZoneLabel: 'Hindari jam 9\u20133',
|
|
19
|
+
directionCW: 'Searah jarum jam',
|
|
20
|
+
directionCCW: 'Berlawanan jarum jam',
|
|
21
|
+
directionBoth: 'Dua arah',
|
|
22
|
+
pullHint: 'Tarik mahkota',
|
|
23
|
+
clickPosition: 'Klik posisi',
|
|
24
|
+
position0Title: 'Diam',
|
|
25
|
+
position0Desc: 'Mahkota ditekan masuk. Jam berjalan normal.',
|
|
26
|
+
position0Detail: 'Tidak ada fungsi penggulungan atau pengaturan yang aktif.',
|
|
27
|
+
position1Title: 'Gulungan Manual',
|
|
28
|
+
position1Desc: 'Putar mahkota searah jarum jam untuk menggulung pegas utama. Anda akan merasakan hambatan saat pegas mengencang.',
|
|
29
|
+
position1Detail: 'Sekitar 30\u201340 putaran penuh dari posisi mati. Rotor otomatis juga menggulung saat dikenakan.',
|
|
30
|
+
position2Title: 'Pengaturan Tanggal Cepat',
|
|
31
|
+
position2Desc: 'Putar mahkota searah jarum jam untuk memajukan tanggal. Jarum jam tetap sinkron dengan detik yang berjalan.',
|
|
32
|
+
position2Detail: 'HINDARI pengaturan tanggal cepat antara jam 9 malam dan 3 pagi saat mekanisme perubahan tanggal sedang aktif.',
|
|
33
|
+
position3Title: 'Pengaturan Waktu',
|
|
34
|
+
position3Desc: 'Putar mahkota ke salah satu arah untuk menggerakkan jarum. Jarum detik berhenti (henti) untuk sinkronisasi yang presisi.',
|
|
35
|
+
position3Detail: 'Tarik ke posisi 3, tunggu detik mencapai 12, lalu tarik sepenuhnya. Putar untuk mengatur waktu dan tekan kembali.',
|
|
36
|
+
screwDownHint: 'Ingatlah untuk mengencangkan sekrup mahkota kembali untuk ketahanan air.',
|
|
37
|
+
noQuickSet: 'Tanpa pengaturan cepat',
|
|
38
|
+
noHack: 'Tidak',
|
|
39
|
+
hasHack: 'Ya',
|
|
40
|
+
crownPositions: 'Posisi Mahkota',
|
|
41
|
+
noteTitle: 'Catatan',
|
|
42
|
+
},
|
|
43
|
+
seo: [
|
|
44
|
+
{ type: 'title', text: 'Panduan Posisi Mahkota Jam — Cara Menggulung, Mengatur Tanggal & Waktu dengan Benar', level: 2 },
|
|
45
|
+
{ type: 'paragraph', html: 'Mahkota adalah satu-satunya antarmuka fisik antara Anda dan mesin jam Anda. Menggunakannya dengan salah — menggulung ke belakang, mengatur tanggal di tengah malam, atau menarik terlalu keras — dapat merusak mekanisme. Panduan ini menguraikan setiap posisi mahkota untuk kaliber <strong>ETA, Sellita, Miyota, Seiko, dan Unitas</strong> sehingga Anda tidak perlu menebak-nebak.' },
|
|
46
|
+
{ type: 'title', text: 'Sekilas Posisi Mahkota', level: 3 },
|
|
47
|
+
{ type: 'glossary', items: [
|
|
48
|
+
{ term: 'Posisi 0 (Diam)', definition: 'Mahkota ditekan masuk atau dikencangkan. Jam berjalan normal. Tidak ada fungsi yang aktif. Selalu kembali ke sini setelah pengaturan.' },
|
|
49
|
+
{ term: 'Posisi 1 (Gulungan)', definition: 'Tarik pertama atau kondisi terbuka. Putar searah jarum jam untuk menggulung pegas utama. Sebagian besar jam otomatis juga menggulung melalui rotor.' },
|
|
50
|
+
{ term: 'Posisi 2 (Pengaturan Tanggal Cepat)', definition: 'Tarik kedua. Putar searah jarum jam untuk memajukan tanggal. Hindari penggunaan antara jam 9 malam\u20133 pagi saat mekanisme tanggal aktif.' },
|
|
51
|
+
{ term: 'Posisi 3 (Pengaturan Waktu)', definition: 'Tarik ketiga. Jarum detik berhenti untuk penyelarasan yang presisi. Putar bebas untuk mengatur waktu. Ada di sebagian besar jam otomatis modern.' },
|
|
52
|
+
] },
|
|
53
|
+
|
|
54
|
+
{ type: 'title', text: 'Perbandingan Mesin: Fitur Mahkota', level: 3 },
|
|
55
|
+
{ type: 'table', headers: ['Mesin', 'Posisi', 'Henti', 'Pengat. Cepat', 'Arah Gul.'], rows: [
|
|
56
|
+
['ETA 2824-2 / SW200', '3 (0,1,2,3)', 'Ya', 'Tanggal (SJJ)', 'SJJ'],
|
|
57
|
+
['ETA 2892-A2 / SW300', '3 (0,1,2,3)', 'Ya', 'Tanggal (SJJ)', 'SJJ'],
|
|
58
|
+
['Valjoux 7750 / SW500', '3 (0,1,2,3)', 'Ya', 'Tanggal (SJJ)', 'SJJ'],
|
|
59
|
+
['Miyota 8215', '2 (0,1,3)', 'Tidak', 'Tidak ada', 'SJJ'],
|
|
60
|
+
['Miyota 9015', '3 (0,1,2,3)', 'Ya', 'Tanggal (SJJ)', 'SJJ'],
|
|
61
|
+
['Seiko NH35 / 4R35', '3 (0,1,2,3)', 'Ya', 'Tanggal (SJJ)', 'SJJ'],
|
|
62
|
+
['Seiko 6R35', '3 (0,1,2,3)', 'Ya', 'Tanggal (SJJ)', 'SJJ'],
|
|
63
|
+
['Unitas 6497/6498', '1 (0,1,3)', 'Tidak', 'Tidak ada', 'SJJ'],
|
|
64
|
+
] },
|
|
65
|
+
|
|
66
|
+
{ type: 'diagnostic', variant: 'warning', title: 'Kesalahan Umum Mahkota', icon: 'mdi:alert', badge: 'JANGAN', html: 'Jangan pernah mengatur tanggal cepat antara <strong>jam 9 malam dan 3 pagi</strong> saat roda tanggal sedang aktif. Ini dapat merusak gigi dan memerlukan servis mesin secara menyeluruh. Jika Anda harus mengubah tanggal selama waktu ini, pertama majukan waktu melewati jam 3 pagi, atur tanggal, lalu sesuaikan kembali ke waktu yang benar.' },
|
|
67
|
+
|
|
68
|
+
{ type: 'tip', title: 'Mahkota Sekrup', html: 'Jam tangan selam dan jam olahraga sering memiliki mahkota sekrup untuk ketahanan air. <strong>Selalu buka sekrup sebelum menarik</strong>. Putar berlawanan arah jarum jam hingga mahkota muncul, lalu tarik ke posisi yang diinginkan. Setelah pengaturan, tekan masuk, lalu putar searah jarum jam sambil memberikan tekanan ringan hingga pas. <strong>Jangan terlalu kencang.</strong>' },
|
|
69
|
+
|
|
70
|
+
{ type: 'comparative', columns: 2, items: [
|
|
71
|
+
{ title: 'Mahkota Standar', icon: 'mdi:crown', description: 'Mahkota tarik-tekan yang ditemukan di sebagian besar jam tangan dress dan otomatis sehari-hari. 2\u20134 posisi. Ketahanan air biasanya 30\u2013100 m.', points: ['Akses instan, tanpa membuka sekrup', 'Ketahanan air terbatas', 'Umum pada ETA, Miyota, Seiko'] },
|
|
72
|
+
{ title: 'Mahkota Sekrup', icon: 'mdi:lock', description: 'Mahkota berulir yang disekrup ke dalam tabung casing. Standar pada jam selam dan jam alat. Ketahanan air 200 m+.', points: ['Ketahanan air unggul', 'Harus dibuka sekrupnya sebelum digunakan', 'Umum pada Rolex, Omega, Seiko Prospex'], highlight: true },
|
|
73
|
+
] },
|
|
74
|
+
|
|
75
|
+
{ type: 'summary', title: 'Referensi Cepat', items: [
|
|
76
|
+
'Selalu gulung searah jarum jam — putaran mundur mengaktifkan kopling selip tetapi tidak menggulung.',
|
|
77
|
+
'Jika jam Anda memiliki mahkota sekrup, buka sekrupnya sebelum menarik ke posisi apa pun.',
|
|
78
|
+
'Hindari pengaturan tanggal cepat antara jam 9 malam dan 3 pagi. Majukan waktu melewati jam 3 pagi terlebih dahulu jika perlu.',
|
|
79
|
+
'Mesin gulung manual (mis. Unitas 6498) memiliki lebih sedikit posisi. Gulung sepenuhnya sebelum mengatur waktu.',
|
|
80
|
+
'Mesin tanpa henti (mis. Miyota 8215) memerlukan teknik berbeda: putar melewati menit target, lalu perlahan mundur.',
|
|
81
|
+
] },
|
|
82
|
+
],
|
|
83
|
+
faq: [
|
|
84
|
+
{
|
|
85
|
+
question: 'Berapa banyak posisi mahkota yang dimiliki jam tangan saya?',
|
|
86
|
+
answer: 'Sebagian besar mesin otomatis memiliki 3 posisi fungsional selain diam: posisi 1 untuk gulungan manual, posisi 2 untuk pengaturan tanggal cepat, dan posisi 3 untuk pengaturan waktu dengan henti. Mesin gulung manual seperti Unitas 6498 hanya memiliki 1 posisi fungsional (gulungan, dengan pengaturan waktu pada tarikan lebih lanjut). Mahkota sekrup menambahkan langkah ekstra: buka sekrup sebelum menarik.',
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
question: 'Dapatkah saya merusak jam tangan dengan menggulung ke belakang?',
|
|
90
|
+
answer: 'Tidak, tetapi tidak ada gunanya. Mesin modern menggunakan kopling selip yang terlepas saat diputar ke belakang, jadi putaran mundur tidak menyebabkan kerusakan tetapi juga tidak menggulung pegas utama. Selalu gulung searah jarum jam untuk gulungan manual. Satu-satunya pengecualian adalah beberapa jam saku vintage dan mesin otomatis awal.',
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
question: 'Apa zona bahaya perubahan tanggal dan bagaimana cara menghindarinya?',
|
|
94
|
+
answer: 'Zona bahaya biasanya antara jam 9 malam hingga 3 pagi, saat mekanisme perubahan tanggal secara fisik terhubung dengan roda tanggal. Pengaturan cepat selama waktu ini dapat merusak gigi. Untuk mengatur tanggal dengan aman: majukan waktu melewati jam 3 pagi, atur tanggal ke hari sebelumnya, lalu majukan waktu ke tanggal dan waktu yang benar.',
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
question: 'Mengapa jarum detik saya tidak berhenti saat saya menarik mahkota?',
|
|
98
|
+
answer: 'Beberapa mesin tidak memiliki mekanisme henti. Kaliber umum tanpa henti termasuk Miyota 8215, Unitas 6497/6498, dan banyak mesin vintage. Untuk mengatur waktu secara akurat pada mesin tanpa henti: putar mahkota 5\u201310 menit melewati menit target Anda, lalu putar perlahan mundur hingga jarum menit tepat pada tanda yang diinginkan.',
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
question: 'Bagaimana cara mengetahui berapa kali putaran untuk menggulung penuh jam tangan saya?',
|
|
102
|
+
answer: 'Sebagian besar mesin otomatis memerlukan 30\u201340 putaran penuh mahkota dari posisi mati. Mesin gulung manual bervariasi: Unitas 6498 membutuhkan sekitar 30\u201335 putaran, sedangkan Seiko 6R35 dengan cadangan daya 70 jam membutuhkan 50\u201360 putaran. Berhentilah saat Anda merasakan hambatan yang kuat — memaksa melewatinya dapat merusak pegas utama.',
|
|
103
|
+
},
|
|
104
|
+
],
|
|
105
|
+
bibliography,
|
|
106
|
+
howTo: [
|
|
107
|
+
{
|
|
108
|
+
name: 'Temukan kaliber mesin jam Anda',
|
|
109
|
+
text: 'Lihat di bagian belakang casing (sering terukir) atau pada mesin itu sendiri melalui casing belakang transparan. Nomor umum: 2824, 2892, 7750, 8215, 9015, NH35, 4R35, 6R35, 6498.',
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
name: 'Pilih di panduan',
|
|
113
|
+
text: 'Pilih mesin jam Anda dari menu dropdown. Visual mahkota dan panel diperbarui untuk menunjukkan posisi, arah gulungan, dan fitur Anda secara tepat.',
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
name: 'Tarik melalui setiap posisi',
|
|
117
|
+
text: 'Klik chip posisi (0\u20133) atau gunakan tombol Tarik. Baca deskripsi dan perhatikan peringatan zona bahaya untuk pengaturan tanggal.',
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
name: 'Terapkan ke jam tangan Anda',
|
|
121
|
+
text: 'Dengan panduan terbuka di samping Anda, praktikkan pada jam tangan Anda yang sebenarnya. Gulung ke arah yang benar, hindari zona bahaya, dan kencangkan sekrup mahkota kembali setelah selesai.',
|
|
122
|
+
},
|
|
123
|
+
],
|
|
124
|
+
schemas: [
|
|
125
|
+
{
|
|
126
|
+
'@context': 'https://schema.org',
|
|
127
|
+
'@type': 'FAQPage',
|
|
128
|
+
'mainEntity': [
|
|
129
|
+
{
|
|
130
|
+
'@type': 'Question',
|
|
131
|
+
'name': 'Berapa banyak posisi mahkota yang dimiliki jam tangan saya?',
|
|
132
|
+
'acceptedAnswer': {
|
|
133
|
+
'@type': 'Answer',
|
|
134
|
+
'text': 'Sebagian besar mesin otomatis memiliki 3 posisi fungsional selain diam: posisi 1 untuk gulungan manual, posisi 2 untuk pengaturan tanggal cepat, dan posisi 3 untuk pengaturan waktu dengan henti.',
|
|
135
|
+
},
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
'@type': 'Question',
|
|
139
|
+
'name': 'Dapatkah saya merusak jam tangan dengan menggulung ke belakang?',
|
|
140
|
+
'acceptedAnswer': {
|
|
141
|
+
'@type': 'Answer',
|
|
142
|
+
'text': 'Tidak. Mesin modern menggunakan kopling selip yang terlepas saat diputar ke belakang, jadi putaran mundur tidak menyebabkan kerusakan tetapi juga tidak menggulung pegas utama.',
|
|
143
|
+
},
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
'@type': 'Question',
|
|
147
|
+
'name': 'Apa zona bahaya perubahan tanggal?',
|
|
148
|
+
'acceptedAnswer': {
|
|
149
|
+
'@type': 'Answer',
|
|
150
|
+
'text': 'Zona bahaya biasanya antara jam 9 malam hingga 3 pagi. Untuk mengatur tanggal dengan aman: majukan waktu melewati jam 3 pagi, atur tanggal ke hari sebelumnya, lalu majukan.',
|
|
151
|
+
},
|
|
152
|
+
},
|
|
153
|
+
{
|
|
154
|
+
'@type': 'Question',
|
|
155
|
+
'name': 'Mengapa jarum detik saya tidak berhenti saat saya menarik mahkota?',
|
|
156
|
+
'acceptedAnswer': {
|
|
157
|
+
'@type': 'Answer',
|
|
158
|
+
'text': 'Beberapa mesin tidak memiliki mekanisme henti. Kaliber umum tanpa henti termasuk Miyota 8215 dan Unitas 6497/6498. Untuk mengatur waktu: putar melewati target, lalu perlahan mundur.',
|
|
159
|
+
},
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
'@type': 'Question',
|
|
163
|
+
'name': 'Berapa putaran untuk menggulung penuh jam tangan saya?',
|
|
164
|
+
'acceptedAnswer': {
|
|
165
|
+
'@type': 'Answer',
|
|
166
|
+
'text': 'Sebagian besar mesin otomatis memerlukan 30\u201340 putaran penuh mahkota. Mesin gulung manual bervariasi. Berhentilah saat Anda merasakan hambatan yang kuat.',
|
|
167
|
+
},
|
|
168
|
+
},
|
|
169
|
+
],
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
'@context': 'https://schema.org',
|
|
173
|
+
'@type': 'SoftwareApplication',
|
|
174
|
+
'name': 'Panduan Referensi Mahkota Jam',
|
|
175
|
+
'operatingSystem': 'Semua',
|
|
176
|
+
'applicationCategory': 'ReferenceApplication',
|
|
177
|
+
'browserRequirements': 'Memerlukan HTML5. Memerlukan JavaScript.',
|
|
178
|
+
},
|
|
179
|
+
{
|
|
180
|
+
'@context': 'https://schema.org',
|
|
181
|
+
'@type': 'HowTo',
|
|
182
|
+
'name': 'Cara Menggunakan Panduan Referensi Mahkota',
|
|
183
|
+
'step': [
|
|
184
|
+
{
|
|
185
|
+
'@type': 'HowToStep',
|
|
186
|
+
'name': 'Temukan kaliber mesin jam Anda',
|
|
187
|
+
'text': 'Lihat di bagian belakang casing (sering terukir) atau pada mesin itu sendiri melalui casing belakang transparan. Nomor umum: 2824, 2892, 7750, 8215, 9015, NH35, 4R35, 6R35, 6498.',
|
|
188
|
+
},
|
|
189
|
+
{
|
|
190
|
+
'@type': 'HowToStep',
|
|
191
|
+
'name': 'Pilih di panduan',
|
|
192
|
+
'text': 'Pilih mesin jam Anda dari menu dropdown. Visual mahkota dan panel diperbarui untuk menunjukkan posisi, arah gulungan, dan fitur Anda secara tepat.',
|
|
193
|
+
},
|
|
194
|
+
{
|
|
195
|
+
'@type': 'HowToStep',
|
|
196
|
+
'name': 'Tarik melalui setiap posisi',
|
|
197
|
+
'text': 'Klik chip posisi (0\u20133) atau gunakan tombol Tarik. Baca deskripsi dan perhatikan peringatan zona bahaya untuk pengaturan tanggal.',
|
|
198
|
+
},
|
|
199
|
+
{
|
|
200
|
+
'@type': 'HowToStep',
|
|
201
|
+
'name': 'Terapkan ke jam tangan Anda',
|
|
202
|
+
'text': 'Dengan panduan terbuka di samping Anda, praktikkan pada jam tangan Anda yang sebenarnya. Gulung ke arah yang benar, hindari zona bahaya, dan kencangkan sekrup mahkota kembali setelah selesai.',
|
|
203
|
+
},
|
|
204
|
+
],
|
|
205
|
+
},
|
|
206
|
+
],
|
|
207
|
+
};
|
|
@@ -0,0 +1,207 @@
|
|
|
1
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
2
|
+
import type { CrownReferenceGuideUI } from '../entry';
|
|
3
|
+
import { bibliography } from '../bibliography';
|
|
4
|
+
|
|
5
|
+
export const content: ToolLocaleContent<CrownReferenceGuideUI> = {
|
|
6
|
+
slug: 'guida-riferimento-corona',
|
|
7
|
+
title: 'Guida di Riferimento alla Corona dell\'Orologio',
|
|
8
|
+
description: 'Guida interattiva alle posizioni della corona, direzioni di carica e funzioni di regolazione per movimenti popolari.',
|
|
9
|
+
ui: {
|
|
10
|
+
title: 'Impostazioni Corona',
|
|
11
|
+
movementLabel: 'Movimento',
|
|
12
|
+
selectMovement: 'Seleziona movimento',
|
|
13
|
+
customMovement: 'Personalizzato',
|
|
14
|
+
positionLabel: 'Posizione',
|
|
15
|
+
unscrewFirst: 'Svitare prima la corona',
|
|
16
|
+
windingLabel: 'Carica',
|
|
17
|
+
hackLabel: 'Stop al secondi',
|
|
18
|
+
dangerZoneLabel: 'Evitare 21\u20133',
|
|
19
|
+
directionCW: 'Orario',
|
|
20
|
+
directionCCW: 'Antiorario',
|
|
21
|
+
directionBoth: 'Bidirezionale',
|
|
22
|
+
pullHint: 'Tirare la corona',
|
|
23
|
+
clickPosition: 'Clicca una posizione',
|
|
24
|
+
position0Title: 'Riposo',
|
|
25
|
+
position0Desc: 'Corona premuta verso l\'interno. L\'orologio funziona normalmente.',
|
|
26
|
+
position0Detail: 'Nessuna funzione di carica o regolazione attivata.',
|
|
27
|
+
position1Title: 'Carica Manuale',
|
|
28
|
+
position1Desc: 'Ruotare la corona in senso orario per caricare la molla principale. Si avvertirà una resistenza crescente man mano che la molla si tende.',
|
|
29
|
+
position1Detail: 'Circa 30\u201340 rotazioni complete da fermo. I rotori automatici caricano anche durante l\'uso.',
|
|
30
|
+
position2Title: 'Regolazione Rapida della Data',
|
|
31
|
+
position2Desc: 'Ruotare la corona in senso orario per avanzare la data. La lancetta delle ore rimane sincronizzata con i secondi.',
|
|
32
|
+
position2Detail: 'EVITARE la regolazione rapida della data tra le 21:00 e le 3:00 mentre il meccanismo di cambio data è inserito.',
|
|
33
|
+
position3Title: 'Regolazione dell\'Ora',
|
|
34
|
+
position3Desc: 'Ruotare la corona in entrambe le direzioni per muovere le lancette. La lancetta dei secondi si ferma (stop al secondi) per una sincronizzazione precisa.',
|
|
35
|
+
position3Detail: 'Tirare in posizione 3, attendere che i secondi raggiungano 12, poi tirare completamente. Ruotare per impostare l\'ora e ripremere verso l\'interno.',
|
|
36
|
+
screwDownHint: 'Ricordarsi di riavvitare la corona per garantire la tenuta stagna.',
|
|
37
|
+
noQuickSet: 'Nessuna regolazione rapida',
|
|
38
|
+
noHack: 'No',
|
|
39
|
+
hasHack: 'Sì',
|
|
40
|
+
crownPositions: 'Posizioni della Corona',
|
|
41
|
+
noteTitle: 'Nota',
|
|
42
|
+
},
|
|
43
|
+
seo: [
|
|
44
|
+
{ type: 'title', text: 'Guida alle Posizioni della Corona — Come Caricare, Regolare Data e Ora Correttamente', level: 2 },
|
|
45
|
+
{ type: 'paragraph', html: 'La corona è l\'unica interfaccia fisica tra te e il movimento del tuo orologio. Usarla male — caricare al contrario, regolare la data a mezzanotte o tirare troppo forte — può danneggiare il meccanismo. Questa guida analizza ogni posizione della corona per i calibri <strong>ETA, Sellita, Miyota, Seiko e Unitas</strong> in modo che tu non debba mai indovinare.' },
|
|
46
|
+
{ type: 'title', text: 'Posizioni della Corona a Colpo d\'Occhio', level: 3 },
|
|
47
|
+
{ type: 'glossary', items: [
|
|
48
|
+
{ term: 'Posizione 0 (Riposo)', definition: 'Corona premuta o avvitata. L\'orologio funziona normalmente. Nessuna funzione attivata. Tornare sempre qui dopo la regolazione.' },
|
|
49
|
+
{ term: 'Posizione 1 (Carica)', definition: 'Prima estrazione o stato svitato. Ruotare in senso orario per caricare la molla principale. La maggior parte degli automatici carica anche tramite il rotore.' },
|
|
50
|
+
{ term: 'Posizione 2 (Regolazione Rapida della Data)', definition: 'Seconda estrazione. Ruotare in senso orario per avanzare la data. Evitare l\'uso tra le 21:00\u20133:00 quando il meccanismo della data è inserito.' },
|
|
51
|
+
{ term: 'Posizione 3 (Regolazione dell\'Ora)', definition: 'Terza estrazione. La lancetta dei secondi si ferma per un allineamento preciso. Ruotare liberamente per impostare l\'ora. Presente sulla maggior parte degli automatici moderni.' },
|
|
52
|
+
] },
|
|
53
|
+
|
|
54
|
+
{ type: 'title', text: 'Confronto dei Movimenti: Funzioni della Corona', level: 3 },
|
|
55
|
+
{ type: 'table', headers: ['Movimento', 'Posizioni', 'Stop', 'Reg. Rapida', 'Dir. Carica'], rows: [
|
|
56
|
+
['ETA 2824-2 / SW200', '3 (0,1,2,3)', 'Sì', 'Data (O)', 'O'],
|
|
57
|
+
['ETA 2892-A2 / SW300', '3 (0,1,2,3)', 'Sì', 'Data (O)', 'O'],
|
|
58
|
+
['Valjoux 7750 / SW500', '3 (0,1,2,3)', 'Sì', 'Data (O)', 'O'],
|
|
59
|
+
['Miyota 8215', '2 (0,1,3)', 'No', 'Nessuna', 'O'],
|
|
60
|
+
['Miyota 9015', '3 (0,1,2,3)', 'Sì', 'Data (O)', 'O'],
|
|
61
|
+
['Seiko NH35 / 4R35', '3 (0,1,2,3)', 'Sì', 'Data (O)', 'O'],
|
|
62
|
+
['Seiko 6R35', '3 (0,1,2,3)', 'Sì', 'Data (O)', 'O'],
|
|
63
|
+
['Unitas 6497/6498', '1 (0,1,3)', 'No', 'Nessuna', 'O'],
|
|
64
|
+
] },
|
|
65
|
+
|
|
66
|
+
{ type: 'diagnostic', variant: 'warning', title: 'Errori Comuni con la Corona', icon: 'mdi:alert', badge: 'DA NON FARE', html: 'Non regolare mai rapidamente la data tra le <strong>21:00 e le 3:00</strong> mentre la ruota della data è inserita. Questo può rompere i denti e richiedere una revisione completa del movimento. Se devi cambiare la data durante questa finestra, prima porta l\'ora oltre le 3:00, regola la data, poi torna all\'ora corretta.' },
|
|
67
|
+
|
|
68
|
+
{ type: 'tip', title: 'Corone A Vite', html: 'Gli orologi subacquei e sportivi hanno spesso corone a vite per la tenuta stagna. <strong>Svitare sempre prima di tirare</strong>. Ruotare in senso antiorario finché la corona non scatta, poi tirare alla posizione desiderata. Dopo la regolazione, premere verso l\'interno, quindi ruotare in senso orario esercitando una leggera pressione fino a quando non è salda. <strong>Non stringere eccessivamente.</strong>' },
|
|
69
|
+
|
|
70
|
+
{ type: 'comparative', columns: 2, items: [
|
|
71
|
+
{ title: 'Corona Standard', icon: 'mdi:crown', description: 'Corona a pressione presente sulla maggior parte degli orologi eleganti e automatici da tutti i giorni. 2\u20134 posizioni. Tenuta stagna tipicamente 30\u2013100 m.', points: ['Accesso immediato, nessuna svitatura', 'Tenuta stagna limitata', 'Comune su ETA, Miyota, Seiko'] },
|
|
72
|
+
{ title: 'Corona A Vite', icon: 'mdi:lock', description: 'Corona filettata che si avvita nel tubo della cassa. Standard sugli orologi subacquei e da strumento. Tenuta stagna 200 m+.', points: ['Tenuta stagna superiore', 'Deve essere svitata prima dell\'uso', 'Comune su Rolex, Omega, Seiko Prospex'], highlight: true },
|
|
73
|
+
] },
|
|
74
|
+
|
|
75
|
+
{ type: 'summary', title: 'Riferimento Rapido', items: [
|
|
76
|
+
'Caricare sempre in senso orario — la carica inversa aziona la frizione a slittamento ma non carica.',
|
|
77
|
+
'Se il tuo orologio ha una corona a vite, svitala prima di tirare in qualsiasi posizione.',
|
|
78
|
+
'Evita la regolazione rapida della data tra le 21:00 e le 3:00. Porta prima l\'ora oltre le 3:00 se necessario.',
|
|
79
|
+
'I movimenti a carica manuale (es. Unitas 6498) hanno meno posizioni. Caricare completamente prima di regolare l\'ora.',
|
|
80
|
+
'I movimenti senza stop al secondi (es. Miyota 8215) richiedono una tecnica diversa: ruotare oltre il minuto target, poi lentamente indietro.',
|
|
81
|
+
] },
|
|
82
|
+
],
|
|
83
|
+
faq: [
|
|
84
|
+
{
|
|
85
|
+
question: 'Quante posizioni della corona ha il mio orologio?',
|
|
86
|
+
answer: 'La maggior parte dei movimenti automatici ha 3 posizioni funzionali oltre al riposo: posizione 1 per la carica manuale, posizione 2 per la regolazione rapida della data e posizione 3 per la regolazione dell\'ora con stop al secondi. I movimenti a carica manuale come l\'Unitas 6498 hanno solo 1 posizione funzionale (carica, con regolazione dell\'ora su un\'ulteriore estrazione). Le corone a vite aggiungono un passaggio extra: svitare prima di tirare.',
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
question: 'Posso danneggiare l\'orologio caricando al contrario?',
|
|
90
|
+
answer: 'No, ma non serve a nulla. I movimenti moderni utilizzano una frizione a slittamento che si disinnesta quando viene girata al contrario, quindi la carica inversa non causa danni ma non carica nemmeno la molla principale. Caricare sempre in senso orario per la carica manuale. L\'unica eccezione sono alcuni orologi da tasca vintage e i primi movimenti automatici.',
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
question: 'Cos\'è la zona di pericolo del cambio data e come evitarla?',
|
|
94
|
+
answer: 'La zona di pericolo è tipicamente tra le 21:00 e le 3:00, quando il meccanismo di cambio data è fisicamente inserito con la ruota della data. La regolazione rapida durante questa finestra può rompere i denti degli ingranaggi. Per impostare la data in sicurezza: porta l\'ora oltre le 3:00, imposta la data al giorno precedente, poi avanza fino alla data e all\'ora corrette.',
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
question: 'Perché la lancetta dei secondi non si ferma quando tiro la corona?',
|
|
98
|
+
answer: 'Alcuni movimenti sono privi del meccanismo di stop al secondi. I calibri comuni senza stop includono il Miyota 8215, l\'Unitas 6497/6498 e molti movimenti vintage. Per regolare l\'ora con precisione su un movimento senza stop: ruota la corona di 5\u201310 minuti oltre il minuto target, poi gira lentamente indietro fino a quando la lancetta dei minuti cade esattamente sul segno desiderato.',
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
question: 'Quanti giri servono per caricare completamente il mio orologio?',
|
|
102
|
+
answer: 'La maggior parte dei movimenti automatici richiede 30\u201340 rotazioni complete della corona da fermo. I movimenti a carica manuale variano: l\'Unitas 6498 necessita di circa 30\u201335 giri, mentre il Seiko 6R35 con la sua riserva di carica di 70 ore ne richiede 50\u201360. Fermati quando senti una resistenza decisa — forzare oltre può danneggiare la molla principale.',
|
|
103
|
+
},
|
|
104
|
+
],
|
|
105
|
+
bibliography,
|
|
106
|
+
howTo: [
|
|
107
|
+
{
|
|
108
|
+
name: 'Trova il calibro del tuo movimento',
|
|
109
|
+
text: 'Guarda sul fondello (spesso inciso) o sul movimento stesso attraverso un fondello trasparente. Numeri comuni: 2824, 2892, 7750, 8215, 9015, NH35, 4R35, 6R35, 6498.',
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
name: 'Selezionalo nella guida',
|
|
113
|
+
text: 'Scegli il tuo movimento dal menu a tendina. Il disegno della corona e il pannello si aggiornano per mostrare le tue posizioni esatte, la direzione di carica e le funzioni.',
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
name: 'Scorri ogni posizione',
|
|
117
|
+
text: 'Clicca sui chip delle posizioni (0\u20133) o usa il pulsante Tira. Leggi la descrizione e nota l\'avviso della zona di pericolo per la regolazione della data.',
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
name: 'Applica al tuo orologio',
|
|
121
|
+
text: 'Con la guida aperta accanto a te, esercitati sul tuo orologio reale. Carica nella direzione corretta, evita la zona di pericolo e riavvita la corona alla fine.',
|
|
122
|
+
},
|
|
123
|
+
],
|
|
124
|
+
schemas: [
|
|
125
|
+
{
|
|
126
|
+
'@context': 'https://schema.org',
|
|
127
|
+
'@type': 'FAQPage',
|
|
128
|
+
'mainEntity': [
|
|
129
|
+
{
|
|
130
|
+
'@type': 'Question',
|
|
131
|
+
'name': 'Quante posizioni della corona ha il mio orologio?',
|
|
132
|
+
'acceptedAnswer': {
|
|
133
|
+
'@type': 'Answer',
|
|
134
|
+
'text': 'La maggior parte dei movimenti automatici ha 3 posizioni funzionali oltre al riposo: posizione 1 per la carica manuale, posizione 2 per la regolazione rapida della data e posizione 3 per la regolazione dell\'ora con stop al secondi.',
|
|
135
|
+
},
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
'@type': 'Question',
|
|
139
|
+
'name': 'Posso danneggiare l\'orologio caricando al contrario?',
|
|
140
|
+
'acceptedAnswer': {
|
|
141
|
+
'@type': 'Answer',
|
|
142
|
+
'text': 'No. I movimenti moderni utilizzano una frizione a slittamento che si disinnesta quando viene girata al contrario, quindi la carica inversa non causa danni ma non carica nemmeno la molla principale.',
|
|
143
|
+
},
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
'@type': 'Question',
|
|
147
|
+
'name': 'Cos\'è la zona di pericolo del cambio data?',
|
|
148
|
+
'acceptedAnswer': {
|
|
149
|
+
'@type': 'Answer',
|
|
150
|
+
'text': 'La zona di pericolo è tipicamente tra le 21:00 e le 3:00. Per impostare la data in sicurezza: porta l\'ora oltre le 3:00, imposta la data al giorno precedente, poi avanza.',
|
|
151
|
+
},
|
|
152
|
+
},
|
|
153
|
+
{
|
|
154
|
+
'@type': 'Question',
|
|
155
|
+
'name': 'Perché la lancetta dei secondi non si ferma quando tiro la corona?',
|
|
156
|
+
'acceptedAnswer': {
|
|
157
|
+
'@type': 'Answer',
|
|
158
|
+
'text': 'Alcuni movimenti sono privi del meccanismo di stop al secondi. I calibri comuni senza stop includono il Miyota 8215 e l\'Unitas 6497/6498. Per regolare l\'ora: ruota oltre il target, poi lentamente indietro.',
|
|
159
|
+
},
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
'@type': 'Question',
|
|
163
|
+
'name': 'Quanti giri per caricare completamente il mio orologio?',
|
|
164
|
+
'acceptedAnswer': {
|
|
165
|
+
'@type': 'Answer',
|
|
166
|
+
'text': 'La maggior parte dei movimenti automatici richiede 30\u201340 rotazioni complete della corona. I movimenti a carica manuale variano. Fermati quando senti una resistenza decisa.',
|
|
167
|
+
},
|
|
168
|
+
},
|
|
169
|
+
],
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
'@context': 'https://schema.org',
|
|
173
|
+
'@type': 'SoftwareApplication',
|
|
174
|
+
'name': 'Guida di Riferimento alla Corona',
|
|
175
|
+
'operatingSystem': 'Tutti',
|
|
176
|
+
'applicationCategory': 'ReferenceApplication',
|
|
177
|
+
'browserRequirements': 'Richiede HTML5. Richiede JavaScript.',
|
|
178
|
+
},
|
|
179
|
+
{
|
|
180
|
+
'@context': 'https://schema.org',
|
|
181
|
+
'@type': 'HowTo',
|
|
182
|
+
'name': 'Come usare la Guida di Riferimento alla Corona',
|
|
183
|
+
'step': [
|
|
184
|
+
{
|
|
185
|
+
'@type': 'HowToStep',
|
|
186
|
+
'name': 'Trova il calibro del tuo movimento',
|
|
187
|
+
'text': 'Guarda sul fondello (spesso inciso) o sul movimento stesso attraverso un fondello trasparente. Numeri comuni: 2824, 2892, 7750, 8215, 9015, NH35, 4R35, 6R35, 6498.',
|
|
188
|
+
},
|
|
189
|
+
{
|
|
190
|
+
'@type': 'HowToStep',
|
|
191
|
+
'name': 'Selezionalo nella guida',
|
|
192
|
+
'text': 'Scegli il tuo movimento dal menu a tendina. Il disegno della corona e il pannello si aggiornano per mostrare le tue posizioni esatte, la direzione di carica e le funzioni.',
|
|
193
|
+
},
|
|
194
|
+
{
|
|
195
|
+
'@type': 'HowToStep',
|
|
196
|
+
'name': 'Scorri ogni posizione',
|
|
197
|
+
'text': 'Clicca sui chip delle posizioni (0\u20133) o usa il pulsante Tira. Leggi la descrizione e nota l\'avviso della zona di pericolo per la regolazione della data.',
|
|
198
|
+
},
|
|
199
|
+
{
|
|
200
|
+
'@type': 'HowToStep',
|
|
201
|
+
'name': 'Applica al tuo orologio',
|
|
202
|
+
'text': 'Con la guida aperta accanto a te, esercitati sul tuo orologio reale. Carica nella direzione corretta, evita la zona di pericolo e riavvita la corona alla fine.',
|
|
203
|
+
},
|
|
204
|
+
],
|
|
205
|
+
},
|
|
206
|
+
],
|
|
207
|
+
};
|
|
@@ -0,0 +1,207 @@
|
|
|
1
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
2
|
+
import type { CrownReferenceGuideUI } from '../entry';
|
|
3
|
+
import { bibliography } from '../bibliography';
|
|
4
|
+
|
|
5
|
+
export const content: ToolLocaleContent<CrownReferenceGuideUI> = {
|
|
6
|
+
slug: 'crown-reference-guide',
|
|
7
|
+
title: '時計リューズ リファレンスガイド',
|
|
8
|
+
description: '人気ムーブメントのリューズポジション、巻き方向、設定機能を解説するインタラクティブガイド。',
|
|
9
|
+
ui: {
|
|
10
|
+
title: 'リューズ設定',
|
|
11
|
+
movementLabel: 'ムーブメント',
|
|
12
|
+
selectMovement: 'ムーブメントを選択',
|
|
13
|
+
customMovement: 'カスタム',
|
|
14
|
+
positionLabel: 'ポジション',
|
|
15
|
+
unscrewFirst: 'まずリューズを緩めてください',
|
|
16
|
+
windingLabel: '巻き上げ',
|
|
17
|
+
hackLabel: '秒針停止',
|
|
18
|
+
dangerZoneLabel: '21時~3時は避けてください',
|
|
19
|
+
directionCW: '右回り',
|
|
20
|
+
directionCCW: '左回り',
|
|
21
|
+
directionBoth: '両方向',
|
|
22
|
+
pullHint: 'リューズを引く',
|
|
23
|
+
clickPosition: 'ポジションをクリック',
|
|
24
|
+
position0Title: '静止',
|
|
25
|
+
position0Desc: 'リューズが押し込まれた状態。時計は通常通り動作します。',
|
|
26
|
+
position0Detail: '巻き上げや時刻設定機能は作動していません。',
|
|
27
|
+
position1Title: '手動巻き上げ',
|
|
28
|
+
position1Desc: 'リューズを右回りに回してぜんまいを巻きます。ぜんまいが締まるにつれて抵抗を感じます。',
|
|
29
|
+
position1Detail: '完全に停止した状態から約30~40回転。自動巻きローターも装着中に巻き上げを行います。',
|
|
30
|
+
position2Title: '日付早送り',
|
|
31
|
+
position2Desc: 'リューズを右回りに回して日付を進めます。秒針は動き続けます。',
|
|
32
|
+
position2Detail: '日付変更機構が作動中の21時~3時の間は日付早送りを避けてください。',
|
|
33
|
+
position3Title: '時刻設定',
|
|
34
|
+
position3Desc: 'リューズをどちらかに回して針を動かします。秒針が停止(ハッキング)し、正確な同期が可能です。',
|
|
35
|
+
position3Detail: 'ポジション3まで引き、秒針が12を指すのを待ってから完全に引きます。回して時刻を合わせ、押し戻します。',
|
|
36
|
+
screwDownHint: '防水のためリューズを元に戻して締めてください。',
|
|
37
|
+
noQuickSet: '早送りなし',
|
|
38
|
+
noHack: 'なし',
|
|
39
|
+
hasHack: 'あり',
|
|
40
|
+
crownPositions: 'リューズポジション',
|
|
41
|
+
noteTitle: '注意',
|
|
42
|
+
},
|
|
43
|
+
seo: [
|
|
44
|
+
{ type: 'title', text: '時計リューズポジションガイド — 正しい巻き上げ・日付・時刻設定方法', level: 2 },
|
|
45
|
+
{ type: 'paragraph', html: 'リューズは、あなたと時計のムーブメントをつなぐ唯一の物理的なインターフェースです。誤った使い方 — 逆方向への巻き上げ、深夜の日付設定、強い引き抜き — は機構を損傷させる可能性があります。このガイドでは、<strong>ETA、Sellita、Miyota、Seiko、Unitas</strong> キャリバーのリューズポジションを詳しく解説するので、もう迷うことはありません。' },
|
|
46
|
+
{ type: 'title', text: 'リューズポジション一覧', level: 3 },
|
|
47
|
+
{ type: 'glossary', items: [
|
|
48
|
+
{ term: 'ポジション0(静止)', definition: 'リューズが押し込まれた、またはネジで固定された状態。時計は通常通り動作。機能は作動せず。設定後は必ずここに戻します。' },
|
|
49
|
+
{ term: 'ポジション1(巻き上げ)', definition: '1段目を引いた、またはネジを緩めた状態。右回りに回してぜんまいを巻きます。ほとんどの自動巻きはローターでも巻き上げられます。' },
|
|
50
|
+
{ term: 'ポジション2(日付早送り)', definition: '2段目を引いた状態。右回りに回して日付を進めます。日付機構が作動中の21時~3時は避けてください。' },
|
|
51
|
+
{ term: 'ポジション3(時刻設定)', definition: '3段目を引いた状態。秒針が停止し(ハッキング)、正確な時刻合わせが可能。自由に回して時刻を設定。最新の自動巻きのほとんどに搭載。' },
|
|
52
|
+
] },
|
|
53
|
+
|
|
54
|
+
{ type: 'title', text: 'ムーブメント比較:リューズ機能', level: 3 },
|
|
55
|
+
{ type: 'table', headers: ['ムーブメント', 'ポジション数', '秒針停止', '早送り', '巻き方向'], rows: [
|
|
56
|
+
['ETA 2824-2 / SW200', '3 (0,1,2,3)', 'あり', '日付(右)', '右'],
|
|
57
|
+
['ETA 2892-A2 / SW300', '3 (0,1,2,3)', 'あり', '日付(右)', '右'],
|
|
58
|
+
['Valjoux 7750 / SW500', '3 (0,1,2,3)', 'あり', '日付(右)', '右'],
|
|
59
|
+
['Miyota 8215', '2 (0,1,3)', 'なし', 'なし', '右'],
|
|
60
|
+
['Miyota 9015', '3 (0,1,2,3)', 'あり', '日付(右)', '右'],
|
|
61
|
+
['Seiko NH35 / 4R35', '3 (0,1,2,3)', 'あり', '日付(右)', '右'],
|
|
62
|
+
['Seiko 6R35', '3 (0,1,2,3)', 'あり', '日付(右)', '右'],
|
|
63
|
+
['Unitas 6497/6498', '1 (0,1,3)', 'なし', 'なし', '右'],
|
|
64
|
+
] },
|
|
65
|
+
|
|
66
|
+
{ type: 'diagnostic', variant: 'warning', title: 'よくあるリューズの誤操作', icon: 'mdi:alert', badge: '禁止', html: '日付車が作動中の<strong>21時~3時</strong>に日付を早送りしないでください。歯が欠け、ムーブメントのオーバーホールが必要になる可能性があります。この時間帯に日付を変更する必要がある場合は、まず時刻を3時以降に進め、日付を設定してから正しい時刻に戻してください。' },
|
|
67
|
+
|
|
68
|
+
{ type: 'tip', title: 'ネジロック式リューズ', html: 'ダイバーズウォッチやスポーツウォッチには、防水のためのネジロック式リューズが採用されていることがよくあります。<strong>必ず引く前に緩めてください</strong>。左回りに回してリューズが飛び出すまで回し、目的のポジションまで引きます。設定後は押し込み、軽く押さえながら右回りに締めます。<strong>締めすぎないでください。</strong>' },
|
|
69
|
+
|
|
70
|
+
{ type: 'comparative', columns: 2, items: [
|
|
71
|
+
{ title: '標準リューズ', icon: 'mdi:crown', description: 'ほとんどのドレスウォッチや日常使いの自動巻きに採用されるプッシュプル式リューズ。2~4ポジション。防水性は通常30~100m。', points: ['すぐに操作可能、緩める必要なし', '防水性は限定的', 'ETA、Miyota、Seikoに広く採用'] },
|
|
72
|
+
{ title: 'ネジロック式リューズ', icon: 'mdi:lock', description: 'ケースの筒部にネジ込む構造のリューズ。ダイバーズウォッチやツールウォッチの標準。防水性200m以上。', points: ['優れた防水性', '使用前に緩める必要あり', 'Rolex、Omega、Seiko Prospexに採用'], highlight: true },
|
|
73
|
+
] },
|
|
74
|
+
|
|
75
|
+
{ type: 'summary', title: 'クイックリファレンス', items: [
|
|
76
|
+
'必ず右回りに巻くこと — 逆回転はスリップクラッチが作動するだけで巻き上げは行われません。',
|
|
77
|
+
'ネジロック式リューズの時計は、引く前に必ず緩めてください。',
|
|
78
|
+
'21時~3時の日付早送りは避けてください。必要な場合はまず時刻を3時以降に進めてから。',
|
|
79
|
+
'手巻きムーブメント(例:Unitas 6498)はポジション数が少ないです。時刻設定前に十分に巻いてください。',
|
|
80
|
+
'秒針停止機能のないムーブメント(例:Miyota 8215)は異なるテクニックが必要です:目標の分を過ぎて回し、ゆっくり戻します。',
|
|
81
|
+
] },
|
|
82
|
+
],
|
|
83
|
+
faq: [
|
|
84
|
+
{
|
|
85
|
+
question: '私の時計にはリューズポジションがいくつありますか?',
|
|
86
|
+
answer: 'ほとんどの自動巻きムーブメントには、静止状態以外に3つの機能ポジションがあります:手動巻き上げ用のポジション1、日付早送り用のポジション2、秒針停止機能付き時刻設定用のポジション3です。Unitas 6498のような手巻きムーブメントは1つの機能ポジションのみ(巻き上げ用で、さらに引くと時刻設定)です。ネジロック式リューズは、引く前に緩めるという追加の操作が必要です。',
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
question: '逆方向に巻くと時計が壊れますか?',
|
|
90
|
+
answer: 'いいえ、ただし何も起こりません。現代のムーブメントは逆回転時にスリップクラッチが作動して切り離されるため、逆巻きは損傷を与えませんが、ぜんまいも巻き上げられません。手動巻き上げは必ず右回りに行ってください。例外は一部のビンテージ懐中時計と初期の自動巻きムーブメントです。',
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
question: '日付変更の危険ゾーンとは何ですか?どう避ければいいですか?',
|
|
94
|
+
answer: '危険ゾーンは通常21時から3時で、この間は日付変更機構が日付車と物理的に噛み合っています。この時間帯に早送りをすると歯車の歯が欠ける可能性があります。安全に日付を設定するには:時刻を3時以降に進め、日付を前日に設定してから、正しい日付と時刻まで時刻を進めてください。',
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
question: 'リューズを引いても秒針が止まらないのはなぜですか?',
|
|
98
|
+
answer: '一部のムーブメントには秒針停止機構(ハッキング)が搭載されていません。代表的な非ハッキングキャリバーにはMiyota 8215、Unitas 6497/6498、および多くのビンテージムーブメントがあります。秒針停止機能のないムーブメントで正確に時刻を設定するには:目的の分を5~10分過ぎてリューズを回し、その後ゆっくり逆方向に回して分針を正確に目標の位置に合わせます。',
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
question: 'フル巻き上げに必要な回転数はどうやってわかりますか?',
|
|
102
|
+
answer: 'ほとんどの自動巻きムーブメントは、完全に停止した状態から30~40回のフル回転が必要です。手巻きムーブメントは異なります:Unitas 6498は約30~35回転、70時間パワーリザーブのSeiko 6R35は50~60回転必要です。しっかりとした抵抗を感じたら止めてください — 無理に回し続けるとぜんまいを損傷する可能性があります。',
|
|
103
|
+
},
|
|
104
|
+
],
|
|
105
|
+
bibliography,
|
|
106
|
+
howTo: [
|
|
107
|
+
{
|
|
108
|
+
name: 'ムーブメントキャリバーを確認する',
|
|
109
|
+
text: 'ケースバック(刻印されていることが多い)またはシースルーバック越しにムーブメント自体を確認します。一般的な番号:2824、2892、7750、8215、9015、NH35、4R35、6R35、6498。',
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
name: 'ガイドで選択する',
|
|
113
|
+
text: 'ドロップダウンから該当ムーブメントを選択します。リューズのビジュアルとパネルが更新され、正確なポジション、巻き方向、機能が表示されます。',
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
name: '各ポジションを順に試す',
|
|
117
|
+
text: 'ポジションチップ(0~3)をクリックするか、「リューズを引く」ボタンを使用します。説明を読み、日付設定の危険ゾーン警告に注意してください。',
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
name: '実際の時計で試す',
|
|
121
|
+
text: 'ガイドを開いた状態で、実際の時計で練習します。正しい方向に巻き、危険ゾーンを避け、最後にリューズを戻して締めます。',
|
|
122
|
+
},
|
|
123
|
+
],
|
|
124
|
+
schemas: [
|
|
125
|
+
{
|
|
126
|
+
'@context': 'https://schema.org',
|
|
127
|
+
'@type': 'FAQPage',
|
|
128
|
+
'mainEntity': [
|
|
129
|
+
{
|
|
130
|
+
'@type': 'Question',
|
|
131
|
+
'name': '私の時計にはリューズポジションがいくつありますか?',
|
|
132
|
+
'acceptedAnswer': {
|
|
133
|
+
'@type': 'Answer',
|
|
134
|
+
'text': 'ほとんどの自動巻きムーブメントには、静止状態以外に3つの機能ポジションがあります:手動巻き上げ用のポジション1、日付早送り用のポジション2、秒針停止機能付き時刻設定用のポジション3です。',
|
|
135
|
+
},
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
'@type': 'Question',
|
|
139
|
+
'name': '逆方向に巻くと時計が壊れますか?',
|
|
140
|
+
'acceptedAnswer': {
|
|
141
|
+
'@type': 'Answer',
|
|
142
|
+
'text': 'いいえ。現代のムーブメントは逆回転時にスリップクラッチが作動して切り離されるため、逆巻きは損傷を与えませんが、ぜんまいも巻き上げられません。',
|
|
143
|
+
},
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
'@type': 'Question',
|
|
147
|
+
'name': '日付変更の危険ゾーンとは何ですか?',
|
|
148
|
+
'acceptedAnswer': {
|
|
149
|
+
'@type': 'Answer',
|
|
150
|
+
'text': '危険ゾーンは通常21時から3時です。安全に日付を設定するには:時刻を3時以降に進め、日付を前日に設定してから、正しい日付まで進めてください。',
|
|
151
|
+
},
|
|
152
|
+
},
|
|
153
|
+
{
|
|
154
|
+
'@type': 'Question',
|
|
155
|
+
'name': 'リューズを引いても秒針が止まらないのはなぜですか?',
|
|
156
|
+
'acceptedAnswer': {
|
|
157
|
+
'@type': 'Answer',
|
|
158
|
+
'text': '一部のムーブメントには秒針停止機構が搭載されていません。代表的な非ハッキングキャリバーにはMiyota 8215とUnitas 6497/6498があります。時刻設定方法:目標を過ぎて回し、ゆっくり戻します。',
|
|
159
|
+
},
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
'@type': 'Question',
|
|
163
|
+
'name': 'フル巻き上げに必要な回転数は?',
|
|
164
|
+
'acceptedAnswer': {
|
|
165
|
+
'@type': 'Answer',
|
|
166
|
+
'text': 'ほとんどの自動巻きムーブメントは30~40回のフル回転が必要です。手巻きムーブメントは異なります。しっかりとした抵抗を感じたら止めてください。',
|
|
167
|
+
},
|
|
168
|
+
},
|
|
169
|
+
],
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
'@context': 'https://schema.org',
|
|
173
|
+
'@type': 'SoftwareApplication',
|
|
174
|
+
'name': '時計リューズ リファレンスガイド',
|
|
175
|
+
'operatingSystem': 'All',
|
|
176
|
+
'applicationCategory': 'ReferenceApplication',
|
|
177
|
+
'browserRequirements': 'Requires HTML5. Requires JavaScript.',
|
|
178
|
+
},
|
|
179
|
+
{
|
|
180
|
+
'@context': 'https://schema.org',
|
|
181
|
+
'@type': 'HowTo',
|
|
182
|
+
'name': 'リファレンスガイドの使い方',
|
|
183
|
+
'step': [
|
|
184
|
+
{
|
|
185
|
+
'@type': 'HowToStep',
|
|
186
|
+
'name': 'ムーブメントキャリバーを確認する',
|
|
187
|
+
'text': 'ケースバック(刻印されていることが多い)またはシースルーバック越しにムーブメント自体を確認します。一般的な番号:2824、2892、7750、8215、9015、NH35、4R35、6R35、6498。',
|
|
188
|
+
},
|
|
189
|
+
{
|
|
190
|
+
'@type': 'HowToStep',
|
|
191
|
+
'name': 'ガイドで選択する',
|
|
192
|
+
'text': 'ドロップダウンから該当ムーブメントを選択します。リューズのビジュアルとパネルが更新され、正確なポジション、巻き方向、機能が表示されます。',
|
|
193
|
+
},
|
|
194
|
+
{
|
|
195
|
+
'@type': 'HowToStep',
|
|
196
|
+
'name': '各ポジションを順に試す',
|
|
197
|
+
'text': 'ポジションチップ(0~3)をクリックするか、「リューズを引く」ボタンを使用します。説明を読み、日付設定の危険ゾーン警告に注意してください。',
|
|
198
|
+
},
|
|
199
|
+
{
|
|
200
|
+
'@type': 'HowToStep',
|
|
201
|
+
'name': '実際の時計で試す',
|
|
202
|
+
'text': 'ガイドを開いた状態で、実際の時計で練習します。正しい方向に巻き、危険ゾーンを避け、最後にリューズを戻して締めます。',
|
|
203
|
+
},
|
|
204
|
+
],
|
|
205
|
+
},
|
|
206
|
+
],
|
|
207
|
+
};
|