@jjlmoya/utils-science 1.2.0 → 1.4.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/tool/asteroid-impact/bibliography.astro +1 -1
- package/src/tool/asteroid-impact/i18n/en.ts +4 -0
- package/src/tool/asteroid-impact/i18n/fr.ts +4 -0
- package/src/tool/cellular-renewal/bibliography.astro +1 -1
- package/src/tool/colony-counter/bibliography.astro +1 -1
- package/src/tool/microwave-detector/bibliography.astro +1 -1
- package/src/tool/simulation-probability/bibliography.astro +1 -1
package/package.json
CHANGED
|
@@ -34,6 +34,10 @@ export const content: ToolLocaleContent = {
|
|
|
34
34
|
verdictBurnedSub: 'Extreme danger',
|
|
35
35
|
verdictVaporized: 'GROUND ZERO',
|
|
36
36
|
verdictVaporizedSub: 'Direct impact',
|
|
37
|
+
presetAerial: 'Aerial',
|
|
38
|
+
presetForest: 'Forest',
|
|
39
|
+
presetComet: 'Comet',
|
|
40
|
+
presetELE: 'E.L.E.',
|
|
37
41
|
},
|
|
38
42
|
seo: [
|
|
39
43
|
{
|
|
@@ -34,6 +34,10 @@ export const content: ToolLocaleContent = {
|
|
|
34
34
|
verdictBurnedSub: 'Danger extrême',
|
|
35
35
|
verdictVaporized: 'ZONE ZÉRO',
|
|
36
36
|
verdictVaporizedSub: 'Impact direct',
|
|
37
|
+
presetAerial: 'Aérien',
|
|
38
|
+
presetForest: 'Forêt',
|
|
39
|
+
presetComet: 'Comète',
|
|
40
|
+
presetELE: 'E.L.E.',
|
|
37
41
|
},
|
|
38
42
|
seo: [
|
|
39
43
|
{
|
|
@@ -11,4 +11,4 @@ const { locale = 'es' } = Astro.props;
|
|
|
11
11
|
const content = await microwaveDetector.i18n[locale]?.();
|
|
12
12
|
---
|
|
13
13
|
|
|
14
|
-
{content && <Bibliography links={content.bibliography} />}
|
|
14
|
+
{content && <Bibliography links={content.bibliography} title={content.ui.bibliographyTitle} />}
|
|
@@ -11,4 +11,4 @@ const { locale = 'es' } = Astro.props;
|
|
|
11
11
|
const content = await simulationProbability.i18n[locale]?.();
|
|
12
12
|
---
|
|
13
13
|
|
|
14
|
-
{content && <Bibliography links={content.bibliography} />}
|
|
14
|
+
{content && <Bibliography links={content.bibliography} title={content.ui.bibliographyTitle} />}
|