@jjlmoya/utils-pets 1.17.0 → 1.18.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 (44) hide show
  1. package/package.json +1 -1
  2. package/src/category/index.ts +2 -1
  3. package/src/data.ts +2 -0
  4. package/src/entries.ts +2 -1
  5. package/src/index.ts +3 -2
  6. package/src/tests/faq_count.test.ts +1 -1
  7. package/src/tests/locale_completeness.test.ts +1 -2
  8. package/src/tests/seo_translation_completeness.test.ts +69 -0
  9. package/src/tests/tool_validation.test.ts +4 -4
  10. package/src/tool/petAge/index.ts +1 -0
  11. package/src/tool/petGestation/bibliography.astro +6 -0
  12. package/src/tool/petGestation/bibliography.ts +12 -0
  13. package/src/tool/petGestation/component.astro +68 -0
  14. package/src/tool/petGestation/controller.ts +69 -0
  15. package/src/tool/petGestation/dom-views.ts +60 -0
  16. package/src/tool/petGestation/entry.ts +31 -0
  17. package/src/tool/petGestation/evaluator.ts +28 -0
  18. package/src/tool/petGestation/i18n/de.ts +209 -0
  19. package/src/tool/petGestation/i18n/en.ts +197 -0
  20. package/src/tool/petGestation/i18n/es.ts +197 -0
  21. package/src/tool/petGestation/i18n/fr.ts +209 -0
  22. package/src/tool/petGestation/i18n/id.ts +209 -0
  23. package/src/tool/petGestation/i18n/it.ts +209 -0
  24. package/src/tool/petGestation/i18n/ja.ts +209 -0
  25. package/src/tool/petGestation/i18n/ko.ts +209 -0
  26. package/src/tool/petGestation/i18n/nl.ts +209 -0
  27. package/src/tool/petGestation/i18n/pl.ts +209 -0
  28. package/src/tool/petGestation/i18n/pt.ts +209 -0
  29. package/src/tool/petGestation/i18n/ru.ts +209 -0
  30. package/src/tool/petGestation/i18n/sv.ts +209 -0
  31. package/src/tool/petGestation/i18n/tr.ts +209 -0
  32. package/src/tool/petGestation/i18n/zh.ts +209 -0
  33. package/src/tool/petGestation/index.ts +11 -0
  34. package/src/tool/petGestation/logic.test.ts +44 -0
  35. package/src/tool/petGestation/logic.ts +103 -0
  36. package/src/tool/petGestation/pet-gestation-calculator.css +401 -0
  37. package/src/tool/petGestation/seo.astro +15 -0
  38. package/src/tool/petGestation/storage.ts +25 -0
  39. package/src/tool/petGestation/ui.ts +42 -0
  40. package/src/tool/petRation/component.astro +1 -1
  41. package/src/tool/petRation/handlers.ts +1 -1
  42. package/src/tool/petRation/index.ts +1 -0
  43. package/src/tools.ts +3 -1
  44. package/src/types.ts +1 -1
