@jjlmoya/utils-babies 1.6.0 → 1.8.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 (103) hide show
  1. package/package.json +67 -66
  2. package/src/category/i18n/de.ts +48 -0
  3. package/src/category/i18n/en.ts +10 -10
  4. package/src/category/i18n/fr.ts +10 -10
  5. package/src/category/i18n/id.ts +48 -0
  6. package/src/category/i18n/it.ts +48 -0
  7. package/src/category/i18n/ja.ts +48 -0
  8. package/src/category/i18n/ko.ts +48 -0
  9. package/src/category/i18n/nl.ts +48 -0
  10. package/src/category/i18n/pl.ts +48 -0
  11. package/src/category/i18n/pt.ts +48 -0
  12. package/src/category/i18n/ru.ts +48 -0
  13. package/src/category/i18n/sv.ts +48 -0
  14. package/src/category/i18n/tr.ts +48 -0
  15. package/src/category/i18n/zh.ts +48 -0
  16. package/src/category/index.ts +13 -1
  17. package/src/tests/faq_count.test.ts +1 -1
  18. package/src/tests/i18n_coverage.test.ts +36 -0
  19. package/src/tests/locale_completeness.test.ts +1 -1
  20. package/src/tests/schemas_fulfillment.test.ts +23 -0
  21. package/src/tests/seo_length.test.ts +1 -2
  22. package/src/tests/slug_uniqueness.test.ts +81 -0
  23. package/src/tests/title_quality.test.ts +55 -0
  24. package/src/tool/baby-feeding-calculator/i18n/de.ts +162 -0
  25. package/src/tool/baby-feeding-calculator/i18n/id.ts +162 -0
  26. package/src/tool/baby-feeding-calculator/i18n/it.ts +162 -0
  27. package/src/tool/baby-feeding-calculator/i18n/ja.ts +162 -0
  28. package/src/tool/baby-feeding-calculator/i18n/ko.ts +162 -0
  29. package/src/tool/baby-feeding-calculator/i18n/nl.ts +162 -0
  30. package/src/tool/baby-feeding-calculator/i18n/pl.ts +162 -0
  31. package/src/tool/baby-feeding-calculator/i18n/pt.ts +162 -0
  32. package/src/tool/baby-feeding-calculator/i18n/ru.ts +162 -0
  33. package/src/tool/baby-feeding-calculator/i18n/sv.ts +162 -0
  34. package/src/tool/baby-feeding-calculator/i18n/tr.ts +162 -0
  35. package/src/tool/baby-feeding-calculator/i18n/zh.ts +162 -0
  36. package/src/tool/baby-feeding-calculator/index.ts +12 -0
  37. package/src/tool/baby-percentile-calculator/i18n/de.ts +245 -0
  38. package/src/tool/baby-percentile-calculator/i18n/id.ts +245 -0
  39. package/src/tool/baby-percentile-calculator/i18n/it.ts +245 -0
  40. package/src/tool/baby-percentile-calculator/i18n/ja.ts +245 -0
  41. package/src/tool/baby-percentile-calculator/i18n/ko.ts +245 -0
  42. package/src/tool/baby-percentile-calculator/i18n/nl.ts +245 -0
  43. package/src/tool/baby-percentile-calculator/i18n/pl.ts +245 -0
  44. package/src/tool/baby-percentile-calculator/i18n/pt.ts +245 -0
  45. package/src/tool/baby-percentile-calculator/i18n/ru.ts +245 -0
  46. package/src/tool/baby-percentile-calculator/i18n/sv.ts +245 -0
  47. package/src/tool/baby-percentile-calculator/i18n/tr.ts +245 -0
  48. package/src/tool/baby-percentile-calculator/i18n/zh.ts +245 -0
  49. package/src/tool/baby-percentile-calculator/index.ts +12 -0
  50. package/src/tool/baby-size-converter/i18n/de.ts +203 -0
  51. package/src/tool/baby-size-converter/i18n/fr.ts +1 -1
  52. package/src/tool/baby-size-converter/i18n/id.ts +203 -0
  53. package/src/tool/baby-size-converter/i18n/it.ts +203 -0
  54. package/src/tool/baby-size-converter/i18n/ja.ts +203 -0
  55. package/src/tool/baby-size-converter/i18n/ko.ts +203 -0
  56. package/src/tool/baby-size-converter/i18n/nl.ts +203 -0
  57. package/src/tool/baby-size-converter/i18n/pl.ts +203 -0
  58. package/src/tool/baby-size-converter/i18n/pt.ts +203 -0
  59. package/src/tool/baby-size-converter/i18n/ru.ts +203 -0
  60. package/src/tool/baby-size-converter/i18n/sv.ts +203 -0
  61. package/src/tool/baby-size-converter/i18n/tr.ts +203 -0
  62. package/src/tool/baby-size-converter/i18n/zh.ts +203 -0
  63. package/src/tool/baby-size-converter/index.ts +12 -0
  64. package/src/tool/fertile-days-estimator/i18n/de.ts +262 -0
  65. package/src/tool/fertile-days-estimator/i18n/id.ts +262 -0
  66. package/src/tool/fertile-days-estimator/i18n/it.ts +262 -0
  67. package/src/tool/fertile-days-estimator/i18n/ja.ts +262 -0
  68. package/src/tool/fertile-days-estimator/i18n/ko.ts +262 -0
  69. package/src/tool/fertile-days-estimator/i18n/nl.ts +262 -0
  70. package/src/tool/fertile-days-estimator/i18n/pl.ts +262 -0
  71. package/src/tool/fertile-days-estimator/i18n/pt.ts +262 -0
  72. package/src/tool/fertile-days-estimator/i18n/ru.ts +262 -0
  73. package/src/tool/fertile-days-estimator/i18n/sv.ts +262 -0
  74. package/src/tool/fertile-days-estimator/i18n/tr.ts +262 -0
  75. package/src/tool/fertile-days-estimator/i18n/zh.ts +262 -0
  76. package/src/tool/fertile-days-estimator/index.ts +12 -0
  77. package/src/tool/pregnancy-calculator/i18n/de.ts +467 -0
  78. package/src/tool/pregnancy-calculator/i18n/id.ts +467 -0
  79. package/src/tool/pregnancy-calculator/i18n/it.ts +467 -0
  80. package/src/tool/pregnancy-calculator/i18n/ja.ts +467 -0
  81. package/src/tool/pregnancy-calculator/i18n/ko.ts +467 -0
  82. package/src/tool/pregnancy-calculator/i18n/nl.ts +467 -0
  83. package/src/tool/pregnancy-calculator/i18n/pl.ts +467 -0
  84. package/src/tool/pregnancy-calculator/i18n/pt.ts +467 -0
  85. package/src/tool/pregnancy-calculator/i18n/ru.ts +467 -0
  86. package/src/tool/pregnancy-calculator/i18n/sv.ts +467 -0
  87. package/src/tool/pregnancy-calculator/i18n/tr.ts +467 -0
  88. package/src/tool/pregnancy-calculator/i18n/zh.ts +467 -0
  89. package/src/tool/pregnancy-calculator/index.ts +13 -1
  90. package/src/tool/vaccination-calendar/i18n/de.ts +194 -0
  91. package/src/tool/vaccination-calendar/i18n/fr.ts +99 -95
  92. package/src/tool/vaccination-calendar/i18n/id.ts +194 -0
  93. package/src/tool/vaccination-calendar/i18n/it.ts +194 -0
  94. package/src/tool/vaccination-calendar/i18n/ja.ts +194 -0
  95. package/src/tool/vaccination-calendar/i18n/ko.ts +194 -0
  96. package/src/tool/vaccination-calendar/i18n/nl.ts +194 -0
  97. package/src/tool/vaccination-calendar/i18n/pl.ts +194 -0
  98. package/src/tool/vaccination-calendar/i18n/pt.ts +194 -0
  99. package/src/tool/vaccination-calendar/i18n/ru.ts +194 -0
  100. package/src/tool/vaccination-calendar/i18n/sv.ts +194 -0
  101. package/src/tool/vaccination-calendar/i18n/tr.ts +194 -0
  102. package/src/tool/vaccination-calendar/i18n/zh.ts +194 -0
  103. package/src/tool/vaccination-calendar/index.ts +13 -1
