@jjlmoya/utils-pets 1.4.0 → 1.6.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 (56) hide show
  1. package/package.json +59 -58
  2. package/src/category/i18n/de.ts +52 -0
  3. package/src/category/i18n/id.ts +52 -0
  4. package/src/category/i18n/it.ts +52 -0
  5. package/src/category/i18n/ja.ts +52 -0
  6. package/src/category/i18n/ko.ts +52 -0
  7. package/src/category/i18n/nl.ts +52 -0
  8. package/src/category/i18n/pl.ts +52 -0
  9. package/src/category/i18n/pt.ts +52 -0
  10. package/src/category/i18n/ru.ts +52 -0
  11. package/src/category/i18n/sv.ts +52 -0
  12. package/src/category/i18n/tr.ts +52 -0
  13. package/src/category/i18n/zh.ts +52 -0
  14. package/src/category/index.ts +13 -1
  15. package/src/tests/i18n_coverage.test.ts +36 -0
  16. package/src/tests/locale_completeness.test.ts +42 -0
  17. package/src/tests/no_h1_in_components.test.ts +48 -0
  18. package/src/tests/schemas_fulfillment.test.ts +23 -0
  19. package/src/tests/slug_uniqueness.test.ts +81 -0
  20. package/src/tests/title_quality.test.ts +55 -0
  21. package/src/tool/petAge/component.astro +653 -1
  22. package/src/tool/petAge/i18n/de.ts +189 -0
  23. package/src/tool/petAge/i18n/en.ts +73 -44
  24. package/src/tool/petAge/i18n/es.ts +74 -45
  25. package/src/tool/petAge/i18n/fr.ts +73 -44
  26. package/src/tool/petAge/i18n/id.ts +189 -0
  27. package/src/tool/petAge/i18n/it.ts +189 -0
  28. package/src/tool/petAge/i18n/ja.ts +189 -0
  29. package/src/tool/petAge/i18n/ko.ts +189 -0
  30. package/src/tool/petAge/i18n/nl.ts +189 -0
  31. package/src/tool/petAge/i18n/pl.ts +189 -0
  32. package/src/tool/petAge/i18n/pt.ts +189 -0
  33. package/src/tool/petAge/i18n/ru.ts +189 -0
  34. package/src/tool/petAge/i18n/sv.ts +189 -0
  35. package/src/tool/petAge/i18n/tr.ts +195 -0
  36. package/src/tool/petAge/i18n/zh.ts +189 -0
  37. package/src/tool/petAge/index.ts +13 -1
  38. package/src/tool/petRation/component.astro +430 -1
  39. package/src/tool/petRation/i18n/de.ts +186 -0
  40. package/src/tool/petRation/i18n/en.ts +57 -32
  41. package/src/tool/petRation/i18n/es.ts +70 -45
  42. package/src/tool/petRation/i18n/fr.ts +75 -50
  43. package/src/tool/petRation/i18n/id.ts +186 -0
  44. package/src/tool/petRation/i18n/it.ts +186 -0
  45. package/src/tool/petRation/i18n/ja.ts +186 -0
  46. package/src/tool/petRation/i18n/ko.ts +186 -0
  47. package/src/tool/petRation/i18n/nl.ts +186 -0
  48. package/src/tool/petRation/i18n/pl.ts +186 -0
  49. package/src/tool/petRation/i18n/pt.ts +186 -0
  50. package/src/tool/petRation/i18n/ru.ts +186 -0
  51. package/src/tool/petRation/i18n/sv.ts +186 -0
  52. package/src/tool/petRation/i18n/tr.ts +186 -0
  53. package/src/tool/petRation/i18n/zh.ts +186 -0
  54. package/src/tool/petRation/index.ts +13 -1
  55. package/src/tool/petAge/style.css +0 -649
  56. package/src/tool/petRation/style.css +0 -427
package/package.json CHANGED
@@ -1,60 +1,61 @@
1
1
  {
2
- "name": "@jjlmoya/utils-pets",
3
- "version": "1.4.0",
4
- "type": "module",
5
- "main": "./src/index.ts",
6
- "types": "./src/index.ts",
7
- "exports": {
8
- ".": "./src/index.ts",
9
- "./data": "./src/data.ts"
10
- },
11
- "files": [
12
- "src"
13
- ],
14
- "publishConfig": {
15
- "access": "public"
16
- },
17
- "scripts": {
18
- "dev": "astro dev",
19
- "start": "astro dev",
20
- "build": "astro build",
21
- "preview": "astro preview",
22
- "astro": "astro",
23
- "lint": "eslint src/ --max-warnings 0 && stylelint \"src/**/*.{css,astro}\"",
24
- "check": "astro check",
25
- "type-check": "astro check",
26
- "test": "vitest run",
27
- "preversion": "npm run lint && npm run test",
28
- "postversion": "git push && git push --tags",
29
- "patch": "npm version patch",
30
- "minor": "npm version minor",
31
- "major": "npm version major"
32
- },
33
- "lint-staged": {
34
- "*.{ts,tsx,astro}": [
35
- "eslint --fix"
36
- ]
37
- },
38
- "dependencies": {
39
- "@iconify-json/mdi": "^1.2.3",
40
- "@jjlmoya/utils-shared": "^1.1.0",
41
- "astro": "^6.1.2",
42
- "astro-icon": "^1.1.0"
43
- },
44
- "devDependencies": {
45
- "@astrojs/check": "^0.9.8",
46
- "eslint": "^9.39.4",
47
- "eslint-plugin-astro": "^1.6.0",
48
- "eslint-plugin-no-comments": "^1.1.10",
49
- "husky": "^9.1.7",
50
- "lint-staged": "^16.4.0",
51
- "postcss-html": "^1.8.1",
52
- "schema-dts": "^1.1.2",
53
- "stylelint": "^17.6.0",
54
- "stylelint-config-standard": "^40.0.0",
55
- "stylelint-declaration-strict-value": "^1.11.1",
56
- "typescript": "^5.4.0",
57
- "typescript-eslint": "^8.58.0",
58
- "vitest": "^4.1.2"
59
- }
2
+ "name": "@jjlmoya/utils-pets",
3
+ "version": "1.6.0",
4
+ "type": "module",
5
+ "main": "./src/index.ts",
6
+ "types": "./src/index.ts",
7
+ "exports": {
8
+ ".": "./src/index.ts",
9
+ "./data": "./src/data.ts"
10
+ },
11
+ "files": [
12
+ "src"
13
+ ],
14
+ "publishConfig": {
15
+ "access": "public"
16
+ },
17
+ "scripts": {
18
+ "dev": "astro dev",
19
+ "start": "astro dev",
20
+ "build": "astro build",
21
+ "preview": "astro preview",
22
+ "astro": "astro",
23
+ "lint": "eslint src/ --max-warnings 0 && stylelint \"src/**/*.{css,astro}\"",
24
+ "check": "astro check",
25
+ "type-check": "astro check",
26
+ "test": "vitest run",
27
+ "preversion": "npm run lint && npm run test",
28
+ "postversion": "git push && git push --tags",
29
+ "patch": "npm version patch",
30
+ "minor": "npm version minor",
31
+ "major": "npm version major"
32
+ },
33
+ "lint-staged": {
34
+ "*.{ts,tsx,astro}": [
35
+ "eslint --fix"
36
+ ]
37
+ },
38
+ "dependencies": {
39
+ "@iconify-json/mdi": "^1.2.3",
40
+ "@jjlmoya/prompagate": "^1.1.0",
41
+ "@jjlmoya/utils-shared": "1.2.0",
42
+ "astro": "^6.1.2",
43
+ "astro-icon": "^1.1.0"
44
+ },
45
+ "devDependencies": {
46
+ "@astrojs/check": "^0.9.8",
47
+ "eslint": "^9.39.4",
48
+ "eslint-plugin-astro": "^1.6.0",
49
+ "eslint-plugin-no-comments": "^1.1.10",
50
+ "husky": "^9.1.7",
51
+ "lint-staged": "^16.4.0",
52
+ "postcss-html": "^1.8.1",
53
+ "schema-dts": "^1.1.2",
54
+ "stylelint": "^17.6.0",
55
+ "stylelint-config-standard": "^40.0.0",
56
+ "stylelint-declaration-strict-value": "^1.11.1",
57
+ "typescript": "^5.4.0",
58
+ "typescript-eslint": "^8.58.0",
59
+ "vitest": "^4.1.2"
60
+ }
60
61
  }
