@jjlmoya/utils-home 1.5.0 → 1.7.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 (103) hide show
  1. package/package.json +61 -60
  2. package/src/tests/i18n_coverage.test.ts +36 -0
  3. package/src/tests/schemas_fulfillment.test.ts +23 -0
  4. package/src/tests/slug_uniqueness.test.ts +81 -0
  5. package/src/tests/title_quality.test.ts +55 -0
  6. package/src/tool/dewPointCalculator/i18n/de.ts +178 -0
  7. package/src/tool/dewPointCalculator/i18n/en.ts +1 -1
  8. package/src/tool/dewPointCalculator/i18n/es.ts +1 -1
  9. package/src/tool/dewPointCalculator/i18n/fr.ts +1 -1
  10. package/src/tool/dewPointCalculator/i18n/id.ts +178 -0
  11. package/src/tool/dewPointCalculator/i18n/it.ts +178 -0
  12. package/src/tool/dewPointCalculator/i18n/ja.ts +178 -0
  13. package/src/tool/dewPointCalculator/i18n/ko.ts +178 -0
  14. package/src/tool/dewPointCalculator/i18n/nl.ts +178 -0
  15. package/src/tool/dewPointCalculator/i18n/pl.ts +178 -0
  16. package/src/tool/dewPointCalculator/i18n/pt.ts +178 -0
  17. package/src/tool/dewPointCalculator/i18n/ru.ts +178 -0
  18. package/src/tool/dewPointCalculator/i18n/sv.ts +178 -0
  19. package/src/tool/dewPointCalculator/i18n/tr.ts +178 -0
  20. package/src/tool/dewPointCalculator/i18n/zh.ts +178 -0
  21. package/src/tool/dewPointCalculator/index.ts +16 -6
  22. package/src/tool/heatingComparator/i18n/de.ts +340 -0
  23. package/src/tool/heatingComparator/i18n/es.ts +1 -1
  24. package/src/tool/heatingComparator/i18n/id.ts +324 -0
  25. package/src/tool/heatingComparator/i18n/it.ts +336 -0
  26. package/src/tool/heatingComparator/i18n/ja.ts +311 -0
  27. package/src/tool/heatingComparator/i18n/ko.ts +307 -0
  28. package/src/tool/heatingComparator/i18n/nl.ts +336 -0
  29. package/src/tool/heatingComparator/i18n/pl.ts +311 -0
  30. package/src/tool/heatingComparator/i18n/pt.ts +336 -0
  31. package/src/tool/heatingComparator/i18n/ru.ts +307 -0
  32. package/src/tool/heatingComparator/i18n/sv.ts +311 -0
  33. package/src/tool/heatingComparator/i18n/tr.ts +324 -0
  34. package/src/tool/heatingComparator/i18n/zh.ts +307 -0
  35. package/src/tool/heatingComparator/index.ts +13 -1
  36. package/src/tool/ledSavingCalculator/i18n/de.ts +208 -0
  37. package/src/tool/ledSavingCalculator/i18n/fr.ts +1 -1
  38. package/src/tool/ledSavingCalculator/i18n/id.ts +208 -0
  39. package/src/tool/ledSavingCalculator/i18n/it.ts +208 -0
  40. package/src/tool/ledSavingCalculator/i18n/ja.ts +208 -0
  41. package/src/tool/ledSavingCalculator/i18n/ko.ts +208 -0
  42. package/src/tool/ledSavingCalculator/i18n/nl.ts +208 -0
  43. package/src/tool/ledSavingCalculator/i18n/pl.ts +208 -0
  44. package/src/tool/ledSavingCalculator/i18n/pt.ts +208 -0
  45. package/src/tool/ledSavingCalculator/i18n/ru.ts +208 -0
  46. package/src/tool/ledSavingCalculator/i18n/sv.ts +208 -0
  47. package/src/tool/ledSavingCalculator/i18n/tr.ts +208 -0
  48. package/src/tool/ledSavingCalculator/i18n/zh.ts +208 -0
  49. package/src/tool/ledSavingCalculator/index.ts +16 -7
  50. package/src/tool/projectorCalculator/i18n/de.ts +180 -0
  51. package/src/tool/projectorCalculator/i18n/fr.ts +1 -1
  52. package/src/tool/projectorCalculator/i18n/id.ts +181 -0
  53. package/src/tool/projectorCalculator/i18n/it.ts +180 -0
  54. package/src/tool/projectorCalculator/i18n/ja.ts +180 -0
  55. package/src/tool/projectorCalculator/i18n/ko.ts +180 -0
  56. package/src/tool/projectorCalculator/i18n/nl.ts +180 -0
  57. package/src/tool/projectorCalculator/i18n/pl.ts +180 -0
  58. package/src/tool/projectorCalculator/i18n/pt.ts +180 -0
  59. package/src/tool/projectorCalculator/i18n/ru.ts +180 -0
  60. package/src/tool/projectorCalculator/i18n/sv.ts +180 -0
  61. package/src/tool/projectorCalculator/i18n/tr.ts +180 -0
  62. package/src/tool/projectorCalculator/i18n/zh.ts +180 -0
  63. package/src/tool/projectorCalculator/index.ts +15 -6
  64. package/src/tool/qrGenerator/i18n/de.ts +203 -0
  65. package/src/tool/qrGenerator/i18n/id.ts +151 -0
  66. package/src/tool/qrGenerator/i18n/it.ts +174 -0
  67. package/src/tool/qrGenerator/i18n/ja.ts +151 -0
  68. package/src/tool/qrGenerator/i18n/ko.ts +151 -0
  69. package/src/tool/qrGenerator/i18n/nl.ts +151 -0
  70. package/src/tool/qrGenerator/i18n/pl.ts +151 -0
  71. package/src/tool/qrGenerator/i18n/pt.ts +151 -0
  72. package/src/tool/qrGenerator/i18n/ru.ts +151 -0
  73. package/src/tool/qrGenerator/i18n/sv.ts +151 -0
  74. package/src/tool/qrGenerator/i18n/tr.ts +151 -0
  75. package/src/tool/qrGenerator/i18n/zh.ts +151 -0
  76. package/src/tool/qrGenerator/index.ts +17 -9
  77. package/src/tool/solarCalculator/i18n/de.ts +146 -0
  78. package/src/tool/solarCalculator/i18n/id.ts +126 -0
  79. package/src/tool/solarCalculator/i18n/it.ts +126 -0
  80. package/src/tool/solarCalculator/i18n/ja.ts +126 -0
  81. package/src/tool/solarCalculator/i18n/ko.ts +121 -0
  82. package/src/tool/solarCalculator/i18n/nl.ts +120 -0
  83. package/src/tool/solarCalculator/i18n/pl.ts +121 -0
  84. package/src/tool/solarCalculator/i18n/pt.ts +126 -0
  85. package/src/tool/solarCalculator/i18n/ru.ts +110 -0
  86. package/src/tool/solarCalculator/i18n/sv.ts +110 -0
  87. package/src/tool/solarCalculator/i18n/tr.ts +120 -0
  88. package/src/tool/solarCalculator/i18n/zh.ts +121 -0
  89. package/src/tool/solarCalculator/index.ts +17 -9
  90. package/src/tool/tariffComparator/i18n/de.ts +133 -0
  91. package/src/tool/tariffComparator/i18n/id.ts +133 -0
  92. package/src/tool/tariffComparator/i18n/it.ts +133 -0
  93. package/src/tool/tariffComparator/i18n/ja.ts +133 -0
  94. package/src/tool/tariffComparator/i18n/ko.ts +133 -0
  95. package/src/tool/tariffComparator/i18n/nl.ts +133 -0
  96. package/src/tool/tariffComparator/i18n/pl.ts +133 -0
  97. package/src/tool/tariffComparator/i18n/pt.ts +133 -0
  98. package/src/tool/tariffComparator/i18n/ru.ts +106 -0
  99. package/src/tool/tariffComparator/i18n/sv.ts +111 -0
  100. package/src/tool/tariffComparator/i18n/tr.ts +133 -0
  101. package/src/tool/tariffComparator/i18n/zh.ts +133 -0
  102. package/src/tool/tariffComparator/index.ts +16 -7
  103. package/src/types.ts +1 -1
