@jjlmoya/utils-home 1.16.0 → 1.23.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 (174) hide show
  1. package/package.json +1 -1
  2. package/src/category/i18n/de.ts +10 -10
  3. package/src/category/i18n/en.ts +8 -8
  4. package/src/category/i18n/es.ts +2 -2
  5. package/src/category/i18n/fr.ts +15 -15
  6. package/src/category/i18n/id.ts +8 -8
  7. package/src/category/i18n/it.ts +7 -7
  8. package/src/category/i18n/nl.ts +8 -8
  9. package/src/category/i18n/pl.ts +10 -10
  10. package/src/category/i18n/pt.ts +8 -8
  11. package/src/category/i18n/ru.ts +10 -10
  12. package/src/category/i18n/sv.ts +8 -8
  13. package/src/category/i18n/tr.ts +4 -4
  14. package/src/category/i18n/zh.ts +8 -8
  15. package/src/entries.ts +4 -1
  16. package/src/pages/[locale]/[slug].astro +28 -12
  17. package/src/tests/locale_completeness.test.ts +4 -22
  18. package/src/tests/no_en_dash.test.ts +70 -0
  19. package/src/tests/shared-test-helpers.ts +56 -0
  20. package/src/tests/tool_exports.test.ts +34 -0
  21. package/src/tests/tool_validation.test.ts +2 -2
  22. package/src/tool/dewPointCalculator/bibliography.ts +10 -0
  23. package/src/tool/dewPointCalculator/i18n/de.ts +7 -17
  24. package/src/tool/dewPointCalculator/i18n/en.ts +8 -18
  25. package/src/tool/dewPointCalculator/i18n/es.ts +7 -17
  26. package/src/tool/dewPointCalculator/i18n/fr.ts +8 -18
  27. package/src/tool/dewPointCalculator/i18n/id.ts +7 -17
  28. package/src/tool/dewPointCalculator/i18n/it.ts +7 -17
  29. package/src/tool/dewPointCalculator/i18n/ja.ts +6 -16
  30. package/src/tool/dewPointCalculator/i18n/ko.ts +6 -16
  31. package/src/tool/dewPointCalculator/i18n/nl.ts +7 -17
  32. package/src/tool/dewPointCalculator/i18n/pl.ts +7 -17
  33. package/src/tool/dewPointCalculator/i18n/pt.ts +7 -17
  34. package/src/tool/dewPointCalculator/i18n/ru.ts +13 -23
  35. package/src/tool/dewPointCalculator/i18n/sv.ts +7 -17
  36. package/src/tool/dewPointCalculator/i18n/tr.ts +6 -16
  37. package/src/tool/dewPointCalculator/i18n/zh.ts +7 -17
  38. package/src/tool/dewPointCalculator/seo.astro +2 -1
  39. package/src/tool/heatingComparator/bibliography.ts +14 -0
  40. package/src/tool/heatingComparator/i18n/de.ts +10 -24
  41. package/src/tool/heatingComparator/i18n/en.ts +3 -13
  42. package/src/tool/heatingComparator/i18n/es.ts +3 -17
  43. package/src/tool/heatingComparator/i18n/fr.ts +9 -19
  44. package/src/tool/heatingComparator/i18n/id.ts +3 -17
  45. package/src/tool/heatingComparator/i18n/it.ts +3 -17
  46. package/src/tool/heatingComparator/i18n/ja.ts +296 -310
  47. package/src/tool/heatingComparator/i18n/ko.ts +296 -306
  48. package/src/tool/heatingComparator/i18n/nl.ts +3 -17
  49. package/src/tool/heatingComparator/i18n/pl.ts +3 -17
  50. package/src/tool/heatingComparator/i18n/pt.ts +3 -17
  51. package/src/tool/heatingComparator/i18n/ru.ts +14 -24
  52. package/src/tool/heatingComparator/i18n/sv.ts +6 -20
  53. package/src/tool/heatingComparator/i18n/tr.ts +2 -16
  54. package/src/tool/heatingComparator/i18n/zh.ts +296 -306
  55. package/src/tool/heatingComparator/seo.astro +3 -3
  56. package/src/tool/ledSavingCalculator/bibliography.ts +14 -0
  57. package/src/tool/ledSavingCalculator/i18n/de.ts +6 -16
  58. package/src/tool/ledSavingCalculator/i18n/en.ts +6 -20
  59. package/src/tool/ledSavingCalculator/i18n/es.ts +6 -20
  60. package/src/tool/ledSavingCalculator/i18n/fr.ts +10 -24
  61. package/src/tool/ledSavingCalculator/i18n/id.ts +5 -15
  62. package/src/tool/ledSavingCalculator/i18n/it.ts +6 -16
  63. package/src/tool/ledSavingCalculator/i18n/ja.ts +5 -15
  64. package/src/tool/ledSavingCalculator/i18n/ko.ts +4 -14
  65. package/src/tool/ledSavingCalculator/i18n/nl.ts +5 -15
  66. package/src/tool/ledSavingCalculator/i18n/pl.ts +5 -15
  67. package/src/tool/ledSavingCalculator/i18n/pt.ts +5 -15
  68. package/src/tool/ledSavingCalculator/i18n/ru.ts +8 -18
  69. package/src/tool/ledSavingCalculator/i18n/sv.ts +5 -15
  70. package/src/tool/ledSavingCalculator/i18n/tr.ts +5 -15
  71. package/src/tool/ledSavingCalculator/i18n/zh.ts +6 -16
  72. package/src/tool/ledSavingCalculator/seo.astro +2 -1
  73. package/src/tool/projectorCalculator/bibliography.ts +5 -0
  74. package/src/tool/projectorCalculator/i18n/de.ts +4 -8
  75. package/src/tool/projectorCalculator/i18n/en.ts +3 -8
  76. package/src/tool/projectorCalculator/i18n/es.ts +4 -9
  77. package/src/tool/projectorCalculator/i18n/fr.ts +6 -11
  78. package/src/tool/projectorCalculator/i18n/id.ts +4 -9
  79. package/src/tool/projectorCalculator/i18n/it.ts +4 -8
  80. package/src/tool/projectorCalculator/i18n/ja.ts +175 -179
  81. package/src/tool/projectorCalculator/i18n/ko.ts +175 -179
  82. package/src/tool/projectorCalculator/i18n/nl.ts +4 -8
  83. package/src/tool/projectorCalculator/i18n/pl.ts +5 -9
  84. package/src/tool/projectorCalculator/i18n/pt.ts +4 -8
  85. package/src/tool/projectorCalculator/i18n/ru.ts +7 -11
  86. package/src/tool/projectorCalculator/i18n/sv.ts +4 -8
  87. package/src/tool/projectorCalculator/i18n/tr.ts +4 -8
  88. package/src/tool/projectorCalculator/i18n/zh.ts +175 -179
  89. package/src/tool/projectorCalculator/seo.astro +2 -1
  90. package/src/tool/qrGenerator/bibliography.ts +14 -0
  91. package/src/tool/qrGenerator/i18n/de.ts +192 -202
  92. package/src/tool/qrGenerator/i18n/en.ts +3 -17
  93. package/src/tool/qrGenerator/i18n/es.ts +2 -16
  94. package/src/tool/qrGenerator/i18n/fr.ts +3 -17
  95. package/src/tool/qrGenerator/i18n/id.ts +146 -150
  96. package/src/tool/qrGenerator/i18n/it.ts +169 -173
  97. package/src/tool/qrGenerator/i18n/ja.ts +146 -150
  98. package/src/tool/qrGenerator/i18n/ko.ts +146 -150
  99. package/src/tool/qrGenerator/i18n/nl.ts +146 -150
  100. package/src/tool/qrGenerator/i18n/pl.ts +146 -150
  101. package/src/tool/qrGenerator/i18n/pt.ts +146 -150
  102. package/src/tool/qrGenerator/i18n/ru.ts +146 -150
  103. package/src/tool/qrGenerator/i18n/sv.ts +146 -150
  104. package/src/tool/qrGenerator/i18n/tr.ts +146 -150
  105. package/src/tool/qrGenerator/i18n/zh.ts +146 -150
  106. package/src/tool/qrGenerator/seo.astro +2 -1
  107. package/src/tool/solarCalculator/bibliography.ts +5 -0
  108. package/src/tool/solarCalculator/i18n/de.ts +141 -145
  109. package/src/tool/solarCalculator/i18n/en.ts +7 -12
  110. package/src/tool/solarCalculator/i18n/es.ts +5 -10
  111. package/src/tool/solarCalculator/i18n/fr.ts +8 -13
  112. package/src/tool/solarCalculator/i18n/id.ts +4 -8
  113. package/src/tool/solarCalculator/i18n/it.ts +4 -8
  114. package/src/tool/solarCalculator/i18n/ja.ts +121 -125
  115. package/src/tool/solarCalculator/i18n/ko.ts +116 -120
  116. package/src/tool/solarCalculator/i18n/nl.ts +4 -7
  117. package/src/tool/solarCalculator/i18n/pl.ts +5 -9
  118. package/src/tool/solarCalculator/i18n/pt.ts +4 -8
  119. package/src/tool/solarCalculator/i18n/ru.ts +7 -10
  120. package/src/tool/solarCalculator/i18n/sv.ts +4 -7
  121. package/src/tool/solarCalculator/i18n/tr.ts +4 -7
  122. package/src/tool/solarCalculator/i18n/zh.ts +116 -120
  123. package/src/tool/solarCalculator/seo.astro +2 -1
  124. package/src/tool/tariffComparator/bibliography.ts +7 -0
  125. package/src/tool/tariffComparator/i18n/de.ts +129 -132
  126. package/src/tool/tariffComparator/i18n/en.ts +5 -12
  127. package/src/tool/tariffComparator/i18n/es.ts +5 -12
  128. package/src/tool/tariffComparator/i18n/fr.ts +8 -15
  129. package/src/tool/tariffComparator/i18n/id.ts +2 -5
  130. package/src/tool/tariffComparator/i18n/it.ts +2 -5
  131. package/src/tool/tariffComparator/i18n/ja.ts +129 -132
  132. package/src/tool/tariffComparator/i18n/ko.ts +129 -132
  133. package/src/tool/tariffComparator/i18n/nl.ts +2 -5
  134. package/src/tool/tariffComparator/i18n/pl.ts +3 -6
  135. package/src/tool/tariffComparator/i18n/pt.ts +2 -5
  136. package/src/tool/tariffComparator/i18n/ru.ts +2 -5
  137. package/src/tool/tariffComparator/i18n/sv.ts +2 -5
  138. package/src/tool/tariffComparator/i18n/tr.ts +2 -5
  139. package/src/tool/tariffComparator/i18n/zh.ts +129 -132
  140. package/src/tool/tariffComparator/seo.astro +2 -1
  141. package/src/tool/wifiRangeSimulator/bibliography.astro +14 -0
  142. package/src/tool/wifiRangeSimulator/bibliography.ts +14 -0
  143. package/src/tool/wifiRangeSimulator/component.astro +170 -0
  144. package/src/tool/wifiRangeSimulator/entry.ts +29 -0
  145. package/src/tool/wifiRangeSimulator/i18n/de.ts +477 -0
  146. package/src/tool/wifiRangeSimulator/i18n/en.ts +477 -0
  147. package/src/tool/wifiRangeSimulator/i18n/es.ts +477 -0
  148. package/src/tool/wifiRangeSimulator/i18n/fr.ts +477 -0
  149. package/src/tool/wifiRangeSimulator/i18n/id.ts +477 -0
  150. package/src/tool/wifiRangeSimulator/i18n/it.ts +477 -0
  151. package/src/tool/wifiRangeSimulator/i18n/ja.ts +477 -0
  152. package/src/tool/wifiRangeSimulator/i18n/ko.ts +477 -0
  153. package/src/tool/wifiRangeSimulator/i18n/nl.ts +477 -0
  154. package/src/tool/wifiRangeSimulator/i18n/pl.ts +477 -0
  155. package/src/tool/wifiRangeSimulator/i18n/pt.ts +477 -0
  156. package/src/tool/wifiRangeSimulator/i18n/ru.ts +477 -0
  157. package/src/tool/wifiRangeSimulator/i18n/sv.ts +477 -0
  158. package/src/tool/wifiRangeSimulator/i18n/tr.ts +477 -0
  159. package/src/tool/wifiRangeSimulator/i18n/zh.ts +477 -0
  160. package/src/tool/wifiRangeSimulator/i18n-utils.ts +14 -0
  161. package/src/tool/wifiRangeSimulator/index.ts +8 -0
  162. package/src/tool/wifiRangeSimulator/logic.ts +220 -0
  163. package/src/tool/wifiRangeSimulator/seo.astro +15 -0
  164. package/src/tool/wifiRangeSimulator/sketch-actions.ts +168 -0
  165. package/src/tool/wifiRangeSimulator/sketch-events.ts +138 -0
  166. package/src/tool/wifiRangeSimulator/sketch-render-dash.ts +170 -0
  167. package/src/tool/wifiRangeSimulator/sketch-render-device.ts +42 -0
  168. package/src/tool/wifiRangeSimulator/sketch-render.ts +155 -0
  169. package/src/tool/wifiRangeSimulator/sketch-state.ts +186 -0
  170. package/src/tool/wifiRangeSimulator/sketch.ts +100 -0
  171. package/src/tool/wifiRangeSimulator/ui.ts +69 -0
  172. package/src/tool/wifiRangeSimulator/wifi-range-simulator.css +583 -0
  173. package/src/tools.ts +2 -0
  174. package/src/types.ts +0 -2
