@jjlmoya/utils-chrono 1.3.0 → 1.4.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.
Files changed (160) hide show
  1. package/package.json +1 -1
  2. package/src/category/i18n/de.ts +11 -9
  3. package/src/category/i18n/en.ts +11 -9
  4. package/src/category/i18n/fr.ts +11 -9
  5. package/src/category/i18n/id.ts +11 -9
  6. package/src/category/i18n/it.ts +11 -9
  7. package/src/category/i18n/ja.ts +11 -9
  8. package/src/category/i18n/ko.ts +11 -9
  9. package/src/category/i18n/nl.ts +11 -9
  10. package/src/category/i18n/pl.ts +11 -9
  11. package/src/category/i18n/pt.ts +11 -9
  12. package/src/category/i18n/ru.ts +11 -9
  13. package/src/category/i18n/sv.ts +11 -9
  14. package/src/category/i18n/tr.ts +11 -9
  15. package/src/category/i18n/zh.ts +11 -9
  16. package/src/category/index.ts +6 -0
  17. package/src/entries.ts +10 -1
  18. package/src/index.ts +3 -0
  19. package/src/tests/locale_completeness.test.ts +1 -1
  20. package/src/tests/no_h1_in_components.test.ts +1 -1
  21. package/src/tests/tool_validation.test.ts +1 -1
  22. package/src/tool/beat-rate-converter/bibliography.ts +1 -1
  23. package/src/tool/beat-rate-converter/components/ConverterPanel.astro +57 -20
  24. package/src/tool/beat-rate-converter/i18n/en.ts +5 -5
  25. package/src/tool/crown-reference-guide/bibliography.ts +3 -3
  26. package/src/tool/crown-reference-guide/i18n/de.ts +37 -29
  27. package/src/tool/crown-reference-guide/i18n/en.ts +38 -30
  28. package/src/tool/crown-reference-guide/i18n/es.ts +36 -28
  29. package/src/tool/crown-reference-guide/i18n/fr.ts +38 -30
  30. package/src/tool/crown-reference-guide/i18n/id.ts +38 -30
  31. package/src/tool/crown-reference-guide/i18n/it.ts +38 -30
  32. package/src/tool/crown-reference-guide/i18n/ja.ts +38 -30
  33. package/src/tool/crown-reference-guide/i18n/ko.ts +38 -30
  34. package/src/tool/crown-reference-guide/i18n/nl.ts +38 -30
  35. package/src/tool/crown-reference-guide/i18n/pl.ts +38 -30
  36. package/src/tool/crown-reference-guide/i18n/pt.ts +38 -30
  37. package/src/tool/crown-reference-guide/i18n/ru.ts +41 -33
  38. package/src/tool/crown-reference-guide/i18n/sv.ts +38 -30
  39. package/src/tool/crown-reference-guide/i18n/tr.ts +38 -30
  40. package/src/tool/crown-reference-guide/i18n/zh.ts +37 -29
  41. package/src/tool/demagnetizing-timer/i18n/de.ts +1 -1
  42. package/src/tool/demagnetizing-timer/i18n/en.ts +1 -1
  43. package/src/tool/demagnetizing-timer/i18n/es.ts +1 -1
  44. package/src/tool/demagnetizing-timer/i18n/fr.ts +1 -1
  45. package/src/tool/demagnetizing-timer/i18n/id.ts +1 -1
  46. package/src/tool/demagnetizing-timer/i18n/it.ts +1 -1
  47. package/src/tool/demagnetizing-timer/i18n/ja.ts +1 -1
  48. package/src/tool/demagnetizing-timer/i18n/ko.ts +1 -1
  49. package/src/tool/demagnetizing-timer/i18n/nl.ts +1 -1
  50. package/src/tool/demagnetizing-timer/i18n/pl.ts +2 -2
  51. package/src/tool/demagnetizing-timer/i18n/pt.ts +1 -1
  52. package/src/tool/demagnetizing-timer/i18n/ru.ts +7 -7
  53. package/src/tool/demagnetizing-timer/i18n/sv.ts +1 -1
  54. package/src/tool/demagnetizing-timer/i18n/tr.ts +1 -1
  55. package/src/tool/demagnetizing-timer/i18n/zh.ts +1 -1
  56. package/src/tool/lume-color-simulator/bibliography.astro +16 -0
  57. package/src/tool/lume-color-simulator/bibliography.ts +16 -0
  58. package/src/tool/lume-color-simulator/client.ts +186 -0
  59. package/src/tool/lume-color-simulator/component.astro +17 -0
  60. package/src/tool/lume-color-simulator/components/LumePanel.astro +98 -0
  61. package/src/tool/lume-color-simulator/entry.ts +57 -0
  62. package/src/tool/lume-color-simulator/i18n/de.ts +174 -0
  63. package/src/tool/lume-color-simulator/i18n/en.ts +174 -0
  64. package/src/tool/lume-color-simulator/i18n/es.ts +174 -0
  65. package/src/tool/lume-color-simulator/i18n/fr.ts +174 -0
  66. package/src/tool/lume-color-simulator/i18n/id.ts +174 -0
  67. package/src/tool/lume-color-simulator/i18n/it.ts +175 -0
  68. package/src/tool/lume-color-simulator/i18n/ja.ts +174 -0
  69. package/src/tool/lume-color-simulator/i18n/ko.ts +174 -0
  70. package/src/tool/lume-color-simulator/i18n/nl.ts +175 -0
  71. package/src/tool/lume-color-simulator/i18n/pl.ts +174 -0
  72. package/src/tool/lume-color-simulator/i18n/pt.ts +174 -0
  73. package/src/tool/lume-color-simulator/i18n/ru.ts +174 -0
  74. package/src/tool/lume-color-simulator/i18n/sv.ts +174 -0
  75. package/src/tool/lume-color-simulator/i18n/tr.ts +174 -0
  76. package/src/tool/lume-color-simulator/i18n/zh.ts +174 -0
  77. package/src/tool/lume-color-simulator/index.ts +11 -0
  78. package/src/tool/lume-color-simulator/lume-color-simulator.css +208 -0
  79. package/src/tool/lume-color-simulator/seo.astro +16 -0
  80. package/src/tool/moon-phase-visualizer/bibliography.astro +16 -0
  81. package/src/tool/moon-phase-visualizer/bibliography.ts +16 -0
  82. package/src/tool/moon-phase-visualizer/client.ts +243 -0
  83. package/src/tool/moon-phase-visualizer/component.astro +17 -0
  84. package/src/tool/moon-phase-visualizer/components/MoonPanel.astro +63 -0
  85. package/src/tool/moon-phase-visualizer/entry.ts +51 -0
  86. package/src/tool/moon-phase-visualizer/i18n/de.ts +175 -0
  87. package/src/tool/moon-phase-visualizer/i18n/en.ts +175 -0
  88. package/src/tool/moon-phase-visualizer/i18n/es.ts +175 -0
  89. package/src/tool/moon-phase-visualizer/i18n/fr.ts +175 -0
  90. package/src/tool/moon-phase-visualizer/i18n/id.ts +175 -0
  91. package/src/tool/moon-phase-visualizer/i18n/it.ts +176 -0
  92. package/src/tool/moon-phase-visualizer/i18n/ja.ts +175 -0
  93. package/src/tool/moon-phase-visualizer/i18n/ko.ts +175 -0
  94. package/src/tool/moon-phase-visualizer/i18n/nl.ts +176 -0
  95. package/src/tool/moon-phase-visualizer/i18n/pl.ts +175 -0
  96. package/src/tool/moon-phase-visualizer/i18n/pt.ts +175 -0
  97. package/src/tool/moon-phase-visualizer/i18n/ru.ts +175 -0
  98. package/src/tool/moon-phase-visualizer/i18n/sv.ts +175 -0
  99. package/src/tool/moon-phase-visualizer/i18n/tr.ts +175 -0
  100. package/src/tool/moon-phase-visualizer/i18n/zh.ts +175 -0
  101. package/src/tool/moon-phase-visualizer/index.ts +11 -0
  102. package/src/tool/moon-phase-visualizer/moon-phase-visualizer.css +216 -0
  103. package/src/tool/moon-phase-visualizer/seo.astro +16 -0
  104. package/src/tool/power-reserve-estimator/bibliography.ts +2 -2
  105. package/src/tool/power-reserve-estimator/components/EstimatorPanel.astro +146 -39
  106. package/src/tool/power-reserve-estimator/i18n/en.ts +3 -3
  107. package/src/tool/strap-taper-calculator/i18n/en.ts +2 -2
  108. package/src/tool/strap-taper-calculator/i18n/ru.ts +3 -3
  109. package/src/tool/watch-accuracy-tracker/i18n/ru.ts +2 -2
  110. package/src/tool/watch-savings-planner/i18n/en.ts +5 -5
  111. package/src/tool/watch-size-comparator/bibliography.astro +16 -0
  112. package/src/tool/watch-size-comparator/bibliography.ts +16 -0
  113. package/src/tool/watch-size-comparator/client.ts +287 -0
  114. package/src/tool/watch-size-comparator/component.astro +17 -0
  115. package/src/tool/watch-size-comparator/components/WatchForm.astro +121 -0
  116. package/src/tool/watch-size-comparator/drawing/index.ts +79 -0
  117. package/src/tool/watch-size-comparator/drawing/measures.ts +57 -0
  118. package/src/tool/watch-size-comparator/drawing/utils.ts +37 -0
  119. package/src/tool/watch-size-comparator/drawing/watch.ts +78 -0
  120. package/src/tool/watch-size-comparator/entry.ts +62 -0
  121. package/src/tool/watch-size-comparator/i18n/de.ts +189 -0
  122. package/src/tool/watch-size-comparator/i18n/en.ts +189 -0
  123. package/src/tool/watch-size-comparator/i18n/es.ts +189 -0
  124. package/src/tool/watch-size-comparator/i18n/fr.ts +189 -0
  125. package/src/tool/watch-size-comparator/i18n/id.ts +189 -0
  126. package/src/tool/watch-size-comparator/i18n/it.ts +190 -0
  127. package/src/tool/watch-size-comparator/i18n/ja.ts +189 -0
  128. package/src/tool/watch-size-comparator/i18n/ko.ts +189 -0
  129. package/src/tool/watch-size-comparator/i18n/nl.ts +190 -0
  130. package/src/tool/watch-size-comparator/i18n/pl.ts +189 -0
  131. package/src/tool/watch-size-comparator/i18n/pt.ts +189 -0
  132. package/src/tool/watch-size-comparator/i18n/ru.ts +189 -0
  133. package/src/tool/watch-size-comparator/i18n/sv.ts +189 -0
  134. package/src/tool/watch-size-comparator/i18n/tr.ts +189 -0
  135. package/src/tool/watch-size-comparator/i18n/zh.ts +189 -0
  136. package/src/tool/watch-size-comparator/index.ts +11 -0
  137. package/src/tool/watch-size-comparator/seo.astro +16 -0
  138. package/src/tool/watch-size-comparator/watch-size-comparator.css +373 -0
  139. package/src/tool/water-resistance-converter/bibliography.ts +2 -2
  140. package/src/tool/water-resistance-converter/i18n/de.ts +5 -5
  141. package/src/tool/water-resistance-converter/i18n/en.ts +6 -6
  142. package/src/tool/water-resistance-converter/i18n/es.ts +6 -6
  143. package/src/tool/water-resistance-converter/i18n/fr.ts +6 -6
  144. package/src/tool/water-resistance-converter/i18n/id.ts +6 -6
  145. package/src/tool/water-resistance-converter/i18n/it.ts +6 -6
  146. package/src/tool/water-resistance-converter/i18n/ja.ts +6 -6
  147. package/src/tool/water-resistance-converter/i18n/ko.ts +6 -6
  148. package/src/tool/water-resistance-converter/i18n/nl.ts +6 -6
  149. package/src/tool/water-resistance-converter/i18n/pl.ts +6 -6
  150. package/src/tool/water-resistance-converter/i18n/pt.ts +6 -6
  151. package/src/tool/water-resistance-converter/i18n/ru.ts +8 -8
  152. package/src/tool/water-resistance-converter/i18n/sv.ts +6 -6
  153. package/src/tool/water-resistance-converter/i18n/tr.ts +6 -6
  154. package/src/tool/water-resistance-converter/i18n/zh.ts +3 -3
  155. package/src/tool/wrist-presence-calculator/i18n/fr.ts +1 -1
  156. package/src/tool/wrist-presence-calculator/i18n/pl.ts +1 -1
  157. package/src/tool/wrist-presence-calculator/i18n/pt.ts +1 -1
  158. package/src/tool/wrist-presence-calculator/i18n/ru.ts +5 -5
  159. package/src/tool/wrist-presence-calculator/i18n/sv.ts +1 -1
  160. package/src/tools.ts +6 -0