@@ -0,0 +1,245 @@
1
+ import type { BabyPercentileCalculatorLocaleContent } from '../index';
2
+ import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
3
+
4
+ const slug = 'calcolatore-percentili-neonati';
5
+ const title = 'Calcolatore Percentili OMS per Neonati';
6
+ const description = 'Calcola il percentile di peso, altezza e IMC del tuo bambino in base alle tabelle OMS (0-5 anni).';
7
+ const faq = [
8
+ {
9
+ question: 'Cosa significa il 50° percentile?',
10
+ answer: 'Il 50° percentile indica che il bambino si trova esattamente nella mediana, ovvero la metà dei bambini della stessa età e sesso pesa o misura di più, e l\'altra metà meno. Non significa che sia il valore ideale, ma il valore centrale della distribuzione.',
11
+ },
12
+ {
13
+ question: 'Un percentile basso è segno di un problema?',
14
+ answer: 'Non necessariamente. Un percentile basso (ad esempio, P10) può essere perfettamente normale se si mantiene stabile nel tempo. L\'importante è la tendenza di crescita, non un valore isolato. Consulta sempre il tuo pediatra.',
15
+ },
16
+ {
17
+ question: 'Quali tabelle di crescita utilizza questo calcolatore?',
18
+ answer: 'Questo calcolatore utilizza gli standard di crescita dell\'Organizzazione Mondiale della Sanità (OMS) per bambini da 0 a 5 anni, basati sul Multicentre Growth Reference Study (MGRS).',
19
+ },
20
+ {
21
+ question: 'Cos\'è l\'IMC nei neonati?',
22
+ answer: 'L\'Indice di Massa Corporea (IMC) nei neonati è il rapporto tra il peso e l\'altezza al quadrato. I percentili di IMC per i neonati differiscono da quelli degli adulti e devono essere interpretati con le tabelle specifiche per ogni età e sesso.',
23
+ },
24
+ {
25
+ question: 'Con quale frequenza devo misurare il mio bambino?',
26
+ answer: 'Nei primi mesi, il pediatra solitamente controlla la crescita a ogni visita. A casa puoi registrare il peso e l\'altezza mensilmente per osservare la tendenza di crescita.',
27
+ },
28
+ ];
29
+ const howTo = [
30
+ {
31
+ name: 'Seleziona il sesso del bambino',
32
+ text: 'Scegli tra bambino o bambina per applicare le tabelle OMS corrispondenti.',
33
+ },
34
+ {
35
+ name: 'Inserisci l\'età',
36
+ text: 'Usa il cursore o le frecce per indicare l\'età in mesi (0-60 mesi).',
37
+ },
38
+ {
39
+ name: 'Inserisci peso e altezza',
40
+ text: 'Scrivi il peso in chilogrammi e l\'altezza in centimetri.',
41
+ },
42
+ {
43
+ name: 'Consulta i percentili',
44
+ text: 'I percentili di peso, altezza e IMC vengono calcolati automaticamente secondo le tabelle OMS.',
45
+ },
46
+ ];
47
+
48
+ const faqSchema: WithContext<FAQPage> = {
49
+ '@context': 'https://schema.org',
50
+ '@type': 'FAQPage',
51
+ mainEntity: faq.map((item) => ({
52
+ '@type': 'Question',
53
+ name: item.question,
54
+ acceptedAnswer: { '@type': 'Answer', text: item.answer },
55
+ })),
56
+ };
57
+
58
+ const howToSchema: WithContext<HowTo> = {
59
+ '@context': 'https://schema.org',
60
+ '@type': 'HowTo',
61
+ name: title,
62
+ description,
63
+ step: howTo.map((step) => ({
64
+ '@type': 'HowToStep',
65
+ name: step.name,
66
+ text: step.text,
67
+ })),
68
+ };
69
+
70
+ const appSchema: WithContext<SoftwareApplication> = {
71
+ '@context': 'https://schema.org',
72
+ '@type': 'SoftwareApplication',
73
+ name: title,
74
+ description,
75
+ applicationCategory: 'UtilitiesApplication',
76
+ operatingSystem: 'Web',
77
+ offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
78
+ inLanguage: 'it',
79
+ };
80
+
81
+ export const content: BabyPercentileCalculatorLocaleContent = {
82
+ slug,
83
+ title,
84
+ description,
85
+ ui: {
86
+ labelMeasurements: 'Dati della Misurazione',
87
+ labelSex: 'Sesso del bambino',
88
+ sexBoy: 'Bambino',
89
+ sexGirl: 'Bambina',
90
+ unitMonths: 'Solo mesi',
91
+ unitYearsMonths: 'Anni + mesi',
92
+ labelWeight: 'Peso (kg)',
93
+ labelHeight: 'Altezza (cm)',
94
+ btnAddHistory: 'Aggiungi alla mia cronologia',
95
+ btnClearHistory: 'Cancella dati',
96
+ labelDashboard: 'Dashboard di Crescita',
97
+ labelWeight2: 'Peso',
98
+ labelHeight2: 'Altezza',
99
+ labelBMI: 'IMC',
100
+ labelCalculating: 'Calcolo in corso...',
101
+ disclaimer: 'I percentili sono solo uno strumento statistico. Consulta sempre il tuo pediatra per interpretare i risultati.',
102
+ labelLowRange: 'Intervallo basso',
103
+ labelLowNormal: 'Normale basso',
104
+ labelNormal: 'Normalità',
105
+ labelHighNormal: 'Normale alto',
106
+ labelHighRange: 'Intervallo alto',
107
+ alertOutOfRange: 'Valore fuori dagli intervalli P3-P97. Consulta il tuo pediatra.',
108
+ labelMonths: 'Mesi',
109
+ labelYears: 'Anni',
110
+ faqTitle: 'Domande frequenti',
111
+ bibliographyTitle: 'Riferimenti',
112
+ },
113
+ seo: [
114
+ {
115
+ type: 'title',
116
+ text: 'Calcolatore Percentili OMS: Guida per capire la crescita del tuo bambino',
117
+ level: 2,
118
+ },
119
+ {
120
+ type: 'summary',
121
+ title: '5 chiavi per interpretare i percentili del tuo bambino',
122
+ items: [
123
+ 'Nessun percentile isolato definisce la salute del tuo bambino: l\'importante è la tendenza nel tempo.',
124
+ 'I percentili tra P3 e P97 sono considerati entro l\'intervallo di normalità statistica.',
125
+ 'L\'IMC nei neonati segue curve proprie e non deve essere confrontato con i valori di riferimento per gli adulti.',
126
+ 'Le curve OMS sono basate su bambini cresciuti in condizioni ottimali, incluso l\'allattamento al seno esclusivo durante i primi mesi.',
127
+ 'Condividi sempre i registri di crescita con il tuo pediatra per un\'adeguata interpretazione clinica.',
128
+ ],
129
+ },
130
+ {
131
+ type: 'title',
132
+ text: 'Come misurare correttamente il tuo bambino',
133
+ level: 3,
134
+ },
135
+ {
136
+ type: 'list',
137
+ items: [
138
+ 'Pesa il bambino senza vestiti e, se possibile, sempre sulla stessa bilancia.',
139
+ 'Misura la lunghezza in posizione orizzontale fino ai 24 mesi.',
140
+ 'A partire dai 2 anni, misura l\'altezza in posizione verticale.',
141
+ 'Esegui le misurazioni alla stessa ora del giorno per una maggiore coerenza.',
142
+ ],
143
+ },
144
+ {
145
+ type: 'tip',
146
+ html: 'Un percentile al di sotto di P3 non implica automaticamente un problema di salute. La cosa più importante è osservare se la curva di crescita mantiene la sua tendenza nel tempo.',
147
+ },
148
+ {
149
+ type: 'title',
150
+ text: 'Interpretazione dei percentili',
151
+ level: 3,
152
+ },
153
+ {
154
+ type: 'table',
155
+ headers: ['Percentile', 'Interpretazione', 'Azione raccomandata'],
156
+ rows: [
157
+ ['P97 o superiore', 'Intervallo alto', 'Parlarne con il pediatra alla prossima visita'],
158
+ ['P85 a P97', 'Normale alto', 'Monitoraggio normale'],
159
+ ['P15 a P85', 'Normalità', 'Nessuna azione speciale necessaria'],
160
+ ['P3 a P15', 'Normale basso', 'Monitoraggio normale'],
161
+ ['P3 o inferiore', 'Intervallo basso', 'Consultare il pediatra'],
162
+ ],
163
+ },
164
+ {
165
+ type: 'title',
166
+ text: 'OMS vs Curve di Orbegozo',
167
+ level: 3,
168
+ },
169
+ {
170
+ type: 'comparative',
171
+ columns: 2,
172
+ items: [
173
+ {
174
+ title: 'Curve OMS',
175
+ description: 'Standard internazionale basato su bambini di 6 paesi cresciuti in condizioni ottimali.',
176
+ points: [
177
+ 'Standard internazionale validato',
178
+ 'Basato su bambini di 6 paesi e condizioni ottimali',
179
+ 'Aggiornate e con supporto scientifico attuale',
180
+ 'Potrebbe non riflettere variazioni genetiche locali',
181
+ ],
182
+ },
183
+ {
184
+ title: 'Curve di Orbegozo',
185
+ description: 'Curve adattate alla popolazione spagnola, molto usate nei decenni passati.',
186
+ points: [
187
+ 'Adattate alla popolazione spagnola',
188
+ 'Molto usate in Spagna nei decenni passati',
189
+ 'Basate su una popolazione di riferimento più vecchia',
190
+ 'Minore adozione internazionale',
191
+ ],
192
+ },
193
+ ],
194
+ },
195
+ {
196
+ type: 'stats',
197
+ columns: 3,
198
+ items: [
199
+ { value: 'OMS 0-5 anni', label: 'Standard di riferimento' },
200
+ { value: 'Curva di tendenza', label: 'Variabile chiave' },
201
+ { value: 'Parametri LMS', label: 'Precisione tecnica' },
202
+ ],
203
+ },
204
+ {
205
+ type: 'glossary',
206
+ items: [
207
+ {
208
+ term: 'Z-Score',
209
+ definition: 'Numero di deviazioni standard che un valore si allontana dalla media della popolazione di riferimento. Uno Z-Score di 0 equivale al 50° percentile.',
210
+ },
211
+ {
212
+ term: 'Armonia',
213
+ definition: 'Proporzione adeguata tra peso e altezza. Un bambino può avere un percentile basso di peso ma essere armonico se anche la sua altezza è bassa nella stessa proporzione.',
214
+ },
215
+ {
216
+ term: 'Antropometria',
217
+ definition: 'Insieme di misurazioni corporee (peso, altezza, circonferenza cranica, IMC) utilizzate per valutare la crescita e lo stato nutrizionale.',
218
+ },
219
+ {
220
+ term: 'Parametri LMS',
221
+ definition: 'Metodo statistico (L=Box-Cox, M=mediana, S=coefficiente di variazione) utilizzato dall\'OMS per costruire le tabelle dei percentili e trasformare qualsiasi misurazione in uno Z-Score.',
222
+ },
223
+ ],
224
+ },
225
+ ],
226
+ faqTitle: "Domande frequenti",
227
+ faq,
228
+ bibliographyTitle: "Riferimenti",
229
+ bibliography: [
230
+ {
231
+ name: 'WHO Child Growth Standards: Methods and development',
232
+ url: 'https://www.who.int/publications/i/item/924154693X',
233
+ },
234
+ {
235
+ name: 'WHO Child Growth Standards: Length/height-for-age, weight-for-age, weight-for-length, weight-for-height and body mass index-for-age',
236
+ url: 'https://www.who.int/tools/child-growth-standards/standards',
237
+ },
238
+ {
239
+ name: 'Comparison of the WHO Child Growth Standards and the CDC 2000 Growth Charts - de Onis M et al.',
240
+ url: 'https://doi.org/10.1093/jn/137.1.144S',
241
+ },
242
+ ],
243
+ howTo,
244
+ schemas: [faqSchema as any, howToSchema as any, appSchema],
245
+ };
@@ -0,0 +1,245 @@
1
+ import type { BabyPercentileCalculatorLocaleContent } from '../index';
2
+ import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
3
+
4
+ const slug = 'baby-weight-height-percentile';
5
+ const title = 'WHO乳幼児成長曲線(パーセンタイル)計算機';
6
+ const description = 'WHO(世界保健機関)の成長曲線(0〜5歳)に基づき、赤ちゃんの体重、身長、BMIのパーセンタイルを計算します。';
7
+ const faq = [
8
+ {
9
+ question: '50パーセンタイルとはどういう意味ですか?',
10
+ answer: '50パーセンタイルは中央値を表します。同じ月齢・性別の赤ちゃんの半分がその値より重い(あるいは高い)か、あるいは軽い(低い)ことを意味します。理想的な値というわけではなく、分布の中心となる値です。',
11
+ },
12
+ {
13
+ question: 'パーセンタイルが低いと問題がありますか?',
14
+ answer: '必ずしもそうではありません。低いパーセンタイル(例えばP10)であっても、時間の経過とともに安定していれば、全く正常な場合があります。重要なのは一時の値ではなく、成長の傾向です。常に小児科医に相談してください。',
15
+ },
16
+ {
17
+ question: 'この計算機はどの成長チャートを使用していますか?',
18
+ answer: 'この計算機は、WHO(世界保健機関)の「Multicentre Growth Reference Study (MGRS)」に基づく0〜5歳児向けの成長基準を使用しています。',
19
+ },
20
+ {
21
+ question: '乳幼児のBMIとは何ですか?',
22
+ answer: '乳幼児のBMI(体格指数)は、体重を身長の2乗で割った値です。赤ちゃんのBMIパーセンタイルは大人とは異なり、月齢や性別ごとの専用のチャートで解釈する必要があります。',
23
+ },
24
+ {
25
+ question: 'どのくらいの頻度で測定すべきですか?',
26
+ answer: '生後数ヶ月間は、通常、健診のたびに小児科医が成長を確認します。家庭では、成長の傾向を把握するために、月に1回程度体重と身長を記録することをお勧めします。',
27
+ },
28
+ ];
29
+ const howTo = [
30
+ {
31
+ name: '赤ちゃんの性別を選択',
32
+ text: '適切なWHOチャートを適用するために、男の子か女の子を選択してください。',
33
+ },
34
+ {
35
+ name: '月齢を入力',
36
+ text: 'スライダーまたは矢印を使用して、月齢(0〜60ヶ月)を指定してください。',
37
+ },
38
+ {
39
+ name: '体重と身長を入力',
40
+ text: '体重(kg)と身長(cm)を入力してください。',
41
+ },
42
+ {
43
+ name: 'パーセンタイルを確認',
44
+ text: 'WHOチャートに基づき、体重、身長、BMIのパーセンタイルが自動的に算出されます。',
45
+ },
46
+ ];
47
+
48
+ const faqSchema: WithContext<FAQPage> = {
49
+ '@context': 'https://schema.org',
50
+ '@type': 'FAQPage',
51
+ mainEntity: faq.map((item) => ({
52
+ '@type': 'Question',
53
+ name: item.question,
54
+ acceptedAnswer: { '@type': 'Answer', text: item.answer },
55
+ })),
56
+ };
57
+
58
+ const howToSchema: WithContext<HowTo> = {
59
+ '@context': 'https://schema.org',
60
+ '@type': 'HowTo',
61
+ name: title,
62
+ description,
63
+ step: howTo.map((step) => ({
64
+ '@type': 'HowToStep',
65
+ name: step.name,
66
+ text: step.text,
67
+ })),
68
+ };
69
+
70
+ const appSchema: WithContext<WithContext<SoftwareApplication>> = {
71
+ '@context': 'https://schema.org',
72
+ '@type': 'SoftwareApplication',
73
+ name: title,
74
+ description,
75
+ applicationCategory: 'UtilitiesApplication',
76
+ operatingSystem: 'Web',
77
+ offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
78
+ inLanguage: 'ja',
79
+ };
80
+
81
+ export const content: BabyPercentileCalculatorLocaleContent = {
82
+ slug,
83
+ title,
84
+ description,
85
+ ui: {
86
+ labelMeasurements: '測定データ',
87
+ labelSex: '赤ちゃんの性別',
88
+ sexBoy: '男の子',
89
+ sexGirl: '女の子',
90
+ unitMonths: '月数のみ',
91
+ unitYearsMonths: '年 + 月',
92
+ labelWeight: '体重 (kg)',
93
+ labelHeight: '身長 (cm)',
94
+ btnAddHistory: '履歴に追加',
95
+ btnClearHistory: 'データをクリア',
96
+ labelDashboard: '成長ダッシュボード',
97
+ labelWeight2: '体重',
98
+ labelHeight2: '身長',
99
+ labelBMI: 'BMI',
100
+ labelCalculating: '計算中...',
101
+ disclaimer: 'パーセンタイルは統計的なツールに過ぎません。結果の解釈については、必ず小児科医にご相談ください。',
102
+ labelLowRange: '低い範囲',
103
+ labelLowNormal: 'やや低め',
104
+ labelNormal: '平均的',
105
+ labelHighNormal: 'やや高め',
106
+ labelHighRange: '高い範囲',
107
+ alertOutOfRange: '値がP3〜P97の範囲外です。小児科医にご相談ください。',
108
+ labelMonths: 'ヶ月',
109
+ labelYears: '歳',
110
+ faqTitle: 'よくある質問',
111
+ bibliographyTitle: '参考文献',
112
+ },
113
+ seo: [
114
+ {
115
+ type: 'title',
116
+ text: 'WHO成長曲線計算機:赤ちゃんの成長を理解するためのガイド',
117
+ level: 2,
118
+ },
119
+ {
120
+ type: 'summary',
121
+ title: '赤ちゃんのパーセンタイルを解釈するための5つのポイント',
122
+ items: [
123
+ '単一のパーセンタイルだけで健康状態が決まるわけではありません。長期的な傾向が重要です。',
124
+ 'P3からP97の間のパーセンタイルは、統計的な正常範囲内と見なされます。',
125
+ '赤ちゃんのBMIは独自の曲線を描くため、大人の基準値と比較してはいけません。',
126
+ 'WHOの成長曲線は、生後数ヶ月間の完全母乳育児を含む、最適な条件下で育った赤ちゃんに基づいています。',
127
+ '適切な診断のために、成長の記録は必ず小児科医と共有してください。',
128
+ ],
129
+ },
130
+ {
131
+ type: 'title',
132
+ text: '赤ちゃんを正しく測定する方法',
133
+ level: 3,
134
+ },
135
+ {
136
+ type: 'list',
137
+ items: [
138
+ '可能であれば、常に同じ体重計を使い、裸の状態で測定してください。',
139
+ '24ヶ月までは、仰向けの姿勢(身長)で測定してください。',
140
+ '2歳以降は、立った姿勢(身長)で測定してください。',
141
+ '一貫性を保つため、毎日同じ時間帯に測定を行ってください。',
142
+ ],
143
+ },
144
+ {
145
+ type: 'tip',
146
+ html: 'P3を下回るからといって、直ちに健康上の問題があるわけではありません。最も重要なのは、成長曲線が時間の経過とともに一定の傾向を維持しているかどうかを確認することです。',
147
+ },
148
+ {
149
+ type: 'title',
150
+ text: 'パーセンタイルの解釈',
151
+ level: 3,
152
+ },
153
+ {
154
+ type: 'table',
155
+ headers: ['パーセンタイル', '解釈', '推奨される対応'],
156
+ rows: [
157
+ ['P97以上', '高い範囲', '次回の受診時に小児科医に相談する'],
158
+ ['P85〜P97', 'やや高め', '通常の経過観察'],
159
+ ['P15〜P85', '平均的', '特になし'],
160
+ ['P3〜P15', 'やや低め', '通常の経過観察'],
161
+ ['P3以下', '低い範囲', '小児科医に相談する'],
162
+ ],
163
+ },
164
+ {
165
+ type: 'title',
166
+ text: 'WHO成長曲線 vs Orbegozo曲線',
167
+ level: 3,
168
+ },
169
+ {
170
+ type: 'comparative',
171
+ columns: 2,
172
+ items: [
173
+ {
174
+ title: 'WHO成長曲線',
175
+ description: '最適な環境で育った6カ国の乳幼児に基づく国際基準。',
176
+ points: [
177
+ '検証済みの国際基準',
178
+ '最適な環境で育った6カ国の児に基づく',
179
+ '最新の科学的根拠に基づく更新',
180
+ '地域の遺伝的差異が反映されない場合がある',
181
+ ],
182
+ },
183
+ {
184
+ title: 'Orbegozo曲線',
185
+ description: 'スペインの人口に合わせて作成された、以前広く使われていた曲線。',
186
+ points: [
187
+ 'スペインの人口に最適化',
188
+ '過去数十年間スペインで広く採用',
189
+ '古い基準人口に基づいている',
190
+ '国際的な普及度は低い',
191
+ ],
192
+ },
193
+ ],
194
+ },
195
+ {
196
+ type: 'stats',
197
+ columns: 3,
198
+ items: [
199
+ { value: 'WHO 0-5歳', label: '参照基準' },
200
+ { value: '成長トレンド', label: '重要な変数' },
201
+ { value: 'LMSパラメータ', label: '技術的精度' },
202
+ ],
203
+ },
204
+ {
205
+ type: 'glossary',
206
+ items: [
207
+ {
208
+ term: 'Zスコア',
209
+ definition: 'その値が参照集団の平均からどの程度標準偏差離れているかを示す数値。Zスコア0は50パーセンタイルに相当します。',
210
+ },
211
+ {
212
+ term: '調和(ハーモニー)',
213
+ definition: '体重と身長の適切なバランス。たとえ体重のパーセンタイルが低くても、身長も同様の割合で低ければ「調和が取れている」とみなされます。',
214
+ },
215
+ {
216
+ term: '身体計測',
217
+ definition: '成長や栄養状態を評価するために行われる、体重、身長、頭囲、BMIなどの一連の測定。',
218
+ },
219
+ {
220
+ term: 'LMSパラメータ',
221
+ definition: 'WHOがパーセンタイル表を作成し、測定値をZスコアに変換するために使用する統計手法(L=Box-Cox変換、M=中央値、S=変動係数)。',
222
+ },
223
+ ],
224
+ },
225
+ ],
226
+ faqTitle: "よくある質問",
227
+ faq,
228
+ bibliographyTitle: "参考文献",
229
+ bibliography: [
230
+ {
231
+ name: 'WHO Child Growth Standards: Methods and development',
232
+ url: 'https://www.who.int/publications/i/item/924154693X',
233
+ },
234
+ {
235
+ name: 'WHO Child Growth Standards: Length/height-for-age, weight-for-age, weight-for-length, weight-for-height and body mass index-for-age',
236
+ url: 'https://www.who.int/tools/child-growth-standards/standards',
237
+ },
238
+ {
239
+ name: 'Comparison of the WHO Child Growth Standards and the CDC 2000 Growth Charts - de Onis M et al.',
240
+ url: 'https://doi.org/10.1093/jn/137.1.144S',
241
+ },
242
+ ],
243
+ howTo,
244
+ schemas: [faqSchema as any, howToSchema as any, appSchema as any],
245
+ };