@@ -1,6 +1,7 @@
1
1
  import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
2
2
  import type { ToolLocaleContent } from '../../../types';
3
3
  import type { HeatingComparatorUI } from '../ui';
4
+ import { bibliography } from '../bibliography';
4
5
 
5
6
  const slug = 'heating-consumption-comparator';
6
7
  const title = 'Gas vs. Heat Pump vs. AC: Savings & Consumption Comparator';
@@ -82,19 +83,8 @@ export const content: ToolLocaleContent<HeatingComparatorUI> = {
82
83
  slug,
83
84
  title,
84
85
  description,
85
- faqTitle: 'Frequently Asked Questions',
86
86
  faq: faqData,
87
- bibliographyTitle: 'Bibliography',
88
- bibliography: [
89
- {
90
- name: 'IEA: The Future of Heat Pumps',
91
- url: 'https://www.iea.org/reports/the-future-of-heat-pumps',
92
- },
93
- {
94
- name: 'Energy Saving Trust: Air Source Heat Pumps',
95
- url: 'https://energysavingtrust.org.uk/advice/air-source-heat-pumps/',
96
- },
97
- ],
87
+ bibliography,
98
88
  howTo: howToData,
99
89
  schemas: [faqSchema, howToSchema, appSchema],
100
90
  seo: [
@@ -115,7 +105,7 @@ export const content: ToolLocaleContent<HeatingComparatorUI> = {
115
105
  },
116
106
  {
117
107
  type: 'paragraph',
118
- html: 'Choosing the right climate system for your home is one of the most important financial and comfort decisions. In a context of volatile energy prices and growing concern for sustainability, knowing which system is most efficientand which will save us more per monthis essential.',
108
+ html: 'Choosing the right climate system for your home is one of the most important financial and comfort decisions. In a context of volatile energy prices and growing concern for sustainability, knowing which system is most efficient: and which will save us more per month: is essential.',
119
109
  },
120
110
  {
121
111
  type: 'paragraph',
@@ -1,6 +1,7 @@
1
1
  import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
2
2
  import type { ToolLocaleContent } from '../../../types';
3
3
  import type { HeatingComparatorUI } from '../ui';
4
+ import { bibliography } from '../bibliography';
4
5
 
5
6
  const slug = 'comparador-consumo-gas-aerotermia-aire';
6
7
  const title = 'Comparador Gas vs. Aerotermia vs. Aire: Ahorro y Consumo';
@@ -82,23 +83,8 @@ export const content: ToolLocaleContent<HeatingComparatorUI> = {
82
83
  slug,
83
84
  title,
84
85
  description,
85
- faqTitle: 'Preguntas Frecuentes',
86
86
  faq: faqData,
87
- bibliographyTitle: 'Bibliografía',
88
- bibliography: [
89
- {
90
- name: 'IDAE: Guía de Bombas de Calor y Aerotermia',
91
- url: 'https://www.idae.es/sites/default/files/documentos/publicaciones_idae/Guias_IDAE_La_Bomba_de_calor_2023_V11.pdf',
92
- },
93
- {
94
- name: 'Portal del Consumidor: Precios de la Energía (CNMC)',
95
- url: 'https://comparador.cnmc.gob.es/',
96
- },
97
- {
98
- name: 'UNE: Eficiencia Energética en Edificios',
99
- url: 'https://www.une.org/encuentra-tu-norma/busca-tu-norma/norma?c=N0060747',
100
- },
101
- ],
87
+ bibliography,
102
88
  howTo: howToData,
103
89
  schemas: [faqSchema, howToSchema, appSchema],
104
90
  seo: [
@@ -119,7 +105,7 @@ export const content: ToolLocaleContent<HeatingComparatorUI> = {
119
105
  },
120
106
  {
121
107
  type: 'paragraph',
122
- html: 'Elegir el sistema de climatización adecuado para el hogar es una de las decisiones financieras y de confort más importantes que podemos tomar. En un contexto de precios energéticos volátiles y una creciente preocupación por la sostenibilidad, saber qué sistema es más eficiente y cuál nos hará ahorrar más al meses fundamental.',
108
+ html: 'Elegir el sistema de climatización adecuado para el hogar es una de las decisiones financieras y de confort más importantes que podemos tomar. En un contexto de precios energéticos volátiles y una creciente preocupación por la sostenibilidad, saber qué sistema es más eficiente: y cuál nos hará ahorrar más al mes: es fundamental.',
123
109
  },
124
110
  {
125
111
  type: 'paragraph',
@@ -1,6 +1,7 @@
1
1
  import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
2
2
  import type { ToolLocaleContent } from '../../../types';
3
3
  import type { HeatingComparatorUI } from '../ui';
4
+ import { bibliography } from '../bibliography';
4
5
 
5
6
  const slug = 'comparateur-consommation-chauffage';
6
7
  const title = 'Comparateur Gaz vs. Aérothermie vs. Air: Économies et Consommation';
@@ -16,7 +17,7 @@ const faqData = [
16
17
  {
17
18
  question: 'Quelle est la différence entre l\'aérothermie et une pompe à chaleur normale ?',
18
19
  answer:
19
- 'Techniquement, les deux sont des pompes à chaleur. La principale différence réside dans le milieu auquel elles fournissent la chaleur : l\'aérothermie est généralement "air-eau", tandis que la pompe à chaleur conventionnelle est "air-air".',
20
+ 'Techniquement, les deux sont des pompes à chaleur. La principale différence réside dans le milieu auquel elles fournissent la chaleur: l\'aérothermie est généralement "air-eau", tandis que la pompe à chaleur conventionnelle est "air-air".',
20
21
  },
21
22
  {
22
23
  question: 'Peut-on installer l\'aérothermie dans un appartement avec d\'anciens radiateurs ?',
@@ -82,19 +83,8 @@ export const content: ToolLocaleContent<HeatingComparatorUI> = {
82
83
  slug,
83
84
  title,
84
85
  description,
85
- faqTitle: 'Questions Fréquentes',
86
86
  faq: faqData,
87
- bibliographyTitle: 'Bibliographie',
88
- bibliography: [
89
- {
90
- name: 'ADEME: La pompe à chaleur',
91
- url: 'https://librairie.ademe.fr/chaleur-climatisation-et-ventilation/1429-pompe-a-chaleur.html',
92
- },
93
- {
94
- name: 'Service-Public: Chauffage et climatisation',
95
- url: 'https://www.service-public.fr/particuliers/vosdroits/F1710',
96
- },
97
- ],
87
+ bibliography,
98
88
  howTo: howToData,
99
89
  schemas: [faqSchema, howToSchema, appSchema],
100
90
  seo: [
@@ -110,7 +100,7 @@ export const content: ToolLocaleContent<HeatingComparatorUI> = {
110
100
  },
111
101
  {
112
102
  type: 'title',
113
- text: 'Comparaison de consommation : Gaz vs Aérothermie vs Air climatisé',
103
+ text: 'Comparaison de consommation: Gaz vs Aérothermie vs Air climatisé',
114
104
  level: 2,
115
105
  },
116
106
  {
@@ -147,7 +137,7 @@ export const content: ToolLocaleContent<HeatingComparatorUI> = {
147
137
  },
148
138
  {
149
139
  type: 'title',
150
- text: '1. Chaudière à gaz naturel : la norme traditionnelle',
140
+ text: '1. Chaudière à gaz naturel: la norme traditionnelle',
151
141
  level: 3,
152
142
  },
153
143
  {
@@ -164,7 +154,7 @@ export const content: ToolLocaleContent<HeatingComparatorUI> = {
164
154
  },
165
155
  {
166
156
  type: 'title',
167
- text: '2. Aérothermie : Efficacité extrême (Air-Eau)',
157
+ text: '2. Aérothermie: Efficacité extrême (Air-Eau)',
168
158
  level: 3,
169
159
  },
170
160
  {
@@ -233,18 +223,18 @@ export const content: ToolLocaleContent<HeatingComparatorUI> = {
233
223
  },
234
224
  {
235
225
  type: 'card',
236
- title: 'Exemple réel : Logement de 100m²',
226
+ title: 'Exemple réel: Logement de 100m²',
237
227
  icon: 'mdi:home-analytics',
238
228
  html: '<p>Pour 7 000 kWh/an :</p><ul><li><strong>Gaz :</strong> 589 €/an</li><li><strong>Aéro :</strong> 315 €/an</li><li><strong>Air :</strong> 393 €/an</li></ul>',
239
229
  },
240
230
  {
241
231
  type: 'title',
242
- text: 'Conclusion : L\'avenir est électrique',
232
+ text: 'Conclusion: L\'avenir est électrique',
243
233
  level: 2,
244
234
  },
245
235
  {
246
236
  type: 'paragraph',
247
- html: 'La tendance européenne est claire : la décarbonation. Le gaz naturel a une date d\'expiration.',
237
+ html: 'La tendance européenne est claire: la décarbonation. Le gaz naturel a une date d\'expiration.',
248
238
  },
249
239
  {
250
240
  type: 'paragraph',
@@ -1,6 +1,7 @@
1
1
  import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
2
2
  import type { ToolLocaleContent } from '../../../types';
3
3
  import type { HeatingComparatorUI } from '../ui';
4
+ import { bibliography } from '../bibliography';
4
5
 
5
6
  const slug = 'perbandingan-pemanas-gas-pompa-panas-aircond';
6
7
  const title = 'Perbandingan Gas vs. Pompa Panas vs. AC: Hemat & Konsumsi';
@@ -77,23 +78,8 @@ export const content: ToolLocaleContent<HeatingComparatorUI> = {
77
78
  slug,
78
79
  title,
79
80
  description,
80
- faqTitle: 'Pertanyaan Umum',
81
81
  faq: faqData,
82
- bibliographyTitle: 'Daftar Pustaka',
83
- bibliography: [
84
- {
85
- name: 'IEA: Masa Depan Pompa Panas',
86
- url: 'https://www.iea.org/reports/the-future-of-heat-pumps',
87
- },
88
- {
89
- name: 'Energy Saving Trust: Panduan Pompa Panas',
90
- url: 'https://energysavingtrust.org.uk/advice/air-source-heat-pumps/',
91
- },
92
- {
93
- name: 'Pusat Data dan Teknologi Informasi ESDM',
94
- url: 'https://www.esdm.go.id/',
95
- },
96
- ],
82
+ bibliography,
97
83
  howTo: howToData,
98
84
  schemas: [faqSchema, howToSchema, appSchema],
99
85
  seo: [
@@ -114,7 +100,7 @@ export const content: ToolLocaleContent<HeatingComparatorUI> = {
114
100
  },
115
101
  {
116
102
  type: 'paragraph',
117
- html: 'Memilih sistem iklim yang tepat untuk rumah adalah salah satu keputusan keuangan dan kenyamanan terpenting. Di tengah harga energi yang fluktuatif dan meningkatnya kepedulian terhadap keberlanjutan, mengetahui sistem mana yang paling efisiendan mana yang paling hematsangatlah penting.',
103
+ html: 'Memilih sistem iklim yang tepat untuk rumah adalah salah satu keputusan keuangan dan kenyamanan terpenting. Di tengah harga energi yang fluktuatif dan meningkatnya kepedulian terhadap keberlanjutan, mengetahui sistem mana yang paling efisien: dan mana yang paling hemat: sangatlah penting.',
118
104
  },
119
105
  {
120
106
  type: 'paragraph',
@@ -1,6 +1,7 @@
1
1
  import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
2
2
  import type { ToolLocaleContent } from '../../../types';
3
3
  import type { HeatingComparatorUI } from '../ui';
4
+ import { bibliography } from '../bibliography';
4
5
 
5
6
  const slug = 'confronto-riscaldamento-gas-pompa-calore-aria';
6
7
  const title = 'Confronto Gas vs. Pompa di Calore vs. Aria Condizionata';
@@ -77,23 +78,8 @@ export const content: ToolLocaleContent<HeatingComparatorUI> = {
77
78
  slug,
78
79
  title,
79
80
  description,
80
- faqTitle: 'Domande Frequenti',
81
81
  faq: faqData,
82
- bibliographyTitle: 'Bibliografia e Fonti',
83
- bibliography: [
84
- {
85
- name: 'ENEA: Guida alle Pompe di Calore',
86
- url: 'https://www.enea.it/it/seguici/le-guide-per-l-efficienza-energetica',
87
- },
88
- {
89
- name: 'ARERA: Portale Offerte Luce e Gas',
90
- url: 'https://www.ilportaleofferte.it/',
91
- },
92
- {
93
- name: 'GSE: Incentivi per la riqualificazione energetica',
94
- url: 'https://www.gse.it/servizi-per-te/efficienza-energetica',
95
- },
96
- ],
82
+ bibliography,
97
83
  howTo: howToData,
98
84
  schemas: [faqSchema, howToSchema, appSchema],
99
85
  seo: [
@@ -114,7 +100,7 @@ export const content: ToolLocaleContent<HeatingComparatorUI> = {
114
100
  },
115
101
  {
116
102
  type: 'paragraph',
117
- html: 'Scegliere il sistema di climatizzazione giusto per la casa è una delle decisioni finanziarie e di comfort più importanti. In un contesto di prezzi energetici instabili e con la crescente attenzione alla sostenibilità, sapere quale sistema è più efficiente e quale ti farà risparmiare di più è fondamentale.',
103
+ html: 'Scegliere il sistema di climatizzazione giusto per la casa è una delle decisioni finanziarie e di comfort più importanti. In un contesto di prezzi energetici instabili e con la crescente attenzione alla sostenibilità, sapere quale sistema è più efficiente: e quale ti farà risparmiare di più: è fondamentale.',
118
104
  },
119
105
  {
120
106
  type: 'paragraph',