@@ -0,0 +1,209 @@
1
+ import { bibliography } from '../bibliography';
2
+ import type { FAQPage, HowTo, SoftwareApplication, WithContext } from 'schema-dts';
3
+ import type { PetGestationLocaleContent } from '../index';
4
+
5
+ const slug = 'calculateur-gestation-animaux';
6
+ const title = 'Calculateur de gestation pour animaux de compagnie';
7
+ const description = 'Estimez la date de mise bas de votre chien, chat, lapin ou furet à partir de la date d accouplement avec un intervalle documenté et des conseils vétérinaires.';
8
+
9
+ const ui: PetGestationLocaleContent['ui'] = {
10
+ "journeyHint": "Choisissez l espèce, entrez la date d accouplement et suivez le compas vers la période de mise bas.",
11
+ "instantHint": "Modifiez un réglage et le calendrier de mise bas s adapte instantanément.",
12
+ "speciesLegend": "Quel est le type d animal ?",
13
+ "speciesDog": "Chien",
14
+ "speciesCat": "Chat",
15
+ "speciesRabbit": "Lapin",
16
+ "speciesFerret": "Furet",
17
+ "speciesDogMeta": "58 à 72 jours",
18
+ "speciesCatMeta": "64 à 66 jours",
19
+ "speciesRabbitMeta": "Environ 31 jours",
20
+ "speciesFerretMeta": "Environ 42 jours",
21
+ "matingDateLabel": "Date d accouplement",
22
+ "matingDateHint": "Utilisez la première date d accouplement connue. C est une estimation et non une date de conception fixe.",
23
+ "presetToday": "Aujourd hui",
24
+ "presetWeekAgo": "Il y a 7 jours",
25
+ "presetFortnightAgo": "Il y a 14 jours",
26
+ "calculateButton": "Calculer la période de mise bas",
27
+ "resultEyebrow": "Le compas de nidification indique",
28
+ "dueDateLabel": "Date de mise bas estimée",
29
+ "windowLabel": "Intervalle attendu",
30
+ "remainingLabel": "Jours restants",
31
+ "elapsedLabel": "Jours écoulés",
32
+ "daysLabel": "jours",
33
+ "dayLabel": "jour",
34
+ "statusFuture": "Cette date est dans le futur",
35
+ "statusWaiting": "Période de gestation en cours",
36
+ "statusWindow": "La fenêtre de mise bas est ouverte",
37
+ "statusLate": "Dépassement de la période estimée",
38
+ "resultEmpty": "Votre compas de mise bas apparaîtra ici.",
39
+ "sampleLabel": "Exemple indicatif",
40
+ "sceneMating": "ACCOUPLEMENT",
41
+ "sceneToday": "Suivi actuel",
42
+ "sceneDue": "PÉRIODE DE MISE BAS",
43
+ "noteTitle": "Note importante sur la santé",
44
+ "noteText": "La date d accouplement ne correspond pas toujours à l ovulation ou à la fécondation. Consultez un vétérinaire pour un suivi prénatal et une confirmation de gestation.",
45
+ "sourceTitle": "Méthodologie",
46
+ "sourceText": "Le chien utilise une plage de 58 à 72 jours; chat, lapin et furet suivent les données documentées du Manuel Vétérinaire MSD.",
47
+ "invalidDate": "Entrez une date d accouplement valide.",
48
+ "futureDate": "Une date future ne peut pas correspondre à une gestation active."
49
+ };
50
+
51
+ const faq: PetGestationLocaleContent['faq'] = [
52
+ {
53
+ "question": "Quelle est la précision du calculateur de gestation ?",
54
+ "answer": "Il s agit d une estimation destinée à la planification. Chez la chienne, la date d accouplement peut différer de l ovulation et de la fécondation car les spermatozoïdes restent viables plusieurs jours dans le tractus reproducteur. Le calculateur affiche donc un intervalle plutôt qu une date unique. Le vétérinaire peut préciser la date par échographie."
55
+ },
56
+ {
57
+ "question": "Combien de temps dure la gestation d une chienne ?",
58
+ "answer": "Le Manuel Vétérinaire MSD indique environ 58 à 72 jours à compter du premier accouplement lorsque la date d ovulation est inconnue. Lorsque la date d ovulation est établie, l intervalle se situe généralement entre 62 et 64 jours."
59
+ },
60
+ {
61
+ "question": "Combien de temps dure la gestation d une chatte ?",
62
+ "answer": "La gestation féline dure généralement environ 65 jours, le Manuel Vétérinaire MSD décrivant la mise bas entre 64 et 66 jours après le pic hormonal. Comme le propriétaire connaît la date de saillie, l outil constitue un guide de préparation efficace."
63
+ },
64
+ {
65
+ "question": "Pourquoi inclure les lapins et les furets ?",
66
+ "answer": "Les lapins et furets sont des animaux de compagnie courants aux périodes de gestation courtes et bien documentées. Le Manuel Vétérinaire MSD indique environ 31 jours pour les lapins et 42 jours pour les furets."
67
+ },
68
+ {
69
+ "question": "Quand faut-il consulter un vétérinaire ?",
70
+ "answer": "Consultez un vétérinaire si la gestation dépasse la limite estimée, si le travail semble difficile ou prolongé, ou en cas de douleur, de saignement abondant, d écoulement suspect ou de faiblesse de la femelle."
71
+ }
72
+ ];
73
+
74
+ const howTo: PetGestationLocaleContent['howTo'] = [
75
+ {
76
+ "name": "Sélectionner l espèce",
77
+ "text": "Choisissez chien, chat, lapin ou furet pour appliquer le profil de gestation documenté correspondant."
78
+ },
79
+ {
80
+ "name": "Entrer la date d accouplement",
81
+ "text": "Indiquez la date du premier accouplement ou celle recommandée par votre vétérinaire."
82
+ },
83
+ {
84
+ "name": "Consulter le compas",
85
+ "text": "Observez la date estimée, l intervalle attendu, les jours écoulés et le statut actuel."
86
+ },
87
+ {
88
+ "name": "Préparer la mise bas",
89
+ "text": "Utilisez le résultat pour aménager le nid de mise bas et préparer la liste de questions pour votre clinique."
90
+ }
91
+ ];
92
+
93
+ const seo: PetGestationLocaleContent['seo'] = [
94
+ {
95
+ "type": "summary",
96
+ "title": "Dates de gestation des animaux en un coup d œil",
97
+ "items": [
98
+ "Entrez la date d accouplement et sélectionnez l espèce pour estimer la période de mise bas.",
99
+ "Les chiens disposent d un intervalle plus large en raison du décalage possible entre saillie et ovulation.",
100
+ "Les chats, lapins et furets s appuient sur les données du Manuel Vétérinaire MSD.",
101
+ "Outil de planification prénatale qui ne remplace en aucun cas un suivi vétérinaire professionnel."
102
+ ]
103
+ },
104
+ {
105
+ "type": "title",
106
+ "text": "Comment fonctionne le calculateur de gestation",
107
+ "level": 2
108
+ },
109
+ {
110
+ "type": "paragraph",
111
+ "html": "Ce calculateur de gestation pour animaux convertit la date d accouplement observée en un calendrier estimatif. Il ajoute la durée de gestation spécifique de l espèce sélectionnée et présente une date moyenne ainsi qu un intervalle probable de mise bas. Cette nuance est essentielle: le jour de la saillie n est pas systématiquement le jour de la fécondation, et la biologie canine diffère de celle des félins ou petits mammifères. Cet outil aide les propriétaires à anticiper les soins, organiser le calendrier prénatal et préparer le matériel nécessaire dans les meilleures conditions."
112
+ },
113
+ {
114
+ "type": "paragraph",
115
+ "html": "Le compas visuel positionne la date d accouplement au début d un axe circulaire. L anneau coloré s agrandit au fil des jours tandis que le centre indique le nombre de jours écoulés. Dès que la période estimée approche, le statut s adapte pour offrir une lecture claire et immédiate sans nécessiter de calculs complexes."
116
+ },
117
+ {
118
+ "type": "title",
119
+ "text": "Profils de gestation documentés par espèce",
120
+ "level": 2
121
+ },
122
+ {
123
+ "type": "table",
124
+ "headers": [
125
+ "Espèce",
126
+ "Durée moyenne",
127
+ "Estimation depuis l accouplement"
128
+ ],
129
+ "rows": [
130
+ [
131
+ "Chien",
132
+ "Environ 63 jours",
133
+ "58 à 72 jours"
134
+ ],
135
+ [
136
+ "Chat",
137
+ "Environ 65 jours",
138
+ "64 à 66 jours"
139
+ ],
140
+ [
141
+ "Lapin",
142
+ "Environ 31 jours",
143
+ "31 jours"
144
+ ],
145
+ [
146
+ "Furet",
147
+ "Environ 42 jours",
148
+ "42 jours"
149
+ ]
150
+ ]
151
+ },
152
+ {
153
+ "type": "paragraph",
154
+ "html": "Le profil canin demande une attention particulière en raison des variations individuelles. Présenter un intervalle est plus rigoureux que d annoncer un jour fixe. Pour les autres espèces, les valeurs reflètent les standards scientifiques reconnus en médecine vétérinaire."
155
+ },
156
+ {
157
+ "type": "title",
158
+ "text": "Que préparer avant la période estimée",
159
+ "level": 2
160
+ },
161
+ {
162
+ "type": "paragraph",
163
+ "html": "Utilisez cette estimation pour organiser un endroit calme et propre pour la mise bas, vérifier le numéro d urgence de votre vétérinaire et préparer le matériel nécessaire. Veillez au bien-être et à l alimentation de la femelle durant toute la gestation."
164
+ },
165
+ {
166
+ "type": "tip",
167
+ "title": "La santé de l animal reste la priorité absolue",
168
+ "html": "Contactez immédiatement votre vétérinaire en cas de douleur, de saignement, d écoulement anormal ou de retard de mise bas par rapport à la période calculée."
169
+ }
170
+ ];
171
+
172
+ const schemas: PetGestationLocaleContent['schemas'] = [
173
+ {
174
+ '@context': 'https://schema.org',
175
+ '@type': 'SoftwareApplication',
176
+ name: title,
177
+ description,
178
+ applicationCategory: 'HealthApplication',
179
+ operatingSystem: 'Web',
180
+ offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
181
+ } as WithContext<SoftwareApplication>,
182
+ {
183
+ '@context': 'https://schema.org',
184
+ '@type': 'FAQPage',
185
+ mainEntity: faq.map((item) => ({
186
+ '@type': 'Question',
187
+ name: item.question,
188
+ acceptedAnswer: { '@type': 'Answer', text: item.answer },
189
+ })),
190
+ } as WithContext<FAQPage>,
191
+ {
192
+ '@context': 'https://schema.org',
193
+ '@type': 'HowTo',
194
+ name: title,
195
+ step: howTo.map((step) => ({ '@type': 'HowToStep', name: step.name, text: step.text })),
196
+ } as WithContext<HowTo>,
197
+ ];
198
+
199
+ export const content: PetGestationLocaleContent = {
200
+ slug,
201
+ title,
202
+ description,
203
+ ui,
204
+ seo,
205
+ faq,
206
+ bibliography,
207
+ howTo,
208
+ schemas,
209
+ };
@@ -0,0 +1,209 @@
1
+ import { bibliography } from '../bibliography';
2
+ import type { FAQPage, HowTo, SoftwareApplication, WithContext } from 'schema-dts';
3
+ import type { PetGestationLocaleContent } from '../index';
4
+
5
+ const slug = 'kalkulator-kehamilan-hewan-peliharaan';
6
+ const title = 'Kalkulator Kehamilan Hewan Peliharaan';
7
+ const description = 'Hitung perkiraan tanggal melahirkan untuk anjing, kucing, kelinci, atau musang dari tanggal kawin dengan rentang terdokumentasi dan panduan medis.';
8
+
9
+ const ui: PetGestationLocaleContent['ui'] = {
10
+ "journeyHint": "Pilih spesies, masukkan tanggal kawin, dan ikuti kompas menuju perkiraan waktu melahirkan.",
11
+ "instantHint": "Ubah pengaturan dan kalender kehamilan akan diperbarui secara instan.",
12
+ "speciesLegend": "Jenis hewan peliharaan apa ini?",
13
+ "speciesDog": "Anjing",
14
+ "speciesCat": "Kucing",
15
+ "speciesRabbit": "Kelinci",
16
+ "speciesFerret": "Musang",
17
+ "speciesDogMeta": "58 hingga 72 hari",
18
+ "speciesCatMeta": "64 hingga 66 hari",
19
+ "speciesRabbitMeta": "Sekitar 31 hari",
20
+ "speciesFerretMeta": "Sekitar 42 hari",
21
+ "matingDateLabel": "Tanggal kawin",
22
+ "matingDateHint": "Gunakan tanggal kawin pertama yang diketahui. Ini adalah perkiraan dan bukan tanggal pembuahan medis.",
23
+ "presetToday": "Hari ini",
24
+ "presetWeekAgo": "7 hari lalu",
25
+ "presetFortnightAgo": "14 hari lalu",
26
+ "calculateButton": "Hitung perkiraan melahirkan",
27
+ "resultEyebrow": "Kompas kehamilan menunjukkan",
28
+ "dueDateLabel": "Tanggal perkiraan melahirkan",
29
+ "windowLabel": "Rentang waktu diperkirakan",
30
+ "remainingLabel": "Hari menuju perkiraan",
31
+ "elapsedLabel": "Hari berlalu",
32
+ "daysLabel": "hari",
33
+ "dayLabel": "hari",
34
+ "statusFuture": "Tanggal ini di masa depan",
35
+ "statusWaiting": "Masa kehamilan sedang berlangsung",
36
+ "statusWindow": "Rentang waktu melahirkan telah tiba",
37
+ "statusLate": "Melewati perkiraan batas luar",
38
+ "resultEmpty": "Kompas kehamilan Anda akan muncul di sini.",
39
+ "sampleLabel": "Contoh simulasi",
40
+ "sceneMating": "PERKAWINAN",
41
+ "sceneToday": "Progres saat ini",
42
+ "sceneDue": "RENTANG MELAHIRKAN",
43
+ "noteTitle": "Catatan penting kesehatan",
44
+ "noteText": "Tanggal kawin tidak selalu sama dengan tanggal pembuahan atau ovulasi. Hubungi dokter hewan untuk pemeriksaan kehamilan secara pasti.",
45
+ "sourceTitle": "Metodologi",
46
+ "sourceText": "Profil anjing menggunakan 58-72 hari, sedangkan kucing, kelinci, dan musang menggunakan panduan Manual Dokter Hewan MSD.",
47
+ "invalidDate": "Masukkan tanggal kawin yang valid.",
48
+ "futureDate": "Tanggal masa depan tidak dapat menggambarkan kehamilan aktif."
49
+ };
50
+
51
+ const faq: PetGestationLocaleContent['faq'] = [
52
+ {
53
+ "question": "Seberapa akurat kalkulator kehamilan hewan ini?",
54
+ "answer": "Kalkulator ini memberikan perkiraan untuk perencanaan persalinan. Pada anjing, tanggal kawin bisa berbeda dari waktu ovulasi karena sel sperma dapat bertahan beberapa hari di saluran reproduksi betina. Oleh karena itu, alat ini menampilkan rentang waktu daripada satu tanggal pasti. Dokter hewan dapat memastikan usia kehamilan melalui USG atau pemeriksaan fisik secara tepat dan profesional."
55
+ },
56
+ {
57
+ "question": "Berapa lama masa kehamilan anjing?",
58
+ "answer": "Manual Dokter Hewan MSD mencatat sekitar 58 hingga 72 hari dari perkawinan pertama jika waktu ovulasi tidak diketahui pasti. Jika tanggal ovulasi diketahui, jangka waktunya lebih sempit yaitu sekitar 62 hingga 64 hari. Ukuran ras dan jumlah anak dalam kandungan juga memengaruhi persalinan secara praktis dalam kehidupan sehari-hari."
59
+ },
60
+ {
61
+ "question": "Berapa lama masa kehamilan kucing?",
62
+ "answer": "Kehamilan kucing umumnya berlangsung sekitar 65 hari, dengan waktu melahirkan antara 64 hingga 66 hari setelah lonjakan hormon luteinisasi. Kalkulator ini membantu pemilik hewan mempersiapkan kebutuhan persalinan tepat waktu dan teratur tanpa kepanikan."
63
+ },
64
+ {
65
+ "question": "Mengapa kelinci dan musang disertakan?",
66
+ "answer": "Kelinci dan musang adalah hewan peliharaan populer dengan masa kehamilan yang singkat dan terdokumentasi dengan baik (sekitar 31 hari untuk kelinci dan 42 hari untuk musang). Alat ini memberikan panduan praktis dan transparan untuk spesies tersebut."
67
+ },
68
+ {
69
+ "question": "Kapan harus menghubungi dokter hewan?",
70
+ "answer": "Hubungi dokter hewan jika usia kehamilan melewati batas luar perkiraan, jika proses melahirkan tampak sulit atau terlalu lama, atau jika ada tanda-tanda pendarahan, nyeri hebat, dan kelemahan fisik pada hewan kesayangan Anda."
71
+ }
72
+ ];
73
+
74
+ const howTo: PetGestationLocaleContent['howTo'] = [
75
+ {
76
+ "name": "Pilih spesies",
77
+ "text": "Pilih anjing, kucing, kelinci, atau musang agar sistem menerapkan profil kehamilan yang sesuai."
78
+ },
79
+ {
80
+ "name": "Masukkan tanggal kawin",
81
+ "text": "Masukkan tanggal perkawinan pertama yang tercatat atau tanggal yang direkomendasikan dokter hewan."
82
+ },
83
+ {
84
+ "name": "Lihat kompas kehamilan",
85
+ "text": "Periksa perkiraan tanggal melahirkan, rentang waktu yang diharapkan, serta jumlah hari yang telah berlalu."
86
+ },
87
+ {
88
+ "name": "Lakukan persiapan",
89
+ "text": "Gunakan informasi ini untuk mempersiapkan tempat melahirkan dan berkonsultasi dengan dokter hewan."
90
+ }
91
+ ];
92
+
93
+ const seo: PetGestationLocaleContent['seo'] = [
94
+ {
95
+ "type": "summary",
96
+ "title": "Ringkasan masa kehamilan hewan peliharaan",
97
+ "items": [
98
+ "Masukkan tanggal kawin dan pilih spesies hewan untuk memperkirakan waktu melahirkan secara praktis.",
99
+ "Anjing memiliki rentang perkiraan lebih lebar karena variasi waktu ovulasi dan pembuahan sel telur.",
100
+ "Kucing, kelinci, dan musang menggunakan standar acuan Manual Dokter Hewan MSD yang akurat.",
101
+ "Alat bantu perencanaan yang berguna tetapi tidak menggantikan pemeriksaan medis dokter hewan."
102
+ ]
103
+ },
104
+ {
105
+ "type": "title",
106
+ "text": "Cara kerja kalkulator kehamilan hewan peliharaan",
107
+ "level": 2
108
+ },
109
+ {
110
+ "type": "paragraph",
111
+ "html": "Kalkulator kehamilan ini mengonversi tanggal kawin menjadi kalender estimasi melahirkan yang mudah dipahami oleh pemilik hewan. Alat ini menambahkan durasi kehamilan spesifik tiap spesies dan menampilkan tanggal umum serta rentang waktu persalinan. Perbedaan ini penting karena tanggal perkawinan tidak selalu bertepatan dengan tanggal pembuahan sel telur. Hasil ini dirancang untuk membantu pemilik menyiapkan perlengkapan persalinan dan pertanyaan untuk dokter hewan saat kunjungan. Informasi penting bagi pemilik hewan dan dokter hewan untuk memantau kesehatan selama masa kehamilan dan memastikan persiapan persalinan yang optimal bagi keselamatan induk dan anak."
112
+ },
113
+ {
114
+ "type": "paragraph",
115
+ "html": "Kompas visual menempatkan tanggal kawin di awal garis waktu melingkar yang intuitif. Lingkaran berwarna bertambah seiring berjalannya hari, sementara bagian tengah menampilkan jumlah hari yang telah berlalu hingga masa melahirkan tiba. Pemilik dapat memantau perkembangan harian hewan kesayangan secara jelas dan memahami kapan estimasi memerlukan perhatian profesional medis."
116
+ },
117
+ {
118
+ "type": "title",
119
+ "text": "Profil masa kehamilan terdokumentasi",
120
+ "level": 2
121
+ },
122
+ {
123
+ "type": "table",
124
+ "headers": [
125
+ "Spesies",
126
+ "Periode umum",
127
+ "Estimasi dari perkawinan"
128
+ ],
129
+ "rows": [
130
+ [
131
+ "Anjing",
132
+ "Sekitar 63 hari",
133
+ "58 hingga 72 hari"
134
+ ],
135
+ [
136
+ "Kucing",
137
+ "Sekitar 65 hari",
138
+ "64 hingga 66 hari"
139
+ ],
140
+ [
141
+ "Kelinci",
142
+ "Sekitar 31 hari",
143
+ "31 hari"
144
+ ],
145
+ [
146
+ "Musang",
147
+ "Sekitar 42 hari",
148
+ "42 hari"
149
+ ]
150
+ ]
151
+ },
152
+ {
153
+ "type": "paragraph",
154
+ "html": "Profil anjing membutuhkan fleksibilitas paling tinggi dari pemilik. Panduan veteriner menjelaskan bahwa gestasi normal anjing dapat digambarkan secara berbeda tergantung pada indikator biologis yang diketahui. Menampilkan rentang waktu dari perkawinan lebih jujur untuk penggunaan sehari-hari dibanding mematok angka tunggal."
155
+ },
156
+ {
157
+ "type": "title",
158
+ "text": "Persiapan sebelum masa melahirkan",
159
+ "level": 2
160
+ },
161
+ {
162
+ "type": "paragraph",
163
+ "html": "Gunakan estimasi ini untuk menyiapkan tempat persalinan yang hangat dan tenang, memeriksa kontak darurat klinik hewan, dan memantau kesehatan serta nutrisi induk hewan selama masa bunting. Jangan memberikan obat tanpa resep dokter hewan atau memicu persalinan secara mendadak."
164
+ },
165
+ {
166
+ "type": "tip",
167
+ "title": "Kesehatan hewan selalu jadi prioritas",
168
+ "html": "Segera konsultasikan dengan dokter hewan jika ada tanda-tanda pendarahan, nyeri hebat, keputihan tidak normal, atau jika persalinan tertunda melebihi batas perkiraan."
169
+ }
170
+ ];
171
+
172
+ const schemas: PetGestationLocaleContent['schemas'] = [
173
+ {
174
+ '@context': 'https://schema.org',
175
+ '@type': 'SoftwareApplication',
176
+ name: title,
177
+ description,
178
+ applicationCategory: 'HealthApplication',
179
+ operatingSystem: 'Web',
180
+ offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
181
+ } as WithContext<SoftwareApplication>,
182
+ {
183
+ '@context': 'https://schema.org',
184
+ '@type': 'FAQPage',
185
+ mainEntity: faq.map((item) => ({
186
+ '@type': 'Question',
187
+ name: item.question,
188
+ acceptedAnswer: { '@type': 'Answer', text: item.answer },
189
+ })),
190
+ } as WithContext<FAQPage>,
191
+ {
192
+ '@context': 'https://schema.org',
193
+ '@type': 'HowTo',
194
+ name: title,
195
+ step: howTo.map((step) => ({ '@type': 'HowToStep', name: step.name, text: step.text })),
196
+ } as WithContext<HowTo>,
197
+ ];
198
+
199
+ export const content: PetGestationLocaleContent = {
200
+ slug,
201
+ title,
202
+ description,
203
+ ui,
204
+ seo,
205
+ faq,
206
+ bibliography,
207
+ howTo,
208
+ schemas,
209
+ };
@@ -0,0 +1,209 @@
1
+ import { bibliography } from '../bibliography';
2
+ import type { FAQPage, HowTo, SoftwareApplication, WithContext } from 'schema-dts';
3
+ import type { PetGestationLocaleContent } from '../index';
4
+
5
+ const slug = 'calcolatore-gestazione-animali';
6
+ const title = 'Calcolatore di gestazione per animali domestici';
7
+ const description = 'Calcola la data presunta del parto per cani, gatti, conigli o furetti dalla data di accoppiamento con intervallo documentato e guida veterinaria.';
8
+
9
+ const ui: PetGestationLocaleContent['ui'] = {
10
+ "journeyHint": "Scegli la specie, inserisci la data di accoppiamento e segui la bussola verso la finestra del parto.",
11
+ "instantHint": "Modifica un parametro e il calendario si aggiornerà all istante.",
12
+ "speciesLegend": "Che tipo di animale domestico è?",
13
+ "speciesDog": "Cane",
14
+ "speciesCat": "Gatto",
15
+ "speciesRabbit": "Coniglio",
16
+ "speciesFerret": "Furetto",
17
+ "speciesDogMeta": "Da 58 a 72 giorni",
18
+ "speciesCatMeta": "Da 64 a 66 giorni",
19
+ "speciesRabbitMeta": "Circa 31 giorni",
20
+ "speciesFerretMeta": "Circa 42 giorni",
21
+ "matingDateLabel": "Data di accoppiamento",
22
+ "matingDateHint": "Utilizza la prima data nota. È una stima orientativa e non una data di fecondazione certa.",
23
+ "presetToday": "Oggi",
24
+ "presetWeekAgo": "7 giorni fa",
25
+ "presetFortnightAgo": "14 giorni fa",
26
+ "calculateButton": "Calcola finestra del parto",
27
+ "resultEyebrow": "La bussola di nidificazione indica",
28
+ "dueDateLabel": "Data presunta del parto",
29
+ "windowLabel": "Finestra attesa",
30
+ "remainingLabel": "Giorni al parto",
31
+ "elapsedLabel": "Giorni trascorsi",
32
+ "daysLabel": "giorni",
33
+ "dayLabel": "giorno",
34
+ "statusFuture": "La data inserita è futura",
35
+ "statusWaiting": "Gestazione in corso",
36
+ "statusWindow": "La finestra del parto è aperta",
37
+ "statusLate": "Superato l intervallo massimo stimato",
38
+ "resultEmpty": "La tua bussola comparirà qui.",
39
+ "sampleLabel": "Esempio pratico",
40
+ "sceneMating": "ACCOPPIAMENTO",
41
+ "sceneToday": "Stato attuale",
42
+ "sceneDue": "FINESTRA DI PARTO",
43
+ "noteTitle": "Nota importante sulla salute",
44
+ "noteText": "La data di accoppiamento non coincide sempre con l ovulazione o la fecondazione. Consulta un veterinario per controlli prénatali e conferma della gravidanza.",
45
+ "sourceTitle": "Metodologia",
46
+ "sourceText": "I cani utilizzano un intervallo da 58 a 72 giorni, mentre gatti, conigli e furetti seguono il Manuale Veterinario MSD.",
47
+ "invalidDate": "Inserisci una data di accoppiamento valida.",
48
+ "futureDate": "Una data futura non può indicare una gravidanza attiva."
49
+ };
50
+
51
+ const faq: PetGestationLocaleContent['faq'] = [
52
+ {
53
+ "question": "Quanto è preciso il calcolatore di gestazione per animali?",
54
+ "answer": "Si tratta di una stima orientativa utile alla pianificazione. Nel cane la data di accoppiamento può differire dall ovulazione perché gli spermatozoi sopravvivono diversi giorni nel tratto riproduttivo. Il calcolatore mostra un intervallo temporale anziché un singolo giorno rigido. Il veterinario può confermare la data precisa mediante ecografia o esame clinico."
55
+ },
56
+ {
57
+ "question": "Quanto dura la gravidanza di un cane?",
58
+ "answer": "Il Manuale Veterinario MSD indica da 58 a 72 giorni dal primo accoppiamento quando la data di ovulazione non è nota. Se l ovulazione è accertata, il periodo è più ristretto, tra 62 e 64 giorni. La razza e la dimensione della cucciolata possono influenzare la durata effettivo del parto."
59
+ },
60
+ {
61
+ "question": "Quanto dura la gravidanza di un gatto?",
62
+ "answer": "La gravidanza della gatta dura in genere circa 65 giorni, con parto stimato tra 64 e 66 giorni dall incremento ormonale. Lo strumento serve come guida di pianificazione familiare per preparare al meglio l ambiente di nascita."
63
+ },
64
+ {
65
+ "question": "Perché sono inclusi conigli e furetti?",
66
+ "answer": "Conigli e furetti sono animali da compagnia diffusi con durate di gravidanza brevi e ben documentate (circa 31 giorni per i conigli e 42 per i furetti). Questo calcolatore fornisce indicazioni utili per entrambe le specie."
67
+ },
68
+ {
69
+ "question": "Quando contattare il veterinario?",
70
+ "answer": "Rivolgiti immediatamente a un veterinario se la gravidanza supera l intervallo massimo, se il travaglio si prolunga senza progressi, o in presenza di dolore, emorragia o perdite anomale della femmina."
71
+ }
72
+ ];
73
+
74
+ const howTo: PetGestationLocaleContent['howTo'] = [
75
+ {
76
+ "name": "Seleziona la specie",
77
+ "text": "Scegli cane, gatto, coniglio o furetto per applicare il profilo di gravidanza corrispondente."
78
+ },
79
+ {
80
+ "name": "Inserisci la data",
81
+ "text": "Indica la data del primo accoppiamento noto della femmina."
82
+ },
83
+ {
84
+ "name": "Leggi la bussola",
85
+ "text": "Verifica la data presunta, l intervallo atteso e i giorni di gravidanza trascorsi."
86
+ },
87
+ {
88
+ "name": "Pianifica con cura",
89
+ "text": "Utilizza i dati per preparare la cassa parto e concordare i controlli con la clinica veterinaria."
90
+ }
91
+ ];
92
+
93
+ const seo: PetGestationLocaleContent['seo'] = [
94
+ {
95
+ "type": "summary",
96
+ "title": "Gestazione animali domestici in sintesi",
97
+ "items": [
98
+ "Inserisci la data di accoppiamento e seleziona la specie per calcolare il parto.",
99
+ "I cani richiedono un intervallo più ampio a causa della variabilità dell ovulazione.",
100
+ "Gatti, conigli e furetti utilizzano gli standard del Manuale Veterinario MSD.",
101
+ "Strumento di supporto pratico che non sostituisce l esame veterinario diretto."
102
+ ]
103
+ },
104
+ {
105
+ "type": "title",
106
+ "text": "Come funziona il calcolatore di gestazione",
107
+ "level": 2
108
+ },
109
+ {
110
+ "type": "paragraph",
111
+ "html": "Questo calcolatore trasforma la data di accoppiamento osservata in un calendario stimato del parto. Aggiunge la durata specifica della specie e mostra sia una data media sia l intervallo previsto. Questa distinzione è fondamentale: l accoppiamento non coincide sempre con la fecondazione dell uovo. Aiuta i proprietari a preparare per tempo il materiale necessario per i cuccioli e organizzare le domande per il veterinario curante. Informazioni importanti per i proprietari e i veterinari per monitorare la salute durante la gravidanza e garantire una preparazione ottimale e serena al parto per la madre e i cuccioli."
112
+ },
113
+ {
114
+ "type": "paragraph",
115
+ "html": "La bussola visuale posiziona l accoppiamento all inizio di una linea temporale circolare. L anello colorato cresce con il passare dei giorni mentre il centro indica i giorni trascorsi fino al momento del parto. Se l intervallo massimo viene superato, lo stato segnala l importanza di contattare la clinica veterinaria."
116
+ },
117
+ {
118
+ "type": "title",
119
+ "text": "Profili di gestazione documentati",
120
+ "level": 2
121
+ },
122
+ {
123
+ "type": "table",
124
+ "headers": [
125
+ "Specie",
126
+ "Periodo tipico",
127
+ "Stima dall accoppiamento"
128
+ ],
129
+ "rows": [
130
+ [
131
+ "Cane",
132
+ "Circa 63 giorni",
133
+ "Da 58 a 72 giorni"
134
+ ],
135
+ [
136
+ "Gatto",
137
+ "Circa 65 giorni",
138
+ "Da 64 a 66 giorni"
139
+ ],
140
+ [
141
+ "Coniglio",
142
+ "Circa 31 giorni",
143
+ "31 giorni"
144
+ ],
145
+ [
146
+ "Furetto",
147
+ "Circa 42 giorni",
148
+ "42 giorni"
149
+ ]
150
+ ]
151
+ },
152
+ {
153
+ "type": "paragraph",
154
+ "html": "Il profilo canino richiede maggiore cautela. Le linee guida veterinarie spiegano che la durata della gestazione varia a seconda dell evento biologico noto. Un intervallo rispetto all accoppiamento è più trasparente di un singolo numero fisso per l uso quotidiano."
155
+ },
156
+ {
157
+ "type": "title",
158
+ "text": "Preparazione prima della finestra di parto",
159
+ "level": 2
160
+ },
161
+ {
162
+ "type": "paragraph",
163
+ "html": "Sfrutta questa stima per organizzare un ambiente tranquillo, preparare i numeri di emergenza della clinica veterinaria e monitorare il benessere della femmina. Segui le raccomandazioni professionali su alimentazione e salute generale."
164
+ },
165
+ {
166
+ "type": "tip",
167
+ "title": "La salute dell animale al primo posto",
168
+ "html": "Contatta subito il veterinario se noti sofferenza, ritardi eccessivi, perdita prolungata di forze o complicanze durante la gravidanza o il travaglio."
169
+ }
170
+ ];
171
+
172
+ const schemas: PetGestationLocaleContent['schemas'] = [
173
+ {
174
+ '@context': 'https://schema.org',
175
+ '@type': 'SoftwareApplication',
176
+ name: title,
177
+ description,
178
+ applicationCategory: 'HealthApplication',
179
+ operatingSystem: 'Web',
180
+ offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
181
+ } as WithContext<SoftwareApplication>,
182
+ {
183
+ '@context': 'https://schema.org',
184
+ '@type': 'FAQPage',
185
+ mainEntity: faq.map((item) => ({
186
+ '@type': 'Question',
187
+ name: item.question,
188
+ acceptedAnswer: { '@type': 'Answer', text: item.answer },
189
+ })),
190
+ } as WithContext<FAQPage>,
191
+ {
192
+ '@context': 'https://schema.org',
193
+ '@type': 'HowTo',
194
+ name: title,
195
+ step: howTo.map((step) => ({ '@type': 'HowToStep', name: step.name, text: step.text })),
196
+ } as WithContext<HowTo>,
197
+ ];
198
+
199
+ export const content: PetGestationLocaleContent = {
200
+ slug,
201
+ title,
202
+ description,
203
+ ui,
204
+ seo,
205
+ faq,
206
+ bibliography,
207
+ howTo,
208
+ schemas,
209
+ };