@@ -0,0 +1,208 @@
1
+ import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
2
+ import type { ToolLocaleContent } from '../../../types';
3
+ import type { LedSavingCalculatorUI } from '../ui';
4
+
5
+ const slug = 'led-sparrechner';
6
+ const title = 'LED Sparrechner';
7
+ const description =
8
+ 'Berechnen Sie, wie viel Geld und kWh Sie sparen, wenn Sie Ihre herkömmlichen Glühbirnen gegen LEDs austauschen. Entdecken Sie Ihre exakte jährliche Ersparnis und CO2-Reduktion.';
9
+
10
+ const faqData = [
11
+ {
12
+ question: 'Wie viel spart eine LED-Glühbirne wirklich?',
13
+ answer:
14
+ 'Eine LED-Birne spart zwischen 80 % und 90 % Energie im Vergleich zu einer herkömmlichen Glühbirne. Wenn Sie zum Beispiel von 60 W auf 9 W umsteigen, reduziert sich der Stromverbrauch bei gleicher Helligkeit fast auf ein Minimum.',
15
+ },
16
+ {
17
+ question: 'In welcher Zeit amortisiert sich der Umstieg auf LED?',
18
+ answer:
19
+ 'Aufgrund der niedrigen Anschaffungskosten von LEDs und der hohen Energieeinsparung amortisiert sich die Investition bei normaler Nutzung meist in weniger als 4 Monaten. Bei Lampen, die viele Stunden brennen, geht es sogar noch schneller.',
20
+ },
21
+ {
22
+ question: 'Was passiert, wenn ich eine LED mit mehr Watt einsetze?',
23
+ answer:
24
+ 'LEDs erzeugen sehr wenig Hitze. Daher können Sie Lampen, die früher durch die Hitzeentwicklung herkömmlicher Birnen begrenzt waren, mit helleren LEDs bestücken, solange die elektrischen Grenzwerte der Fassung eingehalten werden.',
25
+ },
26
+ {
27
+ question: 'Halten LEDs wirklich so lange, wie auf der Packung steht?',
28
+ answer:
29
+ 'Qualitäts-LEDs halten zwischen 15.000 und 50.000 Stunden. Bei einer durchschnittlichen Nutzung von 4 Stunden am Tag bedeutet das eine Lebensdauer von über 15 Jahren.',
30
+ },
31
+ {
32
+ question: 'Kann ich LEDs mit einem Dimmer verwenden?',
33
+ answer:
34
+ 'Nur wenn auf der Verpackung explizit "Dimmbar" steht. Standard-LEDs funktionieren nicht mit alten Dimmern und können flackern oder summen.',
35
+ },
36
+ {
37
+ question: 'Muss ich die ganze Lampe austauschen?',
38
+ answer:
39
+ 'In 99 % der Fälle nein. Sie müssen nur das Leuchtmittel durch eine LED mit der gleichen Fassung (E27, E14, GU10 etc.) ersetzen.',
40
+ },
41
+ ];
42
+
43
+ const howToData = [
44
+ {
45
+ name: 'Lichtpunkte zählen',
46
+ text: 'Prüfen Sie, wie viele Glüh- oder Halogenlampen Sie im Haus haben und notieren Sie deren Wattleistung.',
47
+ },
48
+ {
49
+ name: 'Passende LED wählen',
50
+ text: 'Wählen Sie den aktuellen Lampentyp im Rechner aus. Die entsprechenden LED-Äquivalente werden automatisch zugewiesen.',
51
+ },
52
+ {
53
+ name: 'Nutzungsstunden anpassen',
54
+ text: 'Geben Sie an, wie viele Stunden am Tag die Lampen im Durchschnitt eingeschaltet sind.',
55
+ },
56
+ ];
57
+
58
+ const faqSchema: WithContext<FAQPage> = {
59
+ '@context': 'https://schema.org',
60
+ '@type': 'FAQPage',
61
+ mainEntity: faqData.map((item) => ({
62
+ '@type': 'Question',
63
+ name: item.question,
64
+ acceptedAnswer: { '@type': 'Answer', text: item.answer },
65
+ })),
66
+ };
67
+
68
+ const howToSchema: WithContext<HowTo> = {
69
+ '@context': 'https://schema.org',
70
+ '@type': 'HowTo',
71
+ name: title,
72
+ description,
73
+ step: howToData.map((step) => ({
74
+ '@type': 'HowToStep',
75
+ name: step.name,
76
+ text: step.text,
77
+ })),
78
+ };
79
+
80
+ const appSchema: WithContext<SoftwareApplication> = {
81
+ '@context': 'https://schema.org',
82
+ '@type': 'SoftwareApplication',
83
+ name: title,
84
+ description,
85
+ applicationCategory: 'UtilityApplication',
86
+ operatingSystem: 'All',
87
+ offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
88
+ inLanguage: 'de',
89
+ };
90
+
91
+ export const content: ToolLocaleContent<LedSavingCalculatorUI> = {
92
+ slug,
93
+ title,
94
+ description,
95
+ faqTitle: 'Häufig gestellte Fragen',
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
+ ],
108
+ howTo: howToData,
109
+ schemas: [faqSchema, howToSchema, appSchema],
110
+ seo: [
111
+ {
112
+ type: 'title',
113
+ text: 'LED-Sparratgeber: So senken Sie Ihre Stromrechnung',
114
+ level: 2,
115
+ },
116
+ {
117
+ type: 'paragraph',
118
+ html: 'Der Wechsel von klassischer Beleuchtung zu moderner <strong>LED-Technologie (Light Emitting Diode)</strong> ist eine der rentabelsten Investitionen im Haushalt. Jedes Watt, das eingespart wird, entlastet direkt Ihren Geldbeutel. Eine 9W LED bietet die gleiche Helligkeit wie eine 60W Glühbirne, benötigt aber <strong>85 % weniger Strom</strong>.',
119
+ },
120
+ {
121
+ type: 'stats',
122
+ items: [
123
+ { value: '85–90%', label: 'Energieersparnis', icon: 'mdi:lightning-bolt' },
124
+ { value: '25.000h', label: 'Lebensdauer LED', icon: 'mdi:clock-outline' },
125
+ { value: '< 4 Monate', label: 'Amortisation', icon: 'mdi:calendar-check' },
126
+ ],
127
+ columns: 3,
128
+ },
129
+ {
130
+ type: 'comparative',
131
+ items: [
132
+ {
133
+ title: 'Traditionelle Glühbirne',
134
+ description: 'Technik aus dem 20. Jahrhundert, die auf der Erhitzung eines Drahtes basiert. 95 % der Energie verpuffen als Hitze.',
135
+ icon: 'mdi:lightbulb-outline',
136
+ points: ['95 % Energieverlust durch Hitze', 'Lebensdauer: 1.000 Stunden', 'Sehr hohe Betriebskosten'],
137
+ },
138
+ {
139
+ title: 'Moderne LED Technik',
140
+ description: 'Der aktuelle Standard für Energieeffizienz zu Hause. Sofort 100 % Helligkeit beim Einschalten.',
141
+ icon: 'mdi:led-outline',
142
+ points: ['85–90 % direkte Ersparnis', 'Lebensdauer: bis zu 50.000 Stunden', 'Minimale Wärmeabgabe'],
143
+ },
144
+ ],
145
+ columns: 2,
146
+ },
147
+ {
148
+ type: 'title',
149
+ text: 'Die Physik dahinter',
150
+ level: 3,
151
+ },
152
+ {
153
+ 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 8–9W.',
155
+ },
156
+ {
157
+ type: 'diagnostic',
158
+ variant: 'info',
159
+ title: 'Schnelle Vergleichstabelle',
160
+ icon: 'mdi:table',
161
+ badge: 'Referenz',
162
+ 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
+ },
164
+ {
165
+ type: 'summary',
166
+ title: 'Vorteile von LED über das Geld hinaus',
167
+ items: [
168
+ 'Extreme Langlebigkeit: Hält oft über 15 Jahre.',
169
+ 'Sofort hell: Keine Aufwärmphase wie bei Energiesparlampen.',
170
+ 'Wenig Hitze: Ideal für empfindliche Lampenschirme.',
171
+ 'Umweltfreundlich: Kein Quecksilber enthalten.',
172
+ 'Kompatibel: Passt in fast alle alten Fassungen.',
173
+ ],
174
+ },
175
+ ],
176
+ ui: {
177
+ sectionTitle: 'Haus-Konfiguration',
178
+ labelBulbs: 'Wie viele Lampen tauschen Sie?',
179
+ unitBulbs: 'Stück',
180
+ labelType: 'Aktuelle Lampenart',
181
+ labelHours: 'Nutzung pro Tag',
182
+ labelPrice: 'Strompreis',
183
+ unitPrice: '€/kWh',
184
+ resultBadge: 'Ersparnis-Berechnung',
185
+ labelAnnual: 'Ersparnis pro Jahr',
186
+ labelMonthly: 'pro Monat',
187
+ labelEfficiency: 'Effizienz',
188
+ labelCo2: 'CO2-Vermeidung',
189
+ unitLess: '% weniger',
190
+ currencySign: '€',
191
+ btnInc60Title: 'Glühbirne',
192
+ btnInc60Sub: 'Klassisch (60W)',
193
+ btnInc40Title: 'Glühbirne',
194
+ btnInc40Sub: 'Klein (40W)',
195
+ btnInc100Title: 'Glühbirne',
196
+ btnInc100Sub: 'Groß (100W)',
197
+ btnHalo50Title: 'Halogen',
198
+ btnHalo50Sub: 'Spot (50W)',
199
+ usageNever: 'Selten',
200
+ usageLow: 'Wenig',
201
+ usageNormal: 'Normal',
202
+ usageModerate: 'Mittel',
203
+ usageHeavy: 'Viel',
204
+ usagePro: 'Intensiv',
205
+ usageVeryHeavy: 'Sehr viel',
206
+ usageAlways: 'Dauerbetrieb',
207
+ },
208
+ };
@@ -172,7 +172,7 @@ export const content: ToolLocaleContent<LedSavingCalculatorUI> = {
172
172
  },
