@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,158 @@
|
|
|
1
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
2
|
+
import type { PowerReserveEstimatorUI } from '../entry';
|
|
3
|
+
import { bibliography } from '../bibliography';
|
|
4
|
+
|
|
5
|
+
export const content: ToolLocaleContent<PowerReserveEstimatorUI> = {
|
|
6
|
+
slug: 'estimateur-reserve-de-marche',
|
|
7
|
+
title: 'Estimateur de R\u00e9serve de Marche',
|
|
8
|
+
description: 'Estimez la r\u00e9serve de marche restante de votre montre en fonction des tours de couronne et des heures de port. Compatible avec les calibres populaires ETA, Sellita, Miyota, Seiko et Rolex.',
|
|
9
|
+
ui: {
|
|
10
|
+
title: 'Estimateur de R\u00e9serve de Marche',
|
|
11
|
+
movementLabel: 'Calibre',
|
|
12
|
+
selectMovement: 'S\u00e9lectionner un calibre',
|
|
13
|
+
customMovement: 'Personnalis\u00e9',
|
|
14
|
+
turnsLabel: 'Tours de Couronne',
|
|
15
|
+
hoursLabel: 'Temps de Port',
|
|
16
|
+
turnsInput: 'Tours',
|
|
17
|
+
hoursInput: 'Heures',
|
|
18
|
+
activityLabel: 'Activit\u00e9',
|
|
19
|
+
activityLow: 'Bureau',
|
|
20
|
+
activityMedium: 'Marche',
|
|
21
|
+
activityHigh: 'Actif',
|
|
22
|
+
calculate: 'Calculer',
|
|
23
|
+
reserveRemaining: 'R\u00e9serve Restante',
|
|
24
|
+
hoursRemaining: 'Restant',
|
|
25
|
+
chargePercent: 'Charge',
|
|
26
|
+
resultLabel: 'R\u00e9serve Estim\u00e9e',
|
|
27
|
+
stopTimeLabel: 'Fonctionne jusqu\'\u00e0',
|
|
28
|
+
powerReserveHours: 'R\u00e9serve (h)',
|
|
29
|
+
fullWindTurns: 'Tours jusqu\'\u00e0 plein',
|
|
30
|
+
step1: 'S\u00e9lectionnez votre calibre dans le menu d\u00e9roulant.',
|
|
31
|
+
step2: 'Entrez les tours de couronne et les heures de port.',
|
|
32
|
+
step3: 'Appuyez sur Calculer pour voir votre r\u00e9serve.',
|
|
33
|
+
tipTitle: 'Astuce',
|
|
34
|
+
tipContent: 'Les mouvements \u00e0 remontage manuel ne se chargent que lorsque vous tournez la couronne. Les mouvements automatiques se chargent \u00e9galement lorsque vous portez la montre.',
|
|
35
|
+
},
|
|
36
|
+
seo: [
|
|
37
|
+
{ type: 'title', text: 'Estimateur de R\u00e9serve de Marche \u2014 Quelle r\u00e9serve reste-t-il \u00e0 votre mouvement ?', level: 2 },
|
|
38
|
+
{ type: 'paragraph', html: 'Vous vous demandez combien d\u2019\u00e9nergie il reste \u00e0 votre montre m\u00e9canique\u00a0? Que vous ayez remont\u00e9 la couronne ce matin ou port\u00e9 la montre toute la journ\u00e9e, cet estimateur vous indique le niveau de charge approximatif et les heures restantes pour les calibres populaires comme <strong>ETA, Sellita, Miyota, Seiko et Rolex</strong>.' },
|
|
39
|
+
{ type: 'title', text: 'Comment fonctionne la r\u00e9serve de marche d\u2019une montre m\u00e9canique', level: 3 },
|
|
40
|
+
{ type: 'paragraph', html: 'La r\u00e9serve de marche est la quantit\u00e9 d\u2019\u00e9nergie emmagasin\u00e9e dans le ressort moteur. Lorsque vous remontez la couronne, vous tendez le ressort et stockez de l\u2019\u00e9nergie potentielle. Un rotor automatique tend \u00e9galement le ressort lorsque vous portez la montre. L\u2019\u00e9nergie se dissipe ensuite \u00e0 un rythme r\u00e9gulier \u2014 g\u00e9n\u00e9ralement 2\u20133\u00a0% par heure \u2014 jusqu\u2019\u00e0 ce que la montre s\u2019arr\u00eate.' },
|
|
41
|
+
{ type: 'title', text: 'Remontage manuel vs. Charge par rotor', level: 3 },
|
|
42
|
+
{ type: 'paragraph', html: 'Le remontage manuel via la couronne est le moyen le plus efficace de charger une montre\u00a0: chaque tour complet ajoute une quantit\u00e9 d\u2019\u00e9nergie pr\u00e9visible, g\u00e9n\u00e9ralement environ 2,5\u00a0% de la r\u00e9serve totale. Le port de la montre charge plus lentement et d\u00e9pend de votre niveau d\u2019activit\u00e9\u00a0: un employ\u00e9 de bureau peut charger 4\u20136\u00a0% par heure, tandis qu\u2019une personne active peut charger 8\u201310\u00a0%. Cet estimateur utilise une moyenne prudente.' },
|
|
43
|
+
{ type: 'title', text: 'Pourquoi l\u2019estimation de la r\u00e9serve de marche est importante', level: 3 },
|
|
44
|
+
{ type: 'paragraph', html: 'Conna\u00eetre le niveau de charge de votre montre permet d\u2019\u00e9viter les arr\u00eats inattendus. Si la montre s\u2019arr\u00eate pendant la nuit, elle a peut-\u00eatre besoin de plus de remontage avant le coucher, ou pas assez de temps de port. Utilisez cet outil pour comprendre vos habitudes de charge et garder votre automatique en marche.' },
|
|
45
|
+
],
|
|
46
|
+
faq: [
|
|
47
|
+
{
|
|
48
|
+
question: 'Combien un tour de couronne charge-t-il la montre\u00a0?',
|
|
49
|
+
answer: 'Cela d\u00e9pend du calibre. La plupart des calibres automatiques atteignent le plein remontage en 30\u201340 tours, donc chaque tour ajoute environ 2,5\u20133,3\u00a0% de la r\u00e9serve totale. Les mouvements \u00e0 remontage manuel comme l\u2019Unitas 6498 n\u00e9cessitent \u00e9galement environ 35 tours pour un plein remontage.',
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
question: 'Porter la montre la charge-t-il autant que le remontage\u00a0?',
|
|
53
|
+
answer: 'Le port charge plus lentement et de mani\u00e8re variable. Au bureau, vous pouvez charger 4\u20136\u00a0% par heure via le rotor. En mouvement actif (marche, sport), cela peut atteindre 8\u201310\u00a0% par heure. Le remontage manuel est plus rapide et plus pr\u00e9visible.',
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
question: 'Quelle r\u00e9serve une montre perd-elle par heure\u00a0?',
|
|
57
|
+
answer: 'La consommation est constante\u00a0: divisez 100 par la r\u00e9serve de marche en heures. Un calibre de 38 heures perd environ 2,6\u00a0% par heure, un 42 heures perd 2,4\u00a0% et un 70 heures perd environ 1,4\u00a0% par heure.',
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
question: 'Puis-je trop remonter ma montre\u00a0?',
|
|
61
|
+
answer: 'Les mouvements automatiques modernes sont \u00e9quip\u00e9s d\u2019un embrayage \u00e0 friction qui emp\u00eache le surremontage. Une fois le ressort moteur compl\u00e8tement tendu, les tours suppl\u00e9mentaires glissent simplement. Les mouvements \u00e0 remontage manuel ont \u00e9galement une but\u00e9e, mais forcer au-del\u00e0 peut endommager le ressort moteur.',
|
|
62
|
+
},
|
|
63
|
+
],
|
|
64
|
+
bibliography,
|
|
65
|
+
howTo: [
|
|
66
|
+
{
|
|
67
|
+
name: 'S\u00e9lectionnez votre calibre',
|
|
68
|
+
text: 'Choisissez le calibre de votre montre dans le menu d\u00e9roulant. S\u2019il n\u2019appara\u00eet pas, s\u00e9lectionnez Personnalis\u00e9 et saisissez sa r\u00e9serve de marche et ses tours jusqu\u2019\u00e0 plein.',
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
name: 'Saisissez vos donn\u00e9es',
|
|
72
|
+
text: 'Indiquez combien de tours de couronne vous avez effectu\u00e9s ou combien d\u2019heures vous avez port\u00e9 la montre aujourd\u2019hui. Vous pouvez remplir les deux pour une estimation combin\u00e9e.',
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
name: 'Calculer',
|
|
76
|
+
text: 'Appuyez sur le bouton Calculer. Le r\u00e9sultat affiche le pourcentage de charge estim\u00e9 et les heures restantes de r\u00e9serve de marche.',
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
name: 'Ajustez vos habitudes',
|
|
80
|
+
text: 'Utilisez les r\u00e9sultats pour d\u00e9cider si vous devez remonter davantage avant le coucher ou porter la montre plus longtemps dans la journ\u00e9e pour qu\u2019elle continue de fonctionner.',
|
|
81
|
+
},
|
|
82
|
+
],
|
|
83
|
+
schemas: [
|
|
84
|
+
{
|
|
85
|
+
'@context': 'https://schema.org',
|
|
86
|
+
'@type': 'FAQPage',
|
|
87
|
+
'mainEntity': [
|
|
88
|
+
{
|
|
89
|
+
'@type': 'Question',
|
|
90
|
+
'name': 'Combien un tour de couronne charge-t-il la montre ?',
|
|
91
|
+
'acceptedAnswer': {
|
|
92
|
+
'@type': 'Answer',
|
|
93
|
+
'text': 'Cela dépend du calibre. La plupart des calibres automatiques atteignent le plein remontage en 30–40 tours, donc chaque tour ajoute environ 2,5–3,3 % de la réserve totale. Les mouvements à remontage manuel comme l\'Unitas 6498 nécessitent également environ 35 tours pour un plein remontage.',
|
|
94
|
+
},
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
'@type': 'Question',
|
|
98
|
+
'name': 'Porter la montre la charge-t-il autant que le remontage ?',
|
|
99
|
+
'acceptedAnswer': {
|
|
100
|
+
'@type': 'Answer',
|
|
101
|
+
'text': 'Le port charge plus lentement et de manière variable. Au bureau, vous pouvez charger 4–6 % par heure via le rotor. En mouvement actif, cela peut atteindre 8–10 % par heure. Le remontage manuel est plus rapide et plus prévisible.',
|
|
102
|
+
},
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
'@type': 'Question',
|
|
106
|
+
'name': 'Quelle réserve une montre perd-elle par heure ?',
|
|
107
|
+
'acceptedAnswer': {
|
|
108
|
+
'@type': 'Answer',
|
|
109
|
+
'text': 'La consommation est constante : divisez 100 par la réserve de marche en heures. Un calibre de 38 heures perd environ 2,6 % par heure, un 42 heures perd 2,4 % et un 70 heures perd environ 1,4 % par heure.',
|
|
110
|
+
},
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
'@type': 'Question',
|
|
114
|
+
'name': 'Puis-je trop remonter ma montre ?',
|
|
115
|
+
'acceptedAnswer': {
|
|
116
|
+
'@type': 'Answer',
|
|
117
|
+
'text': 'Les mouvements automatiques modernes sont équipés d\'un embrayage à friction qui empêche le surremontage. Une fois le ressort moteur complètement tendu, les tours supplémentaires glissent simplement.',
|
|
118
|
+
},
|
|
119
|
+
},
|
|
120
|
+
],
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
'@context': 'https://schema.org',
|
|
124
|
+
'@type': 'SoftwareApplication',
|
|
125
|
+
'name': 'Estimateur de Réserve de Marche',
|
|
126
|
+
'operatingSystem': 'Tous',
|
|
127
|
+
'applicationCategory': 'UtilitiesApplication',
|
|
128
|
+
'browserRequirements': 'Nécessite HTML5. Nécessite JavaScript.',
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
'@context': 'https://schema.org',
|
|
132
|
+
'@type': 'HowTo',
|
|
133
|
+
'name': 'Comment estimer la réserve de marche de votre montre',
|
|
134
|
+
'step': [
|
|
135
|
+
{
|
|
136
|
+
'@type': 'HowToStep',
|
|
137
|
+
'name': 'Sélectionnez votre calibre',
|
|
138
|
+
'text': 'Choisissez le calibre de votre montre dans le menu déroulant. S\'il n\'apparaît pas, sélectionnez Personnalisé et saisissez sa réserve de marche et ses tours jusqu\'à plein.',
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
'@type': 'HowToStep',
|
|
142
|
+
'name': 'Saisissez vos données',
|
|
143
|
+
'text': 'Indiquez combien de tours de couronne vous avez effectués ou combien d\'heures vous avez porté la montre aujourd\'hui. Vous pouvez remplir les deux pour une estimation combinée.',
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
'@type': 'HowToStep',
|
|
147
|
+
'name': 'Calculer',
|
|
148
|
+
'text': 'Appuyez sur le bouton Calculer. Le résultat affiche le pourcentage de charge estimé et les heures restantes de réserve de marche.',
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
'@type': 'HowToStep',
|
|
152
|
+
'name': 'Ajustez vos habitudes',
|
|
153
|
+
'text': 'Utilisez les résultats pour décider si vous devez remonter davantage avant le coucher ou porter la montre plus longtemps dans la journée pour qu\'elle continue de fonctionner.',
|
|
154
|
+
},
|
|
155
|
+
],
|
|
156
|
+
},
|
|
157
|
+
],
|
|
158
|
+
};
|
|
@@ -0,0 +1,158 @@
|
|
|
1
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
2
|
+
import type { PowerReserveEstimatorUI } from '../entry';
|
|
3
|
+
import { bibliography } from '../bibliography';
|
|
4
|
+
|
|
5
|
+
export const content: ToolLocaleContent<PowerReserveEstimatorUI> = {
|
|
6
|
+
slug: 'estimator-cadangan-daya',
|
|
7
|
+
title: 'Estimator Cadangan Daya Arloji',
|
|
8
|
+
description: 'Perkirakan sisa cadangan daya arloji Anda berdasarkan putaran mahkota dan jam pemakaian. Bekerja dengan kaliber populer ETA, Sellita, Miyota, Seiko, dan Rolex.',
|
|
9
|
+
ui: {
|
|
10
|
+
title: 'Estimator Cadangan Daya',
|
|
11
|
+
movementLabel: 'Mesin',
|
|
12
|
+
selectMovement: 'Pilih mesin',
|
|
13
|
+
customMovement: 'Kustom',
|
|
14
|
+
turnsLabel: 'Putaran Mahkota',
|
|
15
|
+
hoursLabel: 'Waktu Pakai',
|
|
16
|
+
turnsInput: 'Putaran',
|
|
17
|
+
hoursInput: 'Jam',
|
|
18
|
+
activityLabel: 'Aktivitas',
|
|
19
|
+
activityLow: 'Meja',
|
|
20
|
+
activityMedium: 'Jalan',
|
|
21
|
+
activityHigh: 'Aktif',
|
|
22
|
+
calculate: 'Hitung',
|
|
23
|
+
reserveRemaining: 'Sisa Cadangan',
|
|
24
|
+
hoursRemaining: 'Sisa',
|
|
25
|
+
chargePercent: 'Pengisian',
|
|
26
|
+
resultLabel: 'Perkiraan Cadangan',
|
|
27
|
+
stopTimeLabel: 'Berjalan hingga',
|
|
28
|
+
powerReserveHours: 'Cadangan (jam)',
|
|
29
|
+
fullWindTurns: 'Putaran hingga penuh',
|
|
30
|
+
step1: 'Pilih mesin arloji Anda dari menu tarik-turun.',
|
|
31
|
+
step2: 'Masukkan putaran mahkota dan jam pemakaian.',
|
|
32
|
+
step3: 'Tekan Hitung untuk melihat cadangan daya Anda.',
|
|
33
|
+
tipTitle: 'Kiat',
|
|
34
|
+
tipContent: 'Mesin manual hanya terisi saat Anda memutar mahkota. Mesin otomatis juga terisi saat Anda memakainya.',
|
|
35
|
+
},
|
|
36
|
+
seo: [
|
|
37
|
+
{ type: 'title', text: 'Estimator Cadangan Daya Arloji \u2014 Berapa Sisa Cadangan Mesin Anda?', level: 2 },
|
|
38
|
+
{ type: 'paragraph', html: 'Penasaran berapa banyak daya yang tersisa di arloji mekanik Anda? Baik Anda memutar mahkota pagi ini atau memakainya sepanjang hari, estimator ini memberi tahu perkiraan level pengisian dan jam tersisa untuk kaliber populer seperti <strong>ETA, Sellita, Miyota, Seiko, dan Rolex</strong>.' },
|
|
39
|
+
{ type: 'title', text: 'Bagaimana Cadangan Daya Bekerja pada Arloji Mekanik', level: 3 },
|
|
40
|
+
{ type: 'paragraph', html: 'Cadangan daya adalah jumlah energi yang tersimpan di pegas utama. Saat Anda memutar mahkota, Anda mengencangkan pegas utama, menyimpan energi potensial. Rotor otomatis juga mengencangkan pegas utama saat Anda memakai arloji. Energi kemudian terkuras pada tingkat yang stabil \u2014 biasanya 2\u20133% per jam \u2014 hingga arloji berhenti.' },
|
|
41
|
+
{ type: 'title', text: 'Putaran Mahkota vs. Pengisian Rotor', level: 3 },
|
|
42
|
+
{ type: 'paragraph', html: 'Pengisian manual melalui mahkota adalah cara paling efisien untuk mengisi arloji \u2014 setiap putaran penuh menambah jumlah energi yang dapat diprediksi, biasanya sekitar 2,5% dari total cadangan. Memakai arloji mengisi lebih lambat dan tergantung pada tingkat aktivitas Anda: pekerja kantoran mungkin mengisi 4\u20136% per jam, sementara orang yang aktif mungkin mengisi 8\u201310%. Estimator ini menggunakan rata-rata konservatif.' },
|
|
43
|
+
{ type: 'title', text: 'Mengapa Perkiraan Cadangan Daya Penting', level: 3 },
|
|
44
|
+
{ type: 'paragraph', html: 'Mengetahui level pengisian arloji Anda membantu menghindari berhenti yang tidak terduga. Arloji yang mati di malam hari mungkin perlu lebih banyak putaran sebelum tidur, atau mungkin tidak cukup dipakai. Gunakan alat ini untuk memahami kebiasaan pengisian Anda dan menjaga arloji otomatis tetap berjalan.' },
|
|
45
|
+
],
|
|
46
|
+
faq: [
|
|
47
|
+
{
|
|
48
|
+
question: 'Berapa banyak satu putaran mahkota mengisi arloji?',
|
|
49
|
+
answer: 'Tergantung pada mesinnya. Sebagian besar kaliber otomatis mencapai pengisian penuh dalam 30\u201340 putaran, jadi setiap putaran menambah sekitar 2,5\u20133,3% dari total cadangan. Mesin manual seperti Unitas 6498 juga membutuhkan sekitar 35 putaran untuk pengisian penuh.',
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
question: 'Apakah memakai arloji mengisinya sama seperti memutar?',
|
|
53
|
+
answer: 'Memakai mengisi lebih lambat dan bervariasi. Di pekerjaan meja, Anda mungkin mengisi 4\u20136% per jam melalui rotor. Saat bergerak aktif (jalan, olahraga), bisa mencapai 8\u201310% per jam. Memutar dengan tangan lebih cepat dan lebih dapat diprediksi.',
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
question: 'Berapa banyak cadangan yang hilang per jam?',
|
|
57
|
+
answer: 'Pengurasannya konstan: bagi 100 dengan cadangan daya dalam jam. Mesin 38 jam kehilangan sekitar 2,6% per jam, 42 jam kehilangan 2,4%, dan 70 jam kehilangan sekitar 1,4% per jam.',
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
question: 'Bisakah saya mengisi arloji secara berlebihan?',
|
|
61
|
+
answer: 'Mesin otomatis modern memiliki kopling selip yang mencegah pengisian berlebihan. Setelah pegas utama terisi penuh, putaran tambahan akan selip begitu saja. Mesin manual juga memiliki mekanisme penghenti, meskipun memaksa melewati batas dapat merusak pegas utama.',
|
|
62
|
+
},
|
|
63
|
+
],
|
|
64
|
+
bibliography,
|
|
65
|
+
howTo: [
|
|
66
|
+
{
|
|
67
|
+
name: 'Pilih mesin Anda',
|
|
68
|
+
text: 'Pilih kaliber arloji Anda dari menu tarik-turun. Jika tidak terdaftar, pilih Kustom dan masukkan cadangan daya serta putaran hingga penuhnya.',
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
name: 'Masukkan data Anda',
|
|
72
|
+
text: 'Ketik berapa putaran mahkota yang Anda berikan, atau berapa jam Anda memakainya hari ini. Anda bisa mengisi keduanya untuk perkiraan gabungan.',
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
name: 'Hitung',
|
|
76
|
+
text: 'Tekan tombol Hitung. Hasilnya menunjukkan perkiraan persentase pengisian dan sisa jam cadangan daya.',
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
name: 'Sesuaikan kebiasaan Anda',
|
|
80
|
+
text: 'Gunakan hasilnya untuk memutuskan apakah Anda perlu lebih banyak memutar sebelum tidur atau lebih banyak waktu pakai di siang hari agar arloji tetap berjalan.',
|
|
81
|
+
},
|
|
82
|
+
],
|
|
83
|
+
schemas: [
|
|
84
|
+
{
|
|
85
|
+
'@context': 'https://schema.org',
|
|
86
|
+
'@type': 'FAQPage',
|
|
87
|
+
'mainEntity': [
|
|
88
|
+
{
|
|
89
|
+
'@type': 'Question',
|
|
90
|
+
'name': 'Berapa banyak satu putaran mahkota mengisi arloji?',
|
|
91
|
+
'acceptedAnswer': {
|
|
92
|
+
'@type': 'Answer',
|
|
93
|
+
'text': 'Tergantung pada mesinnya. Sebagian besar kaliber otomatis mencapai pengisian penuh dalam 30–40 putaran, jadi setiap putaran menambah sekitar 2,5–3,3% dari total cadangan. Mesin manual seperti Unitas 6498 juga membutuhkan sekitar 35 putaran untuk pengisian penuh.',
|
|
94
|
+
},
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
'@type': 'Question',
|
|
98
|
+
'name': 'Apakah memakai arloji mengisinya sama seperti memutar?',
|
|
99
|
+
'acceptedAnswer': {
|
|
100
|
+
'@type': 'Answer',
|
|
101
|
+
'text': 'Memakai mengisi lebih lambat dan bervariasi. Di pekerjaan meja, Anda mungkin mengisi 4–6% per jam melalui rotor. Saat bergerak aktif, bisa mencapai 8–10% per jam. Memutar dengan tangan lebih cepat dan lebih dapat diprediksi.',
|
|
102
|
+
},
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
'@type': 'Question',
|
|
106
|
+
'name': 'Berapa banyak cadangan yang hilang per jam?',
|
|
107
|
+
'acceptedAnswer': {
|
|
108
|
+
'@type': 'Answer',
|
|
109
|
+
'text': 'Pengurasannya konstan: bagi 100 dengan cadangan daya dalam jam. Mesin 38 jam kehilangan sekitar 2,6% per jam, 42 jam kehilangan 2,4%, dan 70 jam kehilangan sekitar 1,4% per jam.',
|
|
110
|
+
},
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
'@type': 'Question',
|
|
114
|
+
'name': 'Bisakah saya mengisi arloji secara berlebihan?',
|
|
115
|
+
'acceptedAnswer': {
|
|
116
|
+
'@type': 'Answer',
|
|
117
|
+
'text': 'Mesin otomatis modern memiliki kopling selip yang mencegah pengisian berlebihan. Setelah pegas utama terisi penuh, putaran tambahan akan selip begitu saja.',
|
|
118
|
+
},
|
|
119
|
+
},
|
|
120
|
+
],
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
'@context': 'https://schema.org',
|
|
124
|
+
'@type': 'SoftwareApplication',
|
|
125
|
+
'name': 'Estimator Cadangan Daya Arloji',
|
|
126
|
+
'operatingSystem': 'Semua',
|
|
127
|
+
'applicationCategory': 'UtilitiesApplication',
|
|
128
|
+
'browserRequirements': 'Memerlukan HTML5. Memerlukan JavaScript.',
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
'@context': 'https://schema.org',
|
|
132
|
+
'@type': 'HowTo',
|
|
133
|
+
'name': 'Cara memperkirakan cadangan daya arloji Anda',
|
|
134
|
+
'step': [
|
|
135
|
+
{
|
|
136
|
+
'@type': 'HowToStep',
|
|
137
|
+
'name': 'Pilih mesin Anda',
|
|
138
|
+
'text': 'Pilih kaliber arloji Anda dari menu tarik-turun. Jika tidak terdaftar, pilih Kustom dan masukkan cadangan daya serta putaran hingga penuhnya.',
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
'@type': 'HowToStep',
|
|
142
|
+
'name': 'Masukkan data Anda',
|
|
143
|
+
'text': 'Ketik berapa putaran mahkota yang Anda berikan, atau berapa jam Anda memakainya hari ini. Anda bisa mengisi keduanya untuk perkiraan gabungan.',
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
'@type': 'HowToStep',
|
|
147
|
+
'name': 'Hitung',
|
|
148
|
+
'text': 'Tekan tombol Hitung. Hasilnya menunjukkan perkiraan persentase pengisian dan sisa jam cadangan daya.',
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
'@type': 'HowToStep',
|
|
152
|
+
'name': 'Sesuaikan kebiasaan Anda',
|
|
153
|
+
'text': 'Gunakan hasilnya untuk memutuskan apakah Anda perlu lebih banyak memutar sebelum tidur atau lebih banyak waktu pakai di siang hari agar arloji tetap berjalan.',
|
|
154
|
+
},
|
|
155
|
+
],
|
|
156
|
+
},
|
|
157
|
+
],
|
|
158
|
+
};
|
|
@@ -0,0 +1,158 @@
|
|
|
1
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
2
|
+
import type { PowerReserveEstimatorUI } from '../entry';
|
|
3
|
+
import { bibliography } from '../bibliography';
|
|
4
|
+
|
|
5
|
+
export const content: ToolLocaleContent<PowerReserveEstimatorUI> = {
|
|
6
|
+
slug: 'calcolatore-riserva-carica',
|
|
7
|
+
title: 'Calcolatore Riserva di Carica',
|
|
8
|
+
description: 'Stima la riserva di carica residua del tuo orologio in base ai giri di corona e alle ore di utilizzo. Funziona con i calibri pi\u00f9 diffusi ETA, Sellita, Miyota, Seiko e Rolex.',
|
|
9
|
+
ui: {
|
|
10
|
+
title: 'Calcolatore Riserva di Carica',
|
|
11
|
+
movementLabel: 'Movimento',
|
|
12
|
+
selectMovement: 'Seleziona movimento',
|
|
13
|
+
customMovement: 'Personalizzato',
|
|
14
|
+
turnsLabel: 'Giri di Corona',
|
|
15
|
+
hoursLabel: 'Ore di Utilizzo',
|
|
16
|
+
turnsInput: 'Giri',
|
|
17
|
+
hoursInput: 'Ore',
|
|
18
|
+
activityLabel: 'Attivit\u00e0',
|
|
19
|
+
activityLow: 'Scrivania',
|
|
20
|
+
activityMedium: 'Cammino',
|
|
21
|
+
activityHigh: 'Attivo',
|
|
22
|
+
calculate: 'Calcola',
|
|
23
|
+
reserveRemaining: 'Riserva Residua',
|
|
24
|
+
hoursRemaining: 'Residua',
|
|
25
|
+
chargePercent: 'Carica',
|
|
26
|
+
resultLabel: 'Riserva Stimata',
|
|
27
|
+
stopTimeLabel: 'Funziona fino',
|
|
28
|
+
powerReserveHours: 'Riserva (h)',
|
|
29
|
+
fullWindTurns: 'Giri a carica piena',
|
|
30
|
+
step1: 'Seleziona il tuo movimento dal menu a tendina.',
|
|
31
|
+
step2: 'Inserisci i giri di corona e le ore di utilizzo.',
|
|
32
|
+
step3: 'Premi Calcola per vedere la tua riserva.',
|
|
33
|
+
tipTitle: 'Consiglio',
|
|
34
|
+
tipContent: 'I movimenti a carica manuale si caricano solo quando giri la corona. I movimenti automatici si caricano anche mentre li indossi.',
|
|
35
|
+
},
|
|
36
|
+
seo: [
|
|
37
|
+
{ type: 'title', text: 'Calcolatore Riserva di Carica \u2014 Quanta riserva ha ancora il tuo movimento?', level: 2 },
|
|
38
|
+
{ type: 'paragraph', html: 'Ti chiedi quanta energia rimane al tuo orologio meccanico? Che tu abbia caricato la corona stamattina o indossato l\u2019orologio tutto il giorno, questo calcolatore ti indica il livello di carica approssimativo e le ore residue per calibri popolari come <strong>ETA, Sellita, Miyota, Seiko e Rolex</strong>.' },
|
|
39
|
+
{ type: 'title', text: 'Come funziona la riserva di carica in un orologio meccanico', level: 3 },
|
|
40
|
+
{ type: 'paragraph', html: 'La riserva di carica \u00e8 la quantit\u00e0 di energia immagazzinata nella molla motrice. Quando carichi la corona, tendi la molla, immagazzinando energia potenziale. Un rotore automatico tende la molla anche mentre indossi l\u2019orologio. L\u2019energia si scarica a un ritmo costante \u2014 tipicamente 2\u20133% all\u2019ora \u2014 fino a quando l\u2019orologio si ferma.' },
|
|
41
|
+
{ type: 'title', text: 'Carica manuale vs. Carica tramite rotore', level: 3 },
|
|
42
|
+
{ type: 'paragraph', html: 'La carica manuale tramite corona \u00e8 il metodo pi\u00f9 efficiente per caricare un orologio \u2014 ogni giro completo aggiunge una quantit\u00e0 prevedibile di energia, solitamente circa il 2,5% della riserva totale. Indossare l\u2019orologio carica pi\u00f9 lentamente e dipende dal tuo livello di attivit\u00e0: un impiegato d\u2019ufficio pu\u00f2 caricare il 4\u20136% all\u2019ora, mentre una persona attiva pu\u00f2 arrivare all\u20198\u201310%. Questo calcolatore utilizza una media prudenziale.' },
|
|
43
|
+
{ type: 'title', text: 'Perch\u00e9 stimare la riserva di carica \u00e8 importante', level: 3 },
|
|
44
|
+
{ type: 'paragraph', html: 'Conoscere il livello di carica del tuo orologio aiuta a evitare arresti imprevisti. Un orologio che si ferma durante la notte potrebbe aver bisogno di pi\u00f9 carica prima di andare a letto, o potrebbe non essere indossato abbastanza. Usa questo strumento per capire le tue abitudini di carica e mantenere il tuo automatico in funzione.' },
|
|
45
|
+
],
|
|
46
|
+
faq: [
|
|
47
|
+
{
|
|
48
|
+
question: 'Quanto carica un giro di corona l\u2019orologio?',
|
|
49
|
+
answer: 'Dipende dal movimento. La maggior parte dei calibri automatici raggiunge la carica completa in 30\u201340 giri, quindi ogni giro aggiunge circa il 2,5\u20133,3% della riserva totale. I movimenti a carica manuale come l\u2019Unitas 6498 necessitano di circa 35 giri per una carica completa.',
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
question: 'Indossare l\u2019orologio lo carica quanto la carica manuale?',
|
|
53
|
+
answer: 'Indossarlo carica pi\u00f9 lentamente e in modo variabile. In un lavoro d\u2019ufficio, puoi caricare il 4\u20136% all\u2019ora tramite il rotore. Durante movimento attivo (camminare, sport), pu\u00f2 raggiungere l\u20198\u201310% all\u2019ora. La carica a mano \u00e8 pi\u00f9 veloce e prevedibile.',
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
question: 'Quanta riserva perde un orologio all\u2019ora?',
|
|
57
|
+
answer: 'Il consumo \u00e8 costante: dividi 100 per la riserva di carica in ore. Un movimento da 38 ore perde circa il 2,6% all\u2019ora, uno da 42 ore perde il 2,4% e uno da 70 ore perde circa l\u20191,4% all\u2019ora.',
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
question: 'Posso sovraccaricare il mio orologio?',
|
|
61
|
+
answer: 'I movimenti automatici moderni hanno un meccanismo a frizione che impedisce il sovraccarico. Una volta che la molla motrice \u00e8 completamente carica, i giri aggiuntivi slittano semplicemente. Anche i movimenti a carica manuale hanno un arresto, ma forzare oltre il limite pu\u00f2 danneggiare la molla motrice.',
|
|
62
|
+
},
|
|
63
|
+
],
|
|
64
|
+
bibliography,
|
|
65
|
+
howTo: [
|
|
66
|
+
{
|
|
67
|
+
name: 'Seleziona il tuo movimento',
|
|
68
|
+
text: 'Scegli il calibro del tuo orologio dal menu a tendina. Se non \u00e8 elencato, seleziona Personalizzato e inserisci la sua riserva di carica e i giri a carica piena.',
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
name: 'Inserisci i dati',
|
|
72
|
+
text: 'Inserisci quanti giri di corona hai effettuato o per quante ore hai indossato l\u2019orologio oggi. Puoi compilare entrambi per una stima combinata.',
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
name: 'Calcola',
|
|
76
|
+
text: 'Premi il pulsante Calcola. Il risultato mostra la percentuale di carica stimata e le ore residue di riserva di carica.',
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
name: 'Regola le tue abitudini',
|
|
80
|
+
text: 'Usa i risultati per decidere se hai bisogno di pi\u00f9 carica prima di dormire o di pi\u00f9 ore di utilizzo durante il giorno per mantenere l\u2019orologio in funzione.',
|
|
81
|
+
},
|
|
82
|
+
],
|
|
83
|
+
schemas: [
|
|
84
|
+
{
|
|
85
|
+
'@context': 'https://schema.org',
|
|
86
|
+
'@type': 'FAQPage',
|
|
87
|
+
'mainEntity': [
|
|
88
|
+
{
|
|
89
|
+
'@type': 'Question',
|
|
90
|
+
'name': 'Quanto carica un giro di corona l\'orologio?',
|
|
91
|
+
'acceptedAnswer': {
|
|
92
|
+
'@type': 'Answer',
|
|
93
|
+
'text': 'Dipende dal movimento. La maggior parte dei calibri automatici raggiunge la carica completa in 30–40 giri, quindi ogni giro aggiunge circa il 2,5–3,3% della riserva totale. I movimenti a carica manuale come l\'Unitas 6498 necessitano di circa 35 giri per una carica completa.',
|
|
94
|
+
},
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
'@type': 'Question',
|
|
98
|
+
'name': 'Indossare l\'orologio lo carica quanto la carica manuale?',
|
|
99
|
+
'acceptedAnswer': {
|
|
100
|
+
'@type': 'Answer',
|
|
101
|
+
'text': 'Indossarlo carica più lentamente e in modo variabile. In un lavoro d\'ufficio, puoi caricare il 4–6% all\'ora tramite il rotore. Durante movimento attivo può raggiungere l\'8–10% all\'ora. La carica a mano è più veloce e prevedibile.',
|
|
102
|
+
},
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
'@type': 'Question',
|
|
106
|
+
'name': 'Quanta riserva perde un orologio all\'ora?',
|
|
107
|
+
'acceptedAnswer': {
|
|
108
|
+
'@type': 'Answer',
|
|
109
|
+
'text': 'Il consumo è costante: dividi 100 per la riserva di carica in ore. Un movimento da 38 ore perde circa il 2,6% all\'ora, uno da 42 ore perde il 2,4% e uno da 70 ore perde circa l\'1,4% all\'ora.',
|
|
110
|
+
},
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
'@type': 'Question',
|
|
114
|
+
'name': 'Posso sovraccaricare il mio orologio?',
|
|
115
|
+
'acceptedAnswer': {
|
|
116
|
+
'@type': 'Answer',
|
|
117
|
+
'text': 'I movimenti automatici moderni hanno un meccanismo a frizione che impedisce il sovraccarico. Una volta che la molla motrice è completamente carica, i giri aggiuntivi slittano semplicemente.',
|
|
118
|
+
},
|
|
119
|
+
},
|
|
120
|
+
],
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
'@context': 'https://schema.org',
|
|
124
|
+
'@type': 'SoftwareApplication',
|
|
125
|
+
'name': 'Calcolatore Riserva di Carica',
|
|
126
|
+
'operatingSystem': 'Tutti',
|
|
127
|
+
'applicationCategory': 'UtilitiesApplication',
|
|
128
|
+
'browserRequirements': 'Richiede HTML5. Richiede JavaScript.',
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
'@context': 'https://schema.org',
|
|
132
|
+
'@type': 'HowTo',
|
|
133
|
+
'name': 'Come stimare la riserva di carica del tuo orologio',
|
|
134
|
+
'step': [
|
|
135
|
+
{
|
|
136
|
+
'@type': 'HowToStep',
|
|
137
|
+
'name': 'Seleziona il tuo movimento',
|
|
138
|
+
'text': 'Scegli il calibro del tuo orologio dal menu a tendina. Se non è elencato, seleziona Personalizzato e inserisci la sua riserva di carica e i giri a carica piena.',
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
'@type': 'HowToStep',
|
|
142
|
+
'name': 'Inserisci i dati',
|
|
143
|
+
'text': 'Inserisci quanti giri di corona hai effettuato o per quante ore hai indossato l\'orologio oggi. Puoi compilare entrambi per una stima combinata.',
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
'@type': 'HowToStep',
|
|
147
|
+
'name': 'Calcola',
|
|
148
|
+
'text': 'Premi il pulsante Calcola. Il risultato mostra la percentuale di carica stimata e le ore residue di riserva di carica.',
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
'@type': 'HowToStep',
|
|
152
|
+
'name': 'Regola le tue abitudini',
|
|
153
|
+
'text': 'Usa i risultati per decidere se hai bisogno di più carica prima di dormire o di più ore di utilizzo durante il giorno per mantenere l\'orologio in funzione.',
|
|
154
|
+
},
|
|
155
|
+
],
|
|
156
|
+
},
|
|
157
|
+
],
|
|
158
|
+
};
|
|
@@ -0,0 +1,158 @@
|
|
|
1
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
2
|
+
import type { PowerReserveEstimatorUI } from '../entry';
|
|
3
|
+
import { bibliography } from '../bibliography';
|
|
4
|
+
|
|
5
|
+
export const content: ToolLocaleContent<PowerReserveEstimatorUI> = {
|
|
6
|
+
slug: 'power-reserve-estimator',
|
|
7
|
+
title: '腕時計パワーリザーブ見積もり',
|
|
8
|
+
description: 'りゅうずの回転数と装着時間から、腕時計の残りパワーリザーブを推定します。ETA、Sellita、Miyota、Seiko、Rolex の主要キャリバーに対応。',
|
|
9
|
+
ui: {
|
|
10
|
+
title: 'パワーリザーブ見積もり',
|
|
11
|
+
movementLabel: 'ムーブメント',
|
|
12
|
+
selectMovement: 'ムーブメントを選択',
|
|
13
|
+
customMovement: 'カスタム',
|
|
14
|
+
turnsLabel: 'りゅうず回転数',
|
|
15
|
+
hoursLabel: '装着時間',
|
|
16
|
+
turnsInput: '回転',
|
|
17
|
+
hoursInput: '時間',
|
|
18
|
+
activityLabel: '活動量',
|
|
19
|
+
activityLow: 'デスクワーク',
|
|
20
|
+
activityMedium: '歩行',
|
|
21
|
+
activityHigh: 'アクティブ',
|
|
22
|
+
calculate: '計算',
|
|
23
|
+
reserveRemaining: '残りパワーリザーブ',
|
|
24
|
+
hoursRemaining: '残り時間',
|
|
25
|
+
chargePercent: '充電率',
|
|
26
|
+
resultLabel: '推定パワーリザーブ',
|
|
27
|
+
stopTimeLabel: '停止予定',
|
|
28
|
+
powerReserveHours: 'パワーリザーブ(h)',
|
|
29
|
+
fullWindTurns: '満充填に必要な回転数',
|
|
30
|
+
step1: 'ドロップダウンからムーブメントを選択してください。',
|
|
31
|
+
step2: 'りゅうずの回転数と装着時間を入力してください。',
|
|
32
|
+
step3: '「計算」を押すとパワーリザーブが表示されます。',
|
|
33
|
+
tipTitle: 'ヒント',
|
|
34
|
+
tipContent: '手巻きムーブメントはりゅうずを回したときだけ充電されます。自動巻きムーブメントは装着中も充電されます。',
|
|
35
|
+
},
|
|
36
|
+
seo: [
|
|
37
|
+
{ type: 'title', text: '腕時計パワーリザーブ見積もり\u2014あなたのムーブメントに残っている駆動力は?', level: 2 },
|
|
38
|
+
{ type: 'paragraph', html: '機械式時計にどれだけのパワーが残っているか気になりませんか?朝りゅうずを巻いた場合でも、一日中装着した場合でも、この見積もりツールが <strong>ETA、Sellita、Miyota、Seiko、Rolex</strong> などの人気キャリバーのおおよその充電率と残り時間を教えてくれます。' },
|
|
39
|
+
{ type: 'title', text: '機械式時計におけるパワーリザーブの仕組み', level: 3 },
|
|
40
|
+
{ type: 'paragraph', html: 'パワーリザーブとは、ゼンマイに蓄えられたエネルギーの量です。りゅうずを巻くとゼンマイが締まり、位置エネルギーが蓄えられます。自動巻きのローターも時計を装着している間にゼンマイを巻き上げます。その後、エネルギーは一定の割合\u2014通常は毎時2~3%\u2014で消費され、時計が停止します。' },
|
|
41
|
+
{ type: 'title', text: 'りゅうず巻きとローター充電の違い', level: 3 },
|
|
42
|
+
{ type: 'paragraph', html: 'りゅうずによる手巻きは時計を充電する最も効率的な方法です\u2014毎回転あたり予測可能な量のエネルギーが加わり、通常は総パワーリザーブの約2.5%です。装着中の充電はよりゆっくりで、活動量に依存します。オフィスワーカーなら毎時4~6%、アクティブな人なら毎時8~10%ほど充電されます。この見積もりツールでは控えめな平均値を用いています。' },
|
|
43
|
+
{ type: 'title', text: 'パワーリザーブ見積もりが重要な理由', level: 3 },
|
|
44
|
+
{ type: 'paragraph', html: '時計の充電状態を知っておくと、予期せぬ停止を防げます。夜間に時計が止まってしまう場合は、就寝前にもっと巻く必要があるか、十分な装着時間が取れていない可能性があります。このツールを使って充電習慣を把握し、自動巻き時計を動かし続けましょう。' },
|
|
45
|
+
],
|
|
46
|
+
faq: [
|
|
47
|
+
{
|
|
48
|
+
question: 'りゅうずを1回回すとどれくらい充電されますか?',
|
|
49
|
+
answer: 'ムーブメントによって異なります。ほとんどの自動巻きキャリバーは30~40回転で満充填になるため、1回転あたり総パワーリザーブの約2.5~3.3%が加わります。Unitas 6498のような手巻きムーブメントも満充填に約35回転が必要です。',
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
question: '装着中の充電は手巻きと同じくらい効果がありますか?',
|
|
53
|
+
answer: '装着中の充電はよりゆっくりで、ばらつきがあります。デスクワークの場合、ローターによる充電は毎時4~6%程度です。活発な動き(歩行、スポーツ)がある場合は毎時8~10%に達することもあります。手巻きの方が速くて予測しやすいです。',
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
question: '時計は1時間あたりどれくらいパワーリザーブを消費しますか?',
|
|
57
|
+
answer: '消費は一定です。100をパワーリザーブ時間で割ってください。38時間のムーブメントは毎時約2.6%、42時間は毎時2.4%、70時間は毎時約1.4%を消費します。',
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
question: '巻きすぎると壊れますか?',
|
|
61
|
+
answer: '現代の自動巻きムーブメントには滑りクラッチが搭載されており、巻きすぎを防止します。ゼンマイが完全に巻かれると、それ以上の回転は空回りします。手巻きムーブメントにも停止機構がありますが、無理に回すとゼンマイを傷める可能性があります。',
|
|
62
|
+
},
|
|
63
|
+
],
|
|
64
|
+
bibliography,
|
|
65
|
+
howTo: [
|
|
66
|
+
{
|
|
67
|
+
name: 'ムーブメントを選択',
|
|
68
|
+
text: 'ドロップダウンからお使いの時計のキャリバーを選んでください。一覧にない場合は「カスタム」を選択し、パワーリザーブと満充填までの回転数を入力してください。',
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
name: '入力を記入',
|
|
72
|
+
text: 'りゅうずを回した回数と、今日装着した時間を入力してください。両方入力すると合算した推定値が表示されます。',
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
name: '計算',
|
|
76
|
+
text: '「計算」ボタンを押してください。結果には推定充電率と残りパワーリザーブ時間が表示されます。',
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
name: '習慣を見直す',
|
|
80
|
+
text: '結果をもとに、就寝前にもっと巻く必要があるか、日中にもっと装着時間を増やす必要があるかを判断し、時計を動かし続けましょう。',
|
|
81
|
+
},
|
|
82
|
+
],
|
|
83
|
+
schemas: [
|
|
84
|
+
{
|
|
85
|
+
'@context': 'https://schema.org',
|
|
86
|
+
'@type': 'FAQPage',
|
|
87
|
+
'mainEntity': [
|
|
88
|
+
{
|
|
89
|
+
'@type': 'Question',
|
|
90
|
+
'name': 'りゅうずを1回回すとどれくらい充電されますか?',
|
|
91
|
+
'acceptedAnswer': {
|
|
92
|
+
'@type': 'Answer',
|
|
93
|
+
'text': 'ムーブメントによって異なります。ほとんどの自動巻きキャリバーは30~40回転で満充填になるため、1回転あたり総パワーリザーブの約2.5~3.3%が加わります。Unitas 6498のような手巻きムーブメントも満充填に約35回転が必要です。',
|
|
94
|
+
},
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
'@type': 'Question',
|
|
98
|
+
'name': '装着中の充電は手巻きと同じくらい効果がありますか?',
|
|
99
|
+
'acceptedAnswer': {
|
|
100
|
+
'@type': 'Answer',
|
|
101
|
+
'text': '装着中の充電はよりゆっくりで、ばらつきがあります。デスクワークの場合、ローターによる充電は毎時4~6%程度です。活発な動きがある場合は毎時8~10%に達することもあります。手巻きの方が速くて予測しやすいです。',
|
|
102
|
+
},
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
'@type': 'Question',
|
|
106
|
+
'name': '時計は1時間あたりどれくらいパワーリザーブを消費しますか?',
|
|
107
|
+
'acceptedAnswer': {
|
|
108
|
+
'@type': 'Answer',
|
|
109
|
+
'text': '消費は一定です。100をパワーリザーブ時間で割ってください。38時間のムーブメントは毎時約2.6%、42時間は毎時2.4%、70時間は毎時約1.4%を消費します。',
|
|
110
|
+
},
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
'@type': 'Question',
|
|
114
|
+
'name': '巻きすぎると壊れますか?',
|
|
115
|
+
'acceptedAnswer': {
|
|
116
|
+
'@type': 'Answer',
|
|
117
|
+
'text': '現代の自動巻きムーブメントには滑りクラッチが搭載されており、巻きすぎを防止します。ゼンマイが完全に巻かれると、それ以上の回転は空回りします。',
|
|
118
|
+
},
|
|
119
|
+
},
|
|
120
|
+
],
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
'@context': 'https://schema.org',
|
|
124
|
+
'@type': 'SoftwareApplication',
|
|
125
|
+
'name': '腕時計パワーリザーブ見積もり',
|
|
126
|
+
'operatingSystem': 'All',
|
|
127
|
+
'applicationCategory': 'UtilitiesApplication',
|
|
128
|
+
'browserRequirements': 'Requires HTML5. Requires JavaScript.',
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
'@context': 'https://schema.org',
|
|
132
|
+
'@type': 'HowTo',
|
|
133
|
+
'name': '腕時計のパワーリザーブを見積もる方法',
|
|
134
|
+
'step': [
|
|
135
|
+
{
|
|
136
|
+
'@type': 'HowToStep',
|
|
137
|
+
'name': 'ムーブメントを選択',
|
|
138
|
+
'text': 'ドロップダウンからお使いの時計のキャリバーを選んでください。一覧にない場合は「カスタム」を選択し、パワーリザーブと満充填までの回転数を入力してください。',
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
'@type': 'HowToStep',
|
|
142
|
+
'name': '入力を記入',
|
|
143
|
+
'text': 'りゅうずを回した回数と、今日装着した時間を入力してください。両方入力すると合算した推定値が表示されます。',
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
'@type': 'HowToStep',
|
|
147
|
+
'name': '計算',
|
|
148
|
+
'text': '「計算」ボタンを押してください。結果には推定充電率と残りパワーリザーブ時間が表示されます。',
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
'@type': 'HowToStep',
|
|
152
|
+
'name': '習慣を見直す',
|
|
153
|
+
'text': '結果をもとに、就寝前にもっと巻く必要があるか、日中にもっと装着時間を増やす必要があるかを判断し、時計を動かし続けましょう。',
|
|
154
|
+
},
|
|
155
|
+
],
|
|
156
|
+
},
|
|
157
|
+
],
|
|
158
|
+
};
|