@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 { LedSavingCalculatorUI } from '../ui';
4
+ import { bibliography } from '../bibliography';
4
5
 
5
6
  const slug = 'led-sparrechner';
6
7
  const title = 'LED Sparrechner';
@@ -92,19 +93,8 @@ export const content: ToolLocaleContent<LedSavingCalculatorUI> = {
92
93
  slug,
93
94
  title,
94
95
  description,
95
- faqTitle: 'Häufig gestellte Fragen',
96
96
  faq: faqData,
97
- bibliographyTitle: 'Quellen',
98
- bibliography: [
99
- {
100
- name: 'Energieeffizienz-Etiketten der EU',
101
- url: 'https://commission.europa.eu/energy-climate-change-environment/standards-tools-and-labels/products-labelling-rules-and-requirements/energy-label-and-ecodesign/energy-efficient-products_de',
102
- },
103
- {
104
- name: 'Verbraucherzentrale: LED-Leuchtmittel kaufen',
105
- url: 'https://www.verbraucherzentrale.de/wissen/energie/strom-sparen/worauf-sie-beim-kauf-von-ledlampen-achten-sollten-11322',
106
- },
107
- ],
97
+ bibliography,
108
98
  howTo: howToData,
109
99
  schemas: [faqSchema, howToSchema, appSchema],
110
100
  seo: [
@@ -120,7 +110,7 @@ export const content: ToolLocaleContent<LedSavingCalculatorUI> = {
120
110
  {
121
111
  type: 'stats',
122
112
  items: [
123
- { value: '8590%', label: 'Energieersparnis', icon: 'mdi:lightning-bolt' },
113
+ { value: '85-90%', label: 'Energieersparnis', icon: 'mdi:lightning-bolt' },
124
114
  { value: '25.000h', label: 'Lebensdauer LED', icon: 'mdi:clock-outline' },
125
115
  { value: '< 4 Monate', label: 'Amortisation', icon: 'mdi:calendar-check' },
126
116
  ],
@@ -139,7 +129,7 @@ export const content: ToolLocaleContent<LedSavingCalculatorUI> = {
139
129
  title: 'Moderne LED Technik',
140
130
  description: 'Der aktuelle Standard für Energieeffizienz zu Hause. Sofort 100 % Helligkeit beim Einschalten.',
141
131
  icon: 'mdi:led-outline',
142
- points: ['8590 % direkte Ersparnis', 'Lebensdauer: bis zu 50.000 Stunden', 'Minimale Wärmeabgabe'],
132
+ points: ['85-90 % direkte Ersparnis', 'Lebensdauer: bis zu 50.000 Stunden', 'Minimale Wärmeabgabe'],
143
133
  },
144
134
  ],
145
135
  columns: 2,
@@ -151,7 +141,7 @@ export const content: ToolLocaleContent<LedSavingCalculatorUI> = {
151
141
  },
152
142
  {
153
143
  type: 'paragraph',
154
- html: 'Eine Glühbirne wandelt nur 5 % des Stroms in Licht um. LEDs hingegen nutzen Halbleiter, um Elektrizität fast direkt in Licht umzuwandeln. <strong>Achten Sie nicht auf die Watt, sondern auf die Lumen:</strong> Eine alte 60W Birne liefert ca. 800 lm moderne LEDs schaffen das mit nur 89W.',
144
+ html: 'Eine Glühbirne wandelt nur 5 % des Stroms in Licht um. LEDs hingegen nutzen Halbleiter, um Elektrizität fast direkt in Licht umzuwandeln. <strong>Achten Sie nicht auf die Watt, sondern auf die Lumen:</strong> Eine alte 60W Birne liefert ca. 800 lm - moderne LEDs schaffen das mit nur 8-9W.',
155
145
  },
156
146
  {
157
147
  type: 'diagnostic',
@@ -159,7 +149,7 @@ export const content: ToolLocaleContent<LedSavingCalculatorUI> = {
159
149
  title: 'Schnelle Vergleichstabelle',
160
150
  icon: 'mdi:table',
161
151
  badge: 'Referenz',
162
- html: '<ul style="margin:0;padding-left:1.2em"><li><strong>40W Glühbirne</strong> → LED 56W (450 lm)</li><li><strong>60W Glühbirne</strong> → LED 810W (800 lm)</li><li><strong>100W Glühbirne</strong> → LED 1315W (1500 lm)</li><li><strong>50W Halogen</strong> → LED 67W (450500 lm)</li></ul>',
152
+ html: '<ul style="margin:0;padding-left:1.2em"><li><strong>40W Glühbirne</strong> → LED 5-6W (450 lm)</li><li><strong>60W Glühbirne</strong> → LED 8-10W (800 lm)</li><li><strong>100W Glühbirne</strong> → LED 13-15W (1500 lm)</li><li><strong>50W Halogen</strong> → LED 6-7W (450-500 lm)</li></ul>',
163
153
  },
164
154
  {
165
155
  type: 'summary',
@@ -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 { LedSavingCalculatorUI } from '../ui';
4
+ import { bibliography } from '../bibliography';
4
5
 
5
6
  const slug = 'led-saving-calculator';
6
7
  const title = 'LED Saving Calculator';
@@ -97,23 +98,8 @@ export const content: ToolLocaleContent<LedSavingCalculatorUI> = {
97
98
  slug,
98
99
  title,
99
100
  description,
100
- faqTitle: 'Frequently Asked Questions',
101
101
  faq: faqData,
102
- bibliographyTitle: 'Bibliography',
103
- bibliography: [
104
- {
105
- name: 'Energy Efficient Lighting Guide — IDAE (Spain)',
106
- url: 'https://www.idae.es/publicaciones/guia-tecnica-de-eficiencia-energetica-en-iluminacion-oficinas',
107
- },
108
- {
109
- name: 'Energy Labelling of Lamps — European Union',
110
- url: 'https://www.boe.es/buscar/doc.php?id=DOUE-L-2019-81875',
111
- },
112
- {
113
- name: 'Electricity Consumption Calculator — OCU',
114
- url: 'https://www.ocu.org/vivienda-y-energia/gas-luz/calculadora/consumo-stand-by',
115
- },
116
- ],
102
+ bibliography,
117
103
  howTo: howToData,
118
104
  schemas: [faqSchema, howToSchema, appSchema],
119
105
  seo: [
@@ -129,7 +115,7 @@ export const content: ToolLocaleContent<LedSavingCalculatorUI> = {
129
115
  {
130
116
  type: 'stats',
131
117
  items: [
132
- { value: '8590%', label: 'Energy Saving', icon: 'mdi:lightning-bolt' },
118
+ { value: '85-90%', label: 'Energy Saving', icon: 'mdi:lightning-bolt' },
133
119
  { value: '25,000h', label: 'LED Lifespan', icon: 'mdi:clock-outline' },
134
120
  { value: '< 4 months', label: 'Payback Period', icon: 'mdi:calendar-check' },
135
121
  ],
@@ -148,7 +134,7 @@ export const content: ToolLocaleContent<LedSavingCalculatorUI> = {
148
134
  title: 'Modern LED Technology',
149
135
  description: "Today's energy efficiency standard for the home. Instant full brightness from the very first second.",
150
136
  icon: 'mdi:led-outline',
151
- points: ['8590% direct saving', 'Lifespan: 25,00050,000 hours', 'Minimal heat emission'],
137
+ points: ['85-90% direct saving', 'Lifespan: 25,000-50,000 hours', 'Minimal heat emission'],
152
138
  },
153
139
  ],
154
140
  columns: 2,
@@ -160,7 +146,7 @@ export const content: ToolLocaleContent<LedSavingCalculatorUI> = {
160
146
  },
161
147
  {
162
148
  type: 'paragraph',
163
- html: 'An incandescent bulb works by heating a tungsten filament. <strong>95% of the energy</strong> is wasted as heat and only 5% becomes visible light. LEDs, on the other hand, convert electricity directly into light through semiconductors with vastly superior efficiency. <strong>Look at lumens, not watts:</strong> an old 60W bulb produces around 800 lm; today you can get those same 800 lm from a LED using just 89W.',
149
+ html: 'An incandescent bulb works by heating a tungsten filament. <strong>95% of the energy</strong> is wasted as heat and only 5% becomes visible light. LEDs, on the other hand, convert electricity directly into light through semiconductors with vastly superior efficiency. <strong>Look at lumens, not watts:</strong> an old 60W bulb produces around 800 lm; today you can get those same 800 lm from a LED using just 8-9W.',
164
150
  },
165
151
  {
166
152
  type: 'diagnostic',
@@ -168,7 +154,7 @@ export const content: ToolLocaleContent<LedSavingCalculatorUI> = {
168
154
  title: 'Quick Equivalence Reference',
169
155
  icon: 'mdi:table',
170
156
  badge: 'Reference',
171
- html: '<ul style="margin:0;padding-left:1.2em"><li><strong>40W incandescent</strong> → LED 56W (450 lm)</li><li><strong>60W incandescent</strong> → LED 810W (800 lm)</li><li><strong>100W incandescent</strong> → LED 1315W (1500 lm)</li><li><strong>50W halogen (spotlight)</strong> → LED 67W (450500 lm)</li></ul>',
157
+ html: '<ul style="margin:0;padding-left:1.2em"><li><strong>40W incandescent</strong> → LED 5-6W (450 lm)</li><li><strong>60W incandescent</strong> → LED 8-10W (800 lm)</li><li><strong>100W incandescent</strong> → LED 13-15W (1500 lm)</li><li><strong>50W halogen (spotlight)</strong> → LED 6-7W (450-500 lm)</li></ul>',
172
158
  },
173
159
  {
174
160
  type: 'summary',
@@ -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 { LedSavingCalculatorUI } from '../ui';
4
+ import { bibliography } from '../bibliography';
4
5
 
5
6
  const slug = 'calculadora-ahorro-led';
6
7
  const title = 'Calculadora de Ahorro LED';
@@ -97,23 +98,8 @@ export const content: ToolLocaleContent<LedSavingCalculatorUI> = {
97
98
  slug,
98
99
  title,
99
100
  description,
100
- faqTitle: 'Preguntas Frecuentes',
101
101
  faq: faqData,
102
- bibliographyTitle: 'Bibliografía',
103
- bibliography: [
104
- {
105
- name: 'Guía de Iluminación Eficiente — IDAE (España)',
106
- url: 'https://www.idae.es/publicaciones/guia-tecnica-de-eficiencia-energetica-en-iluminacion-oficinas',
107
- },
108
- {
109
- name: 'Etiquetado Energético de Lámparas — Unión Europea',
110
- url: 'https://www.boe.es/buscar/doc.php?id=DOUE-L-2019-81875',
111
- },
112
- {
113
- name: 'Calculadora de Consumo Eléctrico — OCU',
114
- url: 'https://www.ocu.org/vivienda-y-energia/gas-luz/calculadora/consumo-stand-by',
115
- },
116
- ],
102
+ bibliography,
117
103
  howTo: howToData,
118
104
  schemas: [faqSchema, howToSchema, appSchema],
119
105
  seo: [
@@ -129,7 +115,7 @@ export const content: ToolLocaleContent<LedSavingCalculatorUI> = {
129
115
  {
130
116
  type: 'stats',
131
117
  items: [
132
- { value: '8590%', label: 'Ahorro Energético', icon: 'mdi:lightning-bolt' },
118
+ { value: '85-90%', label: 'Ahorro Energético', icon: 'mdi:lightning-bolt' },
133
119
  { value: '25.000h', label: 'Vida Útil LED', icon: 'mdi:clock-outline' },
134
120
  { value: '< 4 meses', label: 'Amortización', icon: 'mdi:calendar-check' },
135
121
  ],
@@ -148,7 +134,7 @@ export const content: ToolLocaleContent<LedSavingCalculatorUI> = {
148
134
  title: 'Tecnología LED Moderna',
149
135
  description: 'El estándar actual de eficiencia energética para el hogar. Encendido instantáneo al 100% de brillo desde el primer segundo.',
150
136
  icon: 'mdi:led-outline',
151
- points: ['8590% de ahorro directo', 'Vida útil: 25.00050.000 horas', 'Mínima emisión de calor'],
137
+ points: ['85-90% de ahorro directo', 'Vida útil: 25.000-50.000 horas', 'Mínima emisión de calor'],
152
138
  },
153
139
  ],
154
140
  columns: 2,
@@ -160,7 +146,7 @@ export const content: ToolLocaleContent<LedSavingCalculatorUI> = {
160
146
  },
161
147
  {
162
148
  type: 'paragraph',
163
- html: 'Una bombilla incandescente funciona calentando un filamento de tungsteno. El <strong>95% de la energía</strong> se desperdicia en calor y solo un 5% se convierte en luz. Los LED, en cambio, convierten directamente la electricidad en luz mediante semiconductores, con una eficiencia radicalmente superior. <strong>No mires los vatios, mira los lúmenes:</strong> una vieja bombilla de 60W ofrece unos 800 lm; hoy puedes conseguir esos mismos 800 lm con un LED de solo 89W.',
149
+ html: 'Una bombilla incandescente funciona calentando un filamento de tungsteno. El <strong>95% de la energía</strong> se desperdicia en calor y solo un 5% se convierte en luz. Los LED, en cambio, convierten directamente la electricidad en luz mediante semiconductores, con una eficiencia radicalmente superior. <strong>No mires los vatios, mira los lúmenes:</strong> una vieja bombilla de 60W ofrece unos 800 lm; hoy puedes conseguir esos mismos 800 lm con un LED de solo 8-9W.',
164
150
  },
165
151
  {
166
152
  type: 'diagnostic',
@@ -168,7 +154,7 @@ export const content: ToolLocaleContent<LedSavingCalculatorUI> = {
168
154
  title: 'Tabla de Equivalencias Rápidas',
169
155
  icon: 'mdi:table',
170
156
  badge: 'Referencia',
171
- html: '<ul style="margin:0;padding-left:1.2em"><li><strong>40W incandescente</strong> → LED 56W (450 lm)</li><li><strong>60W incandescente</strong> → LED 810W (800 lm)</li><li><strong>100W incandescente</strong> → LED 1315W (1500 lm)</li><li><strong>50W halógena (foco)</strong> → LED 67W (450500 lm)</li></ul>',
157
+ html: '<ul style="margin:0;padding-left:1.2em"><li><strong>40W incandescente</strong> → LED 5-6W (450 lm)</li><li><strong>60W incandescente</strong> → LED 8-10W (800 lm)</li><li><strong>100W incandescente</strong> → LED 13-15W (1500 lm)</li><li><strong>50W halógena (foco)</strong> → LED 6-7W (450-500 lm)</li></ul>',
172
158
  },
173
159
  {
174
160
  type: 'summary',
@@ -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 { LedSavingCalculatorUI } from '../ui';
4
+ import { bibliography } from '../bibliography';
4
5
 
5
6
  const slug = 'calculateur-economies-led';
6
7
  const title = "Calculateur d'Économies LED";
@@ -97,29 +98,14 @@ export const content: ToolLocaleContent<LedSavingCalculatorUI> = {
97
98
  slug,
98
99
  title,
99
100
  description,
100
- faqTitle: 'Questions Fréquentes',
101
101
  faq: faqData,
102
- bibliographyTitle: 'Bibliographie',
103
- bibliography: [
104
- {
105
- name: "Guide d'Éclairage Efficace — IDAE (Espagne)",
106
- url: 'https://www.idae.es/publicaciones/guia-tecnica-de-eficiencia-energetica-en-iluminacion-oficinas',
107
- },
108
- {
109
- name: 'Étiquetage Énergétique des Lampes — Union Européenne',
110
- url: 'https://www.boe.es/buscar/doc.php?id=DOUE-L-2019-81875',
111
- },
112
- {
113
- name: "Calculateur de Consommation Électrique — OCU",
114
- url: 'https://www.ocu.org/vivienda-y-energia/gas-luz/calculadora/consumo-stand-by',
115
- },
116
- ],
102
+ bibliography,
117
103
  howTo: howToData,
118
104
  schemas: [faqSchema, howToSchema, appSchema],
119
105
  seo: [
120
106
  {
121
107
  type: 'title',
122
- text: "Guide d'Économies LED : Comment Réduire Votre Facture d'Électricité",
108
+ text: "Guide d'Économies LED: Comment Réduire Votre Facture d'Électricité",
123
109
  level: 2,
124
110
  },
125
111
  {
@@ -129,7 +115,7 @@ export const content: ToolLocaleContent<LedSavingCalculatorUI> = {
129
115
  {
130
116
  type: 'stats',
131
117
  items: [
132
- { value: '8590%', label: "Économie d'Énergie", icon: 'mdi:lightning-bolt' },
118
+ { value: '85-90%', label: "Économie d'Énergie", icon: 'mdi:lightning-bolt' },
133
119
  { value: '25 000h', label: 'Durée de Vie LED', icon: 'mdi:clock-outline' },
134
120
  { value: '< 4 mois', label: 'Amortissement', icon: 'mdi:calendar-check' },
135
121
  ],
@@ -142,13 +128,13 @@ export const content: ToolLocaleContent<LedSavingCalculatorUI> = {
142
128
  title: 'Éclairage Incandescent',
143
129
  description: "La technologie du XXe siècle basée sur le chauffage d'un filament de tungstène. 95% de l'énergie est gaspillée sous forme de chaleur.",
144
130
  icon: 'mdi:lightbulb-outline',
145
- points: ["95% d'énergie gaspillée en chaleur", 'Durée de vie : 1 000 heures', 'Coût de fonctionnement très élevé'],
131
+ points: ["95% d'énergie gaspillée en chaleur", 'Durée de vie: 1 000 heures', 'Coût de fonctionnement très élevé'],
146
132
  },
147
133
  {
148
134
  title: 'Technologie LED Moderne',
149
135
  description: "Le standard actuel d'efficacité énergétique pour le domicile. Éclairage instantané à 100% dès la première seconde.",
150
136
  icon: 'mdi:led-outline',
151
- points: ['8590% d\'économie directe', 'Durée de vie : 25 00050 000 heures', 'Émission de chaleur minimale'],
137
+ points: ['85-90% d\'économie directe', 'Durée de vie: 25 000-50 000 heures', 'Émission de chaleur minimale'],
152
138
  },
153
139
  ],
154
140
  columns: 2,
@@ -160,7 +146,7 @@ export const content: ToolLocaleContent<LedSavingCalculatorUI> = {
160
146
  },
161
147
  {
162
148
  type: 'paragraph',
163
- html: "Une ampoule incandescente fonctionne en chauffant un filament de tungstène. <strong>95% de l'énergie</strong> est gaspillée en chaleur et seulement 5% devient de la lumière visible. Les LED, en revanche, convertissent directement l'électricité en lumière via des semi-conducteurs avec une efficacité bien supérieure. <strong>Regardez les lumens, pas les watts :</strong> une vieille ampoule de 60W produit environ 800 lm ; aujourd'hui vous pouvez obtenir ces mêmes 800 lm avec une LED de seulement 89W.",
149
+ html: "Une ampoule incandescente fonctionne en chauffant un filament de tungstène. <strong>95% de l'énergie</strong> est gaspillée en chaleur et seulement 5% devient de la lumière visible. Les LED, en revanche, convertissent directement l'électricité en lumière via des semi-conducteurs avec une efficacité bien supérieure. <strong>Regardez les lumens, pas les watts :</strong> une vieille ampoule de 60W produit environ 800 lm ; aujourd'hui vous pouvez obtenir ces mêmes 800 lm avec une LED de seulement 8-9W.",
164
150
  },
165
151
  {
166
152
  type: 'diagnostic',
@@ -168,15 +154,15 @@ export const content: ToolLocaleContent<LedSavingCalculatorUI> = {
168
154
  title: 'Tableau des Équivalences Rapides',
169
155
  icon: 'mdi:table',
170
156
  badge: 'Référence',
171
- html: '<ul style="margin:0;padding-left:1.2em"><li><strong>40W incandescente</strong> → LED 56W (450 lm)</li><li><strong>60W incandescente</strong> → LED 810W (800 lm)</li><li><strong>100W incandescente</strong> → LED 1315W (1500 lm)</li><li><strong>50W halogène (spot)</strong> → LED 67W (450500 lm)</li></ul>',
157
+ html: '<ul style="margin:0;padding-left:1.2em"><li><strong>40W incandescente</strong> → LED 5-6W (450 lm)</li><li><strong>60W incandescente</strong> → LED 8-10W (800 lm)</li><li><strong>100W incandescente</strong> → LED 13-15W (1500 lm)</li><li><strong>50W halogène (spot)</strong> → LED 6-7W (450-500 lm)</li></ul>',
172
158
  },
173
159
  {
174
160
  type: 'summary',
175
161
  title: 'Avantages du LED Au delà de l\'Argent',
176
162
  items: [
177
- "Durée de vie extrême : une LED de qualité peut durer plus de 15 ans à 4h/jour.",
163
+ "Durée de vie extrême: une LED de qualité peut durer plus de 15 ans à 4h/jour.",
178
164
  "Éclairage instantané à 100%, sans temps de chauffe ni scintillements.",
179
- "Pas d'émission de chaleur : réduit la charge de climatisation en été.",
165
+ "Pas d'émission de chaleur: réduit la charge de climatisation en été.",
180
166
  "Sans mercure ni gaz toxiques, plus facile à recycler que les tubes fluorescents.",
181
167
  "Compatible avec la plupart des douilles existantes (E27, E14, GU10).",
182
168
  ],
@@ -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 { LedSavingCalculatorUI } from '../ui';
4
+ import { bibliography } from '../bibliography';
4
5
 
5
6
  const slug = 'kalkulator-hemat-led';
6
7
  const title = 'Kalkulator Hemat LED';
@@ -92,19 +93,8 @@ export const content: ToolLocaleContent<LedSavingCalculatorUI> = {
92
93
  slug,
93
94
  title,
94
95
  description,
95
- faqTitle: 'Pertanyaan Umum',
96
96
  faq: faqData,
97
- bibliographyTitle: 'Daftar Pustaka',
98
- bibliography: [
99
- {
100
- name: 'Label Energi Uni Eropa untuk Lampu',
101
- url: 'https://commission.europa.eu/energy-climate-change-environment/standards-tools-and-labels/products-labelling-rules-and-requirements/energy-label-and-ecodesign/energy-efficient-products_en',
102
- },
103
- {
104
- name: 'Panduan Efisiensi Energi — IEA',
105
- url: 'https://www.iea.org/topics/energy-efficiency',
106
- },
107
- ],
97
+ bibliography,
108
98
  howTo: howToData,
109
99
  schemas: [faqSchema, howToSchema, appSchema],
110
100
  seo: [
@@ -120,7 +110,7 @@ export const content: ToolLocaleContent<LedSavingCalculatorUI> = {
120
110
  {
121
111
  type: 'stats',
122
112
  items: [
123
- { value: '8590%', label: 'Hemat Energi', icon: 'mdi:lightning-bolt' },
113
+ { value: '85-90%', label: 'Hemat Energi', icon: 'mdi:lightning-bolt' },
124
114
  { value: '25.000j', label: 'Masa Pakai LED', icon: 'mdi:clock-outline' },
125
115
  { value: '< 4 bulan', label: 'Balik Modal', icon: 'mdi:calendar-check' },
126
116
  ],
@@ -139,7 +129,7 @@ export const content: ToolLocaleContent<LedSavingCalculatorUI> = {
139
129
  title: 'Teknologi LED Modern',
140
130
  description: 'Standar efisiensi energi saat ini untuk rumah tangga. Menyala instan dan emisi panas yang minimal.',
141
131
  icon: 'mdi:led-outline',
142
- points: ['8590% hemat langsung', 'Masa pakai: 25.00050.000 jam', 'Emisi panas minimal'],
132
+ points: ['85-90% hemat langsung', 'Masa pakai: 25.000-50.000 jam', 'Emisi panas minimal'],
143
133
  },
144
134
  ],
145
135
  columns: 2,
@@ -159,7 +149,7 @@ export const content: ToolLocaleContent<LedSavingCalculatorUI> = {
159
149
  title: 'Tabel Kesetaraan Cepat',
160
150
  icon: 'mdi:table',
161
151
  badge: 'Referensi',
162
- html: '<ul style="margin:0;padding-left:1.2em"><li><strong>40W pijar</strong> → LED 56W (450 lm)</li><li><strong>60W pijar</strong> → LED 810W (800 lm)</li><li><strong>100W pijar</strong> → LED 1315W (1500 lm)</li><li><strong>50W halogen</strong> → LED 67W (450500 lm)</li></ul>',
152
+ html: '<ul style="margin:0;padding-left:1.2em"><li><strong>40W pijar</strong> → LED 5-6W (450 lm)</li><li><strong>60W pijar</strong> → LED 8-10W (800 lm)</li><li><strong>100W pijar</strong> → LED 13-15W (1500 lm)</li><li><strong>50W halogen</strong> → LED 6-7W (450-500 lm)</li></ul>',
163
153
  },
164
154
  {
165
155
  type: 'summary',
@@ -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 { LedSavingCalculatorUI } from '../ui';
4
+ import { bibliography } from '../bibliography';
4
5
 
5
6
  const slug = 'calcolatore-risparmio-led';
6
7
  const title = 'Calcolatore Risparmio LED';
@@ -92,19 +93,8 @@ export const content: ToolLocaleContent<LedSavingCalculatorUI> = {
92
93
  slug,
93
94
  title,
94
95
  description,
95
- faqTitle: 'Domande Frequenti',
96
96
  faq: faqData,
97
- bibliographyTitle: 'Bibliografia',
98
- bibliography: [
99
- {
100
- name: 'Efficienza Energetica - ENEA',
101
- url: 'https://www.efficienzaenergetica.enea.it/',
102
- },
103
- {
104
- name: 'Etichettatura Energetica UE',
105
- url: 'https://commission.europa.eu/energy-climate-change-environment/standards-tools-and-labels/products-labelling-rules-and-requirements/energy-label-and-ecodesign/energy-efficient-products_it',
106
- },
107
- ],
97
+ bibliography,
108
98
  howTo: howToData,
109
99
  schemas: [faqSchema, howToSchema, appSchema],
110
100
  seo: [
@@ -120,7 +110,7 @@ export const content: ToolLocaleContent<LedSavingCalculatorUI> = {
120
110
  {
121
111
  type: 'stats',
122
112
  items: [
123
- { value: '8590%', label: 'Risparmio Energetico', icon: 'mdi:lightning-bolt' },
113
+ { value: '85-90%', label: 'Risparmio Energetico', icon: 'mdi:lightning-bolt' },
124
114
  { value: '25.000h', label: 'Vita Utile LED', icon: 'mdi:clock-outline' },
125
115
  { value: '< 4 mesi', label: 'Ammortamento', icon: 'mdi:calendar-check' },
126
116
  ],
@@ -139,7 +129,7 @@ export const content: ToolLocaleContent<LedSavingCalculatorUI> = {
139
129
  title: 'Tecnologia LED Moderna',
140
130
  description: 'Lo standard di efficienza attuale. Accensione istantanea e minima emissione di calore.',
141
131
  icon: 'mdi:led-outline',
142
- points: ['8590% risparmio diretto', 'Vita utile: 25.00050.000 ore', 'Pochissimo calore'],
132
+ points: ['85-90% risparmio diretto', 'Vita utile: 25.000-50.000 ore', 'Pochissimo calore'],
143
133
  },
144
134
  ],
145
135
  columns: 2,
@@ -151,7 +141,7 @@ export const content: ToolLocaleContent<LedSavingCalculatorUI> = {
151
141
  },
152
142
  {
153
143
  type: 'paragraph',
154
- html: 'Una lampadina incandescente converte solo il 5% di energia in luce. I LED usano semiconduttori per una efficienza superiore. <strong>Non guardare i watt, guarda i lumen:</strong> una vecchia lampadina da 60W emette circa 800 lm; oggi bastano 89W LED.',
144
+ html: 'Una lampadina incandescente converte solo il 5% di energia in luce. I LED usano semiconduttori per una efficienza superiore. <strong>Non guardare i watt, guarda i lumen:</strong> una vecchia lampadina da 60W emette circa 800 lm; oggi bastano 8-9W LED.',
155
145
  },
156
146
  {
157
147
  type: 'diagnostic',
@@ -159,7 +149,7 @@ export const content: ToolLocaleContent<LedSavingCalculatorUI> = {
159
149
  title: 'Tabella Equivalenze Rapide',
160
150
  icon: 'mdi:table',
161
151
  badge: 'Riferimento',
162
- html: '<ul style="margin:0;padding-left:1.2em"><li><strong>40W incandescente</strong> → LED 56W (450 lm)</li><li><strong>60W incandescente</strong> → LED 810W (800 lm)</li><li><strong>100W incandescente</strong> → LED 1315W (1500 lm)</li><li><strong>50W alogena</strong> → LED 67W (450500 lm)</li></ul>',
152
+ html: '<ul style="margin:0;padding-left:1.2em"><li><strong>40W incandescente</strong> → LED 5-6W (450 lm)</li><li><strong>60W incandescente</strong> → LED 8-10W (800 lm)</li><li><strong>100W incandescente</strong> → LED 13-15W (1500 lm)</li><li><strong>50W alogena</strong> → LED 6-7W (450-500 lm)</li></ul>',
163
153
  },
164
154
  {
165
155
  type: 'summary',
@@ -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 { LedSavingCalculatorUI } from '../ui';
4
+ import { bibliography } from '../bibliography';
4
5
 
5
6
  const slug = 'led-saving-calculator';
6
7
  const title = 'LED節電・節約計算機';
@@ -92,19 +93,8 @@ export const content: ToolLocaleContent<LedSavingCalculatorUI> = {
92
93
  slug,
93
94
  title,
94
95
  description,
95
- faqTitle: 'よくある質問',
96
96
  faq: faqData,
97
- bibliographyTitle: '参考文献',
98
- bibliography: [
99
- {
100
- name: '省エネポータルサイト — 資源エネルギー庁',
101
- url: 'https://www.enecho.meti.go.jp/category/saving_and_new/saving/',
102
- },
103
- {
104
- name: 'LED照明ナビ — 日本照明工業会',
105
- url: 'https://www.jlma.or.jp/led-navi/index.html',
106
- },
107
- ],
97
+ bibliography,
108
98
  howTo: howToData,
109
99
  schemas: [faqSchema, howToSchema, appSchema],
110
100
  seo: [
@@ -120,7 +110,7 @@ export const content: ToolLocaleContent<LedSavingCalculatorUI> = {
120
110
  {
121
111
  type: 'stats',
122
112
  items: [
123
- { value: '8590%', label: '消費電力削減', icon: 'mdi:lightning-bolt' },
113
+ { value: '85-90%', label: '消費電力削減', icon: 'mdi:lightning-bolt' },
124
114
  { value: '25,000h', label: 'LEDの寿命', icon: 'mdi:clock-outline' },
125
115
  { value: '4ヶ月以内', label: 'コスト回収', icon: 'mdi:calendar-check' },
126
116
  ],
@@ -139,7 +129,7 @@ export const content: ToolLocaleContent<LedSavingCalculatorUI> = {
139
129
  title: '最新のLEDテクノロジー',
140
130
  description: '家庭に最適な現在の標準。点けた瞬間に最大輝度になり、発熱も最小限です。',
141
131
  icon: 'mdi:led-outline',
142
- points: ['8590%の直接的な節電', '寿命:25,000〜50,000時間', '低発熱で安全'],
132
+ points: ['85-90%の直接的な節電', '寿命:25,000〜50,000時間', '低発熱で安全'],
143
133
  },
144
134
  ],
145
135
  columns: 2,
@@ -159,7 +149,7 @@ export const content: ToolLocaleContent<LedSavingCalculatorUI> = {
159
149
  title: '電球の明るさ目安表',
160
150
  icon: 'mdi:table',
161
151
  badge: 'クイック参照',
162
- html: '<ul style="margin:0;padding-left:1.2em"><li><strong>40W相当</strong> → LED 56W (450 lm)</li><li><strong>60W相当</strong> → LED 810W (800 lm)</li><li><strong>100W相当</strong> → LED 1315W (1500 lm)</li><li><strong>50W相当(ハロゲン)</strong> → LED 67W (450500 lm)</li></ul>',
152
+ html: '<ul style="margin:0;padding-left:1.2em"><li><strong>40W相当</strong> → LED 5-6W (450 lm)</li><li><strong>60W相当</strong> → LED 8-10W (800 lm)</li><li><strong>100W相当</strong> → LED 13-15W (1500 lm)</li><li><strong>50W相当(ハロゲン)</strong> → LED 6-7W (450-500 lm)</li></ul>',
163
153
  },
164
154
  {
165
155
  type: 'summary',
@@ -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 { LedSavingCalculatorUI } from '../ui';
4
+ import { bibliography } from '../bibliography';
4
5
 
5
6
  const slug = 'led-saving-calculator';
6
7
  const title = 'LED 절약 계산기';
@@ -92,19 +93,8 @@ export const content: ToolLocaleContent<LedSavingCalculatorUI> = {
92
93
  slug,
93
94
  title,
94
95
  description,
95
- faqTitle: '자주 묻는 질문',
96
96
  faq: faqData,
97
- bibliographyTitle: '참고 자료',
98
- bibliography: [
99
- {
100
- name: '한국에너지공단 - 고효율 에너지기자재 가이드',
101
- url: 'https://www.energy.or.kr/',
102
- },
103
- {
104
- name: '에너지 효율 등급 안내 - 한국소비자원',
105
- url: 'https://www.kca.go.kr/',
106
- },
107
- ],
97
+ bibliography,
108
98
  howTo: howToData,
109
99
  schemas: [faqSchema, howToSchema, appSchema],
110
100
  seo: [
@@ -120,7 +110,7 @@ export const content: ToolLocaleContent<LedSavingCalculatorUI> = {
120
110
  {
121
111
  type: 'stats',
122
112
  items: [
123
- { value: '8590%', label: '에너지 절감률', icon: 'mdi:lightning-bolt' },
113
+ { value: '85-90%', label: '에너지 절감률', icon: 'mdi:lightning-bolt' },
124
114
  { value: '25,000h', label: 'LED 수명', icon: 'mdi:clock-outline' },
125
115
  { value: '4개월 이내', label: '회수 기간', icon: 'mdi:calendar-check' },
126
116
  ],
@@ -159,7 +149,7 @@ export const content: ToolLocaleContent<LedSavingCalculatorUI> = {
159
149
  title: '빠른 전구 비교표',
160
150
  icon: 'mdi:table',
161
151
  badge: '참고용',
162
- html: '<ul style="margin:0;padding-left:1.2em"><li><strong>40W 백열전구</strong> → LED 56W (450 lm)</li><li><strong>60W 백열전구</strong> → LED 810W (800 lm)</li><li><strong>100W 백열전구</strong> → LED 1315W (1500 lm)</li><li><strong>50W 할로겐</strong> → LED 67W (450500 lm)</li></ul>',
152
+ html: '<ul style="margin:0;padding-left:1.2em"><li><strong>40W 백열전구</strong> → LED 5-6W (450 lm)</li><li><strong>60W 백열전구</strong> → LED 8-10W (800 lm)</li><li><strong>100W 백열전구</strong> → LED 13-15W (1500 lm)</li><li><strong>50W 할로겐</strong> → LED 6-7W (450-500 lm)</li></ul>',
163
153
  },
164
154
  {
165
155
  type: 'summary',
@@ -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 { LedSavingCalculatorUI } from '../ui';
4
+ import { bibliography } from '../bibliography';
4
5
 
5
6
  const slug = 'led-besparingscalculator';
6
7
  const title = 'LED Besparingscalculator';
@@ -92,19 +93,8 @@ export const content: ToolLocaleContent<LedSavingCalculatorUI> = {
92
93
  slug,
93
94
  title,
94
95
  description,
95
- faqTitle: 'Veelgestelde Vragen',
96
96
  faq: faqData,
97
- bibliographyTitle: 'Bibliografie',
98
- bibliography: [
99
- {
100
- name: 'Energiebesparing — Milieu Centraal',
101
- url: 'https://www.milieucentraal.nl/',
102
- },
103
- {
104
- name: 'Energielabels voor lampen — Europese Unie',
105
- url: 'https://commission.europa.eu/energy-climate-change-environment/standards-tools-and-labels/products-labelling-rules-and-requirements/energy-label-and-ecodesign/energy-efficient-products_nl',
106
- },
107
- ],
97
+ bibliography,
108
98
  howTo: howToData,
109
99
  schemas: [faqSchema, howToSchema, appSchema],
110
100
  seo: [
@@ -120,7 +110,7 @@ export const content: ToolLocaleContent<LedSavingCalculatorUI> = {
120
110
  {
121
111
  type: 'stats',
122
112
  items: [
123
- { value: '8590%', label: 'Energiebesparing', icon: 'mdi:lightning-bolt' },
113
+ { value: '85-90%', label: 'Energiebesparing', icon: 'mdi:lightning-bolt' },
124
114
  { value: '25.000u', label: 'Levensduur LED', icon: 'mdi:clock-outline' },
125
115
  { value: '< 4 mnd', label: 'Terugverdientijd', icon: 'mdi:calendar-check' },
126
116
  ],
@@ -139,7 +129,7 @@ export const content: ToolLocaleContent<LedSavingCalculatorUI> = {
139
129
  title: 'Moderne LED techniek',
140
130
  description: 'De huidige standaard voor efficiëntie. Direct licht en minimale warmteafgifte.',
141
131
  icon: 'mdi:led-outline',
142
- points: ['8590% directe besparing', 'Levensduur: tot 50.000 uur', 'Nauwelijks warmte'],
132
+ points: ['85-90% directe besparing', 'Levensduur: tot 50.000 uur', 'Nauwelijks warmte'],
143
133
  },
144
134
  ],
145
135
  columns: 2,
@@ -159,7 +149,7 @@ export const content: ToolLocaleContent<LedSavingCalculatorUI> = {
159
149
  title: 'Snelle Vergelijkingstabel',
160
150
  icon: 'mdi:table',
161
151
  badge: 'Naslag',
162
- html: '<ul style="margin:0;padding-left:1.2em"><li><strong>40W gloeilamp</strong> → LED 56W (450 lm)</li><li><strong>60W gloeilamp</strong> → LED 810W (800 lm)</li><li><strong>100W gloeilamp</strong> → LED 1315W (1500 lm)</li><li><strong>50W halogeen</strong> → LED 67W (450500 lm)</li></ul>',
152
+ html: '<ul style="margin:0;padding-left:1.2em"><li><strong>40W gloeilamp</strong> → LED 5-6W (450 lm)</li><li><strong>60W gloeilamp</strong> → LED 8-10W (800 lm)</li><li><strong>100W gloeilamp</strong> → LED 13-15W (1500 lm)</li><li><strong>50W halogeen</strong> → LED 6-7W (450-500 lm)</li></ul>',
163
153
  },
164
154
  {
165
155
  type: 'summary',
@@ -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 { LedSavingCalculatorUI } from '../ui';
4
+ import { bibliography } from '../bibliography';
4
5
 
5
6
  const slug = 'kalkulator-oszczednosci-led';
6
7
  const title = 'Kalkulator Oszczędności LED';
@@ -92,19 +93,8 @@ export const content: ToolLocaleContent<LedSavingCalculatorUI> = {
92
93
  slug,
93
94
  title,
94
95
  description,
95
- faqTitle: 'Często Zadawane Pytania',
96
96
  faq: faqData,
97
- bibliographyTitle: 'Bibliografia',
98
- bibliography: [
99
- {
100
- name: 'Efektywność Energetyczna — Ministerstwo Klimatu',
101
- url: 'https://www.gov.pl/web/klimat/efektywnosc-energetyczna',
102
- },
103
- {
104
- name: 'Etykiety Energetyczne UE',
105
- url: 'https://commission.europa.eu/energy-climate-change-environment/standards-tools-and-labels/products-labelling-rules-and-requirements/energy-label-and-ecodesign/energy-efficient-products_pl',
106
- },
107
- ],
97
+ bibliography,
108
98
  howTo: howToData,
109
99
  schemas: [faqSchema, howToSchema, appSchema],
110
100
  seo: [
@@ -120,7 +110,7 @@ export const content: ToolLocaleContent<LedSavingCalculatorUI> = {
120
110
  {
121
111
  type: 'stats',
122
112
  items: [
123
- { value: '8590%', label: 'Oszczędność Energii', icon: 'mdi:lightning-bolt' },
113
+ { value: '85-90%', label: 'Oszczędność Energii', icon: 'mdi:lightning-bolt' },
124
114
  { value: '25.000h', label: 'Żywotność LED', icon: 'mdi:clock-outline' },
125
115
  { value: '< 4 m-ce', label: 'Amortyzacja', icon: 'mdi:calendar-check' },
126
116
  ],
@@ -139,7 +129,7 @@ export const content: ToolLocaleContent<LedSavingCalculatorUI> = {
139
129
  title: 'Nowoczesny LED',
140
130
  description: 'Obecny standard efektywności. Błyskawiczny start i minimalne wydzielanie ciepła.',
141
131
  icon: 'mdi:led-outline',
142
- points: ['8590% oszczędności', 'Żywotność: 25.00050.000 godzin', 'Bezpieczna temperatura'],
132
+ points: ['85-90% oszczędności', 'Żywotność: 25.000-50.000 godzin', 'Bezpieczna temperatura'],
143
133
  },
144
134
  ],
145
135
  columns: 2,
@@ -159,7 +149,7 @@ export const content: ToolLocaleContent<LedSavingCalculatorUI> = {
159
149
  title: 'Tabela Zamienników',
160
150
  icon: 'mdi:table',
161
151
  badge: 'Ściąga',
162
- html: '<ul style="margin:0;padding-left:1.2em"><li><strong>40W tradycyjna</strong> → LED 56W (450 lm)</li><li><strong>60W tradycyjna</strong> → LED 810W (800 lm)</li><li><strong>100W tradycyjna</strong> → LED 1315W (1500 lm)</li><li><strong>50W halogen</strong> → LED 67W (450500 lm)</li></ul>',
152
+ html: '<ul style="margin:0;padding-left:1.2em"><li><strong>40W tradycyjna</strong> → LED 5-6W (450 lm)</li><li><strong>60W tradycyjna</strong> → LED 8-10W (800 lm)</li><li><strong>100W tradycyjna</strong> → LED 13-15W (1500 lm)</li><li><strong>50W halogen</strong> → LED 6-7W (450-500 lm)</li></ul>',
163
153
  },
164
154
  {
165
155
  type: 'summary',