@@ -0,0 +1,175 @@
1
+ import type { ToolLocaleContent } from '../../../types';
2
+ import type { MoonPhaseVisualizerUI } from '../entry';
3
+ import { bibliography } from '../bibliography';
4
+
5
+ export const content: ToolLocaleContent<MoonPhaseVisualizerUI> = {
6
+ slug: 'visualisator-fase-bulan',
7
+ title: 'Moon Phase Visualizer—Kalender Lunar & Alat Komplikasi Arloji',
8
+ description: 'Visualisasikan fase bulan saat ini, iluminasi, usia bulan, serta bulan purnama dan bulan baru mendatang. Sempurna untuk menyetel komplikasi fase bulan arloji Anda.',
9
+ ui: {
10
+ title: 'Visualisator Fase Bulan',
11
+ selectDate: 'Pilih Tanggal',
12
+ today: 'Hari Ini',
13
+ moonPhase: 'Fase Bulan',
14
+ illumination: 'Iluminasi',
15
+ moonAge: 'Usia Bulan',
16
+ daysUntilFull: 'Hari Menuju Bulan Purnama',
17
+ daysUntilNew: 'Hari Menuju Bulan Baru',
18
+ newMoon: 'Bulan Baru',
19
+ waxingCrescent: 'Sabit Muda',
20
+ firstQuarter: 'Kuartal Pertama',
21
+ waxingGibbous: 'Cembung Muda',
22
+ fullMoon: 'Bulan Purnama',
23
+ waningGibbous: 'Cembung Tua',
24
+ lastQuarter: 'Kuartal Terakhir',
25
+ waningCrescent: 'Sabit Tua',
26
+ nextFullMoon: 'Bulan Purnama Berikutnya',
27
+ nextNewMoon: 'Bulan Baru Berikutnya',
28
+ tipTitle: 'Tips',
29
+ tipContent: 'Untuk menyetel arloji fase bulan, cari tahu fase bulan hari ini menggunakan alat ini, lalu putar mahkota hingga piringan bulan sesuai. Sebagian besar fase bulan mekanis akurat dalam satu hari setiap 2 tahun.',
30
+ days: 'Kemajuan Siklus',
31
+ day: 'hari',
32
+ },
33
+ seo: [
34
+ { type: 'title', text: 'Moon Phase Visualizer—Alat Fase Bulan & Panduan Setting Arloji', level: 2 },
35
+ { type: 'paragraph', html: 'Moon Phase Visualizer menampilkan <strong>fase bulan terkini</strong> dengan rendering realistis. Lihat <strong>persentase iluminasi, usia bulan, hari menuju bulan purnama berikutnya, dan bulan baru berikutnya</strong>. Dirancang bagi penggemar arloji yang perlu menyetel komplikasi fase bulan secara akurat—juga berfungsi sebagai kalender lunar umum untuk tanggal kapan pun, masa lalu maupun masa depan.' },
36
+ { type: 'title', text: 'Glosarium Fase Bulan', level: 3 },
37
+ {
38
+ type: 'glossary', items: [
39
+ { term: 'Bulan Baru', definition: 'Bulan berada di antara Bumi dan matahari. Sisi yang diterangi menghadap menjauh dari kita. Iluminasi 0%. Awal siklus lunar.' },
40
+ { term: 'Sabit Muda', definition: 'Iluminasi 1–49%. Sabit tipis muncul di sisi kanan (Belahan Bumi Utara). Bulan bergerak menuju kuartal pertama.' },
41
+ { term: 'Kuartal Pertama', definition: 'Iluminasi 50%. Setengah permukaan yang terlihat tersinari. Bulan telah menyelesaikan seperempat siklusnya.' },
42
+ { term: 'Cembung Muda', definition: 'Iluminasi 51–99%. Lebih dari setengahnya tersinari. Bulan sedang menuju purnama.' },
43
+ { term: 'Bulan Purnama', definition: 'Iluminasi 100%. Seluruh permukaan yang terlihat tersinari. Puncak siklus lunar.' },
44
+ { term: 'Cembung Tua', definition: 'Iluminasi 99–51%. Area yang tersinari mulai menyusut dari sisi kanan.' },
45
+ { term: 'Kuartal Terakhir', definition: 'Iluminasi 50%. Setengah kiri tersinari. Tiga perempat siklus selesai.' },
46
+ { term: 'Sabit Tua', definition: 'Iluminasi 49–1%. Sabit tipis di sisi kiri sebelum siklus kembali ke bulan baru.' },
47
+ ]
48
+ },
49
+ { type: 'title', text: 'Cara Menyetel Arloji Fase Bulan', level: 3 },
50
+ {
51
+ type: 'list', items: [
52
+ 'Gunakan alat ini untuk mencari tahu fase bulan hari ini. Catat nama fase dan tampilan visualnya.',
53
+ 'Pada arloji Anda, tarik mahkota ke posisi setelan fase bulan (biasanya posisi 2 atau 3).',
54
+ 'Putar mahkota hingga piringan bulan menunjukkan fase yang sama dengan alat ini. Indikator bulan purnama biasanya di tengah atas piringan.',
55
+ 'Hindari menyetel fase bulan antara jam 9 malam dan 3 pagi saat mekanisme penggantian tanggal sedang aktif dan dapat rusak.',
56
+ 'Sebagian besar arloji fase bulan mekanis menggunakan roda gigi 59-gigi yang mendekati dua siklus lunar (59 hari). Artinya, mereka meleset sekitar satu hari setiap 2 tahun.',
57
+ 'Untuk presisi tinggi, beberapa arloji (Patek Philippe, A. Lange & Söhne) menggunakan roda gigi yang akurat dalam satu hari setiap 100+ tahun.',
58
+ ]
59
+ },
60
+ { type: 'diagnostic', variant: 'warning', title: 'Jangan Pernah Setel Saat Penggantian Tanggal', icon: 'mdi:alert', html: 'Jangan menyetel fase bulan (atau tanggal) antara sekitar <strong>jam 9 malam dan 3 pagi</strong>. Selama periode ini, mekanisme penggantian tanggal arloji sedang terhubung secara fisik dengan roda tanggal. Memaksa mahkota dapat merusak gigi roda. Jika harus menyetel selama periode ini, putar jarum jam melewati jam 3 pagi terlebih dahulu, lalu setel fase bulan.' },
61
+ { type: 'title', text: 'Fase Bulan Mekanis vs. Akurasi Tinggi', level: 3 },
62
+ {
63
+ type: 'table', headers: ['Jenis', 'Roda Gigi', 'Akumulasi Galat', 'Penyimpangan Satu Hari Setelah', 'Contoh Arloji'], rows: [
64
+ ['Standar / Pemula', '59 gigi', '~1 hari setiap 2 tahun', '~2,5 tahun', 'Seiko, Orient, Hamilton, Tissot'],
65
+ ['Menengah', '135 gigi', '~1 hari setiap 10 tahun', '~10 tahun', 'Omega, Tudor, IWC, Breitling'],
66
+ ['Akurasi Tinggi', 'Rangkaian gigi', '~1 hari per 100+ tahun', '100+ tahun', 'Patek Philippe, A. Lange & Söhne'],
67
+ ]
68
+ },
69
+ { type: 'tip', title: 'Membaca Piringan Bulan', html: 'Pada sebagian besar arloji fase bulan, piringan bulan menampilkan <strong>dua bulan</strong> yang saling berseberangan. Setiap bulan purnama sejajar dengan bukaan tengah atas. Setelah satu siklus penuh (29,5 hari), bulan kedua mengambil tempatnya. Inilah sebabnya roda gigi 59-gigi berfungsi: ia menyelesaikan satu putaran penuh dalam 59 hari—tepatnya dua siklus lunar.' },
70
+ {
71
+ type: 'summary', title: 'Referensi Cepat', items: [
72
+ 'Siklus lunar (sinodik) tepat 29,53058867 hari. Alat ini menggunakan nilai tersebut untuk akurasi maksimal.',
73
+ 'Delapan fase berulang dalam siklus abadi: baru → sabit muda → kuartal pertama → cembung muda → purnama → cembung tua → kuartal terakhir → sabit tua.',
74
+ 'Untuk menyetel arloji fase bulan: cari fase hari ini di sini, lalu cocokkan di piringan arloji Anda.',
75
+ 'Jangan pernah memaksa mahkota antara jam 9 malam dan 3 pagi. Putar waktu melewati jam 3 pagi terlebih dahulu.',
76
+ 'Fase bulan standar 59-gigi meleset sekitar satu hari setiap 2,5 tahun. Koreksi memerlukan pemajuan piringan satu klik.',
77
+ ]
78
+ },
79
+ ],
80
+ faq: [
81
+ {
82
+ question: 'Bagaimana cara menyetel fase bulan di arloji saya?',
83
+ answer: 'Cari tahu fase bulan hari ini menggunakan alat ini. Putar mahkota (biasanya posisi 2) hingga piringan bulan menunjukkan fase yang sesuai. Hindari menyetel antara jam 9 malam dan 3 pagi saat mekanisme tanggal aktif.',
84
+ },
85
+ {
86
+ question: 'Seberapa akurat arloji fase bulan mekanis?',
87
+ answer: 'Sebagian besar menggunakan roda gigi 59-gigi yang akurat sekitar satu hari setiap 2 tahun. Arloji kelas atas seperti Patek Philippe dan A. Lange & Söhne mencapai akurasi dalam satu hari setiap 100+ tahun.',
88
+ },
89
+ {
90
+ question: 'Apa perbedaan antara bulan sinodik dan sideris?',
91
+ answer: 'Bulan sideris (27,3 hari) adalah orbit bulan relatif terhadap bintang. Bulan sinodik (29,53 hari) adalah waktu antara fase yang identik dan inilah yang dilacak oleh arloji fase bulan.',
92
+ },
93
+ ],
94
+ bibliography,
95
+ howTo: [
96
+ {
97
+ name: 'Pilih tanggal',
98
+ text: 'Gunakan pemilih tanggal untuk memilih tanggal apa pun, masa lalu atau masa depan, dan lihat fase bulannya.',
99
+ },
100
+ {
101
+ name: 'Baca data fase',
102
+ text: 'Kartu menampilkan nama fase, persentase iluminasi, usia bulan, dan kemajuan siklus.',
103
+ },
104
+ {
105
+ name: 'Temukan acara mendatang',
106
+ text: 'Tanggal bulan purnama dan bulan baru berikutnya ditampilkan secara otomatis.',
107
+ },
108
+ {
109
+ name: 'Setel arloji Anda',
110
+ text: 'Gunakan fase yang ditampilkan untuk menyetel komplikasi fase bulan arloji Anda secara akurat.',
111
+ },
112
+ ],
113
+ schemas: [
114
+ {
115
+ '@context': 'https://schema.org',
116
+ '@type': 'FAQPage',
117
+ 'mainEntity': [
118
+ {
119
+ '@type': 'Question',
120
+ 'name': 'Bagaimana cara menyetel fase bulan di arloji saya?',
121
+ 'acceptedAnswer': {
122
+ '@type': 'Answer',
123
+ 'text': 'Cari tahu fase bulan hari ini menggunakan alat ini. Putar mahkota hingga piringan bulan menunjukkan fase yang sesuai. Hindari menyetel antara jam 9 malam dan 3 pagi.',
124
+ },
125
+ },
126
+ {
127
+ '@type': 'Question',
128
+ 'name': 'Seberapa akurat arloji fase bulan mekanis?',
129
+ 'acceptedAnswer': {
130
+ '@type': 'Answer',
131
+ 'text': 'Sebagian besar menggunakan roda gigi 59-gigi yang akurat sekitar satu hari setiap 2 tahun. Arloji kelas atas mencapai akurasi dalam satu hari setiap 100+ tahun.',
132
+ },
133
+ },
134
+ {
135
+ '@type': 'Question',
136
+ 'name': 'Apa perbedaan antara bulan sinodik dan sideris?',
137
+ 'acceptedAnswer': {
138
+ '@type': 'Answer',
139
+ 'text': 'Bulan sideris (27,3 hari) adalah orbit bulan relatif terhadap bintang. Bulan sinodik (29,53 hari) adalah waktu antara fase yang identik dan inilah yang dilacak oleh arloji fase bulan.',
140
+ },
141
+ },
142
+ ],
143
+ },
144
+ {
145
+ '@context': 'https://schema.org',
146
+ '@type': 'SoftwareApplication',
147
+ 'name': 'Moon Phase Visualizer',
148
+ 'operatingSystem': 'All',
149
+ 'applicationCategory': 'UtilitiesApplication',
150
+ 'browserRequirements': 'Requires HTML5. Requires JavaScript.',
151
+ },
152
+ {
153
+ '@context': 'https://schema.org',
154
+ '@type': 'HowTo',
155
+ 'name': 'Cara memvisualisasikan fase bulan',
156
+ 'step': [
157
+ {
158
+ '@type': 'HowToStep',
159
+ 'name': 'Pilih tanggal',
160
+ 'text': 'Gunakan pemilih tanggal untuk memilih tanggal dan lihat fase bulannya.',
161
+ },
162
+ {
163
+ '@type': 'HowToStep',
164
+ 'name': 'Baca data fase',
165
+ 'text': 'Kartu menampilkan nama fase, iluminasi, usia bulan, dan kemajuan siklus.',
166
+ },
167
+ {
168
+ '@type': 'HowToStep',
169
+ 'name': 'Setel arloji Anda',
170
+ 'text': 'Gunakan fase yang ditampilkan untuk menyetel komplikasi fase bulan arloji Anda.',
171
+ },
172
+ ],
173
+ },
174
+ ],
175
+ };
@@ -0,0 +1,176 @@
1
+ import type { ToolLocaleContent } from '../../../types';
2
+ import type { MoonPhaseVisualizerUI } from '../entry';
3
+ import { bibliography } from '../bibliography';
4
+
5
+ export const content: ToolLocaleContent<MoonPhaseVisualizerUI> = {
6
+ slug: 'visualizzatore-fase-lunare',
7
+ title: 'Moon Phase Visualizer — Calendario Lunare e Impostazione Complicazione Orologio',
8
+ description: 'Visualizza la fase lunare corrente, illuminazione, età e le prossime lune piene e nuove. Perfetto per regolare la complicazione della fase lunare del tuo orologio.',
9
+ ui: {
10
+ title: 'Moon Phase Visualizer',
11
+ selectDate: 'Seleziona Data',
12
+ today: 'Oggi',
13
+ moonPhase: 'Fase Lunare',
14
+ illumination: 'Illuminazione',
15
+ moonAge: 'Età Lunare',
16
+ daysUntilFull: 'Giorni alla Luna Piena',
17
+ daysUntilNew: 'Giorni alla Luna Nuova',
18
+ newMoon: 'Luna Nuova',
19
+ waxingCrescent: 'Luna Crescente',
20
+ firstQuarter: 'Primo Quarto',
21
+ waxingGibbous: 'Gibbosa Crescente',
22
+ fullMoon: 'Luna Piena',
23
+ waningGibbous: 'Gibbosa Calante',
24
+ lastQuarter: 'Ultimo Quarto',
25
+ waningCrescent: 'Luna Calante',
26
+ nextFullMoon: 'Prossima Luna Piena',
27
+ nextNewMoon: 'Prossima Luna Nuova',
28
+ tipTitle: 'Consiglio',
29
+ tipContent: 'Per impostare un orologio con fase lunare, trova prima la fase di oggi con questo strumento, poi avanza la corona finché il disco lunare non corrisponde. La maggior parte delle fasi lunari meccaniche è precisa entro un giorno ogni 2 anni.',
30
+ days: 'Avanzamento Ciclo',
31
+ day: 'giorno',
32
+ },
33
+ seo: [
34
+ { type: 'title', text: 'Visualizzatore Fase Lunare — Calendario Lunare e Guida Impostazione Orologio', level: 2 },
35
+ { type: 'paragraph', html: 'Il Moon Phase Visualizer mostra la <strong>fase lunare corrente</strong> con un rendering realistico della luna. Consulta <strong>percentuale di illuminazione, età lunare, giorni alla prossima luna piena e alla prossima luna nuova</strong>. Progettato per gli appassionati di orologi che devono impostare con precisione la complicazione della fase lunare — funziona anche come calendario lunare generale per qualsiasi data passata o futura.' },
36
+ { type: 'title', text: 'Glossario delle Fasi Lunari', level: 3 },
37
+ {
38
+ type: 'glossary', items: [
39
+ { term: 'Luna Nuova', definition: 'La luna si trova tra la Terra e il sole. Il lato illuminato è rivolto lontano da noi. Illuminazione 0%. Inizio del ciclo lunare.' },
40
+ { term: 'Luna Crescente', definition: 'Illuminazione 1–49%. Un sottile spicchio appare sul lato destro (emisfero nord). La luna si sta muovendo verso il primo quarto.' },
41
+ { term: 'Primo Quarto', definition: 'Illuminazione 50%. Metà della superficie visibile è illuminata. La luna ha completato un quarto del suo ciclo.' },
42
+ { term: 'Gibbosa Crescente', definition: 'Illuminazione 51–99%. Più della metà è illuminata. La luna si avvicina al plenilunio.' },
43
+ { term: 'Luna Piena', definition: 'Illuminazione 100%. L\'intera superficie visibile è illuminata. L\'apice del ciclo lunare.' },
44
+ { term: 'Gibbosa Calante', definition: 'Illuminazione 99–51%. L\'area illuminata inizia a ridursi dal lato destro.' },
45
+ { term: 'Ultimo Quarto', definition: 'Illuminazione 50%. La metà sinistra è illuminata. Tre quarti del ciclo completati.' },
46
+ { term: 'Luna Calante', definition: 'Illuminazione 49–1%. Un sottile spicchio sulla sinistra prima che il ciclo torni alla luna nuova.' },
47
+ ]
48
+ },
49
+ { type: 'title', text: 'Come Impostare un Orologio con Fase Lunare', level: 3 },
50
+ {
51
+ type: 'list', items: [
52
+ 'Usa questo strumento per trovare la fase lunare esatta di oggi. Prendi nota del nome della fase e dell\'aspetto visivo.',
53
+ 'Sull\'orologio, estrai la corona nella posizione di impostazione della fase lunare (di solito posizione 2 o 3).',
54
+ 'Avanza la corona finché il disco lunare non mostra la stessa fase dello strumento. L\'indicatore di luna piena è di solito al centro in alto del disco.',
55
+ 'Evita di impostare la fase lunare tra le 21:00 e le 3:00, quando il meccanismo del cambio data è innestato e può danneggiarsi.',
56
+ 'La maggior parte degli orologi con fase lunare meccanica usa un ingranaggio a 59 denti che approssima due cicli lunari (59 giorni). Ciò significa che accumulano circa un giorno di errore ogni 2 anni.',
57
+ 'Per alta precisione, alcuni orologi (Patek Philippe, A. Lange & Söhne) usano ingranaggi accurati entro un giorno ogni 100+ anni.',
58
+ ]
59
+ },
60
+ { type: 'diagnostic', variant: 'warning', title: 'Non Impostare Mai Durante il Cambio Data', icon: 'mdi:alert', html: 'Non impostare la fase lunare (o la data) tra le <strong>21:00 e le 3:00</strong> circa. In questa finestra il meccanismo del cambio data è fisicamente innestato con la ruota della data. Forzare la corona può rompere i denti degli ingranaggi. Se devi assolutamente impostare in questo periodo, porta prima le lancette oltre le 3:00, poi imposta la fase lunare.' },
61
+ { type: 'title', text: 'Fase Lunare Meccanica vs Alta Precisione', level: 3 },
62
+ {
63
+ type: 'table', headers: ['Tipo', 'Ingranaggio', 'Accumulo Errore', 'Deriva di 1 Giorno Dopo', 'Orologi Esempio'], rows: [
64
+ ['Standard / Base', '59 denti', '~1 giorno ogni 2 anni', '~2,5 anni', 'Seiko, Orient, Hamilton, Tissot'],
65
+ ['Intermedio', '135 denti', '~1 giorno ogni 10 anni', '~10 anni', 'Omega, Tudor, IWC, Breitling'],
66
+ ['Alta Precisione', 'Tren d\'ingranaggi', '~1 giorno ogni 100+ anni', '100+ anni', 'Patek Philippe, A. Lange & Söhne'],
67
+ ]
68
+ },
69
+ { type: 'tip', title: 'Leggere il Disco Lunare', html: 'Sulla maggior parte degli orologi con fase lunare, il disco mostra <strong>due lune</strong> opposte tra loro. Ogni luna piena si allinea con l\'apertura centrale in alto. Dopo un ciclo completo (29,5 giorni), la seconda luna prende il suo posto. Ecco perché funziona un ingranaggio a 59 denti: completa una rotazione intera in 59 giorni — esattamente due cicli lunari.' },
70
+ {
71
+ type: 'summary', title: 'Riferimento Rapido', items: [
72
+ 'Il ciclo lunare (sinodico) è esattamente di 29,53058867 giorni. Lo strumento usa questo valore per la massima precisione.',
73
+ 'Otto fasi si ripetono in un ciclo eterno: nuova → crescente → primo quarto → gibbosa crescente → piena → gibbosa calante → ultimo quarto → calante.',
74
+ 'Per impostare un orologio con fase lunare: trova la fase di oggi qui, poi abbinala sul disco dell\'orologio.',
75
+ 'Non forzare mai la corona tra le 21:00 e le 3:00. Porta prima l\'ora oltre le 3:00.',
76
+ 'Le fasi lunari standard a 59 denti perdono circa un giorno ogni 2,5 anni. La correzione richiede di avanzare il disco di uno scatto.',
77
+ ]
78
+ },
79
+ ],
80
+ faq: [
81
+ {
82
+ question: 'Come si imposta la fase lunare su un orologio?',
83
+ answer: 'Trova la fase lunare di oggi con questo strumento. Avanza la corona (di solito posizione 2) finché il disco lunare non mostra la fase corrispondente. Evita di impostare tra le 21:00 e le 3:00 quando il meccanismo della data è innestato.',
84
+ },
85
+ {
86
+ question: 'Quanto sono precisi gli orologi con fase lunare meccanica?',
87
+ answer: 'La maggior parte usa un ingranaggio a 59 denti con una precisione di circa un giorno ogni 2 anni. Gli orologi di alta gamma come Patek Philippe e A. Lange & Söhne raggiungono una precisione entro un giorno ogni 100+ anni.',
88
+ },
89
+ {
90
+ question: 'Qual è la differenza tra mese sinodico e sidereo?',
91
+ answer: 'Il mese sidereo (27,3 giorni) è l\'orbita della luna rispetto alle stelle. Il mese sinodico (29,53 giorni) è il tempo tra fasi identiche ed è ciò che gli orologi con fase lunare tracciano.',
92
+ },
93
+ ],
94
+ bibliography,
95
+ howTo: [
96
+ {
97
+ name: 'Seleziona una data',
98
+ text: 'Usa il selettore per scegliere qualsiasi data, passata o futura, e vedere la fase lunare.',
99
+ },
100
+ {
101
+ name: 'Leggi i dati della fase',
102
+ text: 'Le schede mostrano il nome della fase, la percentuale di illuminazione, l\'età lunare e l\'avanzamento del ciclo.',
103
+ },
104
+ {
105
+ name: 'Trova i prossimi eventi',
106
+ text: 'Le date della prossima luna piena e della prossima luna nuova vengono visualizzate automaticamente.',
107
+ },
108
+ {
109
+ name: 'Imposta il tuo orologio',
110
+ text: 'Usa la fase visualizzata per impostare con precisione la complicazione della fase lunare del tuo orologio.',
111
+ },
112
+ ],
113
+ schemas: [
114
+ {
115
+ '@context': 'https://schema.org',
116
+ '@type': 'FAQPage',
117
+ 'mainEntity': [
118
+ {
119
+ '@type': 'Question',
120
+ 'name': 'Come si imposta la fase lunare su un orologio?',
121
+ 'acceptedAnswer': {
122
+ '@type': 'Answer',
123
+ 'text': 'Trova la fase lunare di oggi con questo strumento. Avanza la corona finché il disco lunare non mostra la fase corrispondente. Evita di impostare tra le 21:00 e le 3:00.',
124
+ },
125
+ },
126
+ {
127
+ '@type': 'Question',
128
+ 'name': 'Quanto sono precisi gli orologi con fase lunare meccanica?',
129
+ 'acceptedAnswer': {
130
+ '@type': 'Answer',
131
+ 'text': 'La maggior parte usa un ingranaggio a 59 denti con una precisione di circa un giorno ogni 2 anni. Gli orologi di alta gamma raggiungono una precisione entro un giorno ogni 100+ anni.',
132
+ },
133
+ },
134
+ {
135
+ '@type': 'Question',
136
+ 'name': 'Qual è la differenza tra mese sinodico e sidereo?',
137
+ 'acceptedAnswer': {
138
+ '@type': 'Answer',
139
+ 'text': 'Il mese sidereo (27,3 giorni) è l\'orbita della luna rispetto alle stelle. Il mese sinodico (29,53 giorni) è il tempo tra fasi identiche ed è ciò che gli orologi con fase lunare tracciano.',
140
+ },
141
+ },
142
+ ],
143
+ },
144
+ {
145
+ '@context': 'https://schema.org',
146
+ '@type': 'SoftwareApplication',
147
+ 'name': 'Moon Phase Visualizer',
148
+ 'operatingSystem': 'All',
149
+ 'applicationCategory': 'UtilitiesApplication',
150
+ 'browserRequirements': 'Requires HTML5. Requires JavaScript.',
151
+ },
152
+ {
153
+ '@context': 'https://schema.org',
154
+ '@type': 'HowTo',
155
+ 'name': 'Come visualizzare le fasi lunari',
156
+ 'step': [
157
+ {
158
+ '@type': 'HowToStep',
159
+ 'name': 'Seleziona una data',
160
+ 'text': 'Usa il selettore per scegliere qualsiasi data e vedere la fase lunare.',
161
+ },
162
+ {
163
+ '@type': 'HowToStep',
164
+ 'name': 'Leggi i dati della fase',
165
+ 'text': 'Le schede mostrano il nome della fase, illuminazione, età lunare e avanzamento del ciclo.',
166
+ },
167
+ {
168
+ '@type': 'HowToStep',
169
+ 'name': 'Imposta il tuo orologio',
170
+ 'text': 'Usa la fase visualizzata per impostare la complicazione della fase lunare del tuo orologio.',
171
+ },
172
+ ],
173
+ },
174
+ ],
175
+ };
176
+
@@ -0,0 +1,175 @@
1
+ import type { ToolLocaleContent } from '../../../types';
2
+ import type { MoonPhaseVisualizerUI } from '../entry';
3
+ import { bibliography } from '../bibliography';
4
+
5
+ export const content: ToolLocaleContent<MoonPhaseVisualizerUI> = {
6
+ slug: 'moon-phase-visualizer',
7
+ title: 'ムーンフェイズビジュアライザー—月相カレンダー&腕時計ムーンフェイズ設定ツール',
8
+ description: '現在の月相、照度、月齢、次の満月・新月をビジュアル表示。腕時計のムーンフェイズ複雑機構の設定に最適です。',
9
+ ui: {
10
+ title: 'ムーンフェイズビジュアライザー',
11
+ selectDate: '日付を選択',
12
+ today: '今日',
13
+ moonPhase: '月相',
14
+ illumination: '照度',
15
+ moonAge: '月齢',
16
+ daysUntilFull: '満月まで',
17
+ daysUntilNew: '新月まで',
18
+ newMoon: '新月',
19
+ waxingCrescent: '三日月',
20
+ firstQuarter: '上弦の月',
21
+ waxingGibbous: '満ちていく月',
22
+ fullMoon: '満月',
23
+ waningGibbous: '欠けていく月',
24
+ lastQuarter: '下弦の月',
25
+ waningCrescent: '有明月',
26
+ nextFullMoon: '次の満月',
27
+ nextNewMoon: '次の新月',
28
+ tipTitle: 'ヒント',
29
+ tipContent: 'ムーンフェイズ腕時計を設定するには、まずこのツールで今日の月相を確認し、リューズを回してムーンディスクを合わせます。ほとんどの機械式ムーンフェイズは2年で約1日の誤差です。',
30
+ days: 'サイクル進捗',
31
+ day: '日',
32
+ },
33
+ seo: [
34
+ { type: 'title', text: 'ムーンフェイズビジュアライザー—月相確認ツール&腕時計設定ガイド', level: 2 },
35
+ { type: 'paragraph', html: 'ムーンフェイズビジュアライザーは、<strong>現在の月相</strong>をリアルな描画で表示します。<strong>照度、月齢、次の満月・新月までの日数</strong>も確認可能。ムーンフェイズ複雑機構を正確に設定したい腕時計愛好家に最適なツールです。過去や未来の任意の日付でも月相を確認できます。' },
36
+ { type: 'title', text: '月相用語集', level: 3 },
37
+ {
38
+ type: 'glossary', items: [
39
+ { term: '新月', definition: '月が地球と太陽の間に位置する状態。照らされた面が地球側を向かないため、照度0%。太陰周期の始まりです。' },
40
+ { term: '三日月', definition: '照度1〜49%。右側(北半球)に細い三日月が現れます。上弦の月に向かって満ちていく段階。' },
41
+ { term: '上弦の月', definition: '照度50%。見える表面の半分が照らされています。周期の4分の1が完了した状態。' },
42
+ { term: '満ちていく月', definition: '照度51〜99%。半分以上が照らされ、満月に向かって満ちていく段階。' },
43
+ { term: '満月', definition: '照度100%。見える表面全体が照らされています。太陰周期の頂点。' },
44
+ { term: '欠けていく月', definition: '照度99〜51%。照らされた部分が右側から徐々に縮んでいきます。' },
45
+ { term: '下弦の月', definition: '照度50%。左半分が照らされています。周期の4分の3が完了した状態。' },
46
+ { term: '有明月', definition: '照度49〜1%。左側に細い三日月が残り、その後周期は新月に戻ります。' },
47
+ ]
48
+ },
49
+ { type: 'title', text: 'ムーンフェイズ腕時計の設定方法', level: 3 },
50
+ {
51
+ type: 'list', items: [
52
+ 'このツールで今日の正確な月相を確認します。月相名と見た目を覚えておきましょう。',
53
+ 'リューズをムーンフェイズ設定位置(通常は2段目または3段目)まで引き出します。',
54
+ 'リューズを回して、ムーンディスクの表示がツールと合うように調整します。満月の指標は通常ディスクの中央上部にあります。',
55
+ '午後9時から午前3時の間はムーンフェイズの設定を避けてください。日付変更機構が作動中で、破損する恐れがあります。',
56
+ 'ほとんどの機械式ムーンフェイズは59歯の歯車を使い、太陰周期2回分(59日)を近似しています。そのため約2年で1日の誤差が生じます。',
57
+ '高精度モデル(パテック フィリップ、A.ランゲ&ゾーネなど)では100年以上で1日以内の誤差に抑える歯車を採用しています。',
58
+ ]
59
+ },
60
+ { type: 'diagnostic', variant: 'warning', title: '日付変更中は絶対に設定しないでください', icon: 'mdi:alert', html: '午後9時から午前3時の間は、ムーンフェイズ(および日付)の設定を行わないでください。この時間帯は日付変更機構が日付車と物理的に噛み合っているため、リューズを無理に回すと歯車が破損する恐れがあります。どうしてもこの時間帯に設定する必要がある場合は、まず時刻を午前3時以降に進めてからムーンフェイズを設定してください。' },
61
+ { type: 'title', text: '機械式 vs 高精度ムーンフェイズ', level: 3 },
62
+ {
63
+ type: 'table', headers: ['タイプ', '歯車', '誤差の蓄積', '1日ずれる期間', '代表的な腕時計'], rows: [
64
+ ['標準/エントリー', '59歯', '約2年で約1日', '約2.5年', 'セイコー、オリエント、ハミルトン、ティソ'],
65
+ ['中級', '135歯', '約10年で約1日', '約10年', 'オメガ、チュードル、IWC、ブライトリング'],
66
+ ['高精度', '歯車列', '100年以上で約1日', '100年以上', 'パテック フィリップ、A.ランゲ&ゾーネ'],
67
+ ]
68
+ },
69
+ { type: 'tip', title: 'ムーンディスクの見方', html: 'ほとんどのムーンフェイズ腕時計では、ディスクに<strong>2つの月</strong>が向かい合って描かれています。各満月が中央上部の窓に合わせて表示されます。1周期(29.5日)が終わると、もう一方の月が代わりに表示されます。これが59歯の歯車で機能する理由です:59日で1回転=ちょうど太陰周期2回分です。' },
70
+ {
71
+ type: 'summary', title: 'クイックリファレンス', items: [
72
+ '太陰(朔望)周期は正確に29.53058867日です。ツールはこの値を使用して最大限の精度を実現しています。',
73
+ '8つの月相が永遠に繰り返されます:新月→三日月→上弦の月→満ちていく月→満月→欠けていく月→下弦の月→有明月。',
74
+ 'ムーンフェイズ腕時計の設定方法:ツールで今日の月相を確認し、腕時計のディスクに合わせます。',
75
+ '午後9時から午前3時の間はリューズを無理に回さないでください。まず時刻を午前3時以降に進めてから設定を。',
76
+ '標準的な59歯のムーンフェイズは約2.5年で約1日ずれます。修正にはディスクを1クリック進めてください。',
77
+ ]
78
+ },
79
+ ],
80
+ faq: [
81
+ {
82
+ question: 'ムーンフェイズ腕時計の設定方法は?',
83
+ answer: 'このツールで今日の月相を確認します。リューズ(通常2段目)を回してムーンディスクを合わせます。午後9時から午前3時の間は日付機構が作動中なので設定を避けてください。',
84
+ },
85
+ {
86
+ question: '機械式ムーンフェイズの精度はどのくらい?',
87
+ answer: 'ほとんどのモデルは59歯の歯車を使用し、約2年で1日の誤差が生じます。パテック フィリップやA.ランゲ&ゾーネなどの高級モデルでは、100年以上で1日以内の精度を実現しています。',
88
+ },
89
+ {
90
+ question: '朔望月と恒星月の違いは?',
91
+ answer: '恒星月(27.3日)は恒星を基準とした月の公転周期です。朔望月(29.53日)は同じ月相が繰り返されるまでの周期で、ムーンフェイズ腕時計が追うのはこちらです。',
92
+ },
93
+ ],
94
+ bibliography,
95
+ howTo: [
96
+ {
97
+ name: '日付を選択',
98
+ text: '日付ピッカーで過去や未来の任意の日付を選び、その日の月相を確認できます。',
99
+ },
100
+ {
101
+ name: '月相データを確認',
102
+ text: 'カードに月相名、照度、月齢、サイクル進捗が表示されます。',
103
+ },
104
+ {
105
+ name: '今後のイベントを確認',
106
+ text: '次の満月と新月の日付が自動表示されます。',
107
+ },
108
+ {
109
+ name: '腕時計を設定',
110
+ text: '表示された月相を使ってムーンフェイズ腕時計を正確に設定できます。',
111
+ },
112
+ ],
113
+ schemas: [
114
+ {
115
+ '@context': 'https://schema.org',
116
+ '@type': 'FAQPage',
117
+ 'mainEntity': [
118
+ {
119
+ '@type': 'Question',
120
+ 'name': 'ムーンフェイズ腕時計の設定方法は?',
121
+ 'acceptedAnswer': {
122
+ '@type': 'Answer',
123
+ 'text': 'ツールで今日の月相を確認し、リューズを回してムーンディスクを合わせます。午後9時から午前3時の設定は避けてください。',
124
+ },
125
+ },
126
+ {
127
+ '@type': 'Question',
128
+ 'name': '機械式ムーンフェイズの精度はどのくらい?',
129
+ 'acceptedAnswer': {
130
+ '@type': 'Answer',
131
+ 'text': 'ほとんどのモデルは59歯の歯車を使用し、約2年で1日の誤差が生じます。高級モデルでは100年以上で1日以内の精度です。',
132
+ },
133
+ },
134
+ {
135
+ '@type': 'Question',
136
+ 'name': '朔望月と恒星月の違いは?',
137
+ 'acceptedAnswer': {
138
+ '@type': 'Answer',
139
+ 'text': '恒星月(27.3日)は恒星を基準とした月の公転周期。朔望月(29.53日)は同じ月相が繰り返される周期で、ムーンフェイズ腕時計が追うのはこちらです。',
140
+ },
141
+ },
142
+ ],
143
+ },
144
+ {
145
+ '@context': 'https://schema.org',
146
+ '@type': 'SoftwareApplication',
147
+ 'name': 'ムーンフェイズビジュアライザー',
148
+ 'operatingSystem': 'All',
149
+ 'applicationCategory': 'UtilitiesApplication',
150
+ 'browserRequirements': 'HTML5対応。JavaScript必須。',
151
+ },
152
+ {
153
+ '@context': 'https://schema.org',
154
+ '@type': 'HowTo',
155
+ 'name': '月相を表示する方法',
156
+ 'step': [
157
+ {
158
+ '@type': 'HowToStep',
159
+ 'name': '日付を選択',
160
+ 'text': '日付ピッカーで日付を選び、その日の月相を確認します。',
161
+ },
162
+ {
163
+ '@type': 'HowToStep',
164
+ 'name': '月相データを確認',
165
+ 'text': 'カードに月相名、照度、月齢、サイクル進捗が表示されます。',
166
+ },
167
+ {
168
+ '@type': 'HowToStep',
169
+ 'name': '腕時計を設定',
170
+ 'text': '表示された月相を使ってムーンフェイズ腕時計を設定します。',
171
+ },
172
+ ],
173
+ },
174
+ ],
175
+ };