@jjlmoya/utils-pets 1.19.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.
Files changed (33) hide show
  1. package/package.json +1 -1
  2. package/src/category/index.ts +2 -1
  3. package/src/entries.ts +4 -1
  4. package/src/tests/locale_completeness.test.ts +1 -1
  5. package/src/tests/tool_validation.test.ts +5 -5
  6. package/src/tool/petWaterIntake/bibliography.astro +6 -0
  7. package/src/tool/petWaterIntake/bibliography.ts +16 -0
  8. package/src/tool/petWaterIntake/component.astro +103 -0
  9. package/src/tool/petWaterIntake/controller.ts +47 -0
  10. package/src/tool/petWaterIntake/dom-views.ts +54 -0
  11. package/src/tool/petWaterIntake/entry.ts +33 -0
  12. package/src/tool/petWaterIntake/i18n/de.ts +205 -0
  13. package/src/tool/petWaterIntake/i18n/en.ts +205 -0
  14. package/src/tool/petWaterIntake/i18n/es.ts +205 -0
  15. package/src/tool/petWaterIntake/i18n/fr.ts +205 -0
  16. package/src/tool/petWaterIntake/i18n/id.ts +237 -0
  17. package/src/tool/petWaterIntake/i18n/it.ts +237 -0
  18. package/src/tool/petWaterIntake/i18n/ja.ts +237 -0
  19. package/src/tool/petWaterIntake/i18n/ko.ts +237 -0
  20. package/src/tool/petWaterIntake/i18n/nl.ts +237 -0
  21. package/src/tool/petWaterIntake/i18n/pl.ts +237 -0
  22. package/src/tool/petWaterIntake/i18n/pt.ts +237 -0
  23. package/src/tool/petWaterIntake/i18n/ru.ts +237 -0
  24. package/src/tool/petWaterIntake/i18n/sv.ts +237 -0
  25. package/src/tool/petWaterIntake/i18n/tr.ts +237 -0
  26. package/src/tool/petWaterIntake/i18n/zh.ts +237 -0
  27. package/src/tool/petWaterIntake/index.ts +11 -0
  28. package/src/tool/petWaterIntake/logic.test.ts +52 -0
  29. package/src/tool/petWaterIntake/logic.ts +84 -0
  30. package/src/tool/petWaterIntake/pet-water-intake.css +144 -0
  31. package/src/tool/petWaterIntake/seo.astro +15 -0
  32. package/src/tool/petWaterIntake/ui.ts +55 -0
  33. package/src/tools.ts +3 -0