173
173
  {
174
174
  type: 'summary',
175
- title: 'Avantages du LED Au-delà de l\'Argent',
175
+ title: 'Avantages du LED Au delà de l\'Argent',
176
176
  items: [
177
177
  "Durée de vie extrême : une LED de qualité peut durer plus de 15 ans à 4h/jour.",
178
178
  "Éclairage instantané à 100%, sans temps de chauffe ni scintillements.",
@@ -0,0 +1,208 @@
1
+ import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
2
+ import type { ToolLocaleContent } from '../../../types';
3
+ import type { LedSavingCalculatorUI } from '../ui';
4
+
5
+ const slug = 'kalkulator-hemat-led';
6
+ const title = 'Kalkulator Hemat LED';
7
+ const description =
8
+ 'Hitung berapa banyak uang dan kWh yang Anda hemat dengan mengganti bohlam tradisional Anda ke LED. Temukan penghematan tahunan, bulanan, dan pengurangan CO2 Anda.';
9
+
10
+ const faqData = [
11
+ {
12
+ question: 'Berapa sebenarnya penghematan dari penggunaan bohlam LED?',
13
+ answer:
14
+ 'Bohlam LED menghemat antara 80% hingga 90% energi dibandingkan dengan bohlam pijar (incandescent). Sebagai contoh, beralih dari 60W ke 9W mengurangi biaya listrik untuk lampu tersebut hingga hampir minimal dengan tingkat kecerahan yang sama.',
15
+ },
16
+ {
17
+ question: 'Berapa lama waktu yang dibutuhkan untuk balik modal beralih ke LED?',
18
+ answer:
19
+ 'Karena biaya LED saat ini rendah dan penghematannya besar, investasi tersebut biasanya kembali dalam waktu kurang dari 4 bulan untuk penggunaan normal. Jika lampu menyala berjam-jam, balik modal bisa lebih cepat.',
20
+ },
21
+ {
22
+ question: 'Apa yang terjadi jika saya memasang bohlam LED dengan watt yang lebih besar?',
23
+ answer:
24
+ 'LED menghasilkan panas yang sangat sedikit, sehingga Anda dapat memasang bohlam dengan lumen yang lebih tinggi pada lampu yang sebelumnya dibatasi oleh panas dari bohlam pijar, asalkan tetap mematuhi batas kelistrikan soket lampu.',
25
+ },
26
+ {
27
+ question: 'Apakah masa pakainya benar-benar selama yang tertera pada kemasan?',
28
+ answer:
29
+ 'LED berkualitas dapat bertahan antara 15.000 hingga 50.000 jam. Untuk penggunaan rumah tangga rata-rata 4 jam per hari, ini berarti satu bohlam dapat bertahan lebih dari 15 tahun.',
30
+ },
31
+ {
32
+ question: 'Dapatkah saya menggunakan LED pada lampu dengan dimmer?',
33
+ answer:
34
+ 'Hanya jika bohlam tersebut secara jelas menyatakan "Dimmable". LED standar tidak berfungsi dengan baik pada dimmer lama dan mungkin akan berkedip atau berdengung.',
35
+ },
36
+ {
37
+ question: 'Apakah saya harus mengganti seluruh unit lampu?',
38
+ answer:
39
+ 'Dalam 99% kasus, tidak perlu. Anda hanya perlu mengganti bohlamnya saja dengan bohlam LED yang memiliki soket yang sama (E27, E14, GU10, dll.).',
40
+ },
41
+ ];
42
+
43
+ const howToData = [
44
+ {
45
+ name: 'Hitung titik lampu Anda',
46
+ text: 'Periksa berapa banyak bohlam pijar atau halogen yang Anda miliki di rumah dan catat dayanya dalam watt.',
47
+ },
48
+ {
49
+ name: 'Pilih LED yang setara',
50
+ text: 'Pilih jenis bohlam Anda saat ini di kalkulator. Nilai LED yang setara akan diberikan secara otomatis.',
51
+ },
52
+ {
53
+ name: 'Atur jam penggunaan',
54
+ text: 'Tentukan rata-rata berapa jam dalam sehari lampu-lampu tersebut menyala.',
55
+ },
56
+ ];
57
+
58
+ const faqSchema: WithContext<FAQPage> = {
59
+ '@context': 'https://schema.org',
60
+ '@type': 'FAQPage',
61
+ mainEntity: faqData.map((item) => ({
62
+ '@type': 'Question',
63
+ name: item.question,
64
+ acceptedAnswer: { '@type': 'Answer', text: item.answer },
65
+ })),
66
+ };
67
+
68
+ const howToSchema: WithContext<HowTo> = {
69
+ '@context': 'https://schema.org',
70
+ '@type': 'HowTo',
71
+ name: title,
72
+ description,
73
+ step: howToData.map((step) => ({
74
+ '@type': 'HowToStep',
75
+ name: step.name,
76
+ text: step.text,
77
+ })),
78
+ };
79
+
80
+ const appSchema: WithContext<SoftwareApplication> = {
81
+ '@context': 'https://schema.org',
82
+ '@type': 'SoftwareApplication',
83
+ name: title,
84
+ description,
85
+ applicationCategory: 'UtilityApplication',
86
+ operatingSystem: 'All',
87
+ offers: { '@type': 'Offer', price: '0', priceCurrency: 'IDR' },
88
+ inLanguage: 'id',
89
+ };
90
+
91
+ export const content: ToolLocaleContent<LedSavingCalculatorUI> = {
92
+ slug,
93
+ title,
94
+ description,
95
+ faqTitle: 'Pertanyaan Umum',
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
+ ],
108
+ howTo: howToData,
109
+ schemas: [faqSchema, howToSchema, appSchema],
110
+ seo: [
111
+ {
112
+ type: 'title',
113
+ text: 'Panduan Hemat dengan LED: Cara Memangkas Tagihan Listrik Anda',
114
+ level: 2,
115
+ },
116
+ {
117
+ type: 'paragraph',
118
+ html: 'Mengganti pencahayaan tradisional ke teknologi <strong>LED (Light Emitting Diode)</strong> adalah salah satu investasi rumah tangga dengan pengembalian tercepat. Setiap watt yang dihemat langsung mengurangi beban biaya listrik bulanan Anda. Bohlam LED 9W memberikan tingkat kecerahan yang sama dengan bohlam pijar 60W dengan <strong>konsumsi energi 85% lebih rendah</strong>.',
119
+ },
120
+ {
121
+ type: 'stats',
122
+ items: [
123
+ { value: '85–90%', label: 'Hemat Energi', icon: 'mdi:lightning-bolt' },
124
+ { value: '25.000j', label: 'Masa Pakai LED', icon: 'mdi:clock-outline' },
125
+ { value: '< 4 bulan', label: 'Balik Modal', icon: 'mdi:calendar-check' },
126
+ ],
127
+ columns: 3,
128
+ },
129
+ {
130
+ type: 'comparative',
131
+ items: [
132
+ {
133
+ title: 'Pencahayaan Pijar (Incandescent)',
134
+ description: 'Teknologi abad ke-20 yang berbasis pada pemanasan filamen. 95% energi terbuang sebagai panas.',
135
+ icon: 'mdi:lightbulb-outline',
136
+ points: ['95% energi terbuang sebagai panas', 'Masa pakai: 1.000 jam', 'Biaya operasional sangat tinggi'],
137
+ },
138
+ {
139
+ title: 'Teknologi LED Modern',
140
+ description: 'Standar efisiensi energi saat ini untuk rumah tangga. Menyala instan dan emisi panas yang minimal.',
141
+ icon: 'mdi:led-outline',
142
+ points: ['85–90% hemat langsung', 'Masa pakai: 25.000–50.000 jam', 'Emisi panas minimal'],
143
+ },
144
+ ],
145
+ columns: 2,
146
+ },
147
+ {
148
+ type: 'title',
149
+ text: 'Fisika di Balik Penghematan',
150
+ level: 3,
151
+ },
152
+ {
153
+ type: 'paragraph',
154
+ html: 'Bohlam pijar bekerja dengan memanaskan filamen tungsten. Hanya 5% energi yang menjadi cahaya. LED mengubah listrik menjadi cahaya melalui semikonduktor dengan efisiensi yang jauh lebih tinggi. <strong>Jangan lihat watt, lihat lumen:</strong> bohlam 60W lama menghasilkan 800 lm; sekarang Anda bisa mendapatkannya dengan LED 8-9W.',
155
+ },
156
+ {
157
+ type: 'diagnostic',
158
+ variant: 'info',
159
+ title: 'Tabel Kesetaraan Cepat',
160
+ icon: 'mdi:table',
161
+ badge: 'Referensi',
162
+ 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
+ },
164
+ {
165
+ type: 'summary',
166
+ title: 'Keuntungan LED Selain Uang',
167
+ items: [
168
+ 'Masa pakai sangat lama: lebih dari 15 tahun dalam penggunaan normal.',
169
+ 'Menyala seketika 100% tanpa waktu tunggu.',
170
+ 'Tanpa emisi panas: mengurangi beban AC di musim panas.',
171
+ 'Tanpa merkuri atau gas beracun, aman bagi lingkungan.',
172
+ 'Kompatibel dengan soket lampu yang ada (E27, E14, GU10, dll.).',
173
+ ],
174
+ },
175
+ ],
176
+ ui: {
177
+ sectionTitle: 'Konfigurasi Rumah',
178
+ labelBulbs: 'Berapa bohlam yang diganti?',
179
+ unitBulbs: 'buah',
180
+ labelType: 'Jenis bohlam saat ini',
181
+ labelHours: 'Lama lampu menyala (jam/hari)',
182
+ labelPrice: 'Harga listrik',
183
+ unitPrice: 'IDR/kWh',
184
+ resultBadge: 'Hitungan hemat real',
185
+ labelAnnual: 'Hemat per tahun',
186
+ labelMonthly: 'Per bulan',
187
+ labelEfficiency: 'Efisiensi',
188
+ labelCo2: 'Pengurangan jejak CO₂',
189
+ unitLess: '% lebih rendah',
190
+ currencySign: 'Rp',
191
+ btnInc60Title: 'Pijar',
192
+ btnInc60Sub: 'Klasik (60W)',
193
+ btnInc40Title: 'Pijar',
194
+ btnInc40Sub: 'Kecil (40W)',
195
+ btnInc100Title: 'Pijar',
196
+ btnInc100Sub: 'Besar (100W)',
197
+ btnHalo50Title: 'Halogen',
198
+ btnHalo50Sub: 'Fokus/Spot (50W)',
199
+ usageNever: 'Hampir tidak pernah',
200
+ usageLow: 'Jarang digunakan',
201
+ usageNormal: 'Penggunaan normal',
202
+ usageModerate: 'Cukup sering',
203
+ usageHeavy: 'Intensif',
204
+ usagePro: 'Profesional',
205
+ usageVeryHeavy: 'Sangat intensif',
206
+ usageAlways: 'Selalu menyala',
207
+ },
208
+ };
@@ -0,0 +1,208 @@
1
+ import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
2
+ import type { ToolLocaleContent } from '../../../types';
3
+ import type { LedSavingCalculatorUI } from '../ui';
4
+
5
+ const slug = 'calcolatore-risparmio-led';
6
+ const title = 'Calcolatore Risparmio LED';
7
+ const description =
8
+ 'Calcola quanti soldi e kWh risparmi sostituendo le vecchie lampadine con i LED. Scopri il tuo risparmio annuo esatto, mensile e la riduzione di CO2.';
9
+
10
+ const faqData = [
11
+ {
12
+ question: 'Quanto risparmia davvero una lampadina LED?',
13
+ answer:
14
+ 'Una lampadina LED risparmia tra l\'80% e il 90% di energia rispetto a una incandescente. Ad esempio, passare da 60W a 9W riduce il costo elettrico di quella lampada al minimo, mantenendo la stessa luminosità.',
15
+ },
16
+ {
17
+ question: 'In quanto tempo si ammortizza il passaggio a LED?',
18
+ answer:
19
+ 'Dato il basso costo attuale dei LED e il grande risparmio, l\'investimento si recupera solitamente in meno di 4 mesi di uso normale. Se le luci restano accese molte ore, il rientro è ancora più veloce.',
20
+ },
21
+ {
22
+ question: 'Cosa succede se metto una lampadina LED di potenza superiore?',
23
+ answer:
24
+ 'I LED generano pochissimo calore, quindi puoi usare lampadine con più lumen in lampade che prima erano limitate dal calore delle incandescenti, rispettando i limiti elettrici dell\'attacco.',
25
+ },
26
+ {
27
+ question: 'Durano davvero quanto scritto sulla scatola?',
28
+ answer:
29
+ 'Un LED di qualità dura dalle 15.000 alle 50.000 ore. Con un uso domestico medio di 4 ore al giorno, una lampadina può durare oltre 15 anni.',
30
+ },
31
+ {
32
+ question: 'Posso usare i LED con un varialuce (Dimmer)?',
33
+ answer:
34
+ 'Solo se la lampadina specifica "Dimmerabile". I LED standard non funzionano bene con i vecchi regolatori e possono sfarfallare.',
35
+ },
36
+ {
37
+ question: 'Devo cambiare tutta la lampada?',
38
+ answer:
39
+ 'Nel 99% dei casi no. Basta sostituire la lampadina con una LED con lo stesso attacco (E27, E14, GU10, ecc.).',
40
+ },
41
+ ];
42
+
43
+ const howToData = [
44
+ {
45
+ name: 'Conta i punti luce',
46
+ text: 'Controlla quante lampadine a incandescenza o alogene hai in casa e annota la loro potenza in watt.',
47
+ },
48
+ {
49
+ name: 'Scegli il LED equivalente',
50
+ text: 'Seleziona il tipo di lampadina attuale nel calcolatore. I valori LED equivalenti verranno assegnati automaticamente.',
51
+ },
52
+ {
53
+ name: 'Imposta le ore di utilizzo',
54
+ text: 'Indica quante ore al giorno restano accese mediamente le lampadine.',
55
+ },
56
+ ];
57
+
58
+ const faqSchema: WithContext<FAQPage> = {
59
+ '@context': 'https://schema.org',
60
+ '@type': 'FAQPage',
61
+ mainEntity: faqData.map((item) => ({
62
+ '@type': 'Question',
63
+ name: item.question,
64
+ acceptedAnswer: { '@type': 'Answer', text: item.answer },
65
+ })),
66
+ };
67
+
68
+ const howToSchema: WithContext<HowTo> = {
69
+ '@context': 'https://schema.org',
70
+ '@type': 'HowTo',
71
+ name: title,
72
+ description,
73
+ step: howToData.map((step) => ({
74
+ '@type': 'HowToStep',
75
+ name: step.name,
76
+ text: step.text,
77
+ })),
78
+ };
79
+
80
+ const appSchema: WithContext<SoftwareApplication> = {
81
+ '@context': 'https://schema.org',
82
+ '@type': 'SoftwareApplication',
83
+ name: title,
84
+ description,
85
+ applicationCategory: 'UtilityApplication',
86
+ operatingSystem: 'All',
87
+ offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
88
+ inLanguage: 'it',
89
+ };
90
+
91
+ export const content: ToolLocaleContent<LedSavingCalculatorUI> = {
92
+ slug,
93
+ title,
94
+ description,
95
+ faqTitle: 'Domande Frequenti',
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
+ ],
108
+ howTo: howToData,
109
+ schemas: [faqSchema, howToSchema, appSchema],
110
+ seo: [
111
+ {
112
+ type: 'title',
113
+ text: 'Guida al Risparmio con i LED: Come Tagliare la Bolletta',
114
+ level: 2,
115
+ },
116
+ {
117
+ type: 'paragraph',
118
+ html: 'Passare all\'illuminazione <strong>LED (Light Emitting Diode)</strong> è uno degli investimenti domestici più rapidi. Ogni watt risparmiato si traduce in un risparmio immediato. Una lampadina LED da 9W offre la stessa luce di una da 60W con un <strong>85% di consumo in meno</strong>.',
119
+ },
120
+ {
121
+ type: 'stats',
122
+ items: [
123
+ { value: '85–90%', label: 'Risparmio Energetico', icon: 'mdi:lightning-bolt' },
124
+ { value: '25.000h', label: 'Vita Utile LED', icon: 'mdi:clock-outline' },
125
+ { value: '< 4 mesi', label: 'Ammortamento', icon: 'mdi:calendar-check' },
126
+ ],
127
+ columns: 3,
128
+ },
129
+ {
130
+ type: 'comparative',
131
+ items: [
132
+ {
133
+ title: 'Lampadina Incandescente',
134
+ description: 'Tecnologia del XX secolo basata sul calore. Il 95% dell\'energia viene sprecata in calore.',
135
+ icon: 'mdi:lightbulb-outline',
136
+ points: ['95% energia sprecata in calore', 'Vita utile: 1.000 ore', 'Costi operativi altissimi'],
137
+ },
138
+ {
139
+ title: 'Tecnologia LED Moderna',
140
+ description: 'Lo standard di efficienza attuale. Accensione istantanea e minima emissione di calore.',
141
+ icon: 'mdi:led-outline',
142
+ points: ['85–90% risparmio diretto', 'Vita utile: 25.000–50.000 ore', 'Pochissimo calore'],
143
+ },
144
+ ],
145
+ columns: 2,
146
+ },
147
+ {
148
+ type: 'title',
149
+ text: 'La Fisica del Risparmio',
150
+ level: 3,
151
+ },
152
+ {
153
+ 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 8–9W LED.',
155
+ },
156
+ {
157
+ type: 'diagnostic',
158
+ variant: 'info',
159
+ title: 'Tabella Equivalenze Rapide',
160
+ icon: 'mdi:table',
161
+ badge: 'Riferimento',
162
+ 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
+ },
164
+ {
165
+ type: 'summary',
166
+ title: 'Vantaggi del LED oltre il denaro',
167
+ items: [
168
+ 'Vita estrema: oltre 15 anni con uso normale.',
169
+ 'Accensione istantanea al 100% della luminosità.',
170
+ 'Antiscottatura: riduce il carico del climatizzatore in estate.',
171
+ 'Ecologici: senza mercurio né gas tossici.',
172
+ 'Compatibili con quasi tutti gli attacchi esistenti.',
173
+ ],
174
+ },
175
+ ],
176
+ ui: {
177
+ sectionTitle: 'Configurazione Casa',
178
+ labelBulbs: 'Lampadine da cambiare',
179
+ unitBulbs: 'unità',
180
+ labelType: 'Tipo lampadina attuale',
181
+ labelHours: 'Ore di luce al giorno',
182
+ labelPrice: 'Prezzo elettricità',
183
+ unitPrice: '€/kWh',
184
+ resultBadge: 'Calcolo risparmio reale',
185
+ labelAnnual: 'Risparmio annuo',
186
+ labelMonthly: 'Mensile',
187
+ labelEfficiency: 'Efficienza',
188
+ labelCo2: 'Riduzione impronta CO₂',
189
+ unitLess: '% in meno',
190
+ currencySign: '€',
191
+ btnInc60Title: 'Incandescente',
192
+ btnInc60Sub: 'Classica (60W)',
193
+ btnInc40Title: 'Incandescente',
194
+ btnInc40Sub: 'Piccola (40W)',
195
+ btnInc100Title: 'Incandescente',
196
+ btnInc100Sub: 'Grande (100W)',
197
+ btnHalo50Title: 'Alogena',
198
+ btnHalo50Sub: 'Faretto (50W)',
199
+ usageNever: 'Quasi mai',
200
+ usageLow: 'Poco uso',
201
+ usageNormal: 'Normale',
202
+ usageModerate: 'Moderato',
203
+ usageHeavy: 'Intenso',
204
+ usagePro: 'Professionale',
205
+ usageVeryHeavy: 'Molto intenso',
206
+ usageAlways: 'Sempre accesa',
207
+ },
208
+ };