@jjlmoya/utils-babies 1.13.0 → 1.15.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 (46) hide show
  1. package/package.json +2 -2
  2. package/src/category/index.ts +3 -0
  3. package/src/entries.ts +4 -1
  4. package/src/index.ts +1 -0
  5. package/src/pages/[locale]/[slug].astro +31 -39
  6. package/src/tests/locale_completeness.test.ts +2 -2
  7. package/src/tests/shared-test-helpers.ts +56 -0
  8. package/src/tests/tool_exports.test.ts +34 -0
  9. package/src/tests/tool_validation.test.ts +2 -2
  10. package/src/tool/baby-budget-planner/baby-budget-planner.css +405 -0
  11. package/src/tool/baby-budget-planner/bibliography.astro +14 -0
  12. package/src/tool/baby-budget-planner/bibliography.ts +14 -0
  13. package/src/tool/baby-budget-planner/component.astro +406 -0
  14. package/src/tool/baby-budget-planner/entry.ts +77 -0
  15. package/src/tool/baby-budget-planner/i18n/de.ts +182 -0
  16. package/src/tool/baby-budget-planner/i18n/en.ts +184 -0
  17. package/src/tool/baby-budget-planner/i18n/es.ts +183 -0
  18. package/src/tool/baby-budget-planner/i18n/fr.ts +183 -0
  19. package/src/tool/baby-budget-planner/i18n/id.ts +183 -0
  20. package/src/tool/baby-budget-planner/i18n/it.ts +183 -0
  21. package/src/tool/baby-budget-planner/i18n/ja.ts +183 -0
  22. package/src/tool/baby-budget-planner/i18n/ko.ts +183 -0
  23. package/src/tool/baby-budget-planner/i18n/nl.ts +183 -0
  24. package/src/tool/baby-budget-planner/i18n/pl.ts +183 -0
  25. package/src/tool/baby-budget-planner/i18n/pt.ts +183 -0
  26. package/src/tool/baby-budget-planner/i18n/ru.ts +183 -0
  27. package/src/tool/baby-budget-planner/i18n/sv.ts +183 -0
  28. package/src/tool/baby-budget-planner/i18n/tr.ts +183 -0
  29. package/src/tool/baby-budget-planner/i18n/zh.ts +183 -0
  30. package/src/tool/baby-budget-planner/index.ts +10 -0
  31. package/src/tool/baby-budget-planner/logic.ts +68 -0
  32. package/src/tool/baby-budget-planner/seo.astro +15 -0
  33. package/src/tool/baby-feeding-calculator/baby-feeding-calculator.css +40 -40
  34. package/src/tool/baby-feeding-calculator/bibliography.astro +9 -6
  35. package/src/tool/baby-feeding-calculator/seo.astro +2 -45
  36. package/src/tool/baby-percentile-calculator/baby-weight-height-percentile.css +43 -43
  37. package/src/tool/baby-percentile-calculator/seo.astro +7 -28
  38. package/src/tool/baby-size-converter/baby-size-converter.css +42 -42
  39. package/src/tool/baby-size-converter/seo.astro +7 -28
  40. package/src/tool/fertile-days-estimator/fertile-days-calculator.css +23 -23
  41. package/src/tool/fertile-days-estimator/seo.astro +7 -28
  42. package/src/tool/pregnancy-calculator/pregnancy-weeks-calculator.css +37 -37
  43. package/src/tool/pregnancy-calculator/seo.astro +7 -28
  44. package/src/tool/vaccination-calendar/baby-vaccination-calendar-spain.css +16 -16
  45. package/src/tool/vaccination-calendar/seo.astro +7 -28
  46. package/src/tools.ts +2 -0
