@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,121 +1,117 @@
1
- import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
2
- import type { ToolLocaleContent } from '../../../types';
3
- import type { SolarCalculatorUI } from '../ui';
4
-
5
- const slug = 'solar-panel-calculator';
6
- const title = '태양광 패널 각도 계산기';
7
- const description =
8
- '지역 위도에 따른 태양광 패널의 최적 기울기 각도를 계산합니다. 고정식 설치 및 계절별 조정 값을 확인해 보세요.';
9
-
10
- const faqData = [
11
- {
12
- question: '지붕 각도가 이상적이지 않으면 어떻게 되나요?',
13
- answer:
14
- '큰 문제는 아닙니다. 5~10도 정도의 오차로 인한 발전량 손실은 연간 3% 미만입니다. 정확한 각도에 집착하기보다 패널에 그림자가 생기지 않도록 하는 것이 더 중요합니다.',
15
- },
16
- {
17
- question: '최적 각도는 전 세계 어디나 같은가요?',
18
- answer:
19
- '아니요. 위도에 따라 다릅니다. 서울(약 37°N)의 최적 각도는 적도 부근이나 남반구 호주와는 확연히 다릅니다.',
20
- },
21
- {
22
- question: '패널은 어느 방향을 향해야 하나요?',
23
- answer:
24
- '북반구에서는 항상 남쪽(방위각 180°)을 향해야 합니다. 남반구에서는 북쪽을 향해야 합니다.',
25
- },
26
- ];
27
-
28
- const howToData = [
29
- {
30
- name: '위도 입력',
31
- text: '현재 위치의 위도를 입력하거나 내 위치 찾기 버튼을 사용하세요.',
32
- },
33
- {
34
- name: '최적 각도 확인',
35
- text: '고정형 설치 시 연간 최적 각도가 가장 중요한 기준 값입니다.',
36
- },
37
- {
38
- name: '계절별 조정 (선택 사항)',
39
- text: '가변형 거치대를 사용 중이라면 겨울과 여름 각도를 참고하여 발전량을 높이세요.',
40
- },
41
- ];
42
-
43
- const faqSchema: WithContext<FAQPage> = {
44
- '@context': 'https://schema.org',
45
- '@type': 'FAQPage',
46
- mainEntity: faqData.map((item) => ({
47
- '@type': 'Question',
48
- name: item.question,
49
- acceptedAnswer: { '@type': 'Answer', text: item.answer },
50
- })),
51
- };
52
-
53
- const howToSchema: WithContext<HowTo> = {
54
- '@context': 'https://schema.org',
55
- '@type': 'HowTo',
56
- name: title,
1
+ import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
2
+ import type { ToolLocaleContent } from '../../../types';
3
+ import type { SolarCalculatorUI } from '../ui';
4
+ import { bibliography } from '../bibliography';
5
+
6
+ const slug = 'solar-panel-calculator';
7
+ const title = '태양광 패널 각도 계산기';
8
+ const description =
9
+ '지역 위도에 따른 태양광 패널의 최적 기울기 각도를 계산합니다. 고정식 설치 및 계절별 조정 값을 확인해 보세요.';
10
+
11
+ const faqData = [
12
+ {
13
+ question: '지붕 각도가 이상적이지 않으면 어떻게 되나요?',
14
+ answer:
15
+ '큰 문제는 아닙니다. 5~10도 정도의 오차로 인한 발전량 손실은 연간 3% 미만입니다. 정확한 각도에 집착하기보다 패널에 그림자가 생기지 않도록 하는 것이 더 중요합니다.',
16
+ },
17
+ {
18
+ question: '최적 각도는 전 세계 어디나 같은가요?',
19
+ answer:
20
+ '아니요. 위도에 따라 다릅니다. 서울(약 37°N)의 최적 각도는 적도 부근이나 남반구 호주와는 확연히 다릅니다.',
21
+ },
22
+ {
23
+ question: '패널은 어느 방향을 향해야 하나요?',
24
+ answer:
25
+ '북반구에서는 항상 남쪽(방위각 180°)을 향해야 합니다. 남반구에서는 북쪽을 향해야 합니다.',
26
+ },
27
+ ];
28
+
29
+ const howToData = [
30
+ {
31
+ name: '위도 입력',
32
+ text: '현재 위치의 위도를 입력하거나 내 위치 찾기 버튼을 사용하세요.',
33
+ },
34
+ {
35
+ name: '최적 각도 확인',
36
+ text: '고정형 설치 시 연간 최적 각도가 가장 중요한 기준 값입니다.',
37
+ },
38
+ {
39
+ name: '계절별 조정 (선택 사항)',
40
+ text: '가변형 거치대를 사용 중이라면 겨울과 여름 각도를 참고하여 발전량을 높이세요.',
41
+ },
42
+ ];
43
+
44
+ const faqSchema: WithContext<FAQPage> = {
45
+ '@context': 'https://schema.org',
46
+ '@type': 'FAQPage',
47
+ mainEntity: faqData.map((item) => ({
48
+ '@type': 'Question',
49
+ name: item.question,
50
+ acceptedAnswer: { '@type': 'Answer', text: item.answer },
51
+ })),
52
+ };
53
+
54
+ const howToSchema: WithContext<HowTo> = {
55
+ '@context': 'https://schema.org',
56
+ '@type': 'HowTo',
57
+ name: title,
58
+ description,
59
+ step: howToData.map((step) => ({
60
+ '@type': 'HowToStep',
61
+ name: step.name,
62
+ text: step.text,
63
+ })),
64
+ };
65
+
66
+ const appSchema: WithContext<SoftwareApplication> = {
67
+ '@context': 'https://schema.org',
68
+ '@type': 'SoftwareApplication',
69
+ name: title,
70
+ description,
71
+ applicationCategory: 'UtilityApplication',
72
+ operatingSystem: 'All',
73
+ offers: { '@type': 'Offer', price: '0', priceCurrency: 'KRW' },
74
+ inLanguage: 'ko',
75
+ };
76
+
77
+ export const content: ToolLocaleContent<SolarCalculatorUI> = {
78
+ slug,
79
+ title,
57
80
  description,
58
- step: howToData.map((step) => ({
59
- '@type': 'HowToStep',
60
- name: step.name,
61
- text: step.text,
62
- })),
63
- };
64
-
65
- const appSchema: WithContext<SoftwareApplication> = {
66
- '@context': 'https://schema.org',
67
- '@type': 'SoftwareApplication',
68
- name: title,
69
- description,
70
- applicationCategory: 'UtilityApplication',
71
- operatingSystem: 'All',
72
- offers: { '@type': 'Offer', price: '0', priceCurrency: 'KRW' },
73
- inLanguage: 'ko',
74
- };
75
-
76
- export const content: ToolLocaleContent<SolarCalculatorUI> = {
77
- slug,
78
- title,
79
- description,
80
- faqTitle: '자주 묻는 질문',
81
- faq: faqData,
82
- bibliographyTitle: '참고 자료',
83
- bibliography: [
84
- { name: 'PVGIS — 유럽 연합 태양광 도구', url: 'https://re.jrc.ec.europa.eu/pvgis/' },
85
- { name: 'PVWatts 계산기', url: 'https://pvwatts.nrel.gov/' },
86
- ],
87
- howTo: howToData,
88
- schemas: [faqSchema, howToSchema, appSchema],
89
- seo: [
90
- {
91
- type: 'title',
92
- text: '태양광 기울기 설계의 과학',
93
- level: 2,
94
- },
95
- {
96
- type: 'paragraph',
97
- html: '태양광 패널의 효율은 빛이 받는 각도에 달려 있습니다. 패널이 태양과 수직일수록 더 많은 에너지를 생산합니다.',
98
- },
99
- {
100
- type: 'summary',
101
- title: '효율적인 설치 핵심 요약',
102
- items: [
103
- '연간 최적 각도가 기본 설치 지표입니다.',
104
- '±5도 정도의 편차는 발전량에 큰 타격을 주지 않습니다.',
105
- '정확한 각도보다 그림자 방지가 최우선입니다.',
106
- '북반구에서는 항상 정남향으로 설치하세요.',
107
- ],
108
- },
109
- ],
110
- ui: {
111
- labelLatitude: '위도 (Latitude)',
112
- btnLocate: '내 위치 감지',
113
- labelOptimal: '연간 최적 각도',
114
- labelEfficiency: '최대 효율',
115
- labelWinter: '겨울철',
116
- labelSummer: '여름철',
117
- hemisphereNorth: '북반구 — 남쪽 방향 지향',
118
- hemisphereSouth: '남반구 — 북쪽 방향 지향',
119
- geoNotAvailable: '이 브라우저에서는 위치 정보 서비스를 사용할 수 없습니다.',
120
- },
121
- };
81
+ faq: faqData,
82
+ bibliography,
83
+ howTo: howToData,
84
+ schemas: [faqSchema, howToSchema, appSchema],
85
+ seo: [
86
+ {
87
+ type: 'title',
88
+ text: '태양광 기울기 설계의 과학',
89
+ level: 2,
90
+ },
91
+ {
92
+ type: 'paragraph',
93
+ html: '태양광 패널의 효율은 빛이 받는 각도에 달려 있습니다. 패널이 태양과 수직일수록 더 많은 에너지를 생산합니다.',
94
+ },
95
+ {
96
+ type: 'summary',
97
+ title: '효율적인 설치 핵심 요약',
98
+ items: [
99
+ '연간 최적 각도가 기본 설치 지표입니다.',
100
+ '±5도 정도의 편차는 발전량에 큰 타격을 주지 않습니다.',
101
+ '정확한 각도보다 그림자 방지가 최우선입니다.',
102
+ '북반구에서는 항상 정남향으로 설치하세요.',
103
+ ],
104
+ },
105
+ ],
106
+ ui: {
107
+ labelLatitude: '위도 (Latitude)',
108
+ btnLocate: ' 위치 감지',
109
+ labelOptimal: '연간 최적 각도',
110
+ labelEfficiency: '최대 효율',
111
+ labelWinter: '겨울철',
112
+ labelSummer: '여름철',
113
+ hemisphereNorth: '북반구: 남쪽 방향 지향',
114
+ hemisphereSouth: '남반구: 북쪽 방향 지향',
115
+ geoNotAvailable: ' 브라우저에서는 위치 정보 서비스를 사용할 수 없습니다.',
116
+ },
117
+ };
@@ -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 { SolarCalculatorUI } from '../ui';
4
+ import { bibliography } from '../bibliography';
4
5
 