@@ -0,0 +1,205 @@
1
+ import { bibliography } from '../bibliography';
2
+ import type { FAQPage, HowTo, SoftwareApplication, WithContext } from 'schema-dts';
3
+ import type { PetWaterIntakeLocaleContent, PetWaterIntakeUI } from '../entry';
4
+
5
+ const slug = 'dog-cat-water-intake-calculator';
6
+ const title = 'Dog and Cat Water Intake Calculator';
7
+ const description = 'Estimate daily water needs for a dog or cat from body weight, diet, activity, and heat context, with a clear guide to total water and bowl drinking.';
8
+
9
+ const ui: PetWaterIntakeUI = {
10
+ journeyHint: 'Choose the pet, enter body weight, then set the food and day around the water bowl.',
11
+ instantHint: 'Every choice moves the reservoir immediately. The result is a planning guide, not a diagnosis.',
12
+ unitLegend: 'Units',
13
+ metricUnit: 'Metric',
14
+ imperialUnit: 'Imperial',
15
+ speciesLegend: 'Who is the bowl for?',
16
+ speciesDog: 'Dog',
17
+ speciesCat: 'Cat',
18
+ speciesDogMeta: 'Maintenance guide 60 mL per kg',
19
+ speciesCatMeta: 'Maintenance guide 40 mL per kg',
20
+ weightLabel: 'Body weight',
21
+ weightHint: 'Use the current healthy weight when you know it.',
22
+ weightKg: 'kg',
23
+ weightLb: 'lb',
24
+ dietLegend: 'How much water comes from food?',
25
+ dietDry: 'Mostly dry',
26
+ dietDryMeta: 'Most water comes from the bowl',
27
+ dietMixed: 'Mixed food',
28
+ dietMixedMeta: 'Some water comes from meals',
29
+ dietWet: 'Mostly wet',
30
+ dietWetMeta: 'Meals contribute more water',
31
+ activityLegend: 'Typical activity today',
32
+ activityCalm: 'Calm',
33
+ activityTypical: 'Typical',
34
+ activityActive: 'Active',
35
+ heatLegend: 'Heat and weather',
36
+ heatNormal: 'Normal',
37
+ heatWarm: 'Warm',
38
+ heatHot: 'Hot',
39
+ resultEyebrow: 'The waterline reads',
40
+ totalRangeLabel: 'Total water from all sources',
41
+ drinkingRangeLabel: 'Orientative bowl guide',
42
+ totalRangeHint: 'A daily planning band that includes food moisture.',
43
+ drinkingRangeHint: 'A rough share that may come from drinking, based on diet.',
44
+ statusEveryday: 'Everyday conditions',
45
+ statusActive: 'Active day',
46
+ statusWarm: 'Warm weather',
47
+ statusDemanding: 'Demanding conditions',
48
+ statusDetailEveryday: 'The guide uses the selected maintenance profile without an extra activity or heat signal.',
49
+ statusDetailActive: 'Movement can raise demand. Offer fresh water and watch the pet rather than forcing a target.',
50
+ statusDetailWarm: 'Warm surroundings can raise demand. Shade, airflow, and access to fresh water matter more than a precise number.',
51
+ statusDetailDemanding: 'Activity and heat are both elevated. Treat this as a prompt for close observation and veterinary advice if anything seems wrong.',
52
+ resultEmpty: 'The waterline will appear as soon as the weight is valid.',
53
+ sceneAria: 'Water reservoir for the selected pet',
54
+ sceneTotal: 'TOTAL WATER',
55
+ sceneBowl: 'the middle of the daily band',
56
+ methodTitle: 'Method',
57
+ methodText: 'The center profile follows AAHA maintenance guidance of 60 mL per kg for dogs and 40 mL per kg for cats. The visible band adds a transparent planning margin. Diet, activity, and heat are simplified context signals, so this tool cannot measure intake or assess health.',
58
+ noteTitle: 'Water bowls are not diagnostic instruments',
59
+ noteText: 'Keep clean, fresh water available. A sudden change in drinking or urination, repeated vomiting or diarrhea, weakness, dry gums, heat stress, or any concern about dehydration needs veterinary advice. Do not restrict water or use this estimate to replace an examination.',
60
+ invalidWeight: 'Please enter a valid body weight.',
61
+ weightRange: 'Weight must be between 0.5 kg and 100 kg.',
62
+ };
63
+
64
+ const faq: PetWaterIntakeLocaleContent['faq'] = [
65
+ {
66
+ question: 'How much water should a dog or cat drink per day?',
67
+ answer: "General veterinary guidance suggests a baseline maintenance intake of roughly 60 mL per kg of body weight for dogs and 40 mL per kg for cats per day. However, actual water intake fluctuates based on diet, environmental temperature, exercise level, and individual health status. Animals consuming dry kibble will drink significantly more from a bowl than those on a wet canned diet.",
68
+ },
69
+ {
70
+ question: 'Does wet food reduce the amount of water a pet drinks from the bowl?',
71
+ answer: "Yes, wet canned food typically contains between 70% and 80% moisture, providing a major portion of a pet's daily hydration through meals alone. Pets fed exclusively wet food often visit the water bowl far less frequently, which is entirely normal as long as their total fluid intake requirements are met through their diet.",
72
+ },
73
+ {
74
+ question: 'When should I be concerned about changes in my pet\'s water consumption?',
75
+ answer: "You should seek prompt veterinary advice if you notice a sudden, dramatic increase (polydipsia) or decrease (adipsia) in drinking or urination. Excessive drinking can be an early clinical sign of conditions such as diabetes mellitus, chronic kidney disease, or Cushing's disease, while refusing water can rapidly lead to severe dehydration.",
76
+ },
77
+ {
78
+ question: 'Can hot weather and exercise double a pet\'s daily water needs?',
79
+ answer: "Yes. High temperatures and intense physical activity increase fluid loss through panting in both dogs and cats. Panting is the primary evaporative cooling mechanism for pets, and replacing lost respiratory moisture requires easy access to clean, cool water alongside adequate shade and rest opportunities.",
80
+ },
81
+ ];
82
+
83
+ const howTo: PetWaterIntakeLocaleContent['howTo'] = [
84
+ { name: 'Select species and weight', text: 'Choose whether you are calculating for a dog or cat, and enter their current healthy body weight in kilograms or pounds.' },
85
+ { name: 'Specify primary diet type', text: 'Select whether your pet eats mostly dry kibble, a mixed diet, or canned wet food to account for dietary moisture contribution.' },
86
+ { name: 'Adjust activity and heat context', text: 'Set today\'s expected physical activity level and environmental temperature to factor in increased fluid loss from panting.' },
87
+ { name: 'Review fluid range guidelines', text: 'Check both the total recommended fluid volume and the estimated portion expected directly from the water bowl.' },
88
+ ];
89
+
90
+ const seo: PetWaterIntakeLocaleContent['seo'] = [
91
+ {
92
+ type: 'summary',
93
+ title: 'Essential Guidelines for Pet Daily Water Needs',
94
+ items: [
95
+ 'Baseline maintenance: Dogs require ~60 mL/kg daily; cats require ~40 mL/kg daily.',
96
+ 'Diet impact: Wet food provides 70-80% moisture, significantly reducing water bowl visits.',
97
+ 'Heat & exercise: Panting increases evaporative fluid loss, boosting daily hydration needs.',
98
+ 'Health warning: Sudden increases or decreases in drinking require veterinary evaluation.',
99
+ 'Fresh water access: Multiple clean water bowls promote healthy hydration habits.',
100
+ ],
101
+ },
102
+ {
103
+ type: 'title',
104
+ text: 'Understanding Daily Hydration Needs for Dogs and Cats',
105
+ level: 2,
106
+ },
107
+ {
108
+ type: 'paragraph',
109
+ html: 'Proper hydration is fundamental to metabolic function, digestion, joint lubrication, and renal health in domestic pets. Water makes up between 60% and 70% of an adult dog or cat\'s total body weight, and even a modest fluid deficit can impair vital physiological processes. Veterinary literature from the American Animal Hospital Association (AAHA) establishes baseline maintenance daily requirements at approximately 60 mL per kilogram of body weight for canine companions and 40 mL per kilogram for felines.',
110
+ },
111
+ {
112
+ type: 'paragraph',
113
+ html: 'However, these maintenance baseline figures represent total daily fluid intake requirements rather than the amount an animal must consume directly from a bowl. A pet\'s total daily water supply is comprised of drinking water, moisture contained within commercial or home-prepared food, and a small volume of metabolic water produced during cellular respiration. Understanding this distinction helps pet owners avoid unnecessary worry when a cat or dog visits the water bowl less frequently on certain diets.',
114
+ },
115
+ {
116
+ type: 'title',
117
+ text: 'Total Daily Water vs. Water Bowl Consumption',
118
+ level: 2,
119
+ },
120
+ {
121
+ type: 'paragraph',
122
+ html: 'The form of food provided plays a dominant role in determining how much water a pet will seek out from a bowl. Dry commercial kibble contains only 6% to 10% moisture, requiring the animal to drink almost all of its daily fluid requirement directly from a water vessel. In contrast, canned wet food typically consists of 75% to 82% water content. A feline eating exclusively canned food may obtain nearly all of its baseline hydration directly from meals, resulting in infrequent water bowl visits that are physiologically normal.',
123
+ },
124
+ {
125
+ type: 'table',
126
+ headers: ['Input Factor', 'Impact on Fluid Requirement', 'Key Clinical Consideration'],
127
+ rows: [
128
+ ['Species Profile', 'Sets baseline maintenance rate', 'Canine baseline ~60 mL/kg; Feline baseline ~40 mL/kg'],
129
+ ['Body Weight', 'Scales overall baseline volume', 'Use ideal target weight for overweight animals'],
130
+ ['Diet Moisture', 'Determines proportion supplied by food', 'Wet food supplies up to 80% of daily fluid needs'],
131
+ ['Activity & Heat', 'Increases evaporative panting losses', 'Elevated temperatures require proportional fluid boosts'],
132
+ ],
133
+ },
134
+ {
135
+ type: 'title',
136
+ text: 'Practical Guidelines for Pet Hydration Management',
137
+ level: 2,
138
+ },
139
+ {
140
+ type: 'paragraph',
141
+ html: 'Pet owners should focus on facilitating free, unrestricted access to fresh, clean water at all times rather than attempting to enforce a specific numeric volumetric target. Water bowls should be washed daily and replenished with fresh water. For cats, who often have a low thirst drive inherited from desert-dwelling ancestors, incorporating pet fountains, wide shallow dishes that avoid whisker fatigue, and multiple drinking stations throughout the home can encourage healthy voluntary drinking behavior.',
142
+ },
143
+ {
144
+ type: 'card',
145
+ title: 'Dry Kibble Diets',
146
+ icon: 'mdi:food-drumstick',
147
+ html: 'Pets on dry kibble rely heavily on voluntary drinking from water bowls. Ensure bowls are kept clean and placed in quiet, accessible locations away from litter boxes or noisy appliances to encourage consistent hydration throughout the day.',
148
+ },
149
+ {
150
+ type: 'card',
151
+ title: 'Wet Canned Food Diets',
152
+ icon: 'mdi:food-drumstick',
153
+ html: 'Wet food diets provide substantial dietary moisture. While pets eating canned food will naturally drink less from bowls, fresh water must still remain accessible at all times, especially during warmer weather or periods of high activity.',
154
+ },
155
+ {
156
+ type: 'card',
157
+ title: 'Active & Warm Weather Management',
158
+ icon: 'mdi:weather-sunny',
159
+ html: 'During warm weather or vigorous play, evaporative loss through panting increases rapidly. Always provide shaded rest areas, cool water breaks, and avoid strenuous exercise during peak summer heat hours to prevent heat stress and dehydration.',
160
+ },
161
+ {
162
+ type: 'tip',
163
+ title: 'Veterinary Red Flags for Hydration',
164
+ html: 'A sudden, unexplained change in drinking patterns - either drinking significantly more water (polydipsia) or refusing water altogether - is a major clinical indicator. Conditions like kidney disease, diabetes, hyperthyroidism, and urinary tract disorders frequently manifest through altered thirst. If you observe persistent changes in drinking habits, lethargy, dry gums, or vomiting, consult a veterinarian immediately.',
165
+ },
166
+ ];
167
+
168
+ const schemas: PetWaterIntakeLocaleContent['schemas'] = [
169
+ {
170
+ '@context': 'https://schema.org',
171
+ '@type': 'SoftwareApplication',
172
+ name: title,
173
+ description,
174
+ applicationCategory: 'HealthApplication',
175
+ operatingSystem: 'Web',
176
+ offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
177
+ } as WithContext<SoftwareApplication>,
178
+ {
179
+ '@context': 'https://schema.org',
180
+ '@type': 'FAQPage',
181
+ mainEntity: faq.map((item) => ({
182
+ '@type': 'Question',
183
+ name: item.question,
184
+ acceptedAnswer: { '@type': 'Answer', text: item.answer },
185
+ })),
186
+ } as WithContext<FAQPage>,
187
+ {
188
+ '@context': 'https://schema.org',
189
+ '@type': 'HowTo',
190
+ name: title,
191
+ step: howTo.map((step) => ({ '@type': 'HowToStep', name: step.name, text: step.text })),
192
+ } as WithContext<HowTo>,
193
+ ];
194
+
195
+ export const content: PetWaterIntakeLocaleContent = {
196
+ slug,
197
+ title,
198
+ description,
199
+ ui,
200
+ seo,
201
+ faq,
202
+ bibliography,
203
+ howTo,
204
+ schemas,
205
+ };
@@ -0,0 +1,205 @@
1
+ import { bibliography } from '../bibliography';
2
+ import type { FAQPage, HowTo, SoftwareApplication, WithContext } from 'schema-dts';
3
+ import type { PetWaterIntakeLocaleContent, PetWaterIntakeUI } from '../entry';
4
+
5
+ const slug = 'calculadora-agua-diaria-perros-gatos';
6
+ const title = 'Calculadora de agua diaria para perros y gatos';
7
+ const description = 'Calcula las necesidades diarias de agua de tu perro o gato según peso, dieta, actividad y clima con una guía clara de ingesta total y agua de cuenco.';
8
+
9
+ const ui: PetWaterIntakeUI = {
10
+ journeyHint: 'Selecciona la mascota, indica su peso corporal y ajusta la dieta y el clima del día.',
11
+ instantHint: 'Cada opción actualiza la estimación al instante. Es una guía orientativa, no un diagnóstico.',
12
+ unitLegend: 'Unidades',
13
+ metricUnit: 'Métrico',
14
+ imperialUnit: 'Imperial',
15
+ speciesLegend: '¿Para quién es el bebedero?',
16
+ speciesDog: 'Perro',
17
+ speciesCat: 'Gato',
18
+ speciesDogMeta: 'Guía de mantenimiento 60 mL por kg',
19
+ speciesCatMeta: 'Guía de mantenimiento 40 mL por kg',
20
+ weightLabel: 'Peso corporal',
21
+ weightHint: 'Indica el peso sano actual de tu mascota.',
22
+ weightKg: 'kg',
23
+ weightLb: 'lb',
24
+ dietLegend: '¿Cuánta agua aporta la alimentación?',
25
+ dietDry: 'Principalmente pienso seco',
26
+ dietDryMeta: 'La gran mayoría del agua se bebe del cuenco',
27
+ dietMixed: 'Alimentación mixta',
28
+ dietMixedMeta: 'Una parte del agua proviene de la comida',
29
+ dietWet: 'Principalmente latas o comida húmeda',
30
+ dietWetMeta: 'La comida aporta la mayor parte de la humedad',
31
+ activityLegend: 'Actividad habitual hoy',
32
+ activityCalm: 'Tranquilo / Reposo',
33
+ activityTypical: 'Moderada / Normal',
34
+ activityActive: 'Intensa / Muy activo',
35
+ heatLegend: 'Clima y temperatura',
36
+ heatNormal: 'Templado / Normal',
37
+ heatWarm: 'Cálido',
38
+ heatHot: 'Caluroso / Bochorno',
39
+ resultEyebrow: 'Estimación de volumen',
40
+ totalRangeLabel: 'Agua total necesaria (todas las fuentes)',
41
+ drinkingRangeLabel: 'Guía aproximada de agua a beber del cuenco',
42
+ totalRangeHint: 'Rango diario total incluyendo la humedad de los alimentos.',
43
+ drinkingRangeHint: 'Estimación orientativa de la parte a beber en bebedero.',
44
+ statusEveryday: 'Condiciones estándar',
45
+ statusActive: 'Día de alta actividad',
46
+ statusWarm: 'Clima caluroso',
47
+ statusDemanding: 'Condiciones de alta exigencia',
48
+ statusDetailEveryday: 'Perfil de mantenimiento base sin factores extra de calor o esfuerzo.',
49
+ statusDetailActive: 'El ejercicio incrementa las pérdidas hídricas. Garantiza agua fresca constante.',
50
+ statusDetailWarm: 'El calor aumenta las pérdidas por jadeo. La sombra y el aire limpio son prioritarios.',
51
+ statusDetailDemanding: 'Alta actividad y calor combinados. Supervisa de cerca la hidratación de la mascota.',
52
+ resultEmpty: 'Introduce un peso válido para calcular el volumen de agua.',
53
+ sceneAria: 'Depósito de agua para la mascota seleccionada',
54
+ sceneTotal: 'AGUA TOTAL',
55
+ sceneBowl: 'zona media de ingesta estimada',
56
+ methodTitle: 'Método de cálculo',
57
+ methodText: 'El centro del cálculo sigue la guía de mantenimiento de la AAHA (60 mL/kg en perros y 40 mL/kg en gatos). La dieta, la actividad y el calor aplican factores de ajuste contextualmente.',
58
+ noteTitle: 'El cuenco de agua no es un instrumento de diagnóstico',
59
+ noteText: 'Mantén siempre agua limpia y fresca a libre disposición. Ante cualquier cambio brusco en la ingesta o micción, o sospecha de deshidratación, acude al veterinario.',
60
+ invalidWeight: 'Por favor, introduce un peso corporal válido.',
61
+ weightRange: 'El peso debe estar entre 0.5 kg y 100 kg.',
62
+ };
63
+
64
+ const faq: PetWaterIntakeLocaleContent['faq'] = [
65
+ {
66
+ question: '¿Cuánta agua debe beber un perro o un gato al día?',
67
+ answer: 'La guía veterinaria general de la AAHA establece una ingesta de mantenimiento de unos 60 mL por kg de peso en perros y 40 mL por kg en gatos al día. Sin embargo, el volumen varía según el peso, la dieta (pienso o lata), la temperatura ambiente y el nivel de ejercicio.',
68
+ },
69
+ {
70
+ question: '¿La comida húmeda reduce la necesidad de beber agua del bebedero?',
71
+ answer: 'Sí. La comida en lata contiene entre un 75% y un 82% de agua, cubriendo gran parte de los requerimientos hídricos en las comidas. Por ello, las mascotas alimentadas con comida húmeda suelen beber con menor frecuencia del cuenco.',
72
+ },
73
+ {
74
+ question: '¿Cuándo debo preocuparme por cambios en la ingesta de agua?',
75
+ answer: 'Debes consultar al veterinario de inmediato si notas un aumento repentino y exagerado de sed (polidipsia) o una falta total de interés por el agua (adipsia). Pueden ser señales de diabetes, insuficiencia renal o infecciones.',
76
+ },
77
+ {
78
+ question: '¿El calor y el ejercicio pueden duplicar la necesidad de agua?',
79
+ answer: 'Sí. Las altas temperaturas y el ejercicio intenso aumentan la pérdida de humedad a través del jadeo, que es el mecanismo principal de termorregulación en perros y gatos. Es vital ofrecer sombra y agua fresca constante.',
80
+ },
81
+ ];
82
+
83
+ const howTo: PetWaterIntakeLocaleContent['howTo'] = [
84
+ { name: 'Seleccionar especie y peso', text: 'Elige si la consulta es para un perro o un gato e introduce su peso sano actual en kg o lb.' },
85
+ { name: 'Ajustar tipo de alimentación', text: 'Elige si la dieta es seca, mixta o húmeda para descontar el porcentaje de agua aportado directamente por las raciones de comida.' },
86
+ { name: 'Definir clima y actividad', text: 'Selecciona el nivel de ejercicio y la temperatura ambiente del día para calcular las pérdidas adicionales por respiración y jadeo.' },
87
+ { name: 'Revisar la guía de hidratación', text: 'Consulta tanto la ingesta total estimada de todas las fuentes como la cantidad aproximada que debería beber del cuenco de agua.' },
88
+ ];
89
+
90
+ const seo: PetWaterIntakeLocaleContent['seo'] = [
91
+ {
92
+ type: 'summary',
93
+ title: 'Guía Clave de Hidratación para Mascotas',
94
+ items: [
95
+ 'Mantenimiento base: Perros ~60 mL/kg diarios; gatos ~40 mL/kg diarios según pautas AAHA.',
96
+ 'Impacto de la dieta: El alimento húmedo aporta hasta un 80% de agua, reduciendo las visitas al bebedero.',
97
+ 'Calor y ejercicio: El jadeo incrementa la pérdida de fluidos y exige agua fresca constante.',
98
+ 'Señales de alerta: Cambios bruscos en la ingesta requieren evaluación veterinaria inmediata.',
99
+ 'Acceso libre: Se deben disponer varios bebederos limpios y bien situados en el hogar.',
100
+ ],
101
+ },
102
+ {
103
+ type: 'title',
104
+ text: 'Cálculo de Hidratación Diaria para Perros y Gatos',
105
+ level: 2,
106
+ },
107
+ {
108
+ type: 'paragraph',
109
+ html: 'La hidratación adecuada en perros y gatos es fundamental para el metabolismo, la digestión, la regulación térmica y la salud renal. El agua representa entre el 60% y el 70% del peso corporal total en un animal adulto. La American Animal Hospital Association (AAHA) establece pautas base de ingesta hídrica de 60 mL por kg en perros y 40 mL por kg en gatos, que sirven como referencia para la gestión del bebedero.',
110
+ },
111
+ {
112
+ type: 'paragraph',
113
+ html: 'No obstante, esta cifra de mantenimiento representa el requerimiento hídrico total y no únicamente el agua consumida en el recipiente. El agua total proviene de la bebida directa, la humedad propia de los alimentos comerciales y el agua metabólica. Comprender esta diferencia evita preocupaciones innecesarias en los tutores cuando las mascotas comen alimentos ricos en humedad.',
114
+ },
115
+ {
116
+ type: 'title',
117
+ text: 'Diferencia entre Agua Total y Agua de Bebedero',
118
+ level: 2,
119
+ },
120
+ {
121
+ type: 'paragraph',
122
+ html: 'El tipo de dieta es el factor que más influye en el volumen de agua que beberá una mascota directamente de la taza. El pienso seco suele contener entre un 6% y un 10% de agua, obligando al animal a cubrir casi todo su requerimiento en el bebedero. En cambio, la comida en lata alcanza entre un 75% y un 82% de humedad, aportando la gran mayoría del agua necesaria durante las comidas.',
123
+ },
124
+ {
125
+ type: 'table',
126
+ headers: ['Factor', 'Efecto en la hidratación', 'Consideración principal'],
127
+ rows: [
128
+ ['Especie', 'Define la tasa metabólica base de agua', 'Perros ~60 mL/kg, Gatos ~40 mL/kg'],
129
+ ['Peso corporal', 'Escala el volumen total requerido', 'Usar peso sano de referencia'],
130
+ ['Tipo de dieta', 'Modifica el aporte de humedad en raciones', 'El alimento húmedo reduce ingesta en bebedero'],
131
+ ['Clima y ejercicio', 'Incrementa las pérdidas hídricas', 'Requiere mayor disponibilidad de agua fresca'],
132
+ ],
133
+ },
134
+ {
135
+ type: 'title',
136
+ text: 'Recomendaciones de Gestión de Agua y Cuidados',
137
+ level: 2,
138
+ },
139
+ {
140
+ type: 'paragraph',
141
+ html: 'Los tutores deben garantizar el acceso libre a agua limpia y renovada diariamente. En el caso de los gatos, que suelen tener un instinto de sed bajo, utilizar fuentes de agua, recipientes anchos y varios puntos de bebida por la casa ayuda a estimular la ingesta voluntaria.',
142
+ },
143
+ {
144
+ type: 'card',
145
+ title: 'Alimentación Seca',
146
+ icon: 'mdi:food-drumstick',
147
+ html: 'Los animales alimentados con pienso seco dependen casi al 100% de la bebida en el cuenco. Mantén el bebedero siempre lleno y limpio en un lugar tranquilo.',
148
+ },
149
+ {
150
+ type: 'card',
151
+ title: 'Alimentación Húmeda',
152
+ icon: 'mdi:food-drumstick',
153
+ html: 'Las latas de comida proporcionan una hidratación excelente. Es normal que beban menos del recipiente, pero se debe mantener agua fresca disponible siempre.',
154
+ },
155
+ {
156
+ type: 'card',
157
+ title: 'Días Calurosos y Ejercicio',
158
+ icon: 'mdi:weather-sunny',
159
+ html: 'Durante episodios de calor o tras el juego intenso, las pérdidas por jadeo aumentan exponencialmente. Proporciona sombra y descansos regulares con acceso a agua fresca.',
160
+ },
161
+ {
162
+ type: 'tip',
163
+ title: 'Atención a las Variaciones Bruscas',
164
+ html: 'La polidipsia (aumento excesivo de sed) o la adipsia (rechazo del agua) son señales de alerta clínica de diabetes, insuficiencia renal o infecciones. Nunca limites el acceso al agua y acude al veterinario ante cualquier duda.',
165
+ },
166
+ ];
167
+
168
+ const schemas: PetWaterIntakeLocaleContent['schemas'] = [
169
+ {
170
+ '@context': 'https://schema.org',
171
+ '@type': 'SoftwareApplication',
172
+ name: title,
173
+ description,
174
+ applicationCategory: 'HealthApplication',
175
+ operatingSystem: 'Web',
176
+ offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
177
+ } as WithContext<SoftwareApplication>,
178
+ {
179
+ '@context': 'https://schema.org',
180
+ '@type': 'FAQPage',
181
+ mainEntity: faq.map((item) => ({
182
+ '@type': 'Question',
183
+ name: item.question,
184
+ acceptedAnswer: { '@type': 'Answer', text: item.answer },
185
+ })),
186
+ } as WithContext<FAQPage>,
187
+ {
188
+ '@context': 'https://schema.org',
189
+ '@type': 'HowTo',
190
+ name: title,
191
+ step: howTo.map((step) => ({ '@type': 'HowToStep', name: step.name, text: step.text })),
192
+ } as WithContext<HowTo>,
193
+ ];
194
+
195
+ export const content: PetWaterIntakeLocaleContent = {
196
+ slug,
197
+ title,
198
+ description,
199
+ ui,
200
+ seo,
201
+ faq,
202
+ bibliography,
203
+ howTo,
204
+ schemas,
205
+ };
@@ -0,0 +1,205 @@
1
+ import { bibliography } from '../bibliography';
2
+ import type { FAQPage, HowTo, SoftwareApplication, WithContext } from 'schema-dts';
3
+ import type { PetWaterIntakeLocaleContent, PetWaterIntakeUI } from '../entry';
4
+
5
+ const slug = 'calculateur-besoin-eau-quotidien-chiens-chats';
6
+ const title = 'Calculateur de besoin quotidien en eau pour chiens et chats';
7
+ const description = "Estimez les besoins quotidiens en eau d'un chien ou d'un chat en fonction de son poids, de son alimentation, de son activité et du climat.";
8
+
9
+ const ui: PetWaterIntakeUI = {
10
+ journeyHint: "Choisissez l'animal, entrez son poids corporel puis ajustez l'alimentation et le climat.",
11
+ instantHint: "Chaque choix modifie le niveau d'eau instantanément. C'est un guide d'orientation, pas un diagnostic.",
12
+ unitLegend: 'Unités',
13
+ metricUnit: 'Métrique',
14
+ imperialUnit: 'Impérial',
15
+ speciesLegend: 'Pour qui est la gamelle ?',
16
+ speciesDog: 'Chien',
17
+ speciesCat: 'Chat',
18
+ speciesDogMeta: 'Repère de maintien 60 mL par kg',
19
+ speciesCatMeta: 'Repère de maintien 40 mL par kg',
20
+ weightLabel: 'Poids corporel',
21
+ weightHint: 'Indiquez le poids actuel de votre animal en bonne santé.',
22
+ weightKg: 'kg',
23
+ weightLb: 'lb',
24
+ dietLegend: "Quelle quantité d'eau provient de la nourriture ?",
25
+ dietDry: 'Principalement croquettes sèches',
26
+ dietDryMeta: "La majorité de l'eau est bue au récipient",
27
+ dietMixed: 'Alimentation mixte',
28
+ dietMixedMeta: "Une partie de l'eau provient des repas",
29
+ dietWet: 'Principalement pâtée ou nourriture humide',
30
+ dietWetMeta: "La nourriture apporte la majeure partie de l'eau",
31
+ activityLegend: "Activité habituelle aujourd'hui",
32
+ activityCalm: 'Calme / Repos',
33
+ activityTypical: 'Modérée / Normale',
34
+ activityActive: 'Intense / Très actif',
35
+ heatLegend: 'Climat et température',
36
+ heatNormal: 'Tempéré / Normal',
37
+ heatWarm: 'Chaud',
38
+ heatHot: 'Très chaud / Canicule',
39
+ resultEyebrow: "Niveau d'eau estimé",
40
+ totalRangeLabel: 'Eau totale nécessaire (toutes sources)',
41
+ drinkingRangeLabel: 'Guide indicatif pour la gamelle',
42
+ totalRangeHint: "Plage quotidienne globale incluant l'humidité des aliments.",
43
+ drinkingRangeHint: 'Part estimée bue directement au récipient.',
44
+ statusEveryday: 'Conditions habituelles',
45
+ statusActive: 'Journée active',
46
+ statusWarm: 'Temps chaud',
47
+ statusDemanding: 'Conditions exigeantes',
48
+ statusDetailEveryday: "Profil d'entretien de base sans facteurs supplémentaires de chaleur ou d'effort.",
49
+ statusDetailActive: "L'exercice augmente les pertes en eau. Assurez un accès permanent à de l'eau fraîche.",
50
+ statusDetailWarm: "La chaleur accroît le halètement. L'ombre et la fraîcheur restent prioritaires.",
51
+ statusDetailDemanding: 'Activité forte et forte chaleur combinées. Surveillez attentivement votre animal.',
52
+ resultEmpty: 'Veuillez entrer un poids valide pour afficher le niveau.',
53
+ sceneAria: "Réservoir d'eau pour l'animal sélectionné",
54
+ sceneTotal: 'EAU TOTALE',
55
+ sceneBowl: 'milieu de la plage quotidienne',
56
+ methodTitle: 'Méthode de calcul',
57
+ methodText: "Suit les recommandations AAHA de 60 mL/kg chez le chien et 40 mL/kg chez le chat, adaptées à l'alimentation et au climat.",
58
+ noteTitle: 'La gamelle ne remplace pas un avis vétérinaire',
59
+ noteText: "Laissez toujours de l'eau propre à disposition. En cas de changement brutal de soif ou de symptômes de déshydratation, consultez un vétérinaire.",
60
+ invalidWeight: 'Veuillez saisir un poids corporel valide.',
61
+ weightRange: 'Le poids doit être compris entre 0,5 kg et 100 kg.',
62
+ };
63
+
64
+ const faq: PetWaterIntakeLocaleContent['faq'] = [
65
+ {
66
+ question: 'Combien d\'eau un chien ou un chat doit-il boire par jour ?',
67
+ answer: 'Les recommandations vétérinaires de l\'AAHA suggèrent un besoin de maintien d\'environ 60 mL/kg par jour pour les chiens et 40 mL/kg pour les chats. Ce besoin varie selon l\'alimentation, l\'exercice et la température ambiante.',
68
+ },
69
+ {
70
+ question: 'La nourriture humide réduit-elle le besoin de boire à la gamelle ?',
71
+ answer: 'Oui, la nourriture humide contient 75 % à 80 % d\'eau, couvrant une grande partie de l\'hydratation quotidienne. Les animaux nourris à la pâtée boivent naturellement moins d\'eau à la gamelle.',
72
+ },
73
+ {
74
+ question: 'Quand faut-il consulter pour la consommation d\'eau ?',
75
+ answer: 'Consultez rapidement un vétérinaire en cas d\'augmentation soudaine (polydipsie) ou de diminution marquée de la prise d\'eau, car cela peut signaler des troubles rénaux ou du diabète.',
76
+ },
77
+ {
78
+ question: 'Le temps chaud augmente-t-il les besoins en eau ?',
79
+ answer: 'Oui, le halètement lors des fortes chaleurs ou de l\'exercice augmente la perte d\'eau. Il est indispensable de laisser de l\'eau fraîche et de l\'ombre à disposition.',
80
+ },
81
+ ];
82
+
83
+ const howTo: PetWaterIntakeLocaleContent['howTo'] = [
84
+ { name: 'Sélectionner l\'espèce et le poids', text: 'Choisissez chien ou chat et indiquez son poids corporel actuel en kg ou lb.' },
85
+ { name: 'Indiquer le type d\'alimentation', text: 'Sélectionnez sèche, mixte ou humide pour prendre en compte l\'apport d\'eau de la nourriture.' },
86
+ { name: 'Ajuster l\'activité et le climat', text: 'Définissez le niveau d\'exercice et la température pour calculer la perte d\'eau par halètement.' },
87
+ { name: 'Consulter les estimations', text: 'Vérifiez le besoin en eau total et la quantité estimée à boire directement à la gamelle.' },
88
+ ];
89
+
90
+ const seo: PetWaterIntakeLocaleContent['seo'] = [
91
+ {
92
+ type: 'summary',
93
+ title: 'Essentiel sur l\'hydratation des chiens et chats',
94
+ items: [
95
+ 'Besoins de base: Chiens ~60 mL/kg par jour ; Chats ~40 mL/kg par jour selon l\'AAHA.',
96
+ 'Rôle de l\'alimentation: La nourriture humide fournit jusqu\'à 80 % de l\'eau requise.',
97
+ 'Chaleur et effort: Le halètement accroît les pertes en eau et nécessite de l\'eau fraîche.',
98
+ 'Signaux d\'alerte: Une variation brutale de la soif nécessite une visite vétérinaire.',
99
+ 'Accès libre: Disposez plusieurs points d\'eau propre dans le logement.',
100
+ ],
101
+ },
102
+ {
103
+ type: 'title',
104
+ text: 'Calcul de l\'hydratation quotidienne pour animaux',
105
+ level: 2,
106
+ },
107
+ {
108
+ type: 'paragraph',
109
+ html: 'Une hydratation adéquate chez les chiens et les chats est absolument fondamentale pour maintenir les fonctions métaboliques, faciliter la digestion des nutriments, lubricater les articulations et préserver la santé rénale à long terme. L\'eau constitue entre 60 % et 70 % du poids corporel total d\'un animal adulte, et le moindre déficit hydrique peut perturber des processus physiologiques essentiels. Les données scientifiques établies par l\'American Animal Hospital Association (AAHA) fixent les besoins quotidiens de maintien à environ 60 mL par kilogramme de poids corporel chez les chiens et 40 mL par kilogramme chez les chats.',
110
+ },
111
+ {
112
+ type: 'paragraph',
113
+ html: 'Néanmoins, ces valeurs de référence représentent l\'ensemble du besoin hydrique quotidien et pas uniquement la quantité d\'eau que l\'animal doit boire directement au récipient. La ration hydrique totale d\'un animal domestique provient de trois sources distinctes: l\'eau bue au beurrier ou à la fontaine, l\'humidité naturally contenue dans les aliments commerciaux ou ménagers, et l\'eau métabolique produite lors de la respiration cellulaire. Bien comprendre cette distinction évite toute inquiétude inutile chez les propriétaires lorsque leur compagnon consomme des aliments humides.',
114
+ },
115
+ {
116
+ type: 'title',
117
+ text: 'Eau totale vs Eau de la gamelle',
118
+ level: 2,
119
+ },
120
+ {
121
+ type: 'paragraph',
122
+ html: 'Le mode d\'alimentation joue un rôle prépondérant dans la quantité d\'eau que l\'animal recherchera de lui-même dans son beurrier. Les croquettes sèches industrielles ne contiennent que 6 % à 10 % d\'humidité, obligeant l\'animal à boire la quasi-totalité de son besoin hydrique quotidien directement à la gamelle. À l\'inverse, les pâtées et aliments en conserve renferment entre 75 % et 82 % d\'eau. Un chat ou un chien nourri exclusivement avec de la nourriture humide obtient ainsi la majeure partie de son hydratation pendant ses repas, ce qui entraîne des visites très espacées à la gamelle d\'eau, parfaitement normales sur le plan physiologique.',
123
+ },
124
+ {
125
+ type: 'table',
126
+ headers: ['Facteur', 'Impact sur l\'hydratation', 'Remarque'],
127
+ rows: [
128
+ ['Espèce', 'Fixe le besoin de base', 'Chiens ~60 mL/kg, Chats ~40 mL/kg'],
129
+ ['Poids', 'Ajuste la quantité globale', 'Prendre le poids de forme'],
130
+ ['Alimentation', 'Modifie l\'eau apportée par les repas', 'La pâtée réduit la prise à la gamelle'],
131
+ ['Climat / Exercice', 'Augmente la perte en eau', 'Nécessite plus d\'eau fraîche'],
132
+ ],
133
+ },
134
+ {
135
+ type: 'title',
136
+ text: 'Conseils pratiques pour les propriétaires',
137
+ level: 2,
138
+ },
139
+ {
140
+ type: 'paragraph',
141
+ html: 'Les propriétaires doivent veiller à maintenir un accès permanent et illimité à une eau propre et fraîche, plutôt que d\'essayer d\'imposer un volume strict à boire. Les gamelles doivent être lavées quotidiennement et renouvelées fréquemment. Pour les chats, dont le sentiment de soif est naturellement faible en raison de leurs origines de désert, l\'installation de fontaines à eau ou de bols larges évite le stress des moustaches et stimule fortement l\'hydratation spontanée.',
142
+ },
143
+ {
144
+ type: 'card',
145
+ title: 'Alimentation Sèche',
146
+ icon: 'mdi:food-drumstick',
147
+ html: 'Les animaux nourris aux croquettes dépendent presque entièrement de la gamelle d\'eau. Veillez à ce que l\'eau soit renouvelée quotidiennement et placée dans un endroit calme.',
148
+ },
149
+ {
150
+ type: 'card',
151
+ title: 'Alimentation Humide',
152
+ icon: 'mdi:food-drumstick',
153
+ html: 'La pâtée apporte une excellente hydratation directe lors des repas. Il est parfaitement normal que l\'animal boive moins à la gamelle d\'eau.',
154
+ },
155
+ {
156
+ type: 'card',
157
+ title: 'Chaleur et Exercice',
158
+ icon: 'mdi:weather-sunny',
159
+ html: 'Par temps chaud ou après l\'effort, le halètement augmente fortement la perte d\'eau. Offrez des zones d\'ombre fraîches et des pauses régulières avec de l\'eau fraîche.',
160
+ },
161
+ {
162
+ type: 'tip',
163
+ title: 'Vigilance en cas de changement',
164
+ html: 'Une augmentation soudaine de la soif (polydipsie) ou le refus de boire (adipsie) sont des signaux cliniques majeurs de troubles rénaux, de diabète ou d\'infections. N\'essayez jamais de restreindre l\'accès à l\'eau et consultez immédiatement un vétérinaire.',
165
+ },
166
+ ];
167
+
168
+ const schemas: PetWaterIntakeLocaleContent['schemas'] = [
169
+ {
170
+ '@context': 'https://schema.org',
171
+ '@type': 'SoftwareApplication',
172
+ name: title,
173
+ description,
174
+ applicationCategory: 'HealthApplication',
175
+ operatingSystem: 'Web',
176
+ offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
177
+ } as WithContext<SoftwareApplication>,
178
+ {
179
+ '@context': 'https://schema.org',
180
+ '@type': 'FAQPage',
181
+ mainEntity: faq.map((item) => ({
182
+ '@type': 'Question',
183
+ name: item.question,
184
+ acceptedAnswer: { '@type': 'Answer', text: item.answer },
185
+ })),
186
+ } as WithContext<FAQPage>,
187
+ {
188
+ '@context': 'https://schema.org',
189
+ '@type': 'HowTo',
190
+ name: title,
191
+ step: howTo.map((step) => ({ '@type': 'HowToStep', name: step.name, text: step.text })),
192
+ } as WithContext<HowTo>,
193
+ ];
194
+
195
+ export const content: PetWaterIntakeLocaleContent = {
196
+ slug,
197
+ title,
198
+ description,
199
+ ui,
200
+ seo,
201
+ faq,
202
+ bibliography,
203
+ howTo,
204
+ schemas,
205
+ };