@@ -0,0 +1,183 @@
1
+ import type { ToolLocaleContent } from '../../../types';
2
+ import type { BabyBudgetPlannerUI } from '../entry';
3
+ import type { FAQPage, HowTo, SoftwareApplication, WithContext } from 'schema-dts';
4
+ import { bibliography } from '../bibliography';
5
+
6
+ export const title = 'Planificateur de Budget Bébé';
7
+ export const description = 'L\'outil ultime pour prévoir les dépenses de la première année de votre bébé. Calculez l\'équipement initial, les coûts mensuels et les frais cachés avec des conseils d\'économie.';
8
+
9
+ export const faq = [
10
+ {
11
+ question: 'Combien coûte un bébé la première année ?',
12
+ answer: 'En moyenne, la première année peut coûter entre 5 000 € et 15 000 € selon votre style de vie, vos besoins en mode de garde et si vous achetez du neuf ou de l\'occasion.',
13
+ },
14
+ {
15
+ question: 'Quels sont les articles les plus chers pour un nouveau-né ?',
16
+ answer: 'Les dépenses initiales les plus importantes sont généralement la poussette, le mobilier de la chambre (lit, commode) et le siège auto. Le mode de garde est la dépense mensuelle récurrente la plus élevée.',
17
+ },
18
+ {
19
+ question: 'Comment économiser sur les dépenses de bébé ?',
20
+ answer: 'Acheter d\'occasion pour l\'équipement et les vêtements, privilégier l\'allaitement (si possible) et utiliser une liste de naissance pour les cadeaux essentiels sont les stratégies les plus efficaces.',
21
+ },
22
+ {
23
+ question: 'Que sont les "frais fantômes" dans le budget bébé ?',
24
+ answer: 'Il s\'agit de coûts cachés comme l\'augmentation des factures d\'énergie (chauffage/clim), les surprimes d\'assurance familiale et les vaccins non obligatoires ou fournitures médicales non listés sur les aide-mémoire standards.',
25
+ },
26
+ ];
27
+
28
+ const faqSchema: WithContext<FAQPage> = {
29
+ '@context': 'https://schema.org',
30
+ '@type': 'FAQPage',
31
+ mainEntity: faq.map((item) => ({
32
+ '@type': 'Question',
33
+ name: item.question,
34
+ acceptedAnswer: { '@type': 'Answer', text: item.answer },
35
+ })),
36
+ };
37
+
38
+ export const howTo = [
39
+ {
40
+ name: 'Configurez votre profil',
41
+ text: 'Sélectionnez votre style de vie (Économique, Équilibré ou Premium), votre méthode d\'allaitement et votre stratégie de garde d\'enfant.',
42
+ },
43
+ {
44
+ name: 'Vérifiez vos articles',
45
+ text: 'Parcourez les catégories (Équipement initial, Mensuel et Évolutions) et ajustez les prix ou marquez les articles comme étant d\'occasion.',
46
+ },
47
+ {
48
+ name: 'Suivez votre budget',
49
+ text: 'Visualisez le total nécessaire pour la première année et suivez vos progrès au fur et à mesure de vos achats.',
50
+ },
51
+ ];
52
+
53
+ const howToSchema: WithContext<HowTo> = {
54
+ '@context': 'https://schema.org',
55
+ '@type': 'HowTo',
56
+ name: title,
57
+ description,
58
+ step: howTo.map((step) => ({
59
+ '@type': 'HowToStep',
60
+ name: step.name,
61
+ text: step.text,
62
+ })),
63
+ };
64
+
65
+ const appSchema: WithContext<SoftwareApplication> = {
66
+ '@context': 'https://schema.org',
67
+ '@type': 'SoftwareApplication',
68
+ name: title,
69
+ operatingSystem: 'Any',
70
+ applicationCategory: 'FinanceApplication',
71
+ offers: {
72
+ '@type': 'Offer',
73
+ price: '0',
74
+ priceCurrency: 'EUR',
75
+ },
76
+ };
77
+
78
+ export const content: ToolLocaleContent<BabyBudgetPlannerUI> = {
79
+ title,
80
+ description,
81
+ slug: 'planificateur-budget-bebe',
82
+ faqTitle: 'Foire aux Questions',
83
+ bibliographyTitle: 'Bibliographie',
84
+ seo: [
85
+ { type: 'summary', title: 'Résumé : Budget Bébé', items: [
86
+ 'La première année peut coûter entre 5 000 € et 15 000 €.',
87
+ 'L\'investissement initial (chambre, poussette) est l\'obstacle le plus important.',
88
+ 'Le mode de garde peut représenter jusqu\'à 50 % du budget mensuel récurrent.',
89
+ 'L\'occasion peut réduire le budget total de près de 60 %.',
90
+ ]},
91
+ { type: 'title', text: 'Combien coûte réellement un bébé la première année ?', level: 2 },
92
+ { type: 'paragraph', html: 'Prévoir l\'arrivée d\'un bébé implique bien plus que l\'achat de couches. Cela demande une vision stratégique des investissements ponctuels face aux coûts mensuels. Notre planificateur vous aide à visualiser cette courbe et à préparer la transition financière vers la parentalité.' },
93
+ { type: 'stats', columns: 3, items: [
94
+ { value: '2 000 €+', label: 'Équipement Initial' },
95
+ { value: '100-150 €', label: 'Couches/Soins Mensuel' },
96
+ { value: '40%+', label: 'Économies via Occasion' },
97
+ ]},
98
+ { type: 'title', text: 'Répartition par Catégories : Où va l\'argent ?', level: 3 },
99
+ { type: 'table', headers: ['Catégorie', 'Articles Typiques', 'Fréquence', 'Impact Coût'], rows: [
100
+ ['Équipement Initial', 'Lit, Poussette, Siège Auto', 'Ponctuel', 'Élevé'],
101
+ ['Mensuel', 'Couches, Lait, Pharmacie', 'Chaque mois', 'Moyen'],
102
+ ['Évolutions', 'Chaise haute, Diversification, Vêtements', 'Occasionnel', 'Moyen'],
103
+ ['Mode de Garde', 'Crèche / Nounou', 'Chaque mois', 'Très Élevé'],
104
+ ]},
105
+ { type: 'tip', html: '<strong>Conseil d\'Économie :</strong> Les poussettes de qualité et les meubles de chambre ont une excellente valeur de revente. Les acheter d\'occasion peut vous faire économiser des milliers d\'euros sans compromettre la sécurité.' },
106
+ { type: 'title', text: 'Comparaison des Styles de Vie', level: 3 },
107
+ { type: 'comparative', columns: 2, items: [
108
+ {
109
+ title: 'Économique',
110
+ description: 'Priorité à l\'essentiel et à l\'occasion.',
111
+ points: ['Vêtements de seconde main', 'Équipement reconditionné', 'Allaitement exclusif', 'Mode de garde public']
112
+ },
113
+ {
114
+ title: 'Premium',
115
+ description: 'Derniers modèles et confort maximal.',
116
+ points: ['Équipement haute technologie', 'Lait bio', 'Chambre de designer', 'Garde privée à domicile']
117
+ },
118
+ ]},
119
+ { type: 'title', text: 'Check-list pour une Planification Intelligente', level: 3 },
120
+ { type: 'list', items: [
121
+ 'Vérifiez les mises à jour des contrats d\'assurance santé familiale.',
122
+ 'Budgétez les vaccins non obligatoires et les soins de pharmacie spécialisés.',
123
+ 'Anticipez une hausse de 20 % de vos factures d\'énergie (chauffage/clim).',
124
+ 'Créez une liste de naissance tôt pour que vos proches participent aux gros achats.',
125
+ ]},
126
+ ],
127
+ faq,
128
+ howTo,
129
+ bibliography,
130
+ schemas: [faqSchema as any, howToSchema as any, appSchema as any],
131
+ ui: {
132
+ title,
133
+ onboardingTitle: 'Commencez votre Plan',
134
+ lifestyleLabel: 'Choix de Vie',
135
+ lifestyleSaving: 'Économique',
136
+ lifestyleBalanced: 'Équilibré',
137
+ lifestylePremium: 'Premium',
138
+ feedingLabel: 'Mode d\'Alimentation',
139
+ feedingBreast: 'Allaitement',
140
+ feedingFormula: 'Lait maternisé',
141
+ feedingMixed: 'Mixte',
142
+ childcareLabel: 'Mode de Garde',
143
+ childcareHome: 'Garde à domicile',
144
+ childcarePublic: 'Crèche publique',
145
+ childcarePrivate: 'Crèche privée',
146
+ startBtn: 'Générer mon Budget',
147
+ categoryBeforeBirth: 'Équipement Initial',
148
+ categoryMonthByMonth: 'Coûts Mensuels',
149
+ categoryMilestones: 'Prochaines Étapes',
150
+ totalNeededLabel: 'Objectif Total 1ère Année',
151
+ savingsProgressLabel: 'Prêt / Économisé',
152
+ chartTitle: 'Courbe de Dépense Mensuelle',
153
+ ghostAlertsTitle: 'Alertes Frais Fantômes',
154
+ ghostInsurance: 'Vérifier Assurances Vie/Santé',
155
+ ghostHeating: 'Prévoir +20% Énergie/Chauffage',
156
+ ghostVaccines: 'Budget Vaccins Facultatifs',
157
+ diaperCalcTitle: 'Calculateur de Couches',
158
+ diaperPriceLabel: 'Prix du Paquet',
159
+ diaperUnitsLabel: 'Unités par Paquet',
160
+ secondHandLabel: 'Occasion / Cadeau',
161
+ wishlistLabel: 'Sur la Liste',
162
+ itemNursery: 'Préparation de la Chambre',
163
+ itemStroller: 'Poussette & Pack Voyage',
164
+ itemHospitalBag: 'Sac pour la Maternité',
165
+ itemDiapers: 'Couches & Lingettes',
166
+ itemPharmacy: 'Pharmacie & Hygiène',
167
+ itemDaycare: 'Garde d\'enfant',
168
+ itemSolidFood: 'Diversification Alimentaire',
169
+ itemClothes: 'Vêtements de Saison',
170
+ itemHighChair: 'Chaise Haute & Repas',
171
+ editLabel: 'Modifier le prix',
172
+ saveBtn: 'Enregistrer',
173
+ exportBtn: 'Exporter JSON',
174
+ importBtn: 'Importer JSON',
175
+ resetBtn: 'Réinitialiser le Plan',
176
+ currencySymbol: '€',
177
+ monthPrefix: 'M',
178
+ initialMonthLabel: 'Début',
179
+ perMonthLabel: '/mois',
180
+ confirmReset: 'Êtes-vous sûr ?',
181
+ currencyMultiplier: 1,
182
+ },
183
+ };
@@ -0,0 +1,183 @@
1
+ import type { ToolLocaleContent } from '../../../types';
2
+ import type { BabyBudgetPlannerUI } from '../entry';
3
+ import type { FAQPage, HowTo, SoftwareApplication, WithContext } from 'schema-dts';
4
+ import { bibliography } from '../bibliography';
5
+
6
+ export const title = 'Perencana Anggaran Bayi';
7
+ export const description = 'Alat definitif untuk merencanakan pengeluaran tahun pertama bayi Anda. Hitung persiapan kamar bayi, biaya bulanan, dan biaya tersembunyi dengan tips hemat yang cerdas.';
8
+
9
+ export const faq = [
10
+ {
11
+ question: 'Berapa biaya bayi di tahun pertama?',
12
+ answer: 'Rata-rata, tahun pertama bisa memakan biaya antara Rp 50.000.000 hingga Rp 150.000.000 tergantung pada gaya hidup, kebutuhan pengasuhan, dan apakah Anda membeli barang baru atau bekas.',
13
+ },
14
+ {
15
+ question: 'Apa saja barang termahal untuk bayi baru lahir?',
16
+ answer: 'Pengeluaran awal terbesar biasanya adalah kereta bayi (stroller), furnitur kamar bayi (tempat tidur, lemari), dan kursi mobil (car seat). Biaya penitipan anak adalah pengeluaran bulanan rutin yang paling tinggi.',
17
+ },
18
+ {
19
+ question: 'Bagaimana cara menghemat pengeluaran bayi?',
20
+ answer: 'Membeli perlengkapan dan pakaian bekas, memilih menyusui (jika memungkinkan), dan menggunakan daftar kado (wishlist) agar teman dan keluarga bisa memberikan barang-barang penting adalah strategi yang paling efektif.',
21
+ },
22
+ {
23
+ question: 'Apa itu "Biaya Hantu" dalam perencanaan anggaran bayi?',
24
+ answer: 'Ini adalah biaya tersembunyi seperti kenaikan tagihan listrik (AC/pemanas), premi asuransi keluarga yang lebih tinggi, serta vaksin non-wajib atau perlengkapan medis yang biasanya tidak ada dalam daftar standar.',
25
+ },
26
+ ];
27
+
28
+ const faqSchema: WithContext<FAQPage> = {
29
+ '@context': 'https://schema.org',
30
+ '@type': 'FAQPage',
31
+ mainEntity: faq.map((item) => ({
32
+ '@type': 'Question',
33
+ name: item.question,
34
+ acceptedAnswer: { '@type': 'Answer', text: item.answer },
35
+ })),
36
+ };
37
+
38
+ export const howTo = [
39
+ {
40
+ name: 'Atur profil Anda',
41
+ text: 'Pilih gaya hidup Anda (Hemat, Seimbang, atau Premium), metode pemberian makan, dan strategi pengasuhan anak.',
42
+ },
43
+ {
44
+ name: 'Tinjau item Anda',
45
+ text: 'Telusuri kategori (Investasi awal, Bulanan, dan Tahapan penting) dan sesuaikan harga atau tandai barang sebagai barang bekas.',
46
+ },
47
+ {
48
+ name: 'Pantau anggaran',
49
+ text: 'Lihat total dana yang dibutuhkan untuk tahun pertama dan pantau kemajuan Anda saat mengumpulkan barang-barang tersebut.',
50
+ },
51
+ ];
52
+
53
+ const howToSchema: WithContext<HowTo> = {
54
+ '@context': 'https://schema.org',
55
+ '@type': 'HowTo',
56
+ name: title,
57
+ description,
58
+ step: howTo.map((step) => ({
59
+ '@type': 'HowToStep',
60
+ name: step.name,
61
+ text: step.text,
62
+ })),
63
+ };
64
+
65
+ const appSchema: WithContext<SoftwareApplication> = {
66
+ '@context': 'https://schema.org',
67
+ '@type': 'SoftwareApplication',
68
+ name: title,
69
+ operatingSystem: 'Any',
70
+ applicationCategory: 'FinanceApplication',
71
+ offers: {
72
+ '@type': 'Offer',
73
+ price: '0',
74
+ priceCurrency: 'IDR',
75
+ },
76
+ };
77
+
78
+ export const content: ToolLocaleContent<BabyBudgetPlannerUI> = {
79
+ title,
80
+ description,
81
+ slug: 'perencana-anggaran-bayi',
82
+ faqTitle: 'Pertanyaan yang Sering Diajukan',
83
+ bibliographyTitle: 'Bibliografi',
84
+ seo: [
85
+ { type: 'summary', title: 'Ringkasan: Anggaran Bayi', items: [
86
+ 'Tahun pertama bisa menelan biaya Rp 50jt hingga Rp 150jt.',
87
+ 'Biaya awal (kamar bayi, stroller) adalah hambatan terbesar di awal.',
88
+ 'Pengasuhan anak bisa memakan hingga 50% dari anggaran bulanan rutin.',
89
+ 'Barang bekas dapat memangkas total anggaran hingga 60%.',
90
+ ]},
91
+ { type: 'title', text: 'Berapa sebenarnya biaya bayi di tahun pertama?', level: 2 },
92
+ { type: 'paragraph', html: 'Merencanakan kehadiran bayi lebih dari sekadar membeli popok. Ini membutuhkan pandangan strategis tentang investasi awal dibandingkan dengan biaya bulanan rutin. Perencana kami membantu Anda memvisualisasikan kurva ini dan bersiap untuk transisi keuangan menuju peran orang tua.' },
93
+ { type: 'stats', columns: 3, items: [
94
+ { value: 'Rp 20jt+', label: 'Perlengkapan Awal' },
95
+ { value: 'Rp 1-1,5jt', label: 'Popok/Higiene Bulanan' },
96
+ { value: '40%+', label: 'Hemat dengan Barang Bekas' },
97
+ ]},
98
+ { type: 'title', text: 'Rincian Kategori: Ke mana uang mengalir?', level: 3 },
99
+ { type: 'table', headers: ['Kategori', 'Item Umum', 'Frekuensi', 'Dampak Biaya'], rows: [
100
+ ['Investasi Awal', 'Tempat Tidur, Stroller, Car Seat', 'Satu kali', 'Tinggi'],
101
+ ['Biaya Bulanan', 'Popok, Susu Formula, Farmasi', 'Setiap bulan', 'Sedang'],
102
+ ['Tahapan Penting', 'Kursi Makan, Makanan Padat, Baju', 'Sesekali', 'Sedang'],
103
+ ['Pengasuhan', 'Daycare / Pengasuh', 'Setiap bulan', 'Sangat Tinggi'],
104
+ ]},
105
+ { type: 'tip', html: '<strong>Tips Hemat Profesional:</strong> Stroller berkualitas tinggi dan furnitur kamar bayi memiliki nilai jual kembali yang sangat baik. Membelinya secara bekas dapat menghemat jutaan rupiah tanpa mengorbankan keamanan atau gaya.' },
106
+ { type: 'title', text: 'Perbandingan Gaya Hidup', level: 3 },
107
+ { type: 'comparative', columns: 2, items: [
108
+ {
109
+ title: 'Fokus Hemat',
110
+ description: 'Fokus pada barang bekas dan kebutuhan pokok.',
111
+ points: ['Pakaian lungsuran', 'Peralatan rekondisi', 'Fokus menyusui', 'Penitipan anak umum']
112
+ },
113
+ {
114
+ title: 'Premium',
115
+ description: 'Model terbaru dan kenyamanan maksimal.',
116
+ points: ['Peralatan teknologi tinggi', 'Susu formula organik', 'Kamar bayi desainer', 'Pengasuh pribadi 1-on-1']
117
+ },
118
+ ]},
119
+ { type: 'title', text: 'Daftar Periksa Perencanaan Cerdas', level: 3 },
120
+ { type: 'list', items: [
121
+ 'Periksa pembaruan cakupan asuransi kesehatan keluarga.',
122
+ 'Anggarkan untuk vaksin non-wajib dan item farmasi khusus.',
123
+ 'Antisipasi kenaikan 20% dalam tagihan listrik rumah (AC/pemanas).',
124
+ 'Buat wishlist lebih awal agar keluarga bisa membantu pembelian barang besar.',
125
+ ]},
126
+ ],
127
+ faq,
128
+ howTo,
129
+ bibliography,
130
+ schemas: [faqSchema as any, howToSchema as any, appSchema as any],
131
+ ui: {
132
+ title,
133
+ onboardingTitle: 'Mulai Rencana Anda',
134
+ lifestyleLabel: 'Pilihan Gaya Hidup',
135
+ lifestyleSaving: 'Hemat Maksimal',
136
+ lifestyleBalanced: 'Seimbang',
137
+ lifestylePremium: 'Premium',
138
+ feedingLabel: 'Metode Pemberian Makan',
139
+ feedingBreast: 'Menyusui',
140
+ feedingFormula: 'Susu Formula',
141
+ feedingMixed: 'Campuran',
142
+ childcareLabel: 'Strategi Pengasuhan',
143
+ childcareHome: 'Tetap di Rumah',
144
+ childcarePublic: 'Daycare Umum',
145
+ childcarePrivate: 'Daycare Swasta / Pengasuh',
146
+ startBtn: 'Buat Anggaran Saya',
147
+ categoryBeforeBirth: 'Investasi Awal',
148
+ categoryMonthByMonth: 'Biaya Bulanan',
149
+ categoryMilestones: 'Tahapan Berikutnya',
150
+ totalNeededLabel: 'Target Total Tahun ke-1',
151
+ savingsProgressLabel: 'Siap / Tersimpan',
152
+ chartTitle: 'Kurva Pengeluaran Bulanan',
153
+ ghostAlertsTitle: 'Peringatan Biaya Hantu',
154
+ ghostInsurance: 'Cek Asuransi Jiwa/Kesehatan',
155
+ ghostHeating: 'Antisipasi +20% Biaya Listrik',
156
+ ghostVaccines: 'Anggaran Vaksin Opsional',
157
+ diaperCalcTitle: 'Cek Harga Popok',
158
+ diaperPriceLabel: 'Harga per Pak',
159
+ diaperUnitsLabel: 'Isi per Pak',
160
+ secondHandLabel: 'Bekas / Kado',
161
+ wishlistLabel: 'Dalam Daftar',
162
+ itemNursery: 'Persiapan Kamar Bayi',
163
+ itemStroller: 'Stroller & Travel System',
164
+ itemHospitalBag: 'Isi Tas Rumah Sakit',
165
+ itemDiapers: 'Popok & Tisu Basah',
166
+ itemPharmacy: 'Farmasi & Higiene',
167
+ itemDaycare: 'Pengasuhan / Daycare',
168
+ itemSolidFood: 'Transisi Makanan Padat',
169
+ itemClothes: 'Pakaian Musiman',
170
+ itemHighChair: 'Kursi Makan & Perlengkapan',
171
+ editLabel: 'Edit Harga',
172
+ saveBtn: 'Simpan',
173
+ exportBtn: 'Ekspor JSON',
174
+ importBtn: 'Impor JSON',
175
+ resetBtn: 'Atur Ulang Rencana',
176
+ currencySymbol: 'Rp',
177
+ monthPrefix: 'B',
178
+ initialMonthLabel: 'Mulai',
179
+ perMonthLabel: '/bulan',
180
+ confirmReset: 'Apakah Anda yakin?',
181
+ currencyMultiplier: 17000,
182
+ },
183
+ };
@@ -0,0 +1,183 @@
1
+ import type { ToolLocaleContent } from '../../../types';
2
+ import type { BabyBudgetPlannerUI } from '../entry';
3
+ import type { FAQPage, HowTo, SoftwareApplication, WithContext } from 'schema-dts';
4
+ import { bibliography } from '../bibliography';
5
+
6
+ export const title = 'Pianificatore Budget Neonato';
7
+ export const description = 'Lo strumento definitivo per pianificare le spese del primo anno del tuo bambino. Calcola l\'attrezzatura iniziale, i costi mensili e le spese nascoste con consigli per risparmiare.';
8
+
9
+ export const faq = [
10
+ {
11
+ question: 'Quanto costa un bambino nel primo anno?',
12
+ answer: 'In media, il primo anno può costare tra i 5.000 € e i 15.000 €, a seconda dello stile di vita, delle necessità di assistenza e della scelta tra articoli nuovi o di seconda mano.',
13
+ },
14
+ {
15
+ question: 'Quali sono gli articoli più costosi per un neonato?',
16
+ answer: 'Le spese iniziali più rilevanti sono solitamente il passeggino, l\'arredamento della cameretta (culla, cassettiera) e il seggiolino auto. L\'asilo nido o la babysitter rappresentano la spesa mensile ricorrente più elevata.',
17
+ },
18
+ {
19
+ question: 'Come posso risparmiare sulle spese del bambino?',
20
+ answer: 'Acquistare articoli di seconda mano per l\'attrezzatura e l\'abbigliamento, preferire l\'allattamento al seno (se possibile) e utilizzare una lista nascita per ricevere regali utili sono le strategie più efficaci.',
21
+ },
22
+ {
23
+ question: 'Cosa sono le "Spese Fantasma" nella pianificazione per un bambino?',
24
+ answer: 'Sono costi nascosti come l\'aumento delle bollette (riscaldamento/aria condizionata), premi assicurativi familiari più alti e vaccini non obbligatori o forniture mediche che spesso mancano nelle liste standard.',
25
+ },
26
+ ];
27
+
28
+ const faqSchema: WithContext<FAQPage> = {
29
+ '@context': 'https://schema.org',
30
+ '@type': 'FAQPage',
31
+ mainEntity: faq.map((item) => ({
32
+ '@type': 'Question',
33
+ name: item.question,
34
+ acceptedAnswer: { '@type': 'Answer', text: item.answer },
35
+ })),
36
+ };
37
+
38
+ export const howTo = [
39
+ {
40
+ name: 'Configura il tuo profilo',
41
+ text: 'Seleziona il tuo stile di vita (Risparmio, Equilibrato o Premium), il metodo di alimentazione e la strategia per l\'assistenza all\'infanzia.',
42
+ },
43
+ {
44
+ name: 'Controlla gli articoli',
45
+ text: 'Esplora le categorie (Investimento iniziale, Spese mensili e Prossime tappe) e personalizza i prezzi o segna gli articoli come di seconda mano.',
46
+ },
47
+ {
48
+ name: 'Monitora il budget',
49
+ text: 'Visualizza il totale necessario per il primo anno e tieni traccia dei tuoi progressi man mano che acquisti gli articoli.',
50
+ },
51
+ ];
52
+
53
+ const howToSchema: WithContext<HowTo> = {
54
+ '@context': 'https://schema.org',
55
+ '@type': 'HowTo',
56
+ name: title,
57
+ description,
58
+ step: howTo.map((step) => ({
59
+ '@type': 'HowToStep',
60
+ name: step.name,
61
+ text: step.text,
62
+ })),
63
+ };
64
+
65
+ const appSchema: WithContext<SoftwareApplication> = {
66
+ '@context': 'https://schema.org',
67
+ '@type': 'SoftwareApplication',
68
+ name: title,
69
+ operatingSystem: 'Any',
70
+ applicationCategory: 'FinanceApplication',
71
+ offers: {
72
+ '@type': 'Offer',
73
+ price: '0',
74
+ priceCurrency: 'EUR',
75
+ },
76
+ };
77
+
78
+ export const content: ToolLocaleContent<BabyBudgetPlannerUI> = {
79
+ title,
80
+ description,
81
+ slug: 'pianificatore-budget-neonato',
82
+ faqTitle: 'Domande Frequenti',
83
+ bibliographyTitle: 'Bibliografia',
84
+ seo: [
85
+ { type: 'summary', title: 'Riepilogo: Budget Neonato', items: [
86
+ 'Il primo anno può costare tra i 5.000 € e i 15.000 €.',
87
+ 'L\'investimento iniziale (cameretta, passeggino) è la voce di spesa più alta all\'inizio.',
88
+ 'L\'assistenza all\'infanzia può incidere fino al 50% del budget mensile.',
89
+ 'Gli articoli di seconda mano possono ridurre il budget totale fino al 60%.',
90
+ ]},
91
+ { type: 'title', text: 'Quanto costa davvero un bambino nel primo anno?', level: 2 },
92
+ { type: 'paragraph', html: 'Pianificare l\'arrivo di un bambino va oltre l\'acquisto dei pannolini. Richiede una visione strategica degli investimenti una tantum rispetto ai costi mensili ricorrenti. Il nostro pianificatore ti aiuta a visualizzare questa curva e a prepararti alla transizione finanziaria verso la genitorialità.' },
93
+ { type: 'stats', columns: 3, items: [
94
+ { value: '2.000 €+', label: 'Attrezzatura Iniziale' },
95
+ { value: '100-150 €', label: 'Pannolini/Igiene Mensili' },
96
+ { value: '40%+', label: 'Risparmio con l\'Usato' },
97
+ ]},
98
+ { type: 'title', text: 'Suddivisione per Categoria: Dove finiscono i soldi?', level: 3 },
99
+ { type: 'table', headers: ['Categoria', 'Articoli Tipici', 'Frequenza', 'Impatto Costo'], rows: [
100
+ ['Investimento Iniziale', 'Culla, Passeggino, Seggiolino', 'Una tantum', 'Alto'],
101
+ ['Spese Mensili', 'Pannolini, Latte, Igiene', 'Ogni mese', 'Medio'],
102
+ ['Prossime Tappe', 'Seggiolone, Svezzamento, Vestiti', 'Occasionale', 'Medio'],
103
+ ['Assistenza', 'Asilo Nido / Babysitter', 'Ogni mese', 'Molto Alto'],
104
+ ]},
105
+ { type: 'tip', html: '<strong>Consiglio per Risparmiare:</strong> Passeggini di alta qualità e mobili per la cameretta hanno un ottimo valore di rivendita. Acquistarli di seconda mano può farti risparmiare migliaia di euro senza rinunciare a sicurezza o stile.' },
106
+ { type: 'title', text: 'Confronto Stili di Vita', level: 3 },
107
+ { type: 'comparative', columns: 2, items: [
108
+ {
109
+ title: 'Risparmio',
110
+ description: 'Focus sull\'essenziale e sull\'usato.',
111
+ points: ['Vestiti regalati o usati', 'Attrezzatura ricondizionata', 'Allattamento al seno', 'Asilo nido pubblico']
112
+ },
113
+ {
114
+ title: 'Premium',
115
+ description: 'Ultimi modelli e massimo comfort.',
116
+ points: ['Attrezzatura high-tech', 'Latte bio', 'Cameretta di design', 'Babysitter dedicata']
117
+ },
118
+ ]},
119
+ { type: 'title', text: 'Checklist Pianificazione Intelligente', level: 3 },
120
+ { type: 'list', items: [
121
+ 'Controlla gli aggiornamenti delle coperture assicurative familiari.',
122
+ 'Prevedi un budget per vaccini facoltativi e prodotti farmaceutici specifici.',
123
+ 'Anticipa un aumento del 20% nelle bollette domestiche (energia/riscaldamento).',
124
+ 'Crea presto una lista nascita per farti aiutare da amici e parenti con le spese grandi.',
125
+ ]},
126
+ ],
127
+ faq,
128
+ howTo,
129
+ bibliography,
130
+ schemas: [faqSchema as any, howToSchema as any, appSchema as any],
131
+ ui: {
132
+ title,
133
+ onboardingTitle: 'Inizia il tuo Piano',
134
+ lifestyleLabel: 'Scelta Stile di Vita',
135
+ lifestyleSaving: 'Risparmio Totale',
136
+ lifestyleBalanced: 'Equilibrato',
137
+ lifestylePremium: 'Premium',
138
+ feedingLabel: 'Metodo Alimentazione',
139
+ feedingBreast: 'Allattamento al Seno',
140
+ feedingFormula: 'Latte in Polvere',
141
+ feedingMixed: 'Misto',
142
+ childcareLabel: 'Strategia Assistenza',
143
+ childcareHome: 'Resta a Casa',
144
+ childcarePublic: 'Asilo Nido Pubblico',
145
+ childcarePrivate: 'Asilo Nido Privato',
146
+ startBtn: 'Genera il mio Budget',
147
+ categoryBeforeBirth: 'Investimento Iniziale',
148
+ categoryMonthByMonth: 'Spese Mensili',
149
+ categoryMilestones: 'Prossime Tappe',
150
+ totalNeededLabel: 'Obiettivo Totale 1° Anno',
151
+ savingsProgressLabel: 'Pronto / Risparmiato',
152
+ chartTitle: 'Curva Spesa Mensile',
153
+ ghostAlertsTitle: 'Avvisi Spese Fantasma',
154
+ ghostInsurance: 'Controlla Assicurazioni Vita/Salute',
155
+ ghostHeating: 'Prevedi +20% Energia/Riscaldamento',
156
+ ghostVaccines: 'Budget Vaccini Facoltativi',
157
+ diaperCalcTitle: 'Controllo Prezzo Pannolini',
158
+ diaperPriceLabel: 'Prezzo Pacco',
159
+ diaperUnitsLabel: 'Unità per Pacco',
160
+ secondHandLabel: 'Usato / Regalo',
161
+ wishlistLabel: 'Nella Lista',
162
+ itemNursery: 'Allestimento Cameretta',
163
+ itemStroller: 'Passeggino e Sistemi Viaggio',
164
+ itemHospitalBag: 'Essenziali Borsa Ospedale',
165
+ itemDiapers: 'Pannolini e Salviettine',
166
+ itemPharmacy: 'Farmacia e Igiene',
167
+ itemDaycare: 'Asilo Nido / Assistenza',
168
+ itemSolidFood: 'Transizione Svezzamento',
169
+ itemClothes: 'Abbigliamento Stagionale',
170
+ itemHighChair: 'Seggiolone e Pappa',
171
+ editLabel: 'Modifica Prezzo',
172
+ saveBtn: 'Salva',
173
+ exportBtn: 'Esporta JSON',
174
+ importBtn: 'Importa JSON',
175
+ resetBtn: 'Reinizializza Piano',
176
+ currencySymbol: '€',
177
+ monthPrefix: 'M',
178
+ initialMonthLabel: 'Inizio',
179
+ perMonthLabel: '/mese',
180
+ confirmReset: 'Sei sicuro?',
181
+ currencyMultiplier: 1,
182
+ },
183
+ };