@@ -0,0 +1,52 @@
1
+ import type { CategoryLocaleContent } from '../../types';
2
+
3
+ export const content: CategoryLocaleContent = {
4
+ slug: 'haustiere',
5
+ title: 'Haustier Tools',
6
+ description: 'Kostenlose Rechner und Dienstprogramme für Haustierbesitzer. Finden Sie das wahre Alter Ihres Hundes oder Ihrer Katze heraus und berechnen Sie die tägliche Futterration mit tierärztlicher Präzision.',
7
+ seo: [
8
+ { type: 'title', text: 'Tierernährung und Wohlbefinden: Wissenschaft im Dienste Ihres Haustieres', level: 2 },
9
+ {
10
+ type: 'paragraph',
11
+ html: 'Die Pflege eines Hundes, einer Katze oder eines Kaninchens ist viel mehr als nur Futter und Zuneigung zu geben. Es erfordert ein Verständnis ihrer Biologie, ihres Alternsrhythmus und ihres spezifischen Energiebedarfs. In diesem Abschnitt bieten wir <strong>kostenlose Tierarzt-Rechner</strong> an, die validierte wissenschaftliche Formeln anwenden, um Ihnen zu helfen, bessere Entscheidungen für die Gesundheit Ihres Begleiters zu treffen.',
12
+ },
13
+ {
14
+ type: 'paragraph',
15
+ html: 'Von der Neugier zu wissen, wie viele Menschenjahre Ihr Hund wirklich hat, bis hin zur präzisen Berechnung der Tagesration basierend auf dem RER (Resting Energy Requirement) verwandeln unsere Tools komplexe tierärztliche Konzepte in klare, umsetzbare Antworten für den verantwortungsbewussten Haustierbesitzer.',
16
+ },
17
+ { type: 'title', text: 'Das wahre Alter Ihres Haustieres: Jenseits des Mythos der Zahl 7', level: 2 },
18
+ {
19
+ type: 'paragraph',
20
+ html: 'Der weitverbreitete Glaube, dass ein Hundejahr sieben Menschenjahren entspricht, wurde von der modernen Veterinärwissenschaft seit Jahrzehnten widerlegt. Die Realität ist, dass Hunde in ihren ersten zwei Lebensjahren exponentiell reifen und mit 12 Monaten das Äquivalent von 15 Menschenjahren und mit 24 Monaten 24 Jahre erreichen. Danach verlangsamt sich das Tempo und hängt enorm von der <strong>Größe des Tieres</strong> ab: Ein Riesenhund über 45 kg kann bis zu 60 % schneller altern als eine kleine Rasse.',
21
+ },
22
+ {
23
+ type: 'paragraph',
24
+ html: 'Katzen hingegen folgen einer lineareren Alterungskurve: Nach den ersten zwei Jahren der beschleunigten Entwicklung entspricht jedes Katzenjahr ungefähr vier Menschenjahren. Das Wissen um die Lebensphase Ihres Haustieres ist nicht nur Neugier, sondern relevante medizinische Information: Es bestimmt, wann geriatrische Checkups geplant werden sollten, wann die Diät angepasst werden muss und welche Gesundheitszeichen Sie überwachen sollten.',
25
+ },
26
+ { type: 'title', text: 'Präzisionsernährung: Berechnen Sie die exakte Tagesration', level: 2 },
27
+ {
28
+ type: 'paragraph',
29
+ html: 'Übergewicht betrifft mehr als 50 % der Hausstiere in Industrieländern und ist die direkte Ursache für Gelenk- und Herz-Kreislauf-Probleme sowie eine verringerte Lebenserwartung. Das Problem ist nicht ein Mangel an Liebe der Besitzer, sondern das <strong>Fehlen präziser kalorischer Referenzen</strong>. Unser Tagesrationsrechner wendet die Standard-RER-Formel (70 × Gewicht^0,75) an und multipliziert sie mit dem entsprechenden DER-Faktor für die Spezies, die Lebensphase und das Aktivitätsniveau Ihres Tieres.',
30
+ },
31
+ {
32
+ type: 'list',
33
+ items: [
34
+ '<strong>Haustier Altersrechner:</strong> Wandelt chronologische Jahre basierend auf Spezies und Größe in das menschliche Äquivalent um, inklusive Lebensphase und nächstem tierärztlichen Meilenstein.',
35
+ '<strong>Tagesrationsrechner:</strong> Berechnet Gramm für Trocken- und Nassfutter basierend auf RER und DER für Hunde, Katzen und Kaninchen.',
36
+ ],
37
+ },
38
+ {
39
+ type: 'tip',
40
+ title: 'Tierärztlicher Rat',
41
+ html: 'Diese Tools bieten wissenschaftliche Startreferenzen, aber jedes Tier ist einzigartig. Konsultieren Sie immer Ihren Tierarzt, um die Ernährung und den Gesundheitsplan an die individuellen Bedürfnisse Ihres Haustieres anzupassen.',
42
+ },
43
+ {
44
+ type: 'paragraph',
45
+ html: 'Die Investition in Wissen über die Biologie Ihres Haustieres ist die effektivste Form der Präventivmedizin. Ein gesundes Gewicht und eine rechtzeitige tierärztliche Versorgung können Ihrem treuen Begleiter Jahre an Lebensqualität hinzufügen. Ein wissenschaftlicher Ansatz zur Pflege stellt sicher, dass Ihr Haustier nicht nur überlebt, sondern in jeder Phase seines Lebens gedeiht.',
46
+ },
47
+ {
48
+ type: 'paragraph',
49
+ html: 'Die Bedeutung einer individuellen Betreuung kann nicht hoch genug eingeschätzt werden. In einer Welt voller allgemeiner Ratschläge bieten unsere Rechner eine solide Grundlage für die personalisierte Pflege Ihres Haustieres. Nutzen Sie diese Ressourcen, um die Bindung zu Ihrem Tier durch ein tieferes Verständnis seiner physischen Bedürfnisse zu stärken.',
50
+ },
51
+ ],
52
+ };
@@ -0,0 +1,52 @@
1
+ import type { CategoryLocaleContent } from '../../types';
2
+
3
+ export const content: CategoryLocaleContent = {
4
+ slug: 'hewan-peliharaan',
5
+ title: 'Alat Hewan Peliharaan',
6
+ description: 'Kalkulator dan utilitas gratis untuk pemilik hewan peliharaan. Cari tahu usia asli anjing atau kucing Anda dan hitung ransum harian mereka dengan presisi veteriner.',
7
+ seo: [
8
+ { type: 'title', text: 'Nutrisi dan Kesejahteraan Hewan: Ilmu di Layanan Hewan Peliharaan Anda', level: 2 },
9
+ {
10
+ type: 'paragraph',
11
+ html: 'Merawat anjing, kucing, atau kelinci jauh lebih dari sekadar memberi mereka makanan dan kasih sayang. Ini melibatkan pemahaman tentang biologi mereka, ritme penuaan mereka, dan kebutuhan energi spesifik mereka. Di bagian ini kami menawarkan <strong>kalkulator veteriner gratis</strong> yang menerapkan formula ilmiah yang divalidasi untuk membantu Anda membuat keputusan yang lebih baik tentang kesehatan teman Anda.',
12
+ },
13
+ {
14
+ type: 'paragraph',
15
+ html: 'Dari rasa ingin tahu ingin mengetahui berapa banyak tahun manusia yang sebenarnya dimiliki anjing Anda, hingga penghitungan presisi ransum harian berdasarkan RER (Resting Energy Requirement), alat kami mengubah konsep veteriner yang kompleks menjadi jawaban yang jelas dan dapat ditindaklanjuti untuk pemilik hewan peliharaan yang bertanggung jawab.',
16
+ },
17
+ { type: 'title', text: 'Usia Sebenarnya Hewan Peliharaan Anda: Di Luar Mitos "Kali 7"', level: 2 },
18
+ {
19
+ type: 'paragraph',
20
+ html: 'Keyakinan populer bahwa satu tahun anjing sama dengan tujuh tahun manusia telah dibantah oleh ilmu veteriner modern selama beberapa dekade. Kenyataannya adalah bahwa anjing matang secara eksponensial dalam dua tahun pertama kehidupan mereka, mencapai setara dengan 15 tahun manusia pada usia 12 bulan dan 24 tahun pada usia 24 bulan. Setelah itu, langkahnya melambat dan sangat bergantung pada <strong>ukuran hewan</strong>: anjing raksasa seberat lebih dari 45 kg dapat menua hingga 60% lebih cepat daripada ras kecil.',
21
+ },
22
+ {
23
+ type: 'paragraph',
24
+ html: 'Kucing, di sisi lain, mengikuti kurva penuaan yang lebih linear: setelah dua tahun pertama perkembangan yang dipercepat, setiap tahun kucing kira-kira setara dengan empat tahun manusia. Mengetahui tahap kehidupan hewan peliharaan Anda bukan sekadar rasa ingin tahu, ini adalah informasi medis yang relevan: ini menentukan kapan harus menjadwalkan pemeriksaan geriatri, kapan harus menyesuaikan diet, dan tanda-tanda kesehatan apa yang harus Anda pantau.',
25
+ },
26
+ { type: 'title', text: 'Nutrisi Presisi: Hitung Ransum Harian yang Tepat', level: 2 },
27
+ {
28
+ type: 'paragraph',
29
+ html: 'Obesitas memengaruhi lebih dari 50% hewan peliharaan domestik di negara maju dan merupakan penyebab langsung masalah sendi dan kardiovaskular serta berkurangnya harapan hidup. Masalahnya bukan kurangnya kasih sayang dari pemilik, tetapi <strong>tidak adanya referensi kalori yang presisi</strong>. Kalkulator ransum harian kami menerapkan formula RER veteriner standar (70 × berat^0,75) dan mengalikannya dengan faktor DER yang sesuai untuk spesies, tahap kehidupan, dan tingkat aktivitas hewan Anda.',
30
+ },
31
+ {
32
+ type: 'list',
33
+ items: [
34
+ '<strong>Kalkulator Usia Hewan Peliharaan:</strong> Mengonversi tahun kronologis menjadi setara manusia berdasarkan spesies dan ukuran, dengan tahap kehidupan dan tonggak veteriner berikutnya.',
35
+ '<strong>Kalkulator Ransum Harian:</strong> Menghitung gram makanan kering dan basah berdasarkan RER dan DER untuk anjing, kucing, dan kelinci.',
36
+ ],
37
+ },
38
+ {
39
+ type: 'tip',
40
+ title: 'Saran Veteriner',
41
+ html: 'Alat-alat ini memberikan referensi awal ilmiah, tetapi setiap hewan itu unik. Selalu konsultasikan dengan dokter hewan Anda untuk menyesuaikan diet dan rencana kesehatan dengan kebutuhan individu hewan peliharaan Anda.',
42
+ },
43
+ {
44
+ type: 'paragraph',
45
+ html: 'Berinvestasi dalam pengetahuan tentang biologi hewan peliharaan Anda adalah bentuk pengobatan pencegahan yang paling efektif. Berat badan yang sehat dan perawatan veteriner yang tepat waktu dapat menambah tahun-tahun berkualitas bagi teman setia Anda. Pendekatan ilmiah untuk perawatan memastikan bahwa hewan peliharaan Anda tidak hanya bertahan hidup tetapi berkembang di setiap tahap kehidupan mereka.',
46
+ },
47
+ {
48
+ type: 'paragraph',
49
+ html: 'Pentingnya perawatan individu tidak dapat dianggap remeh. Di dunia yang penuh dengan saran umum, kalkulator kami memberikan dasar yang kuat untuk perawatan yang dipersonalisasi bagi hewan peliharaan Anda. Gunakan sumber daya ini untuk memperkuat ikatan dengan hewan Anda melalui pemahaman yang lebih dalam tentang kebutuhan fisik mereka.',
50
+ },
51
+ ],
52
+ };
@@ -0,0 +1,52 @@
1
+ import type { CategoryLocaleContent } from '../../types';
2
+
3
+ export const content: CategoryLocaleContent = {
4
+ slug: 'animali-domestici',
5
+ title: 'Strumenti per Animali',
6
+ description: 'Calcolatori e utilità gratuiti per i proprietari di animali. Scopri l\'età reale del tuo cane o gatto e calcola la loro razione giornaliera con precisione veterinaria.',
7
+ seo: [
8
+ { type: 'title', text: 'Nutrizione e Benessere Animale: La Scienza al Servizio del Tuo Animale', level: 2 },
9
+ {
10
+ type: 'paragraph',
11
+ html: 'Prendersi cura di un cane, un gatto o un coniglio è molto più che dare loro cibo e affetto. Comporta la comprensione della loro biologia, del loro ritmo di invecchiamento e delle loro specifiche esigenze energetiche. In questa sezione offriamo <strong>calcolatori veterinari gratuiti</strong> che applicano formule scientifiche validate per aiutarti a prendere decisioni migliori sulla salute del tuo compagno.',
12
+ },
13
+ {
14
+ type: 'paragraph',
15
+ html: 'Dall\'interesse di sapere quanti anni umani ha davvero il tuo cane, al calcolo preciso della razione giornaliera basato sul RER (Resting Energy Requirement), i nostri strumenti trasformano concetti veterinari complessi in risposte chiare e attuabili per il proprietario di animali responsabile.',
16
+ },
17
+ { type: 'title', text: 'L\'età Reale del Tuo Animale: Oltre il Mito del "Per 7"', level: 2 },
18
+ {
19
+ type: 'paragraph',
20
+ html: 'La credenza popolare che un anno canino equivalga a sette anni umani è stata smentita dalla scienza veterinaria moderna ormai da decenni. La realtà è che i cani maturano esponenzialmente nei loro primi due anni di vita, raggiungendo l\'equivalente di 15 anni umani a 12 mesi e 24 anni a 24 mesi. Successivamente, il ritmo rallenta e dipende enormemente dalla <strong>taglia dell\'animale</strong>: un cane gigante di oltre 45 kg può invecchiare fino al 60% più velocemente rispetto a una razza piccola.',
21
+ },
22
+ {
23
+ type: 'paragraph',
24
+ html: 'I gatti, invece, seguono una curva di invecchiamento più lineare: dopo i primi due anni di sviluppo accelerato, ogni anno felino equivale a circa quattro anni umani. Conoscere la fase della vita della tua mascotte non è solo curiosità, è un\'informazione medica rilevante: determina quando programmare check-up geriatrici, quando regolare la dieta e quali segnali di salute dovresti monitorare.',
25
+ },
26
+ { type: 'title', text: 'Nutrizione di Precisione: Calcola la Razione Giornaliera Esatta', level: 2 },
27
+ {
28
+ type: 'paragraph',
29
+ html: 'L\'obesità colpisce più del 50% degli animali domestici nei paesi sviluppati ed è la causa diretta di problemi articolari e cardiovascolari e di una ridotta aspettativa di vita. Il problema non è la mancanza di amore da parte dei proprietari, ma l\'<strong>assenza di riferimenti calorici precisi</strong>. Il nostro calcolatore di razione giornaliera applica la formula RER veterinaria standard (70 × peso^0,75) e la moltiplica per il corrispondente fattore DER per la specie, la fase della vita e il livello di attività del tuo animale.',
30
+ },
31
+ {
32
+ type: 'list',
33
+ items: [
34
+ '<strong>Calcolatore Età Animali:</strong> Converte gli anni cronologici nell\'equivalente umano in base alla specie e alla taglia, con fase della vita e prossimo traguardo veterinario.',
35
+ '<strong>Calcolatore Razione Giornaliera:</strong> Calcola i grammi di cibo secco e umido in base a RER e DER per cani, gatti e conigli.',
36
+ ],
37
+ },
38
+ {
39
+ type: 'tip',
40
+ title: 'Consiglio Veterinario',
41
+ html: 'Questi strumenti forniscono riferimenti scientifici iniziali, ma ogni animale è unico. Consulta sempre il tuo veterinario per adattare la dieta e il piano sanitario alle esigenze individuali della tua mascotte.',
42
+ },
43
+ {
44
+ type: 'paragraph',
45
+ html: 'Investire nella conoscenza della biologia della tua mascotte è la forma più efficace di medicina preventiva. Un peso sano e cure veterinarie tempestive possono aggiungere anni di vita di qualità al tuo fedele compagno. L\'approccio scientifico alla cura assicura che il tuo animale non solo sopravviva ma prosperi in ogni fase della sua vita.',
46
+ },
47
+ {
48
+ type: 'paragraph',
49
+ html: 'L\'importanza delle cure individuali non può essere sottovalutata. In un mondo pieno di consigli generali, i nostri calcolatori forniscono una solida base per la cura personalizzata del tuo animale. Usa queste risorse per rafforzare il legame con il tuo animale attraverso una comprensione più profonda dei suoi bisogni fisici.',
50
+ },
51
+ ],
52
+ };
@@ -0,0 +1,52 @@
1
+ import type { CategoryLocaleContent } from '../../types';
2
+
3
+ export const content: CategoryLocaleContent = {
4
+ slug: 'pets',
5
+ title: 'ペット ツール',
6
+ description: 'ペット オーナー の ため の 無料 の 計算機 と ユーティリティ 。 愛犬 ・ 愛猫 の 本当 の 年齢 を 知り 、 獣医学 的 な 精度 で 1日 の 給餌 量 を 計算 します 。',
7
+ seo: [
8
+ { type: 'title', text: '動物 の 栄養 と 福祉 : ペット の ため の 科学 的 アプローチ', level: 2 },
9
+ {
10
+ type: 'paragraph',
11
+ html: '犬 や 猫 、 うさぎ を ケア する こと は 、 単に 食べ物 と 愛情 を 与える 以上 の こと です 。 それ は 、 彼ら の 生物学 、 老化 の リズム 、 そして 特定 の エネルギー 要求 量 を 理解 する こと を 伴います 。 この セクション では 、 科学 的 に 検証 された 公式 を 適用 した <strong>無料 の 獣医 計算機</strong> を 提供 し 、 あなた が パートナー の 健康 について より 良い 決定 を 下せる よう サポート します 。',
12
+ },
13
+ {
14
+ type: 'paragraph',
15
+ html: '愛犬 の 本当 の 人間 年齢 を 知りたい という 好奇心 から 、 RER ( 安静 時 エネルギー 要求 量 ) に 基づく 給餌 量 の 精密 な 計算 まで 、 私たち の ツール は 複雑 な 獣医学 の 概念 を 、 責任 ある ペット オーナー の ため の 明確 で 実践 的 な 回答 へ と 変換 します 。',
16
+ },
17
+ { type: 'title', text: 'ペット の 本当 の 年齢 : 「7倍」 という 迷信 を 超えて', level: 2 },
18
+ {
19
+ type: 'paragraph',
20
+ html: '「犬 の 1歳 は 人間 の 7歳」 という 通説 は 、 現代 の 獣医学 によって 数十年 前 に 否定 されています 。 現実 に は 、 犬 は 生後 2年間 で 指数関数的 に 成長 し 、 12ヶ月 で 人間 の 15歳 相当 、 24ヶ月 で 24歳 相当 に 達します 。 その後 、 ペース は 緩やか に なり 、 <strong>動物 の サイズ</strong> に 大きく 依存 します 。 例えば 、 45kg 以上 の 超大型 犬 は 、 小型 犬 よりも 最大 60% 早く 老化 する こと が あります 。',
21
+ },
22
+ {
23
+ type: 'paragraph',
24
+ html: '一方 で 猫 は 、 より 直線的 な 老化 曲線 を たどります 。 最初の 2年間 の 加速 された 発達 の 後 、 猫 の 1年 は 人間 の 約 4年 に 相当 します 。 ペット の ライフ ステージ を 知る こと は 単なる 好奇心 ではなく 、 重要 な 医学 的 情報 です 。 それ は 、 いつの タイミング で 定期 健診 を 受ける べき か 、 いつ 食事 を 調整 すべき か 、 そして どの ような 健康 サイン を 監視 すべき か を 決定 します 。',
25
+ },
26
+ { type: 'title', text: '精密 栄養学 : 正確 な 1日 の 給餌 量 を 計算 する', level: 2 },
27
+ {
28
+ type: 'paragraph',
29
+ html: '肥満 は 先進国 の 家庭 犬 ・ 猫 の 50% 以上 に 影響 を 与えて おり 、 関節 や 心血管 系 の 問題 、 そして 寿命 の 短縮 の 直接 的 な 原因 と なっています 。 問題 は 飼い主 の 愛情 不足 ではなく 、 <strong>正確 な カロリー の 基準 が 不足 している</strong> こと です 。 私たち の 給餌 量 計算機 は 、 標準 的 な 獣医 RER 公式 ( 70 × 体重^0.75 ) を 適用 し 、 それ に 動物 の 種類 、 ライフ ステージ 、 活動 レベル に 対応 する DER 係数 を 掛け合わせ ます 。',
30
+ },
31
+ {
32
+ type: 'list',
33
+ items: [
34
+ '<strong>ペット 年齢 計算機 :</strong> 種類 と サイズ に 基づいて 暦 年 を 人間 相当 の 年齢 に 変換 し 、 ライフ ステージ と 次の 獣医 的 な チェック ポイント を 示し ます 。',
35
+ '<strong>給餌 量 計算機 :</strong> 犬 、 猫 、 うさぎ の RER と DER に 基づいて 、 ドライ フード と ウェット フード の g 数 を 計算 します 。',
36
+ ],
37
+ },
38
+ {
39
+ type: 'tip',
40
+ title: '獣医師 から の アドバイス',
41
+ html: 'これ らの ツール は 科学 的 な 出発 点 を 提供 しますが 、 すべて の 動物 は ユニーク です 。 食事 や 健康 プラン を 個体 の ニーズ に 合わせる ため に は 、 常に 獣医師 に ご相談 ください 。',
42
+ },
43
+ {
44
+ type: 'paragraph',
45
+ html: 'ペット の 生物学 について の 知識 に 投資 する こと は 、 最も 効果 的 な 予防 医療 の 一つ です 。 健康 的 な 体重 と 適切 な 時期 の ケア は 、 あなた の 忠実 な パートナー に 数年 分 の 質 の 高い 生活 を 加える こと が できます 。',
46
+ },
47
+ {
48
+ type: 'paragraph',
49
+ html: 'すべて の 飼い主 は 、 毎日 の 小さな 習慣 が 未来 の 健康 を 作る こと を 知って います 。 私たち の ツール を 活用 して 、 あなた の ペット が 一生 の すべて の 段階 で 最高 の コンディション を 維持 できる よう に しましょう 。 科学 の 力 を 借りて 、 愛情 を 最大限 に 表現 する こと が でき ます 。',
50
+ },
51
+ ],
52
+ };
@@ -0,0 +1,52 @@
1
+ import type { CategoryLocaleContent } from '../../types';
2
+
3
+ export const content: CategoryLocaleContent = {
4
+ slug: 'pets',
5
+ title: '반려동물 도구',
6
+ description: '반려인을 위한 무료 계산기 및 유틸리티. 강아지나 고양이의 실제 나이를 알아보고 수의학적 정밀도로 일일 급여량을 계산해 보세요.',
7
+ seo: [
8
+ { type: 'title', text: '반려동물의 영양과 복지 : 반려 동물을 위한 과학적 서비스', level: 2 },
9
+ {
10
+ type: 'paragraph',
11
+ html: '강아지 , 고양이 , 토끼 를 돌보는 것 은 단순히 음식 과 애정 을 주는 것 이상 의 의미 를 가집니다 . 그것 은 그들 의 생물학 , 노화 의 리듬 , 그리고 특정 에너지 요구 사항 을 이해 하는 것 을 포함 합니다 . 이 섹션 에서는 검증 된 과학적 공식 을 적용 하여 귀하 가 동반자 의 건강 에 대해 더 나은 결정 을 내릴 수 있도록 돕는 <strong>무료 수의학 계산기</strong> 를 제공 합니다 .',
12
+ },
13
+ {
14
+ type: 'paragraph',
15
+ html: '애견 이 실제 로 몇 년 의 사람 나이 를 가지고 있는지 에 대한 궁금증 부터 , RER ( 휴식 기 에너지 요구 사항 ) 기반 의 정밀 한 일일 급여량 계산 까지 , 저희 의 도구 는 복잡 한 수의학 개념 을 책임 있는 반려인 을 위한 명확 하고 실행 가능한 답변 으로 변환 합니다 .',
16
+ },
17
+ { type: 'title', text: '반려동물 의 실제 나이 : "7 을 곱하는 " 미신 을 넘어서', level: 2 },
18
+ {
19
+ type: 'paragraph',
20
+ html: '개 의 1 년 이 사람 의 7 년 과 같다 는 대중적 인 믿음 은 현대 수의학 에 의해 수십 년 전 에 이미 반박 되었습니다 . 현실 은 개 가 생애 첫 2 년 동안 지수 함수 적 으로 성숙 하여 12 개월 에 사람 의 15 세 , 24 개월 에 24 세 에 도달 한다 는 것 입니다 . 그 후 , 속도 는 느려지 며 <strong>반려동물 의 크기</strong> 에 크게 의존 합니다 . 예를 들어 , 45kg 이상 의 초대형 견 은 소형 견 보다 최대 60% 더 빨리 노화 할 수 있습니다 .',
21
+ },
22
+ {
23
+ type: 'paragraph',
24
+ html: '반면 , 고양이 는 보다 선형 적 인 노화 곡선 을 따릅니다 . 첫 2 년 의 가속 된 발달 후 , 각 고양이 의 1 년 은 사람 의 약 4 년 에 해당 합니다 . 반려동물 의 생애 단계 를 아는 것 은 단순 한 호기심 이 아니라 관련 된 의학적 정보 입니다 . 그것 은 언제 노령 관리 검진 을 예약 할지 , 언제 식단 을 조절 할지 , 그리고 어떤 건강 징후 를 모니터링 해야 할지 를 결정 합니다 .',
25
+ },
26
+ { type: 'title', text: '정밀 영양 : 정확 한 일일 급여량 계산', level: 2 },
27
+ {
28
+ type: 'paragraph',
29
+ html: '비만 은 선진국 의 가정 반려동물 중 50% 이상 에 영향 을 미치 고 있으며 , 관절 및 심혈관 문제 와 기대 수명 단축 의 직접적 인 원인 이 됩니다 . 문제 는 반려인 의 애정 결핍 이 아니라 , <strong>정확 한 칼로리 기준 의 부재</strong> 입니다 . 저희 의 일일 급여량 계산기 는 표준 수의학 RER 공식 ( 70 × 무게^0.75 ) 을 적용 하고 귀하 의 반려동물 종 , 생애 단계 및 활동 수준 에 해당 하는 DER 계수 를 곱합니다 .',
30
+ },
31
+ {
32
+ type: 'list',
33
+ items: [
34
+ '<strong>반려동물 나이 계산기 :</strong> 종 과 크기 에 따라 연대기 적 년 수 를 사람 나이 로 변환 고 , 생애 단계 및 다음 수의학적 체크 포인트 를 제시 합니다 .',
35
+ '<strong>일일 급여량 계산기 :</strong> 개 , 고양이 , 토끼 의 RER 및 DER 에 따라 건식 및 습식 사료 의 그램 수 를 계산 합니다 .',
36
+ ],
37
+ },
38
+ {
39
+ type: 'tip',
40
+ title: '전문가 의 조언',
41
+ html: '이러한 도구 는 과학적 인 시작 기준 을 제공 하지만 , 모든 동물 은 고유 합니다 . 항상 수의사 와 상담 하여 식단 과 건강 계획 을 반려동물 의 개별 적 인 필요 에 맞게 조정 하십시오 .',
42
+ },
43
+ {
44
+ type: 'paragraph',
45
+ html: '반려동물 의 생물학 에 대한 지식 에 투자 하는 것 은 가장 효과적 인 예방 의학 의 형태 입니다 . 건강 한 체중 과 시기 적절 한 수의학적 관리 는 귀하 의 충실 한 동반자 에게 양질 의 삶 을 몇 년 더 더해 줄 수 있습니다 .',
46
+ },
47
+ {
48
+ type: 'paragraph',
49
+ html: '모든 반려인 은 매일 의 작은 습관 이 미래 의 건강 을 만든다 는 것을 알고 있습니다 . 저희 의 도구 를 활용 하여 귀하의 반려동물 이 일생 의 모든 단계 에서 최상 의 컨디션 을 유지 할 수 있도록 하십시오 . 과학 의 힘 을 빌려 사랑 을 최대한 으로 표현 할 수 있습니다 .',
50
+ },
51
+ ],
52
+ };
@@ -0,0 +1,52 @@
1
+ import type { CategoryLocaleContent } from '../../types';
2
+
3
+ export const content: CategoryLocaleContent = {
4
+ slug: 'huisdieren',
5
+ title: 'Huisdier Tools',
6
+ description: 'Gratis calculators en hulpmiddelen voor eigenaren van gezelschapsdieren. Ontdek de echte leeftijd van uw hond of kat en bereken hun dagelijkse rantsoen met veterinaire precisie.',
7
+ seo: [
8
+ { type: 'title', text: 'Diervoeding en Welzijn: Wetenskap in Dienst van Uw Huisdier', level: 2 },
9
+ {
10
+ type: 'paragraph',
11
+ html: 'De zorg voor een hond, kat of konijn is veel meer dan hen alleen voedsel en genegenheid geven. Het houdt in dat u hun biologie, hun verouderingsritme en hun specifieke energiebehoeften begrijpt. In deze sectie bieden we <strong>gratis veterinaire calculatoren</strong> aan die gevalideerde wetenschappelijke formules toepassen om u te helpen betere beslissingen te nemen over de gezondheid van uw metgezel.',
12
+ },
13
+ {
14
+ type: 'paragraph',
15
+ html: 'Van de nieuwsgierigheid om te weten hoeveel mensenjaren uw hond echt heeft, tot de nauwkeurige berekening van het dagelijkse rantsoen op basis van RER (Resting Energy Requirement), onze tools transformeren complexe veterinaire concepten in duidelijke, bruikbare antwoorden voor de verantwoordelijke huisdiereigenaar.',
16
+ },
17
+ { type: 'title', text: 'De Echte Leeftijd van Uw Huisdier: Verder dan de Mythe van "Keer 7"', level: 2 },
18
+ {
19
+ type: 'paragraph',
20
+ html: 'De populaire overtuiging dat één hondenjaar gelijk staat aan zeven mensenjaren is al decennia lang door de moderne diergeneeskunde ontkracht. De realiteit is dat honden exponentieel rijpen in hun eerste twee levensjaren, waarbij ze het equivalent van 15 mensenjaren bereiken op 12 maanden en 24 jaar op 24 maanden. Daarna vertraagt het tempo en hangt het enorm af van de <strong>grootte van het dier</strong>: een reuzen hond van meer dan 45 kg kan tot 60% sneller verouderen dan een klein ras.',
21
+ },
22
+ {
23
+ type: 'paragraph',
24
+ html: 'Katten volgen daarentegen een meer lineaire verouderingscurve: na de eerste twee jaar van versnelde ontwikkeling is elk kattenjaar ongeveer gelijk aan vier mensenjaren. Het kennen van de levensfase van uw huisdier is niet alleen nieuwsgierigheid, het is relevante medische informatie: het bepaalt wanneer u geriatrische controles moet plannen, wanneer u het dieet moet aanpassen en welke gezondheidstekenen u moet controleren.',
25
+ },
26
+ { type: 'title', text: 'Precisievoeding: Bereken het Exacte Dagelijkse Rantsoen', level: 2 },
27
+ {
28
+ type: 'paragraph',
29
+ html: 'Obesitas treft meer dan 50% van de huisdieren in ontwikkelde landen en is de directe oorzaak van gewrichts- en cardiovasculaire problemen en een verminderde levensverwachting. Het probleem is niet een gebrek aan liefde van de eigenaren, maar de <strong>afwezigheid van nauwkeurige calorische referenties</strong>. Onze calculator voor het dagelijkse rantsoen past de standaard veterinaire RER-formule (70 × gewicht^0,75) toe en vermenigvuldigt deze met de overeenkomstige DER-factor voor de diersoort, levensfase en het activiteitsniveau van uw dier.',
30
+ },
31
+ {
32
+ type: 'list',
33
+ items: [
34
+ '<strong>Huisdier Leeftijd Calculator:</strong> Converteert chronologische jaren naar menselijk equivalent op basis van soort en grootte, met levensfase en volgende veterinaire mijlpaal.',
35
+ '<strong>Dagelijkse Rantsoen Calculator:</strong> Berekent grammen droog- en natvoer op basis van RER and DER voor honden, katten en konijnen.',
36
+ ],
37
+ },
38
+ {
39
+ type: 'tip',
40
+ title: 'Veterinair Advies',
41
+ html: 'Deze tools bieden wetenschappelijke startreferenties, maar elk dier is uniek. Raadpleeg altijd uw dierenarts om het dieet en gezondheidsplan aan te passen aan de individuele behoeften van uw huisdier.',
42
+ },
43
+ {
44
+ type: 'paragraph',
45
+ html: 'Investeren in kennis over de biologie van uw huisdier is de meest effectieve vorm van preventieve geneeskunde. Een gezond gewicht en tijdige veterinaire zorg kunnen jaren van kwaliteitsleven toevoegen aan uw trouwe metgezel. De wetenschappelijke benadering van zorg zorgt ervoor dat uw huisdier niet alleen overleeft, maar gedijt in elke fase van hun leven.',
46
+ },
47
+ {
48
+ type: 'paragraph',
49
+ html: 'Het belang van individuele zorg kan niet genoeg worden benadrukt. In een wereld vol algemeen advies bieden onze calculators een solide basis voor de gepersonaliseerde zorg van uw huisdier. Gebruik deze bronnen om de band met uw dier te versterken door een dieper begrip van hun fysieke behoeften.',
50
+ },
51
+ ],
52
+ };
@@ -0,0 +1,52 @@
1
+ import type { CategoryLocaleContent } from '../../types';
2
+
3
+ export const content: CategoryLocaleContent = {
4
+ slug: 'zwierzeta-domowe',
5
+ title: 'Narzędzia dla Zwierząt',
6
+ description: 'Darmowe kalkulatory i narzędzia dla właścicieli zwierząt. Dowiedz się, ile lat naprawdę ma Twój pies lub kot i oblicz ich dzienną rację żywnościową z weterynaryjną precyzją.',
7
+ seo: [
8
+ { type: 'title', text: 'Żywienie i Dobrostan Zwierząt: Nauka w Służbie Twojego Pupila', level: 2 },
9
+ {
10
+ type: 'paragraph',
11
+ html: 'Opieka nad psem, kotem lub królikiem to znacznie więcej niż tylko podawanie im jedzenia i okazywanie uczuć. Wiąże się to ze zrozumieniem ich biologii, rytmu starzenia się i specyficznych potrzeb energetycznych. W tej sekcji oferujemy <strong>bezpłatne kalkulatory weterynaryjne</strong>, które stosują sprawdzone formuły naukowe, aby pomóc Ci podejmować lepsze decyzje dotyczące zdrowia Twojego towarzysza.',
12
+ },
13
+ {
14
+ type: 'paragraph',
15
+ html: 'Od ciekawości, ile lat ludzkich ma naprawdę Twój pies, po precyzyjne obliczenie dziennej racji na podstawie RER (Resting Energy Requirement) - nasze narzędzia przekształcają złożone koncepcje weterynaryjne w jasne, praktyczne odpowiedzi dla odpowiedzialnego właściciela zwierzęcia.',
16
+ },
17
+ { type: 'title', text: 'Prawdziwy Wiek Twojego Zwierzęcia: Poza Mitem "Razy 7"', level: 2 },
18
+ {
19
+ type: 'paragraph',
20
+ html: 'Popularne przekonanie, że jeden rok psiego życia odpowiada siedmiu latom ludzkim, zostało obalone przez nowoczesną naukę weterynaryjną już dziesięciolecia temu. Rzeczywistość jest taka, że psy dojrzewają wykładniczo w ciągu pierwszych dwóch lat życia, osiągając odpowiednik 15 lat ludzkich w wieku 12 miesięcy i 24 lat w wieku 24 miesięcy. Później tempo zwalnia i zależy ogromnie od <strong>wielkości zwierzęcia</strong>: pies rasy olbrzymiej o wadze powyżej 45 kg może starzeć się do 60% szybciej niż pies rasy małej.',
21
+ },
22
+ {
23
+ type: 'paragraph',
24
+ html: 'Z drugiej strony koty podążają za bardziej liniową krzywą starzenia: po pierwszych dwóch latach przyspieszonego rozwoju każdy rok koci odpowiada w przybliżeniu czterem latom ludzkim. Znajomość etapu życia pupila to nie tylko ciekawość, to istotna informacja medyczna: określa ona, kiedy zaplanować badania geriatryczne, kiedy dostosować dietę i jakie sygnały zdrowotne należy monitorować.',
25
+ },
26
+ { type: 'title', text: 'Żywienie Precyzyjne: Oblicz Dokładną Dzienną Rację', level: 2 },
27
+ {
28
+ type: 'paragraph',
29
+ html: 'Otyłość dotyka ponad 50% zwierząt domowych w krajach rozwiniętych i jest bezpośrednią przyczyną problemów ze stawami, układem krążenia oraz skróconej średniej długości życia. Problemem nie jest brak miłości ze strony właścicieli, lecz <strong>brak precyzyjnych odniesień kalorycznych</strong>. Nasz kalkulator dziennej racji żywnościowej stosuje standardową weterynaryjną formułę RER (70 × waga^0,75) i mnoży ją przez odpowiedni współczynnik DER dla gatunku, etapu życia i poziomu aktywności zwierzęcia.',
30
+ },
31
+ {
32
+ type: 'list',
33
+ items: [
34
+ '<strong>Kalkulator Wieku Zwierzęcia:</strong> Konwertuje lata chronologiczne na ludzki odpowiednik w oparciu o gatunek i wielkość, wskazując etap życia i kolejny weterynaryjny kamień milowy.',
35
+ '<strong>Kalkulator Dziennej Racji:</strong> Oblicza gramy suchej i mokrej karmy na podstawie RER i DER dla psów, kotów i królików.',
36
+ ],
37
+ },
38
+ {
39
+ type: 'tip',
40
+ title: 'Porada Weterynaryjna',
41
+ html: 'Narzędzia te dostarczają naukowych punktów odniesienia, ale każde zwierzę jest wyjątkowe. Zawsze konsultuj się z weterynarzem, aby dostosować dietę i plan opieki do indywidualnych potrzeb Twojego pupila.',
42
+ },
43
+ {
44
+ type: 'paragraph',
45
+ html: 'Inwestowanie w wiedzę o biologii pupila to najskuteczniejsza forma medycyny prewencyjnej. Zdrowa waga i terminowa opieka weterynaryjna mogą dodać lata wysokiej jakości życia Twojemu wiernemu towarzyszowi. Naukowe podejście do opieki zapewnia, że zwierzę nie tylko przeżyje, ale będzie rozkwitać na każdym etapie życia.',
46
+ },
47
+ {
48
+ type: 'paragraph',
49
+ html: 'Wagi indywidualnej opieki nie można przecenić. W świecie pełnym ogólnych porad nasze kalkulatory stanowią solidną podstawę dla spersonalizowanej opieki nad pupilem. Skorzystaj z tych zasobów, aby wzmocnić więź ze zwierzęciem poprzez głębsze zrozumienie jego potrzeb fizycznych.',
50
+ },
51
+ ],
52
+ };
@@ -0,0 +1,52 @@
1
+ import type { CategoryLocaleContent } from '../../types';
2
+
3
+ export const content: CategoryLocaleContent = {
4
+ slug: 'animais-de-estimacao',
5
+ title: 'Ferramentas para Animais',
6
+ description: 'Calculadoras e utilitários gratuitos para donos de animais de estimação. Descubra a idade real do seu cão ou gato e calcule a sua ração diária com precisão veterinária.',
7
+ seo: [
8
+ { type: 'title', text: 'Nutrição e Bem-estar Animal: Ciência ao Serviço do Seu Animal', level: 2 },
9
+ {
10
+ type: 'paragraph',
11
+ html: 'Cuidar de um cão, gato ou coelho é muito mais do que dar-lhes comida e afeto. Envolve compreender a sua biologia, o seu ritmo de envelhecimento e as suas necessidades energéticas específicas. Nesta secção oferecemos <strong>calculadoras veterinárias gratuitas</strong> que aplicam fórmulas científicas validadas para o ajudar a tomar melhores decisões sobre a saúde do seu companheiro.',
12
+ },
13
+ {
14
+ type: 'paragraph',
15
+ html: 'Desde a curiosidade de saber quantos anos humanos o seu cão realmente tem, até ao cálculo preciso da ração diária com base no RER (Resting Energy Requirement), as nossas ferramentas transformam conceitos veterinários complexos em respostas claras e acionáveis para o dono de animais de estimação responsável.',
16
+ },
17
+ { type: 'title', text: 'A Idade Real do Seu Animal: Além do Mito do "Vezes 7"', level: 2 },
18
+ {
19
+ type: 'paragraph',
20
+ html: 'A crença popular de que um ano canino equivale a sete anos humanos tem sido desmentida pela ciência veterinária moderna há décadas. A realidade é que os cães amadurecem exponencialmente nos seus primeiros dois anos de vida, atingindo o equivalente a 15 anos humanos aos 12 meses e 24 anos aos 24 meses. Depois, o ritmo abranda e depende enormemente do <strong>tamanho do animal</strong>: um cão gigante com mais de 45 kg pode envelhecer até 60% mais rápido do que uma raça pequena.',
21
+ },
22
+ {
23
+ type: 'paragraph',
24
+ html: 'Os gatos, por outro lado, seguem uma curva de envelhecimento mais linear: após os primeiros dois anos de desenvolvimento acelerado, cada ano felino equivale a aproximadamente quatro anos humanos. Conhecer a fase da vida do seu animal de estimação não é apenas curiosidade, é informação médica relevante: determina quando agendar exames geriátricos, quando ajustar a dieta e que sinais de saúde deve monitorizar.',
25
+ },
26
+ { type: 'title', text: 'Nutrição de Precisão: Calcule a Ração Diária Exata', level: 2 },
27
+ {
28
+ type: 'paragraph',
29
+ html: 'A obesidade afeta mais de 50% dos animais de estimação domésticos nos países desenvolvidos e é a causa direta de problemas articulares e cardiovasculares e de uma reduzida esperança de vida. O problema não é a falta de amor dos donos, mas a <strong>ausência de referências calóricas precisas</strong>. A nossa calculadora de ração diária aplica a fórmula RER veterinária padrão (70 × peso^0,75) e multiplica-a pelo fator DER correspondente para a espécie, fase da vida e nível de atividade do seu animal.',
30
+ },
31
+ {
32
+ type: 'list',
33
+ items: [
34
+ '<strong>Calculadora Idade Animal:</strong> Converte anos cronológicos no equivalente humano com base na espécie e no tamanho, com fase da vida e próximo marco veterinário.',
35
+ '<strong>Calculadora Ração Diária:</strong> Calcula gramas de comida seca e húmida com base em RER e DER para cães, gatos e coelhos.',
36
+ ],
37
+ },
38
+ {
39
+ type: 'tip',
40
+ title: 'Conselho Veterinário',
41
+ html: 'Estas ferramentas fornecem referências científicas iniciais, mas cada animal é único. Consulte sempre o seu veterinário para ajustar a dieta e o plano de saúde às necessidades individuais do seu animal de estimação.',
42
+ },
43
+ {
44
+ type: 'paragraph',
45
+ html: 'Investir no conhecimento sobre a biologia do seu animal de estimação é a forma mais eficaz de medicina preventiva. Um peso saudável e cuidados veterinários atempados podem acrescentar anos de vida de qualidade ao seu fiel companheiro. A abordagem científica assegura que o seu animal não apenas sobrevive, mas prospera em todas as fases da sua vida.',
46
+ },
47
+ {
48
+ type: 'paragraph',
49
+ html: 'A importância do cuidado individual não pode ser subestimada. Num mundo cheio de conselhos genéricos, as nossas calculadoras fornecem uma base sólida para o cuidado personalizado do seu animal. Use estes recursos para fortalecer o vínculo com o seu animal através de uma compreensão mais profunda das suas necessidades físicas.',
50
+ },
51
+ ],
52
+ };