@jjlmoya/utils-pets 1.18.0 → 1.20.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/category/index.ts +3 -1
- package/src/data.ts +2 -0
- package/src/entries.ts +7 -1
- package/src/layouts/PreviewLayout.astro +2 -0
- package/src/pages/[locale]/[slug].astro +14 -5
- package/src/tests/diacritics_density.test.ts +1 -1
- package/src/tests/faq_count.test.ts +1 -1
- package/src/tests/inverted_punctuation.test.ts +1 -1
- package/src/tests/locale_completeness.test.ts +1 -1
- package/src/tests/script_density.test.ts +1 -1
- package/src/tests/title_quality.test.ts +1 -0
- package/src/tests/tool_validation.test.ts +5 -5
- package/src/tests/translation_copy.test.ts +14 -15
- package/src/tool/petGestation/i18n/en.ts +1 -0
- package/src/tool/petGestation/i18n/es.ts +1 -0
- package/src/tool/petToxicity/bibliography.astro +6 -0
- package/src/tool/petToxicity/bibliography.ts +16 -0
- package/src/tool/petToxicity/component.astro +53 -0
- package/src/tool/petToxicity/controller.ts +117 -0
- package/src/tool/petToxicity/dom-views.ts +61 -0
- package/src/tool/petToxicity/entry.ts +33 -0
- package/src/tool/petToxicity/evaluator.ts +23 -0
- package/src/tool/petToxicity/i18n/de.ts +181 -0
- package/src/tool/petToxicity/i18n/en.ts +175 -0
- package/src/tool/petToxicity/i18n/es.ts +181 -0
- package/src/tool/petToxicity/i18n/fr.ts +181 -0
- package/src/tool/petToxicity/i18n/id.ts +182 -0
- package/src/tool/petToxicity/i18n/it.ts +181 -0
- package/src/tool/petToxicity/i18n/ja.ts +181 -0
- package/src/tool/petToxicity/i18n/ko.ts +181 -0
- package/src/tool/petToxicity/i18n/nl.ts +182 -0
- package/src/tool/petToxicity/i18n/pl.ts +182 -0
- package/src/tool/petToxicity/i18n/pt.ts +181 -0
- package/src/tool/petToxicity/i18n/ru.ts +182 -0
- package/src/tool/petToxicity/i18n/sv.ts +182 -0
- package/src/tool/petToxicity/i18n/tr.ts +182 -0
- package/src/tool/petToxicity/i18n/zh.ts +181 -0
- package/src/tool/petToxicity/index.ts +11 -0
- package/src/tool/petToxicity/logic.test.ts +32 -0
- package/src/tool/petToxicity/logic.ts +192 -0
- package/src/tool/petToxicity/pet-food-toxicity-checker.css +450 -0
- package/src/tool/petToxicity/seo.astro +15 -0
- package/src/tool/petToxicity/storage.ts +37 -0
- package/src/tool/petToxicity/ui.ts +33 -0
- package/src/tool/petWaterIntake/bibliography.astro +6 -0
- package/src/tool/petWaterIntake/bibliography.ts +16 -0
- package/src/tool/petWaterIntake/component.astro +103 -0
- package/src/tool/petWaterIntake/controller.ts +47 -0
- package/src/tool/petWaterIntake/dom-views.ts +54 -0
- package/src/tool/petWaterIntake/entry.ts +33 -0
- package/src/tool/petWaterIntake/i18n/de.ts +205 -0
- package/src/tool/petWaterIntake/i18n/en.ts +205 -0
- package/src/tool/petWaterIntake/i18n/es.ts +205 -0
- package/src/tool/petWaterIntake/i18n/fr.ts +205 -0
- package/src/tool/petWaterIntake/i18n/id.ts +237 -0
- package/src/tool/petWaterIntake/i18n/it.ts +237 -0
- package/src/tool/petWaterIntake/i18n/ja.ts +237 -0
- package/src/tool/petWaterIntake/i18n/ko.ts +237 -0
- package/src/tool/petWaterIntake/i18n/nl.ts +237 -0
- package/src/tool/petWaterIntake/i18n/pl.ts +237 -0
- package/src/tool/petWaterIntake/i18n/pt.ts +237 -0
- package/src/tool/petWaterIntake/i18n/ru.ts +237 -0
- package/src/tool/petWaterIntake/i18n/sv.ts +237 -0
- package/src/tool/petWaterIntake/i18n/tr.ts +237 -0
- package/src/tool/petWaterIntake/i18n/zh.ts +237 -0
- package/src/tool/petWaterIntake/index.ts +11 -0
- package/src/tool/petWaterIntake/logic.test.ts +52 -0
- package/src/tool/petWaterIntake/logic.ts +84 -0
- package/src/tool/petWaterIntake/pet-water-intake.css +144 -0
- package/src/tool/petWaterIntake/seo.astro +15 -0
- package/src/tool/petWaterIntake/ui.ts +55 -0
- package/src/tools.ts +6 -0
|
@@ -0,0 +1,181 @@
|
|
|
1
|
+
import { bibliography } from '../bibliography';
|
|
2
|
+
import type { FAQPage, HowTo, SoftwareApplication, WithContext } from 'schema-dts';
|
|
3
|
+
import type { PetToxicityLocaleContent, PetToxicityUI } from '../entry';
|
|
4
|
+
|
|
5
|
+
const slug = 'aliments-toxiques-chiens-chats-verificateur';
|
|
6
|
+
const title = 'Vérificateur d aliments toxiques pour chiens et chats';
|
|
7
|
+
const description = 'Vérifiez la dangerosité des aliments pour chiens et chats, identifiez les signes d alerte et sachez quand contacter un vétérinaire.';
|
|
8
|
+
|
|
9
|
+
const ui: PetToxicityUI = {
|
|
10
|
+
"journeyHint": "Sélectionnez l animal, ouvrez l atlas alimentaire et consultez l avertissement spécifique à l espèce avant de décider.",
|
|
11
|
+
"speciesLabel": "Espèce",
|
|
12
|
+
"speciesDog": "Chien",
|
|
13
|
+
"speciesCat": "Chat",
|
|
14
|
+
"speciesDogMeta": "Profil canin",
|
|
15
|
+
"speciesCatMeta": "Profil félin",
|
|
16
|
+
"foodLabel": "Aliment ou ingrédient",
|
|
17
|
+
"foodPlaceholder": "Choisissez un aliment",
|
|
18
|
+
"foodMenuHint": "La liste s adapte à l espèce car les risques sont spécifiques.",
|
|
19
|
+
"resultEyebrow": "L atlas alimentaire indique",
|
|
20
|
+
"resultEmpty": "Choisissez un aliment pour ouvrir sa fiche de sécurité.",
|
|
21
|
+
"sceneLabel": "Carte d exposition",
|
|
22
|
+
"sceneReady": "Choisissez un aliment",
|
|
23
|
+
"sceneSelected": "Fiche spécifique ouverte",
|
|
24
|
+
"riskCritical": "Urgence critique",
|
|
25
|
+
"riskHigh": "Risque élevé",
|
|
26
|
+
"riskCaution": "Attention",
|
|
27
|
+
"riskUnknown": "Données insuffisantes",
|
|
28
|
+
"riskLabel": "Niveau de risque",
|
|
29
|
+
"whyLabel": "Pourquoi c est important",
|
|
30
|
+
"signsLabel": "Signes à surveiller",
|
|
31
|
+
"actionLabel": "Que faire",
|
|
32
|
+
"callVetLabel": "Le choix le plus sûr est un avis professionnel.",
|
|
33
|
+
"callVetText": "Un calculateur ne peut pas estimer une dose toxique ni remplacer une consultation.",
|
|
34
|
+
"sourceLabel": "Sources utilisées",
|
|
35
|
+
"sourceText": "Les fiches reposent sur les recommandations de toxicologie vétérinaire de l ASPCA, de la FDA et du Manuel Vétérinaire MSD.",
|
|
36
|
+
"emergencyTitle": "Si votre animal a ingéré un produit suspect",
|
|
37
|
+
"emergencyText": "Appelez immédiatement votre vétérinaire, une clinique d urgence ou un centre antipoison. Conservez l emballage et la quantité estimée.",
|
|
38
|
+
"openMenu": "Ouvrir les options",
|
|
39
|
+
"closeMenu": "Fermer les options"
|
|
40
|
+
};
|
|
41
|
+
|
|
42
|
+
const faq: PetToxicityLocaleContent['faq'] = [
|
|
43
|
+
{
|
|
44
|
+
"question": "Ce vérificateur garantit-il la sécurité de mon animal ?",
|
|
45
|
+
"answer": "Non. Il s agit d un guide éducatif sur les dangers alimentaires, pas d un outil de diagnostic ou de calcul de dose. Le risque dépend de l espèce, du produit, de la quantité et du poids."
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"question": "Quels aliments sont particulièrement dangereux pour les chiens ?",
|
|
49
|
+
"answer": "Le xylitol, le chocolat, la caféine, les raisins, les oignons, l ail, l alcool et la pâte à pain crue figurent parmi les plus toxiques."
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"question": "L oignon et l ail sont-ils dangereux pour les chats ?",
|
|
53
|
+
"answer": "Oui. Les chats sont particulièrement sensibles aux dommages causés aux globules rouges par les plantes du genre Allium (oignons, ail, ciboulette)."
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
"question": "Pourquoi le xylitol affiche-t-il un avertissement différent selon l espèce ?",
|
|
57
|
+
"answer": "Chez le chien, le xylitol entraîne une chute brutale et dangereuse de la glycémie. Chez le chat, ce risque est moins documenté par la FDA."
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"question": "Que faire si l aliment ingéré n est pas listé ?",
|
|
61
|
+
"answer": "L absence d un aliment ne garantit pas sa sécurité. Conservez l emballage, notez les détails et contactez un vétérinaire."
|
|
62
|
+
}
|
|
63
|
+
];
|
|
64
|
+
|
|
65
|
+
const howTo: PetToxicityLocaleContent['howTo'] = [
|
|
66
|
+
{
|
|
67
|
+
"name": "Sélectionner l espèce",
|
|
68
|
+
"text": "Choisissez Chien ou Chat pour afficher les données spécifiques."
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
"name": "Choisir l aliment",
|
|
72
|
+
"text": "Ouvrez le menu et sélectionnez l ingrédient correspondant."
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
"name": "Lire la fiche de sécurité",
|
|
76
|
+
"text": "Consultez la gravité du risque, les signes possibles et la démarche conseillée."
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"name": "Contacter un spécialiste",
|
|
80
|
+
"text": "En cas d ingestion réelle, appelez un vétérinaire muni des informations du produit."
|
|
81
|
+
}
|
|
82
|
+
];
|
|
83
|
+
|
|
84
|
+
const seo: PetToxicityLocaleContent['seo'] = [
|
|
85
|
+
{
|
|
86
|
+
type: 'summary',
|
|
87
|
+
title: "Vérification rapide de la sécurité alimentaire canine et féline",
|
|
88
|
+
items: [
|
|
89
|
+
"Sélectionnez d abord l espèce, les risques variant selon l animal.",
|
|
90
|
+
"Utilisez les fiches pour comprendre le danger et le niveau d urgence.",
|
|
91
|
+
"Traitez l ingestion de xylitol chez le chien comme une urgence absolue.",
|
|
92
|
+
"Contactez un vétérinaire en cas de doute ou d ingestion avérée."
|
|
93
|
+
],
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
type: 'title',
|
|
97
|
+
text: "Comment utiliser ce vérificateur d aliments toxiques",
|
|
98
|
+
level: 2,
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
type: 'paragraph',
|
|
102
|
+
html: "Cet outil vous aide à réagir rapidement après une ingestion suspecte. Il structure les informations essentielles avant de contacter les services vétérinaires. Cela permet d aborder la conversation avec sérénité et efficacité lors d un appel d urgence en clinique vétérinaire de garde.",
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
type: 'paragraph',
|
|
106
|
+
html: "Les réactions physiologiques des chiens et des chats diffèrent fortement. Par exemple, le xylitol est critique pour le chien tandis que l oignon affecte lourdement le chat. Prendre en compte ces spécificités évite des erreurs d interprétation dommageables pour la santé de l animal domestique.",
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
type: 'title',
|
|
110
|
+
text: "Principaux aliments dangereux et facteurs clés",
|
|
111
|
+
level: 2,
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
type: 'table',
|
|
115
|
+
headers: ["Aliment ou ingrédient","Danger principal","Contexte important"],
|
|
116
|
+
rows: [["Chocolat et caféine","Effets cardiaques et nerveux sévères","La teneur en cacao, le type de chocolat et le poids de l animal sont totalement déterminants."],["Xylitol","Hypoglycémie sévère et soudaine chez le chien","Présent dans les chewing-gums sans sucre, bonbons et pâtisseries industrielles."],["Raisins frais et secs","Risque d insuffisance rénale aiguë","Sensibilité très variable; aucune quantité ingérée ne peut être considérée sans danger."],["Oignon et ail","Destruction des globules rouges et anémie","Les formes en poudre, déshydratées ou cuites restent extrêmement concentrées."],["Pâte à levure crue","Dilatation de l estomac et intoxication éthylique","La fermentation dans l estomac génère du gaz et de l alcool toxique."]],
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
type: 'paragraph',
|
|
120
|
+
html: "Outre la toxicité chimique classique, des risques mécaniques d obstruction digestive par des os ou des noyaux, ainsi que des risques de pancréatite aiguë liés aux aliments très gras existent. Une évaluation rigoureuse de la situation permet de donner des précisions très utiles au praticien vétérinaire.",
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
type: 'title',
|
|
124
|
+
text: "Que faire après une exposition suspecte",
|
|
125
|
+
level: 2,
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
type: 'list',
|
|
129
|
+
items: [
|
|
130
|
+
"Éloignez immédiatement le reste de l aliment et gardez soigneusement l emballage.",
|
|
131
|
+
"Notez précisément l espèce, le poids, l aliment, la quantité et l heure d ingestion.",
|
|
132
|
+
"Contactez rapidement un vétérinaire ou un centre antipoison vétérinaire agréé.",
|
|
133
|
+
"Ne faites pas vomir l animal sans un avis médical vétérinaire explicite.",
|
|
134
|
+
"Consultez en urgence en cas de convulsions, de malaise ou de difficultés respiratoires."
|
|
135
|
+
],
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
type: 'tip',
|
|
139
|
+
title: "La santé de l animal est prioritaire",
|
|
140
|
+
html: "Les symptômes peuvent mettre plusieurs heures à apparaître. N attendez pas l apparition de signes graves pour demander conseil à un professionnel.",
|
|
141
|
+
},
|
|
142
|
+
];
|
|
143
|
+
|
|
144
|
+
const schemas: PetToxicityLocaleContent['schemas'] = [
|
|
145
|
+
{
|
|
146
|
+
'@context': 'https://schema.org',
|
|
147
|
+
'@type': 'SoftwareApplication',
|
|
148
|
+
name: title,
|
|
149
|
+
description,
|
|
150
|
+
applicationCategory: 'HealthApplication',
|
|
151
|
+
operatingSystem: 'Web',
|
|
152
|
+
offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
|
|
153
|
+
} as WithContext<SoftwareApplication>,
|
|
154
|
+
{
|
|
155
|
+
'@context': 'https://schema.org',
|
|
156
|
+
'@type': 'FAQPage',
|
|
157
|
+
mainEntity: faq.map((item) => ({
|
|
158
|
+
'@type': 'Question',
|
|
159
|
+
name: item.question,
|
|
160
|
+
acceptedAnswer: { '@type': 'Answer', text: item.answer },
|
|
161
|
+
})),
|
|
162
|
+
} as WithContext<FAQPage>,
|
|
163
|
+
{
|
|
164
|
+
'@context': 'https://schema.org',
|
|
165
|
+
'@type': 'HowTo',
|
|
166
|
+
name: title,
|
|
167
|
+
step: howTo.map((step) => ({ '@type': 'HowToStep', name: step.name, text: step.text })),
|
|
168
|
+
} as WithContext<HowTo>,
|
|
169
|
+
];
|
|
170
|
+
|
|
171
|
+
export const content: PetToxicityLocaleContent = {
|
|
172
|
+
slug,
|
|
173
|
+
title,
|
|
174
|
+
description,
|
|
175
|
+
ui,
|
|
176
|
+
seo,
|
|
177
|
+
faq,
|
|
178
|
+
bibliography,
|
|
179
|
+
howTo,
|
|
180
|
+
schemas,
|
|
181
|
+
};
|
|
@@ -0,0 +1,182 @@
|
|
|
1
|
+
import { bibliography } from '../bibliography';
|
|
2
|
+
import type { FAQPage, HowTo, SoftwareApplication, WithContext } from 'schema-dts';
|
|
3
|
+
import type { PetToxicityLocaleContent, PetToxicityUI } from '../entry';
|
|
4
|
+
|
|
5
|
+
const slug = 'pemeriksa-racun-makanan-hewan-peliharaan';
|
|
6
|
+
const title = 'Pemeriksa Racun Makanan Hewan Peliharaan';
|
|
7
|
+
const description = 'Periksa paparan makanan umum untuk anjing dan kucing, pahami tanda peringatan, dan ketahui kapan harus menghubungi dokter hewan.';
|
|
8
|
+
|
|
9
|
+
const ui: PetToxicityUI = {
|
|
10
|
+
"journeyHint": "Pilih hewan, buka atlas makanan, dan baca peringatan khusus spesies sebelum memutuskan langkah.",
|
|
11
|
+
"speciesLabel": "Hewan",
|
|
12
|
+
"speciesDog": "Anjing",
|
|
13
|
+
"speciesCat": "Kucing",
|
|
14
|
+
"speciesDogMeta": "Profil anjing",
|
|
15
|
+
"speciesCatMeta": "Profil kucing",
|
|
16
|
+
"foodLabel": "Makanan atau bahan",
|
|
17
|
+
"foodPlaceholder": "Pilih makanan",
|
|
18
|
+
"foodMenuHint": "Daftar berubah sesuai hewan karena risiko bersifat spesifik spesies.",
|
|
19
|
+
"resultEyebrow": "Atlas makanan menunjukkan",
|
|
20
|
+
"resultEmpty": "Pilih makanan untuk membuka kartu keselamatannya.",
|
|
21
|
+
"sceneLabel": "Peta paparan",
|
|
22
|
+
"sceneReady": "Pilih makanan",
|
|
23
|
+
"sceneSelected": "Kartu spesifik spesies terbuka",
|
|
24
|
+
"riskCritical": "Mendesak",
|
|
25
|
+
"riskHigh": "Risiko tinggi",
|
|
26
|
+
"riskCaution": "Hati-hati",
|
|
27
|
+
"riskUnknown": "Data tidak cukup",
|
|
28
|
+
"riskLabel": "Tingkat risiko",
|
|
29
|
+
"whyLabel": "Mengapa ini penting",
|
|
30
|
+
"signsLabel": "Tanda yang perlu diamati",
|
|
31
|
+
"actionLabel": "Tindakan yang harus diambil",
|
|
32
|
+
"callVetLabel": "Langkah aman adalah saran profesional.",
|
|
33
|
+
"callVetText": "Kalkulator tidak dapat memperkirakan dosis racun atau menggantikan pemeriksaan.",
|
|
34
|
+
"sourceLabel": "Bukti yang digunakan",
|
|
35
|
+
"sourceText": "Profil berdasarkan panduan toksikologi veteriner ASPCA, FDA, dan Merck Veterinary Manual.",
|
|
36
|
+
"emergencyTitle": "Jika hewan peliharaan Anda memakan sesuatu yang mencurigakan",
|
|
37
|
+
"emergencyText": "Hubungi dokter hewan atau klinik darurat segera. Simpan kemasan, daftar bahan, dan perkiraan jumlah.",
|
|
38
|
+
"openMenu": "Buka opsi",
|
|
39
|
+
"closeMenu": "Tutup opsi"
|
|
40
|
+
};
|
|
41
|
+
|
|
42
|
+
const faq: PetToxicityLocaleContent['faq'] = [
|
|
43
|
+
{
|
|
44
|
+
"question": "Apakah alat ini dapat menentukan hewan saya aman?",
|
|
45
|
+
"answer": "Tidak. Ini adalah panduan edukasi tentang bahaya makanan umum, bukan diagnosis atau kalkulator dosis. Hubungi dokter hewan jika hewan Anda memakan makanan mencurigakan."
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"question": "Makanan apa yang sangat berbahaya bagi anjing?",
|
|
49
|
+
"answer": "Xylitol, cokelat, kafein, anggur, kismis, bawang, alkohol, kacang makadamia, dan adonan ragi mentah."
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"question": "Apakah bawang merah dan bawang putih berbahaya bagi kucing?",
|
|
53
|
+
"answer": "Ya. Kucing sangat rentan terhadap kerusakan sel darah merah akibat tanaman Allium (bawang merah, bawang putih, daun bawang)."
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
"question": "Mengapa xylitol menunjukkan peringatan berbeda untuk anjing dan kucing?",
|
|
57
|
+
"answer": "Xylitol menyebabkan penurunan gula darah yang cepat dan berbahaya pada anjing. Pada kucing, bahaya ini kurang terdokumentasi jelas oleh FDA."
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"question": "Apa yang harus dilakukan jika makanan tidak tercantum?",
|
|
61
|
+
"answer": "Ketidakberadaan di daftar bukan bukti keamanan. Simpan kemasan dan hubungi dokter hewan."
|
|
62
|
+
},
|
|
63
|
+
];
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
const howTo: PetToxicityLocaleContent['howTo'] = [
|
|
67
|
+
{
|
|
68
|
+
"name": "Pilih hewan",
|
|
69
|
+
"text": "Pilih Anjing atau Kucing untuk melihat bukti spesifik spesies."
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
"name": "Pilih makanan",
|
|
73
|
+
"text": "Buka menu dan pilih bahan makanan yang paling sesuai."
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"name": "Baca kartu keselamatan",
|
|
77
|
+
"text": "Tinjau tingkat risiko, gejala yang mungkin timbul, dan tindakan yang disarankan."
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"name": "Hubungi profesional jika diperlukan",
|
|
81
|
+
"text": "Jika terjadi paparan nyata, segera hubungi dokter hewan."
|
|
82
|
+
}
|
|
83
|
+
];
|
|
84
|
+
|
|
85
|
+
const seo: PetToxicityLocaleContent['seo'] = [
|
|
86
|
+
{
|
|
87
|
+
type: 'summary',
|
|
88
|
+
title: "Pemeriksaan cepat keamanan makanan anjing dan kucing",
|
|
89
|
+
items: [
|
|
90
|
+
"Pilih spesies terlebih dahulu karena bahan yang sama dapat berdampak berbeda.",
|
|
91
|
+
"Gunakan kartu makanan untuk memahami bahaya dan tingkat urgensi.",
|
|
92
|
+
"Paparan xylitol pada anjing adalah keadaan darurat mendesak.",
|
|
93
|
+
"Hubungi dokter hewan untuk paparan nyata di kehidupan nyata."
|
|
94
|
+
],
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
type: 'title',
|
|
98
|
+
text: "Cara menggunakan pemeriksa racun makanan hewan secara bertanggung jawab",
|
|
99
|
+
level: 2,
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
type: 'paragraph',
|
|
103
|
+
html: "Alat ini dirancang untuk menit-menit pertama yang menegangkan setelah anjing atau kucing memakan sesuatu yang tidak seharusnya. Pilih hewan dan buka kartu makanan untuk mempersiapkan konsultasi dengan dokter hewan. Hal ini membantu mengendalikan situasi dengan lebih tenang dan teratur saat mengontak penanganan medis darurat. Informasi yang disajikan mencakup indikasi bahaya, gejala umum yang perlu diamati, serta pertolongan pertama yang tepat.",
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
type: 'paragraph',
|
|
107
|
+
html: "Anjing dan kucing memproses zat dengan cara berbeda. Xylitol sangat berbahaya bagi anjing karena memicu pelepasan insulin cepat yang berujung pada hipoglikemia berat dan potensi kerusakan hati, sedangkan tanaman keluarga bawang sangat berdampak pada sel darah merah kucing hingga memicu anemia hemolitik. Pemilihan spesies sejak awal meminimalkan salah tafsir informasi penting yang membahayakan nyawa hewan.",
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
type: 'title',
|
|
111
|
+
text: "Bahaya makanan umum dan rincian penting",
|
|
112
|
+
level: 2,
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
type: 'table',
|
|
116
|
+
headers: ["Makanan atau bahan","Bahaya utama","Konteks penting"],
|
|
117
|
+
rows: [["Cokelat dan kafein","Efek pada jantung dan saraf","Kandungan kakao dan berat badan sangat menentukan tingkat keracunan."],["Xylitol","Penurunan gula darah cepat pada anjing","Periksa permen karet bebas gula, permen, dan kue."],["Anggur dan kismis","Potensi kerusakan ginjal pada anjing","Jangan menganggap jumlah kecil aman untuk dikonsumsi."],["Bawang merah dan putih","Kerusakan sel darah merah","Bentuk bubuk, kering, dan olahan juga berbahaya."],["Adonan ragi mentah","Pembengkakan lambung dan alkohol","Adonan mengembang dan menghasilkan fermentasi berbahaya."]],
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
type: 'paragraph',
|
|
121
|
+
html: "Selain racun kimia, bahaya fisik seperti penyumbatan tulang atau pankreatitis akibat makanan berlemak juga perlu diwaspadai. Tulang yang dimasak dapat pecah dan melukai saluran pencernaan, sementara makanan tinggi lemak dapat menyebabkan peradangan pankreas yang sangat menyakitkan. Penanganan yang cepat dan tepat sangat menentukan keselamatan hewan peliharaan Anda.",
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
type: 'title',
|
|
125
|
+
text: "Langkah yang harus diambil setelah paparan",
|
|
126
|
+
level: 2,
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
type: 'list',
|
|
130
|
+
items: [
|
|
131
|
+
"Jauhkan sisa makanan dan simpan kemasannya dengan baik.",
|
|
132
|
+
"Catat berat hewan, jenis makanan, jumlah, dan waktu paparan.",
|
|
133
|
+
"Hubungi dokter hewan atau layanan darurat hewan segera.",
|
|
134
|
+
"Jangan memicu muntah tanpa petunjuk medis dokter hewan.",
|
|
135
|
+
"Segera cari bantuan jika terjadi kejang, pingsan, atau sesak napas."
|
|
136
|
+
],
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
type: 'tip',
|
|
140
|
+
title: "Kesehatan hewan adalah yang utama",
|
|
141
|
+
html: "Gejala bisa muncul terlambat. Jangan menunda untuk meminta bantuan profesional medis veteriner.",
|
|
142
|
+
},
|
|
143
|
+
];
|
|
144
|
+
|
|
145
|
+
const schemas: PetToxicityLocaleContent['schemas'] = [
|
|
146
|
+
{
|
|
147
|
+
'@context': 'https://schema.org',
|
|
148
|
+
'@type': 'SoftwareApplication',
|
|
149
|
+
name: title,
|
|
150
|
+
description,
|
|
151
|
+
applicationCategory: 'HealthApplication',
|
|
152
|
+
operatingSystem: 'Web',
|
|
153
|
+
offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
|
|
154
|
+
} as WithContext<SoftwareApplication>,
|
|
155
|
+
{
|
|
156
|
+
'@context': 'https://schema.org',
|
|
157
|
+
'@type': 'FAQPage',
|
|
158
|
+
mainEntity: faq.map((item) => ({
|
|
159
|
+
'@type': 'Question',
|
|
160
|
+
name: item.question,
|
|
161
|
+
acceptedAnswer: { '@type': 'Answer', text: item.answer },
|
|
162
|
+
})),
|
|
163
|
+
} as WithContext<FAQPage>,
|
|
164
|
+
{
|
|
165
|
+
'@context': 'https://schema.org',
|
|
166
|
+
'@type': 'HowTo',
|
|
167
|
+
name: title,
|
|
168
|
+
step: howTo.map((step) => ({ '@type': 'HowToStep', name: step.name, text: step.text })),
|
|
169
|
+
} as WithContext<HowTo>,
|
|
170
|
+
];
|
|
171
|
+
|
|
172
|
+
export const content: PetToxicityLocaleContent = {
|
|
173
|
+
slug,
|
|
174
|
+
title,
|
|
175
|
+
description,
|
|
176
|
+
ui,
|
|
177
|
+
seo,
|
|
178
|
+
faq,
|
|
179
|
+
bibliography,
|
|
180
|
+
howTo,
|
|
181
|
+
schemas,
|
|
182
|
+
};
|
|
@@ -0,0 +1,181 @@
|
|
|
1
|
+
import { bibliography } from '../bibliography';
|
|
2
|
+
import type { FAQPage, HowTo, SoftwareApplication, WithContext } from 'schema-dts';
|
|
3
|
+
import type { PetToxicityLocaleContent, PetToxicityUI } from '../entry';
|
|
4
|
+
|
|
5
|
+
const slug = 'verificatore-alimenti-tossici-cani-gatti';
|
|
6
|
+
const title = 'Verificatore di alimenti tossici per cani e gatti';
|
|
7
|
+
const description = 'Verifica gli alimenti pericolosi per cani e gatti, conosci i sintomi di allarme e scopri quando contattare un veterinario o il soccorso animale.';
|
|
8
|
+
|
|
9
|
+
const ui: PetToxicityUI = {
|
|
10
|
+
"journeyHint": "Seleziona l animale, apri l atlante alimentare e consulta l avvertenza specifica per la specie prima di decidere.",
|
|
11
|
+
"speciesLabel": "Specie",
|
|
12
|
+
"speciesDog": "Cane",
|
|
13
|
+
"speciesCat": "Gatto",
|
|
14
|
+
"speciesDogMeta": "Profilo canino",
|
|
15
|
+
"speciesCatMeta": "Profilo felino",
|
|
16
|
+
"foodLabel": "Alimento o ingrediente",
|
|
17
|
+
"foodPlaceholder": "Seleziona un alimento",
|
|
18
|
+
"foodMenuHint": "L elenco cambia in base all animale poiché il rischio è specifico per specie.",
|
|
19
|
+
"resultEyebrow": "L atlante alimentare indica",
|
|
20
|
+
"resultEmpty": "Seleziona un alimento per aprire la scheda di sicurezza.",
|
|
21
|
+
"sceneLabel": "Mappa di esposizione",
|
|
22
|
+
"sceneReady": "Seleziona un alimento",
|
|
23
|
+
"sceneSelected": "Scheda specifica aperta",
|
|
24
|
+
"riskCritical": "Allerta urgente",
|
|
25
|
+
"riskHigh": "Rischio elevato",
|
|
26
|
+
"riskCaution": "Attenzione",
|
|
27
|
+
"riskUnknown": "Dati insufficienti",
|
|
28
|
+
"riskLabel": "Livello di rischio",
|
|
29
|
+
"whyLabel": "Perché è importante",
|
|
30
|
+
"signsLabel": "Sintomi da osservare",
|
|
31
|
+
"actionLabel": "Cosa fare",
|
|
32
|
+
"callVetLabel": "Il passo più sicuro è un parere professionale.",
|
|
33
|
+
"callVetText": "Un calcolatore non può stimare dosi tossiche né sostituire un esame veterinario.",
|
|
34
|
+
"sourceLabel": "Evidenze utilizzate",
|
|
35
|
+
"sourceText": "I profili si basano sulle linee guida di tossicologia veterinaria di ASPCA, FDA e Manuale Veterinario MSD.",
|
|
36
|
+
"emergencyTitle": "Se il tuo animale ha ingerito qualcosa di sospetto",
|
|
37
|
+
"emergencyText": "Chiama immediatamente il veterinario, una clinica d urgenza o il centro antiveleni. Conserva la confezione, gli ingredienti e la quantità stimata.",
|
|
38
|
+
"openMenu": "Apri opzioni",
|
|
39
|
+
"closeMenu": "Chiudi opzioni"
|
|
40
|
+
};
|
|
41
|
+
|
|
42
|
+
const faq: PetToxicityLocaleContent['faq'] = [
|
|
43
|
+
{
|
|
44
|
+
"question": "Questo strumento garantisce la sicurezza del mio animale?",
|
|
45
|
+
"answer": "No. È una guida educativa sui pericoli alimentari comuni, non una diagnosi o un calcolatore di dosi. Il rischio dipende da specie, prodotto, quantità e peso. In caso di dubbio consulta sempre un veterinario."
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"question": "Quali alimenti sono particolarmente pericolosi per i cani?",
|
|
49
|
+
"answer": "Xilitolo, cioccolato, caffeina, uva, uvetta, cipolla, aglio, alcol, noci macadamia e pasta lievitata cruda sono tra i più pericolosi. Conservare la confezione aiuta il veterinario."
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"question": "Cipolla e aglio sono pericolosi per i gatti?",
|
|
53
|
+
"answer": "Sì. I gatti sono particolarmente sensibili ai danni ai globuli rossi causati dalle piante Allium (cipolla, aglio, erba cipollina). Anche le forme essiccate o in polvere sono dannose."
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
"question": "Perché lo xilitolo mostra avvertenze diverse tra cani e gatti?",
|
|
57
|
+
"answer": "Nei cani lo xilitolo causa una rapida e grave ipoglicemia. Nei gatti questo pericolo è meno documentato dalla FDA, ma non è una garanzia di sicurezza."
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"question": "Cosa fare se l alimento non è presente nell elenco?",
|
|
61
|
+
"answer": "L assenza nell elenco non è prova di sicurezza. Conserva la confezione, annota quantità e orario e contatta subito un veterinario."
|
|
62
|
+
}
|
|
63
|
+
];
|
|
64
|
+
|
|
65
|
+
const howTo: PetToxicityLocaleContent['howTo'] = [
|
|
66
|
+
{
|
|
67
|
+
"name": "Seleziona la specie",
|
|
68
|
+
"text": "Scegli Cane o Gatto per caricare le informazioni e le avvertenze specifiche."
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
"name": "Scegli l alimento",
|
|
72
|
+
"text": "Apri il menu e seleziona l ingrediente più vicino. Presta attenzione ai prodotti concentrati."
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
"name": "Leggi la scheda di sicurezza",
|
|
76
|
+
"text": "Consulta la gravità del rischio, i sintomi probabili e l azione consigliata."
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"name": "Contatta un professionista",
|
|
80
|
+
"text": "In caso di ingestione reale, chiama il veterinario fornendo i dettagli del prodotto."
|
|
81
|
+
}
|
|
82
|
+
];
|
|
83
|
+
|
|
84
|
+
const seo: PetToxicityLocaleContent['seo'] = [
|
|
85
|
+
{
|
|
86
|
+
type: 'summary',
|
|
87
|
+
title: "Controllo rapido della sicurezza alimentare per cani e gatti",
|
|
88
|
+
items: [
|
|
89
|
+
"Seleziona prima la specie poiché lo stesso alimento ha impatti diversi su cani e gatti.",
|
|
90
|
+
"Utilizza le schede per comprendere il pericolo, i sintomi e il livello di urgenza.",
|
|
91
|
+
"Tratta l ingestione di xilitolo nel cane come un emergenza medica assoluta.",
|
|
92
|
+
"Contatta il veterinario per qualsiasi esposizione reale accertata."
|
|
93
|
+
],
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
type: 'title',
|
|
97
|
+
text: "Come usare responsabilmente il verificatore di alimenti tossici",
|
|
98
|
+
level: 2,
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
type: 'paragraph',
|
|
102
|
+
html: "Questo verificatore di alimenti tossici è stato progettato per i primi minuti critici dopo che un cane o un gatto ha ingerito cibo non idoneo. Seleziona l animale, apri il profilo dell alimento e utilizza la scheda per preparare la telefonata con la clinica veterinaria. La struttura separa il motivo del pericolo dai sintomi visibili, facilitando la gestione del panico in situazioni di tensione e urgenza medica.",
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
type: 'paragraph',
|
|
106
|
+
html: "La distinzione tra le specie è fondamentale. I cani e i gatti metabolizzano le sostanze in modo differente. Lo xilitolo provoca una grave ipoglicemia nei cani, mentre le cipolle e l aglio danneggiano gravemente i globuli rossi dei gatti. Seguire le giuste raccomandazioni evita errori di soccorso casalingo che potrebbero aggravare il quadro clinico.",
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
type: 'title',
|
|
110
|
+
text: "Principali pericoli alimentari e dettagli chiave",
|
|
111
|
+
level: 2,
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
type: 'table',
|
|
115
|
+
headers: ["Alimento o ingrediente","Rischio principale","Dettagli importanti"],
|
|
116
|
+
rows: [["Cioccolato e caffeina","Effetti cardiaci e nervosi","La concentrazione di cacao e il peso dell animale sono determinanti."],["Xilitolo","Rapido calo di zuccheri nei cani","Controlla gomme senza zucchero, dolci e prodotti da forno."],["Uva e uvetta","Possibile danno renale nei cani","Non considerare sicure le piccole quantità ingerite."],["Cipolla e aglio","Danno ai globuli rossi e anemia","Le forme essiccate e in polvere concentrano il rischio."],["Pasta lievitata cruda","Espansione dello stomaco e alcol","La lievitazione genera pressione e tossicità etilica."]],
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
type: 'paragraph',
|
|
120
|
+
html: "Oltre alla tossicità chimica esistono rischi fisici come ostruzioni causate da ossa o noccioli e rischi di pancreatite dovuti ad alimenti molto grassi. Un monitoraggio attento permette di intervenire per tempo prima che insorgano complicazioni sistemiche.",
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
type: 'title',
|
|
124
|
+
text: "Cosa fare dopo una possibile esposizione",
|
|
125
|
+
level: 2,
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
type: 'list',
|
|
129
|
+
items: [
|
|
130
|
+
"Rimuovi il cibo residuo e conserva la confezione originale.",
|
|
131
|
+
"Annota specie, peso, alimento, quantità e orario di ingestione.",
|
|
132
|
+
"Chiama subito il veterinario o il centro antiveleni veterinario.",
|
|
133
|
+
"Non provocare il vomito senza una chiara indicazione medica.",
|
|
134
|
+
"In caso di convulsioni o collasso recati subito in clinica di urgenza."
|
|
135
|
+
],
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
type: 'tip',
|
|
139
|
+
title: "La salute dell animale viene prima di tutto",
|
|
140
|
+
html: "I sintomi possono comparire dopo diverse ore. Non attendere che l animale peggiori per chiedere aiuto professionale qualificato.",
|
|
141
|
+
},
|
|
142
|
+
];
|
|
143
|
+
|
|
144
|
+
const schemas: PetToxicityLocaleContent['schemas'] = [
|
|
145
|
+
{
|
|
146
|
+
'@context': 'https://schema.org',
|
|
147
|
+
'@type': 'SoftwareApplication',
|
|
148
|
+
name: title,
|
|
149
|
+
description,
|
|
150
|
+
applicationCategory: 'HealthApplication',
|
|
151
|
+
operatingSystem: 'Web',
|
|
152
|
+
offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
|
|
153
|
+
} as WithContext<SoftwareApplication>,
|
|
154
|
+
{
|
|
155
|
+
'@context': 'https://schema.org',
|
|
156
|
+
'@type': 'FAQPage',
|
|
157
|
+
mainEntity: faq.map((item) => ({
|
|
158
|
+
'@type': 'Question',
|
|
159
|
+
name: item.question,
|
|
160
|
+
acceptedAnswer: { '@type': 'Answer', text: item.answer },
|
|
161
|
+
})),
|
|
162
|
+
} as WithContext<FAQPage>,
|
|
163
|
+
{
|
|
164
|
+
'@context': 'https://schema.org',
|
|
165
|
+
'@type': 'HowTo',
|
|
166
|
+
name: title,
|
|
167
|
+
step: howTo.map((step) => ({ '@type': 'HowToStep', name: step.name, text: step.text })),
|
|
168
|
+
} as WithContext<HowTo>,
|
|
169
|
+
];
|
|
170
|
+
|
|
171
|
+
export const content: PetToxicityLocaleContent = {
|
|
172
|
+
slug,
|
|
173
|
+
title,
|
|
174
|
+
description,
|
|
175
|
+
ui,
|
|
176
|
+
seo,
|
|
177
|
+
faq,
|
|
178
|
+
bibliography,
|
|
179
|
+
howTo,
|
|
180
|
+
schemas,
|
|
181
|
+
};
|