5
6
  const slug = 'zonnepanelen-hellingshoek-calculator';
6
7
  const title = 'Zonnepanelen Hellingshoek Calculator';
@@ -77,12 +78,8 @@ export const content: ToolLocaleContent<SolarCalculatorUI> = {
77
78
  slug,
78
79
  title,
79
80
  description,
80
- faqTitle: 'Veelgestelde Vragen',
81
81
  faq: faqData,
82
- bibliographyTitle: 'Referenties',
83
- bibliography: [
84
- { name: 'PVGIS Tool', url: 'https://re.jrc.ec.europa.eu/pvgis/' },
85
- ],
82
+ bibliography,
86
83
  howTo: howToData,
87
84
  schemas: [faqSchema, howToSchema, appSchema],
88
85
  seo: [
@@ -113,8 +110,8 @@ export const content: ToolLocaleContent<SolarCalculatorUI> = {
113
110
  labelEfficiency: 'Maximale Efficiëntie',
114
111
  labelWinter: 'Winter',
115
112
  labelSummer: 'Zomer',
116
- hemisphereNorth: 'Noordelijk Halfrond Richt op ZUIDEN',
117
- hemisphereSouth: 'Zuidelijk Halfrond Richt op NOORDEN',
113
+ hemisphereNorth: 'Noordelijk Halfrond: Richt op ZUIDEN',
114
+ hemisphereSouth: 'Zuidelijk Halfrond: Richt op NOORDEN',
118
115
  geoNotAvailable: 'Locatiebepaling niet beschikbaar.',
119
116
  },
120
117
  };
@@ -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 { SolarCalculatorUI } from '../ui';
4
+ import { bibliography } from '../bibliography';
4
5
 
5
6
  const slug = 'kalkulator-paneli-slonecznych';
6
7
  const title = 'Kalkulator Nachylenia Paneli Słonecznych';
@@ -21,7 +22,7 @@ const faqData = [
21
22
  {
22
23
  question: 'W którą stronę powinny patrzeć panele?',
23
24
  answer:
24
- 'Na półkuli północnej zawsze na południe (azymut 180°). Na południowej na północ.',
25
+ 'Na półkuli północnej zawsze na południe (azymut 180°). Na południowej: na północ.',
25
26
  },
26
27
  ];
27
28
 
@@ -77,13 +78,8 @@ export const content: ToolLocaleContent<SolarCalculatorUI> = {
77
78
  slug,
78
79
  title,
79
80
  description,
80
- faqTitle: 'Często Zadawane Pytania',
81
81
  faq: faqData,
82
- bibliographyTitle: 'Bibliografia',
83
- bibliography: [
84
- { name: 'PVGIS — Europejskie narzędzie solarne', url: 'https://re.jrc.ec.europa.eu/pvgis/' },
85
- { name: 'PVWatts Calculator', url: 'https://pvwatts.nrel.gov/' },
86
- ],
82
+ bibliography,
87
83
  howTo: howToData,
88
84
  schemas: [faqSchema, howToSchema, appSchema],
89
85
  seo: [
@@ -114,8 +110,8 @@ export const content: ToolLocaleContent<SolarCalculatorUI> = {
114
110
  labelEfficiency: 'Maks. Efektywność',
115
111
  labelWinter: 'Zima',
116
112
  labelSummer: 'Lato',
117
- hemisphereNorth: 'Półkula Północna Kieruj na POŁUDNIE',
118
- hemisphereSouth: 'Półkula Południowa Kieruj na PÓŁNOC',
113
+ hemisphereNorth: 'Półkula Północna: Kieruj na POŁUDNIE',
114
+ hemisphereSouth: 'Półkula Południowa: Kieruj na PÓŁNOC',
119
115
  geoNotAvailable: 'Lokalizacja niedostępna w tej przeglądarce.',
120
116
  },
121
117
  };
@@ -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 { SolarCalculatorUI } from '../ui';
4
+ import { bibliography } from '../bibliography';
4
5
 
5
6
  const slug = 'calculadora-inclinacao-paineis';
6
7
  const title = 'Calculadora de Inclinação de Painéis Solares';
@@ -82,13 +83,8 @@ export const content: ToolLocaleContent<SolarCalculatorUI> = {
82
83
  slug,
83
84
  title,
84
85
  description,
85
- faqTitle: 'Perguntas Frequentes',
86
86
  faq: faqData,
87
- bibliographyTitle: 'Bibliografia',
88
- bibliography: [
89
- { name: 'PVGIS Tool', url: 'https://re.jrc.ec.europa.eu/pvgis/' },
90
- { name: 'PVWatts Calculator', url: 'https://pvwatts.nrel.gov/' },
91
- ],
87
+ bibliography,
92
88
  howTo: howToData,
93
89
  schemas: [faqSchema, howToSchema, appSchema],
94
90
  seo: [
@@ -119,8 +115,8 @@ export const content: ToolLocaleContent<SolarCalculatorUI> = {
119
115
  labelEfficiency: 'Eficiência Máxima',
120
116
  labelWinter: 'Inverno',
121
117
  labelSummer: 'Verão',
122
- hemisphereNorth: 'Hemisfério Norte Orientar a SUL',
123
- hemisphereSouth: 'Hemisfério Sul Orientar a NORTE',
118
+ hemisphereNorth: 'Hemisfério Norte: Orientar a SUL',
119
+ hemisphereSouth: 'Hemisfério Sul: Orientar a NORTE',
124
120
  geoNotAvailable: 'Geolocalização não disponível.',
125
121
  },
126
122
  };
@@ -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 { SolarCalculatorUI } from '../ui';
4
+ import { bibliography } from '../bibliography';
4
5
 
5
6
  const slug = 'solnechnyj-kalkulyator';
6
7
  const title = 'Калькулятор наклона солнечных панелей';
@@ -16,7 +17,7 @@ const faqData = [
16
17
  {
17
18
  question: 'В какую сторону должны смотреть панели?',
18
19
  answer:
19
- 'В Северном полушарии всегда на Юг (азимут 180°). В Южном полушарии на Север.',
20
+ 'В Северном полушарии: всегда на Юг (азимут 180°). В Южном полушарии: на Север.',
20
21
  },
21
22
  ];
22
23
 
@@ -27,7 +28,7 @@ const howToData = [
27
28
  },
28
29
  {
29
30
  name: 'Проверьте угол',
30
- text: 'Оптимальный годовой угол основное значение для фиксированных установок.',
31
+ text: 'Оптимальный годовой угол: основное значение для фиксированных установок.',
31
32
  },
32
33
  ];
33
34
 
@@ -68,12 +69,8 @@ export const content: ToolLocaleContent<SolarCalculatorUI> = {
68
69
  slug,
69
70
  title,
70
71
  description,
71
- faqTitle: 'Часто задаваемые вопросы',
72
72
  faq: faqData,
73
- bibliographyTitle: 'Библиография',
74
- bibliography: [
75
- { name: 'PVGIS Tool — European Commission', url: 'https://re.jrc.ec.europa.eu/pvgis/' },
76
- ],
73
+ bibliography,
77
74
  howTo: howToData,
78
75
  schemas: [faqSchema, howToSchema, appSchema],
79
76
  seo: [
@@ -90,7 +87,7 @@ export const content: ToolLocaleContent<SolarCalculatorUI> = {
90
87
  type: 'summary',
91
88
  title: 'Ключи к эффективной установке',
92
89
  items: [
93
- 'Годовой оптимальный угол главный ориентир.',
90
+ 'Годовой оптимальный угол: главный ориентир.',
94
91
  'Избегайте теней любой ценой.',
95
92
  'Ориентация на Юг в северных широтах.',
96
93
  ],
@@ -103,8 +100,8 @@ export const content: ToolLocaleContent<SolarCalculatorUI> = {
103
100
  labelEfficiency: 'Макс. эффективность',
104
101
  labelWinter: 'Зима',
105
102
  labelSummer: 'Лето',
106
- hemisphereNorth: 'Северное полушарие Ориентир на ЮГ',
107
- hemisphereSouth: 'Южное полушарие Ориентир на СЕВЕР',
103
+ hemisphereNorth: 'Северное полушарие: Ориентир на ЮГ',
104
+ hemisphereSouth: 'Южное полушарие: Ориентир на СЕВЕР',
108
105
  geoNotAvailable: 'Геолокация недоступна в этом браузере.',
109
106
  },
110
107
  };
@@ -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 { SolarCalculatorUI } from '../ui';
4
+ import { bibliography } from '../bibliography';
4
5
 
5
6
  const slug = 'solkalkylator';
6
7
  const title = 'Lutningskalkylator för Solpaneler';
@@ -68,12 +69,8 @@ export const content: ToolLocaleContent<SolarCalculatorUI> = {
68
69
  slug,
69
70
  title,
70
71
  description,
71
- faqTitle: 'Vanliga Frågor',
72
72
  faq: faqData,
73
- bibliographyTitle: 'Referenser',
74
- bibliography: [
75
- { name: 'PVGIS Tool', url: 'https://re.jrc.ec.europa.eu/pvgis/' },
76
- ],
73
+ bibliography,
77
74
  howTo: howToData,
78
75
  schemas: [faqSchema, howToSchema, appSchema],
79
76
  seo: [
@@ -103,8 +100,8 @@ export const content: ToolLocaleContent<SolarCalculatorUI> = {
103
100
  labelEfficiency: 'Maximal Effektivitet',
104
101
  labelWinter: 'Vinter',
105
102
  labelSummer: 'Sommar',
106
- hemisphereNorth: 'Norra Halvklotet Rikta mot SÖDER',
107
- hemisphereSouth: 'Södra Halvklotet Rikta mot NORR',
103
+ hemisphereNorth: 'Norra Halvklotet: Rikta mot SÖDER',
104
+ hemisphereSouth: 'Södra Halvklotet: Rikta mot NORR',
108
105
  geoNotAvailable: 'Positionering är inte tillgänglig i denna webbläsare.',
109
106
  },
110
107
  };
@@ -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 { SolarCalculatorUI } from '../ui';
4
+ import { bibliography } from '../bibliography';
4
5
 
5
6
  const slug = 'gunes-paneli-egim-hesaplama';
6
7
  const title = 'Güneş Paneli Eğim Hesaplayıcı';
@@ -77,12 +78,8 @@ export const content: ToolLocaleContent<SolarCalculatorUI> = {
77
78
  slug,
78
79
  title,
79
80
  description,
80
- faqTitle: 'Sıkça Sorulan Sorular',
81
81
  faq: faqData,
82
- bibliographyTitle: 'Kaynakça',
83
- bibliography: [
84
- { name: 'PVGIS Tool', url: 'https://re.jrc.ec.europa.eu/pvgis/' },
85
- ],
82
+ bibliography,
86
83
  howTo: howToData,
87
84
  schemas: [faqSchema, howToSchema, appSchema],
88
85
  seo: [
@@ -113,8 +110,8 @@ export const content: ToolLocaleContent<SolarCalculatorUI> = {
113
110
  labelEfficiency: 'Maksimum Verim',
114
111
  labelWinter: 'Kış',
115
112
  labelSummer: 'Yaz',
116
- hemisphereNorth: 'Kuzey Yarımküre GÜNEY\'e yöneltin',
117
- hemisphereSouth: 'Güney Yarımküre KUZEY\'e yöneltin',
113
+ hemisphereNorth: 'Kuzey Yarımküre: GÜNEY\'e yöneltin',
114
+ hemisphereSouth: 'Güney Yarımküre: KUZEY\'e yöneltin',
118
115
  geoNotAvailable: 'Konum servisleri kullanılamıyor.',
119
116
  },
120
117
  };