@jjlmoya/utils-nature 1.13.0 → 1.14.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.
- package/package.json +1 -1
- package/src/pages/[locale]/[slug].astro +32 -14
- package/src/tests/locale_completeness.test.ts +1 -31
- package/src/tests/shared-test-helpers.ts +56 -0
- package/src/tests/tool_exports.test.ts +34 -0
- package/src/tool/cricketThermometer/bibliography.ts +12 -0
- package/src/tool/cricketThermometer/i18n/de.ts +2 -14
- package/src/tool/cricketThermometer/i18n/en.ts +2 -14
- package/src/tool/cricketThermometer/i18n/es.ts +2 -14
- package/src/tool/cricketThermometer/i18n/fr.ts +2 -14
- package/src/tool/cricketThermometer/i18n/id.ts +2 -14
- package/src/tool/cricketThermometer/i18n/it.ts +2 -14
- package/src/tool/cricketThermometer/i18n/ja.ts +2 -14
- package/src/tool/cricketThermometer/i18n/ko.ts +2 -14
- package/src/tool/cricketThermometer/i18n/nl.ts +2 -14
- package/src/tool/cricketThermometer/i18n/pl.ts +2 -14
- package/src/tool/cricketThermometer/i18n/pt.ts +2 -14
- package/src/tool/cricketThermometer/i18n/ru.ts +2 -14
- package/src/tool/cricketThermometer/i18n/sv.ts +2 -14
- package/src/tool/cricketThermometer/i18n/tr.ts +2 -14
- package/src/tool/cricketThermometer/i18n/zh.ts +2 -14
- package/src/tool/cricketThermometer/seo.astro +1 -1
- package/src/tool/cricketThermometer/ui.ts +0 -2
- package/src/tool/digitalCarbon/bibliography.ts +8 -0
- package/src/tool/digitalCarbon/i18n/de.ts +2 -8
- package/src/tool/digitalCarbon/i18n/en.ts +2 -8
- package/src/tool/digitalCarbon/i18n/es.ts +2 -8
- package/src/tool/digitalCarbon/i18n/fr.ts +2 -8
- package/src/tool/digitalCarbon/i18n/id.ts +2 -8
- package/src/tool/digitalCarbon/i18n/it.ts +2 -8
- package/src/tool/digitalCarbon/i18n/ja.ts +2 -8
- package/src/tool/digitalCarbon/i18n/ko.ts +2 -8
- package/src/tool/digitalCarbon/i18n/nl.ts +2 -8
- package/src/tool/digitalCarbon/i18n/pl.ts +2 -8
- package/src/tool/digitalCarbon/i18n/pt.ts +2 -8
- package/src/tool/digitalCarbon/i18n/ru.ts +2 -8
- package/src/tool/digitalCarbon/i18n/sv.ts +2 -8
- package/src/tool/digitalCarbon/i18n/tr.ts +2 -8
- package/src/tool/digitalCarbon/i18n/zh.ts +2 -8
- package/src/tool/digitalCarbon/seo.astro +1 -1
- package/src/tool/rainHarvester/bibliography.ts +20 -0
- package/src/tool/rainHarvester/i18n/de.ts +2 -20
- package/src/tool/rainHarvester/i18n/en.ts +2 -20
- package/src/tool/rainHarvester/i18n/es.ts +2 -20
- package/src/tool/rainHarvester/i18n/fr.ts +2 -20
- package/src/tool/rainHarvester/i18n/id.ts +2 -20
- package/src/tool/rainHarvester/i18n/it.ts +2 -20
- package/src/tool/rainHarvester/i18n/ja.ts +2 -20
- package/src/tool/rainHarvester/i18n/ko.ts +2 -20
- package/src/tool/rainHarvester/i18n/nl.ts +2 -20
- package/src/tool/rainHarvester/i18n/pl.ts +2 -20
- package/src/tool/rainHarvester/i18n/pt.ts +2 -20
- package/src/tool/rainHarvester/i18n/ru.ts +2 -20
- package/src/tool/rainHarvester/i18n/sv.ts +2 -20
- package/src/tool/rainHarvester/i18n/tr.ts +2 -20
- package/src/tool/rainHarvester/i18n/zh.ts +2 -20
- package/src/tool/rainHarvester/seo.astro +1 -1
- package/src/tool/seedCalculator/bibliography.ts +16 -0
- package/src/tool/seedCalculator/i18n/de.ts +2 -18
- package/src/tool/seedCalculator/i18n/en.ts +2 -18
- package/src/tool/seedCalculator/i18n/es.ts +2 -18
- package/src/tool/seedCalculator/i18n/fr.ts +2 -18
- package/src/tool/seedCalculator/i18n/id.ts +2 -18
- package/src/tool/seedCalculator/i18n/it.ts +2 -18
- package/src/tool/seedCalculator/i18n/ja.ts +2 -18
- package/src/tool/seedCalculator/i18n/ko.ts +2 -18
- package/src/tool/seedCalculator/i18n/nl.ts +2 -18
- package/src/tool/seedCalculator/i18n/pl.ts +2 -18
- package/src/tool/seedCalculator/i18n/pt.ts +2 -18
- package/src/tool/seedCalculator/i18n/ru.ts +2 -18
- package/src/tool/seedCalculator/i18n/sv.ts +2 -18
- package/src/tool/seedCalculator/i18n/tr.ts +2 -18
- package/src/tool/seedCalculator/i18n/zh.ts +2 -18
- package/src/tool/seedCalculator/seo.astro +8 -2
- package/src/tool/seedCalculator/ui.ts +0 -2
- package/src/types.ts +0 -2
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowToThing, SoftwareApplication } from 'schema-dts';
|
|
2
|
+
import { bibliography } from '../bibliography';
|
|
2
3
|
import type { RainHarvesterLocaleContent } from '../index';
|
|
3
4
|
|
|
4
5
|
const slug = 'rainwater-calculator';
|
|
@@ -159,27 +160,8 @@ export const content: RainHarvesterLocaleContent = {
|
|
|
159
160
|
html: 'The most common mistake is buying a tank based only on budget. If it is too small, you will waste thousands of liters due to overflow. If it is too large, you will spend money unnecessarily. A general rule is to have capacity to store <strong>3 months</strong> of average rainfall in your area, allowing you to bridge dry seasons.',
|
|
160
161
|
},
|
|
161
162
|
],
|
|
162
|
-
faqTitle: 'Frequently Asked Questions',
|
|
163
163
|
faq: faqData,
|
|
164
164
|
howTo: howToData,
|
|
165
|
-
|
|
166
|
-
bibliography: [
|
|
167
|
-
{
|
|
168
|
-
name: 'FAO - Rainwater Harvesting and Storage',
|
|
169
|
-
url: 'https://www.fao.org/3/a1348s/a1348s.pdf',
|
|
170
|
-
},
|
|
171
|
-
{
|
|
172
|
-
name: 'Texas A&M AgriLife Extension - Rainwater Harvesting',
|
|
173
|
-
url: 'https://rainwaterharvesting.tamu.edu/',
|
|
174
|
-
},
|
|
175
|
-
{
|
|
176
|
-
name: 'Brad Lancaster - Rainwater Harvesting for Drylands',
|
|
177
|
-
url: 'https://www.harvestingrainwater.com/',
|
|
178
|
-
},
|
|
179
|
-
{
|
|
180
|
-
name: 'European Environment Agency - Water Resources',
|
|
181
|
-
url: 'https://www.eea.europa.eu/en/topics/in-depth/water',
|
|
182
|
-
},
|
|
183
|
-
],
|
|
165
|
+
bibliography,
|
|
184
166
|
schemas: [faqSchema, howToSchema, appSchema],
|
|
185
167
|
};
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowToThing, SoftwareApplication } from 'schema-dts';
|
|
2
|
+
import { bibliography } from '../bibliography';
|
|
2
3
|
import type { RainHarvesterLocaleContent } from '../index';
|
|
3
4
|
|
|
4
5
|
const slug = 'calculadora-agua-lluvia';
|
|
@@ -159,27 +160,8 @@ export const content: RainHarvesterLocaleContent = {
|
|
|
159
160
|
html: 'El error más común es comprar un tanque basándose solo en el presupuesto. Si es muy pequeño, desperdiciarás miles de litros por desbordamiento. Si es muy grande, gastarás dinero innecesariamente. Una regla general es tener capacidad para almacenar el agua de <strong>3 meses</strong> de lluvia promedio en tu zona, permitiéndote superar las estaciones secas.',
|
|
160
161
|
},
|
|
161
162
|
],
|
|
162
|
-
faqTitle: 'Preguntas Frecuentes',
|
|
163
163
|
faq: faqData,
|
|
164
|
-
|
|
165
|
-
bibliography: [
|
|
166
|
-
{
|
|
167
|
-
name: 'FAO - Captación y almacenamiento de agua de lluvia',
|
|
168
|
-
url: 'https://www.fao.org/3/a1348s/a1348s.pdf',
|
|
169
|
-
},
|
|
170
|
-
{
|
|
171
|
-
name: 'Texas A&M AgriLife Extension - Rainwater Harvesting',
|
|
172
|
-
url: 'https://rainwaterharvesting.tamu.edu/',
|
|
173
|
-
},
|
|
174
|
-
{
|
|
175
|
-
name: 'Brad Lancaster - Rainwater Harvesting for Drylands',
|
|
176
|
-
url: 'https://www.harvestingrainwater.com/',
|
|
177
|
-
},
|
|
178
|
-
{
|
|
179
|
-
name: 'European Environment Agency - Water Resources',
|
|
180
|
-
url: 'https://www.eea.europa.eu/en/topics/in-depth/water',
|
|
181
|
-
},
|
|
182
|
-
],
|
|
164
|
+
bibliography,
|
|
183
165
|
howTo: howToData,
|
|
184
166
|
schemas: [faqSchema, howToSchema, appSchema],
|
|
185
167
|
};
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowToThing, SoftwareApplication } from 'schema-dts';
|
|
2
|
+
import { bibliography } from '../bibliography';
|
|
2
3
|
import type { RainHarvesterLocaleContent } from '../index';
|
|
3
4
|
|
|
4
5
|
const slug = 'calculateur-eau-pluie';
|
|
@@ -159,27 +160,8 @@ export const content: RainHarvesterLocaleContent = {
|
|
|
159
160
|
html: 'L\'erreur la plus courante est d\'acheter un réservoir en se basant uniquement sur le budget. S\'il est trop petit, vous perdrez des milliers de litres par débordement. S\'il est trop grand, vous dépenserez de l\'argent inutilement. Une règle générale est d\'avoir une capacité de stockage pour <strong>3 mois</strong> de précipitations moyennes dans votre région, vous permettant de traverser les saisons sèches.',
|
|
160
161
|
},
|
|
161
162
|
],
|
|
162
|
-
faqTitle: 'Questions Fréquemment Posées',
|
|
163
163
|
faq: faqData,
|
|
164
164
|
howTo: howToData,
|
|
165
|
-
|
|
166
|
-
bibliography: [
|
|
167
|
-
{
|
|
168
|
-
name: 'FAO - Collecte et stockage de l\'eau de pluie',
|
|
169
|
-
url: 'https://www.fao.org/3/a1348s/a1348s.pdf',
|
|
170
|
-
},
|
|
171
|
-
{
|
|
172
|
-
name: 'Texas A&M AgriLife Extension - Rainwater Harvesting',
|
|
173
|
-
url: 'https://rainwaterharvesting.tamu.edu/',
|
|
174
|
-
},
|
|
175
|
-
{
|
|
176
|
-
name: 'Brad Lancaster - Rainwater Harvesting for Drylands',
|
|
177
|
-
url: 'https://www.harvestingrainwater.com/',
|
|
178
|
-
},
|
|
179
|
-
{
|
|
180
|
-
name: 'European Environment Agency - Water Resources',
|
|
181
|
-
url: 'https://www.eea.europa.eu/en/topics/in-depth/water',
|
|
182
|
-
},
|
|
183
|
-
],
|
|
165
|
+
bibliography,
|
|
184
166
|
schemas: [faqSchema, howToSchema, appSchema],
|
|
185
167
|
};
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowToThing, SoftwareApplication } from 'schema-dts';
|
|
2
|
+
import { bibliography } from '../bibliography';
|
|
2
3
|
import type { RainHarvesterLocaleContent } from '../index';
|
|
3
4
|
|
|
4
5
|
const slug = 'kalkulator-air-hujan';
|
|
@@ -159,27 +160,8 @@ export const content: RainHarvesterLocaleContent = {
|
|
|
159
160
|
html: 'Kesalahan paling umum adalah membeli tangki hanya berdasarkan anggaran. Jika terlalu kecil, Anda akan membuang ribuan liter karena meluap. Jika terlalu besar, Anda akan menghabiskan uang secara tidak perlu. Aturan umumnya adalah memiliki kapasitas untuk menyimpan <strong>3 bulan</strong> rata-rata curah hujan di daerah Anda, yang memungkinkan Anda menjembatani musim kemarau.',
|
|
160
161
|
},
|
|
161
162
|
],
|
|
162
|
-
faqTitle: 'Pertanyaan yang Sering Diajukan',
|
|
163
163
|
faq: faqData,
|
|
164
164
|
howTo: howToData,
|
|
165
|
-
|
|
166
|
-
bibliography: [
|
|
167
|
-
{
|
|
168
|
-
name: 'FAO - Rainwater Harvesting and Storage',
|
|
169
|
-
url: 'https://www.fao.org/3/a1348s/a1348s.pdf',
|
|
170
|
-
},
|
|
171
|
-
{
|
|
172
|
-
name: 'Texas A&M AgriLife Extension - Rainwater Harvesting',
|
|
173
|
-
url: 'https://rainwaterharvesting.tamu.edu/',
|
|
174
|
-
},
|
|
175
|
-
{
|
|
176
|
-
name: 'Brad Lancaster - Rainwater Harvesting for Drylands',
|
|
177
|
-
url: 'https://www.harvestingrainwater.com/',
|
|
178
|
-
},
|
|
179
|
-
{
|
|
180
|
-
name: 'European Environment Agency - Water Resources',
|
|
181
|
-
url: 'https://www.eea.europa.eu/en/topics/in-depth/water',
|
|
182
|
-
},
|
|
183
|
-
],
|
|
165
|
+
bibliography,
|
|
184
166
|
schemas: [faqSchema, howToSchema, appSchema],
|
|
185
167
|
};
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowToThing, SoftwareApplication } from 'schema-dts';
|
|
2
|
+
import { bibliography } from '../bibliography';
|
|
2
3
|
import type { RainHarvesterLocaleContent } from '../index';
|
|
3
4
|
|
|
4
5
|
const slug = 'calcolatore-acqua-piovana';
|
|
@@ -159,27 +160,8 @@ export const content: RainHarvesterLocaleContent = {
|
|
|
159
160
|
html: 'L\'errore più comune è acquistare un serbatoio basandosi solo sul budget. Se è troppo piccolo, sprecherai migliaia di litri a causa del troppo pieno. Se è troppo grande, spenderai soldi inutilmente. Una regola generale è di avere una capacità per conservare <strong>3 mesi</strong> di piovosità media nella tua zona, permettendoti di superare le stagioni secche.',
|
|
160
161
|
},
|
|
161
162
|
],
|
|
162
|
-
faqTitle: 'Domande Frequenti',
|
|
163
163
|
faq: faqData,
|
|
164
164
|
howTo: howToData,
|
|
165
|
-
|
|
166
|
-
bibliography: [
|
|
167
|
-
{
|
|
168
|
-
name: 'FAO - Rainwater Harvesting and Storage',
|
|
169
|
-
url: 'https://www.fao.org/3/a1348s/a1348s.pdf',
|
|
170
|
-
},
|
|
171
|
-
{
|
|
172
|
-
name: 'Texas A&M AgriLife Extension - Rainwater Harvesting',
|
|
173
|
-
url: 'https://rainwaterharvesting.tamu.edu/',
|
|
174
|
-
},
|
|
175
|
-
{
|
|
176
|
-
name: 'Brad Lancaster - Rainwater Harvesting for Drylands',
|
|
177
|
-
url: 'https://www.harvestingrainwater.com/',
|
|
178
|
-
},
|
|
179
|
-
{
|
|
180
|
-
name: 'European Environment Agency - Water Resources',
|
|
181
|
-
url: 'https://www.eea.europa.eu/en/topics/in-depth/water',
|
|
182
|
-
},
|
|
183
|
-
],
|
|
165
|
+
bibliography,
|
|
184
166
|
schemas: [faqSchema, howToSchema, appSchema],
|
|
185
167
|
};
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowToThing, SoftwareApplication } from 'schema-dts';
|
|
2
|
+
import { bibliography } from '../bibliography';
|
|
2
3
|
import type { RainHarvesterLocaleContent } from '../index';
|
|
3
4
|
|
|
4
5
|
const slug = 'rainwater-calculator';
|
|
@@ -159,27 +160,8 @@ export const content: RainHarvesterLocaleContent = {
|
|
|
159
160
|
html: '最も多い間違いは、予算だけでタンクを購入することです。小さすぎると大雨の際に溢れて無駄になり、大きすぎると不必要なコストがかかります。一般的なルールは、乾季を乗り切るために地域の平均降水量の<strong>3ヶ月分</strong>を貯蔵できる容量を持つことです。',
|
|
160
161
|
},
|
|
161
162
|
],
|
|
162
|
-
faqTitle: 'よくある質問',
|
|
163
163
|
faq: faqData,
|
|
164
164
|
howTo: howToData,
|
|
165
|
-
|
|
166
|
-
bibliography: [
|
|
167
|
-
{
|
|
168
|
-
name: 'FAO - Rainwater Harvesting and Storage',
|
|
169
|
-
url: 'https://www.fao.org/3/a1348s/a1348s.pdf',
|
|
170
|
-
},
|
|
171
|
-
{
|
|
172
|
-
name: 'Texas A&M AgriLife Extension - Rainwater Harvesting',
|
|
173
|
-
url: 'https://rainwaterharvesting.tamu.edu/',
|
|
174
|
-
},
|
|
175
|
-
{
|
|
176
|
-
name: 'Brad Lancaster - Rainwater Harvesting for Drylands',
|
|
177
|
-
url: 'https://www.harvestingrainwater.com/',
|
|
178
|
-
},
|
|
179
|
-
{
|
|
180
|
-
name: 'European Environment Agency - Water Resources',
|
|
181
|
-
url: 'https://www.eea.europa.eu/en/topics/in-depth/water',
|
|
182
|
-
},
|
|
183
|
-
],
|
|
165
|
+
bibliography,
|
|
184
166
|
schemas: [faqSchema, howToSchema, appSchema],
|
|
185
167
|
};
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowToThing, SoftwareApplication } from 'schema-dts';
|
|
2
|
+
import { bibliography } from '../bibliography';
|
|
2
3
|
import type { RainHarvesterLocaleContent } from '../index';
|
|
3
4
|
|
|
4
5
|
const slug = 'rainwater-calculator';
|
|
@@ -159,27 +160,8 @@ export const content: RainHarvesterLocaleContent = {
|
|
|
159
160
|
html: '가장 흔한 실수는 예산에만 맞춰 탱크를 사는 것입니다. 너무 작으면 넘쳐서 물을 낭비하게 되고, 너무 크면 불필요한 비용을 쓰게 됩니다. 일반적인 규칙은 해당 지역 평균 강수량의 <strong>3개월분</strong>을 저장할 수 있는 용량을 확보하여 건기를 대비하는 것입니다.',
|
|
160
161
|
},
|
|
161
162
|
],
|
|
162
|
-
faqTitle: '자주 묻는 질문',
|
|
163
163
|
faq: faqData,
|
|
164
164
|
howTo: howToData,
|
|
165
|
-
|
|
166
|
-
bibliography: [
|
|
167
|
-
{
|
|
168
|
-
name: 'FAO - Rainwater Harvesting and Storage',
|
|
169
|
-
url: 'https://www.fao.org/3/a1348s/a1348s.pdf',
|
|
170
|
-
},
|
|
171
|
-
{
|
|
172
|
-
name: 'Texas A&M AgriLife Extension - Rainwater Harvesting',
|
|
173
|
-
url: 'https://rainwaterharvesting.tamu.edu/',
|
|
174
|
-
},
|
|
175
|
-
{
|
|
176
|
-
name: 'Brad Lancaster - Rainwater Harvesting for Drylands',
|
|
177
|
-
url: 'https://www.harvestingrainwater.com/',
|
|
178
|
-
},
|
|
179
|
-
{
|
|
180
|
-
name: 'European Environment Agency - Water Resources',
|
|
181
|
-
url: 'https://www.eea.europa.eu/en/topics/in-depth/water',
|
|
182
|
-
},
|
|
183
|
-
],
|
|
165
|
+
bibliography,
|
|
184
166
|
schemas: [faqSchema, howToSchema, appSchema],
|
|
185
167
|
};
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowToThing, SoftwareApplication } from 'schema-dts';
|
|
2
|
+
import { bibliography } from '../bibliography';
|
|
2
3
|
import type { RainHarvesterLocaleContent } from '../index';
|
|
3
4
|
|
|
4
5
|
const slug = 'regenwater-opvang-calculator';
|
|
@@ -159,27 +160,8 @@ export const content: RainHarvesterLocaleContent = {
|
|
|
159
160
|
html: 'De meest gemaakte fout is het kopen van een tank die alleen is gebaseerd op het budget. Als hij te klein is, verspilt u duizenden liters door overloop. Als hij te groot is, geeft u onnodig geld uit. Een algemene regel is om capaciteit te hebben om <strong>3 maanden</strong> aan gemiddelde neerslag in uw regio op te slaan, zodat u drogere periodes kunt overbruggen.',
|
|
160
161
|
},
|
|
161
162
|
],
|
|
162
|
-
faqTitle: 'Veelgestelde vragen',
|
|
163
163
|
faq: faqData,
|
|
164
164
|
howTo: howToData,
|
|
165
|
-
|
|
166
|
-
bibliography: [
|
|
167
|
-
{
|
|
168
|
-
name: 'FAO - Rainwater Harvesting and Storage',
|
|
169
|
-
url: 'https://www.fao.org/3/a1348s/a1348s.pdf',
|
|
170
|
-
},
|
|
171
|
-
{
|
|
172
|
-
name: 'Texas A&M AgriLife Extension - Rainwater Harvesting',
|
|
173
|
-
url: 'https://rainwaterharvesting.tamu.edu/',
|
|
174
|
-
},
|
|
175
|
-
{
|
|
176
|
-
name: 'Brad Lancaster - Rainwater Harvesting for Drylands',
|
|
177
|
-
url: 'https://www.harvestingrainwater.com/',
|
|
178
|
-
},
|
|
179
|
-
{
|
|
180
|
-
name: 'European Environment Agency - Water Resources',
|
|
181
|
-
url: 'https://www.eea.europa.eu/en/topics/in-depth/water',
|
|
182
|
-
},
|
|
183
|
-
],
|
|
165
|
+
bibliography,
|
|
184
166
|
schemas: [faqSchema, howToSchema, appSchema],
|
|
185
167
|
};
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowToThing, SoftwareApplication } from 'schema-dts';
|
|
2
|
+
import { bibliography } from '../bibliography';
|
|
2
3
|
import type { RainHarvesterLocaleContent } from '../index';
|
|
3
4
|
|
|
4
5
|
const slug = 'kalkulator-wody-deszczowej';
|
|
@@ -159,27 +160,8 @@ export const content: RainHarvesterLocaleContent = {
|
|
|
159
160
|
html: 'Najczęstszym błędem jest zakup zbiornika wyłącznie w oparciu o budżet. Jeśli będzie za mały, zmarnujesz tysiące litrów przez przelew. Jeśli za duży, wydasz pieniądze niepotrzebnie. Przyjmuje się, że optymalna pojemność powinna pozwalać na zmagazynowanie średnich opadów z <strong>3 miesięcy</strong>, co pozwala przetrwać okresy bezdeszczowe.',
|
|
160
161
|
},
|
|
161
162
|
],
|
|
162
|
-
faqTitle: 'Często zadawane pytania',
|
|
163
163
|
faq: faqData,
|
|
164
164
|
howTo: howToData,
|
|
165
|
-
|
|
166
|
-
bibliography: [
|
|
167
|
-
{
|
|
168
|
-
name: 'FAO - Rainwater Harvesting and Storage',
|
|
169
|
-
url: 'https://www.fao.org/3/a1348s/a1348s.pdf',
|
|
170
|
-
},
|
|
171
|
-
{
|
|
172
|
-
name: 'Texas A&M AgriLife Extension - Rainwater Harvesting',
|
|
173
|
-
url: 'https://rainwaterharvesting.tamu.edu/',
|
|
174
|
-
},
|
|
175
|
-
{
|
|
176
|
-
name: 'Brad Lancaster - Rainwater Harvesting for Drylands',
|
|
177
|
-
url: 'https://www.harvestingrainwater.com/',
|
|
178
|
-
},
|
|
179
|
-
{
|
|
180
|
-
name: 'European Environment Agency - Water Resources',
|
|
181
|
-
url: 'https://www.eea.europa.eu/en/topics/in-depth/water',
|
|
182
|
-
},
|
|
183
|
-
],
|
|
165
|
+
bibliography,
|
|
184
166
|
schemas: [faqSchema, howToSchema, appSchema],
|
|
185
167
|
};
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowToThing, SoftwareApplication } from 'schema-dts';
|
|
2
|
+
import { bibliography } from '../bibliography';
|
|
2
3
|
import type { RainHarvesterLocaleContent } from '../index';
|
|
3
4
|
|
|
4
5
|
const slug = 'calculadora-agua-da-chuva';
|
|
@@ -159,27 +160,8 @@ export const content: RainHarvesterLocaleContent = {
|
|
|
159
160
|
html: 'O erro mais comum é comprar um tanque baseando-se apenas no orçamento. Se for demasiado pequeno, desperdiçará milhares de litros devido ao transbordo. Se for demasiado grande, gastará dinheiro desnecessariamente. Uma regra geral é ter capacidade para armazenar <strong>3 meses</strong> da pluviosidade média da sua zona, o que lhe permite atravessar as estações secas.',
|
|
160
161
|
},
|
|
161
162
|
],
|
|
162
|
-
faqTitle: 'Perguntas Frequentes',
|
|
163
163
|
faq: faqData,
|
|
164
164
|
howTo: howToData,
|
|
165
|
-
|
|
166
|
-
bibliography: [
|
|
167
|
-
{
|
|
168
|
-
name: 'FAO - Rainwater Harvesting and Storage',
|
|
169
|
-
url: 'https://www.fao.org/3/a1348s/a1348s.pdf',
|
|
170
|
-
},
|
|
171
|
-
{
|
|
172
|
-
name: 'Texas A&M AgriLife Extension - Rainwater Harvesting',
|
|
173
|
-
url: 'https://rainwaterharvesting.tamu.edu/',
|
|
174
|
-
},
|
|
175
|
-
{
|
|
176
|
-
name: 'Brad Lancaster - Rainwater Harvesting for Drylands',
|
|
177
|
-
url: 'https://www.harvestingrainwater.com/',
|
|
178
|
-
},
|
|
179
|
-
{
|
|
180
|
-
name: 'European Environment Agency - Water Resources',
|
|
181
|
-
url: 'https://www.eea.europa.eu/en/topics/in-depth/water',
|
|
182
|
-
},
|
|
183
|
-
],
|
|
165
|
+
bibliography,
|
|
184
166
|
schemas: [faqSchema, howToSchema, appSchema],
|
|
185
167
|
};
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowToThing, SoftwareApplication } from 'schema-dts';
|
|
2
|
+
import { bibliography } from '../bibliography';
|
|
2
3
|
import type { RainHarvesterLocaleContent } from '../index';
|
|
3
4
|
|
|
4
5
|
const slug = 'kalkulyator-dozhdevoy-vody';
|
|
@@ -159,27 +160,8 @@ export const content: RainHarvesterLocaleContent = {
|
|
|
159
160
|
html: 'Самая распространенная ошибка — покупка бака, исходя только из бюджета. Если он слишком мал, вы будете терять тысячи литров из-за перелива. Если он слишком велик, вы потратите деньги зря. Общее правило — иметь емкость для хранения среднего количества осадков за <strong>3 месяца</strong> в вашем районе, что позволит вам пережить засушливые сезоны.',
|
|
160
161
|
},
|
|
161
162
|
],
|
|
162
|
-
faqTitle: 'Часто задаваемые вопросы',
|
|
163
163
|
faq: faqData,
|
|
164
164
|
howTo: howToData,
|
|
165
|
-
|
|
166
|
-
bibliography: [
|
|
167
|
-
{
|
|
168
|
-
name: 'FAO - Rainwater Harvesting and Storage',
|
|
169
|
-
url: 'https://www.fao.org/3/a1348s/a1348s.pdf',
|
|
170
|
-
},
|
|
171
|
-
{
|
|
172
|
-
name: 'Texas A&M AgriLife Extension - Rainwater Harvesting',
|
|
173
|
-
url: 'https://rainwaterharvesting.tamu.edu/',
|
|
174
|
-
},
|
|
175
|
-
{
|
|
176
|
-
name: 'Brad Lancaster - Rainwater Harvesting for Drylands',
|
|
177
|
-
url: 'https://www.harvestingrainwater.com/',
|
|
178
|
-
},
|
|
179
|
-
{
|
|
180
|
-
name: 'European Environment Agency - Water Resources',
|
|
181
|
-
url: 'https://www.eea.europa.eu/en/topics/in-depth/water',
|
|
182
|
-
},
|
|
183
|
-
],
|
|
165
|
+
bibliography,
|
|
184
166
|
schemas: [faqSchema, howToSchema, appSchema],
|
|
185
167
|
};
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowToThing, SoftwareApplication } from 'schema-dts';
|
|
2
|
+
import { bibliography } from '../bibliography';
|
|
2
3
|
import type { RainHarvesterLocaleContent } from '../index';
|
|
3
4
|
|
|
4
5
|
const slug = 'regnvatten-kalkylator';
|
|
@@ -159,27 +160,8 @@ export const content: RainHarvesterLocaleContent = {
|
|
|
159
160
|
html: 'Det vanligaste misstaget är att köpa en tank enbart baserat på budget. Om den är för liten kommer du att slösa bort tusentals liter på grund av överfyllnad. Om den är för stor kommer du att spendera pengar i onödan. En allmän regel är att ha kapacitet att lagra <strong>3 månader</strong> av genomsnittlig nederbörd i ditt område, vilket gör att du kan överbrygga torrperioder.',
|
|
160
161
|
},
|
|
161
162
|
],
|
|
162
|
-
faqTitle: 'Vanliga frågor',
|
|
163
163
|
faq: faqData,
|
|
164
164
|
howTo: howToData,
|
|
165
|
-
|
|
166
|
-
bibliography: [
|
|
167
|
-
{
|
|
168
|
-
name: 'FAO - Rainwater Harvesting and Storage',
|
|
169
|
-
url: 'https://www.fao.org/3/a1348s/a1348s.pdf',
|
|
170
|
-
},
|
|
171
|
-
{
|
|
172
|
-
name: 'Texas A&M AgriLife Extension - Rainwater Harvesting',
|
|
173
|
-
url: 'https://rainwaterharvesting.tamu.edu/',
|
|
174
|
-
},
|
|
175
|
-
{
|
|
176
|
-
name: 'Brad Lancaster - Rainwater Harvesting for Drylands',
|
|
177
|
-
url: 'https://www.harvestingrainwater.com/',
|
|
178
|
-
},
|
|
179
|
-
{
|
|
180
|
-
name: 'European Environment Agency - Water Resources',
|
|
181
|
-
url: 'https://www.eea.europa.eu/en/topics/in-depth/water',
|
|
182
|
-
},
|
|
183
|
-
],
|
|
165
|
+
bibliography,
|
|
184
166
|
schemas: [faqSchema, howToSchema, appSchema],
|
|
185
167
|
};
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowToThing, SoftwareApplication } from 'schema-dts';
|
|
2
|
+
import { bibliography } from '../bibliography';
|
|
2
3
|
import type { RainHarvesterLocaleContent } from '../index';
|
|
3
4
|
|
|
4
5
|
const slug = 'yagmur-suyu-hesaplayici';
|
|
@@ -159,27 +160,8 @@ export const content: RainHarvesterLocaleContent = {
|
|
|
159
160
|
html: 'En yaygın hata, sadece bütçeye göre tank almaktır. Çok küçükse, taşma nedeniyle binlerce litreyi boşa harcarsınız. Çok büyükse, gereksiz yere para harcarsınız. Genel kural, bölgenizdeki ortalama yağışın <strong>3 aylık</strong> miktarını depolayacak kapasiteye sahip olmaktır; bu da kurak mevsimleri atlatmanızı sağlar.',
|
|
160
161
|
},
|
|
161
162
|
],
|
|
162
|
-
faqTitle: 'Sıkça Sorulan Sorular',
|
|
163
163
|
faq: faqData,
|
|
164
164
|
howTo: howToData,
|
|
165
|
-
|
|
166
|
-
bibliography: [
|
|
167
|
-
{
|
|
168
|
-
name: 'FAO - Rainwater Harvesting and Storage',
|
|
169
|
-
url: 'https://www.fao.org/3/a1348s/a1348s.pdf',
|
|
170
|
-
},
|
|
171
|
-
{
|
|
172
|
-
name: 'Texas A&M AgriLife Extension - Rainwater Harvesting',
|
|
173
|
-
url: 'https://rainwaterharvesting.tamu.edu/',
|
|
174
|
-
},
|
|
175
|
-
{
|
|
176
|
-
name: 'Brad Lancaster - Rainwater Harvesting for Drylands',
|
|
177
|
-
url: 'https://www.harvestingrainwater.com/',
|
|
178
|
-
},
|
|
179
|
-
{
|
|
180
|
-
name: 'European Environment Agency - Water Resources',
|
|
181
|
-
url: 'https://www.eea.europa.eu/en/topics/in-depth/water',
|
|
182
|
-
},
|
|
183
|
-
],
|
|
165
|
+
bibliography,
|
|
184
166
|
schemas: [faqSchema, howToSchema, appSchema],
|
|
185
167
|
};
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowToThing, SoftwareApplication } from 'schema-dts';
|
|
2
|
+
import { bibliography } from '../bibliography';
|
|
2
3
|
import type { RainHarvesterLocaleContent } from '../index';
|
|
3
4
|
|
|
4
5
|
const slug = 'rainwater-calculator';
|
|
@@ -159,27 +160,8 @@ export const content: RainHarvesterLocaleContent = {
|
|
|
159
160
|
html: '最常见的错误是仅根据预算购买水箱。如果太小,会因溢出浪费数千升水;如果太大,则会造成不必要的资金支出。一般规则是拥有能储存当地 <strong>3 个月</strong>平均降雨量的容量,以帮助您平稳度过旱季。',
|
|
160
161
|
},
|
|
161
162
|
],
|
|
162
|
-
faqTitle: '常见问题',
|
|
163
163
|
faq: faqData,
|
|
164
164
|
howTo: howToData,
|
|
165
|
-
|
|
166
|
-
bibliography: [
|
|
167
|
-
{
|
|
168
|
-
name: 'FAO - Rainwater Harvesting and Storage',
|
|
169
|
-
url: 'https://www.fao.org/3/a1348s/a1348s.pdf',
|
|
170
|
-
},
|
|
171
|
-
{
|
|
172
|
-
name: 'Texas A&M AgriLife Extension - Rainwater Harvesting',
|
|
173
|
-
url: 'https://rainwaterharvesting.tamu.edu/',
|
|
174
|
-
},
|
|
175
|
-
{
|
|
176
|
-
name: 'Brad Lancaster - Rainwater Harvesting for Drylands',
|
|
177
|
-
url: 'https://www.harvestingrainwater.com/',
|
|
178
|
-
},
|
|
179
|
-
{
|
|
180
|
-
name: 'European Environment Agency - Water Resources',
|
|
181
|
-
url: 'https://www.eea.europa.eu/en/topics/in-depth/water',
|
|
182
|
-
},
|
|
183
|
-
],
|
|
165
|
+
bibliography,
|
|
184
166
|
schemas: [faqSchema, howToSchema, appSchema],
|
|
185
167
|
};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import type { BibliographyEntry } from '../../types';
|
|
2
|
+
|
|
3
|
+
export const bibliography: BibliographyEntry[] = [
|
|
4
|
+
{
|
|
5
|
+
name: 'KWS España',
|
|
6
|
+
url: 'https://www.kws.com/es/es/',
|
|
7
|
+
},
|
|
8
|
+
{
|
|
9
|
+
name: 'Ministerio de Agricultura (MAPA)',
|
|
10
|
+
url: 'https://www.mapa.gob.es/es/agricultura/temas/producciones-agricolas/cultivos-herbaceos/',
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
name: 'Yara España',
|
|
14
|
+
url: 'https://www.yara.es/nutricion-vegetal/maiz/',
|
|
15
|
+
},
|
|
16
|
+
];
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowToThing, SoftwareApplication } from 'schema-dts';
|
|
2
|
+
import { bibliography } from '../bibliography';
|
|
2
3
|
import type { ToolLocaleContent } from '../../../types';
|
|
3
4
|
import type { SeedCalculatorUI } from '../ui';
|
|
4
5
|
|
|
@@ -87,23 +88,8 @@ export const content: ToolLocaleContent<SeedCalculatorUI> = {
|
|
|
87
88
|
slug,
|
|
88
89
|
title,
|
|
89
90
|
description,
|
|
90
|
-
faqTitle: 'Häufig gestellte Fragen',
|
|
91
91
|
faq: faqData,
|
|
92
|
-
|
|
93
|
-
bibliography: [
|
|
94
|
-
{
|
|
95
|
-
name: 'KWS Spanien',
|
|
96
|
-
url: 'https://www.kws.com/es/es/',
|
|
97
|
-
},
|
|
98
|
-
{
|
|
99
|
-
name: 'Spanisches Landwirtschaftsministerium (MAPA)',
|
|
100
|
-
url: 'https://www.mapa.gob.es/es/agricultura/temas/producciones-agricolas/cultivos-herbaceos/',
|
|
101
|
-
},
|
|
102
|
-
{
|
|
103
|
-
name: 'Yara Spanien',
|
|
104
|
-
url: 'https://www.yara.es/nutricion-vegetal/maiz/',
|
|
105
|
-
},
|
|
106
|
-
],
|
|
92
|
+
bibliography,
|
|
107
93
|
howTo: howToData,
|
|
108
94
|
schemas: [faqSchema, howToSchema, appSchema],
|
|
109
95
|
seo: [
|
|
@@ -207,7 +193,5 @@ export const content: ToolLocaleContent<SeedCalculatorUI> = {
|
|
|
207
193
|
noteSoy: 'Hohe Population',
|
|
208
194
|
noteBeet: 'Kritische flache Aussaat',
|
|
209
195
|
noteRapeseed: 'Sehr kleiner Samen',
|
|
210
|
-
faqTitle: 'Häufig gestellte Fragen',
|
|
211
|
-
bibliographyTitle: 'Wissenschaftliche Referenzen',
|
|
212
196
|
},
|
|
213
197
|
};
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowToThing, SoftwareApplication } from 'schema-dts';
|
|
2
|
+
import { bibliography } from '../bibliography';
|
|
2
3
|
import type { ToolLocaleContent } from '../../../types';
|
|
3
4
|
import type { SeedCalculatorUI } from '../ui';
|
|
4
5
|
|
|
@@ -87,23 +88,8 @@ export const content: ToolLocaleContent<SeedCalculatorUI> = {
|
|
|
87
88
|
slug,
|
|
88
89
|
title,
|
|
89
90
|
description,
|
|
90
|
-
faqTitle: 'Frequently Asked Questions',
|
|
91
91
|
faq: faqData,
|
|
92
|
-
|
|
93
|
-
bibliography: [
|
|
94
|
-
{
|
|
95
|
-
name: 'KWS Spain',
|
|
96
|
-
url: 'https://www.kws.com/es/es/',
|
|
97
|
-
},
|
|
98
|
-
{
|
|
99
|
-
name: 'Spanish Ministry of Agriculture (MAPA)',
|
|
100
|
-
url: 'https://www.mapa.gob.es/es/agricultura/temas/producciones-agricolas/cultivos-herbaceos/',
|
|
101
|
-
},
|
|
102
|
-
{
|
|
103
|
-
name: 'Yara Spain',
|
|
104
|
-
url: 'https://www.yara.es/nutricion-vegetal/maiz/',
|
|
105
|
-
},
|
|
106
|
-
],
|
|
92
|
+
bibliography,
|
|
107
93
|
howTo: howToData,
|
|
108
94
|
schemas: [faqSchema, howToSchema, appSchema],
|
|
109
95
|
seo: [
|
|
@@ -207,7 +193,5 @@ export const content: ToolLocaleContent<SeedCalculatorUI> = {
|
|
|
207
193
|
noteSoy: 'High population',
|
|
208
194
|
noteBeet: 'Critical shallow sowing',
|
|
209
195
|
noteRapeseed: 'Very small seed',
|
|
210
|
-
faqTitle: 'Frequently Asked Questions',
|
|
211
|
-
bibliographyTitle: 'Scientific References',
|
|
212
196
|
},
|
|
213
197
|
};
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowToThing, SoftwareApplication } from 'schema-dts';
|
|
2
|
+
import { bibliography } from '../bibliography';
|
|
2
3
|
import type { ToolLocaleContent } from '../../../types';
|
|
3
4
|
import type { SeedCalculatorUI } from '../ui';
|
|
4
5
|
|
|
@@ -87,23 +88,8 @@ export const content: ToolLocaleContent<SeedCalculatorUI> = {
|
|
|
87
88
|
slug,
|
|
88
89
|
title,
|
|
89
90
|
description,
|
|
90
|
-
faqTitle: 'Preguntas Frecuentes',
|
|
91
91
|
faq: faqData,
|
|
92
|
-
|
|
93
|
-
bibliography: [
|
|
94
|
-
{
|
|
95
|
-
name: 'KWS España',
|
|
96
|
-
url: 'https://www.kws.com/es/es/',
|
|
97
|
-
},
|
|
98
|
-
{
|
|
99
|
-
name: 'Ministerio de Agricultura (MAPA)',
|
|
100
|
-
url: 'https://www.mapa.gob.es/es/agricultura/temas/producciones-agricolas/cultivos-herbaceos/',
|
|
101
|
-
},
|
|
102
|
-
{
|
|
103
|
-
name: 'Yara España',
|
|
104
|
-
url: 'https://www.yara.es/nutricion-vegetal/maiz/',
|
|
105
|
-
},
|
|
106
|
-
],
|
|
92
|
+
bibliography,
|
|
107
93
|
howTo: howToData,
|
|
108
94
|
schemas: [faqSchema, howToSchema, appSchema],
|
|
109
95
|
seo: [
|
|
@@ -207,7 +193,5 @@ export const content: ToolLocaleContent<SeedCalculatorUI> = {
|
|
|
207
193
|
noteSoy: 'Alta población',
|
|
208
194
|
noteBeet: 'Siembra crítica superficial',
|
|
209
195
|
noteRapeseed: 'Semilla muy pequeña',
|
|
210
|
-
faqTitle: 'Preguntas Frecuentes',
|
|
211
|
-
bibliographyTitle: 'Referencias Científicas',
|
|
212
196
|
},
|
|
213
197
|
};
|