@jjlmoya/utils-alcohol 1.25.0 → 1.26.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/entries.ts +7 -1
- package/src/index.ts +1 -0
- package/src/pages/[locale]/[slug].astro +7 -3
- package/src/tests/locale_completeness.test.ts +4 -9
- package/src/tests/tool_validation.test.ts +2 -2
- package/src/tool/alcoholClearance/bibliography.ts +6 -0
- package/src/tool/alcoholClearance/entry.ts +1 -0
- package/src/tool/alcoholClearance/i18n/de.ts +1 -12
- package/src/tool/alcoholClearance/i18n/en.ts +1 -12
- package/src/tool/alcoholClearance/i18n/es.ts +1 -12
- package/src/tool/alcoholClearance/i18n/fr.ts +1 -12
- package/src/tool/alcoholClearance/i18n/id.ts +1 -12
- package/src/tool/alcoholClearance/i18n/it.ts +1 -12
- package/src/tool/alcoholClearance/i18n/ja.ts +1 -12
- package/src/tool/alcoholClearance/i18n/ko.ts +1 -12
- package/src/tool/alcoholClearance/i18n/nl.ts +1 -12
- package/src/tool/alcoholClearance/i18n/pl.ts +1 -12
- package/src/tool/alcoholClearance/i18n/pt.ts +1 -12
- package/src/tool/alcoholClearance/i18n/ru.ts +1 -12
- package/src/tool/alcoholClearance/i18n/sv.ts +1 -12
- package/src/tool/alcoholClearance/i18n/tr.ts +1 -12
- package/src/tool/alcoholClearance/i18n/zh.ts +1 -12
- package/src/tool/beerCooler/bibliography.ts +6 -0
- package/src/tool/beerCooler/entry.ts +1 -0
- package/src/tool/beerCooler/i18n/de.ts +1 -12
- package/src/tool/beerCooler/i18n/en.ts +1 -12
- package/src/tool/beerCooler/i18n/es.ts +1 -12
- package/src/tool/beerCooler/i18n/fr.ts +1 -12
- package/src/tool/beerCooler/i18n/id.ts +1 -12
- package/src/tool/beerCooler/i18n/it.ts +1 -12
- package/src/tool/beerCooler/i18n/ja.ts +1 -12
- package/src/tool/beerCooler/i18n/ko.ts +1 -12
- package/src/tool/beerCooler/i18n/nl.ts +1 -12
- package/src/tool/beerCooler/i18n/pl.ts +1 -12
- package/src/tool/beerCooler/i18n/pt.ts +1 -12
- package/src/tool/beerCooler/i18n/ru.ts +1 -12
- package/src/tool/beerCooler/i18n/sv.ts +1 -12
- package/src/tool/beerCooler/i18n/tr.ts +1 -12
- package/src/tool/beerCooler/i18n/zh.ts +1 -12
- package/src/tool/carbonationCalculator/bibliography.ts +6 -0
- package/src/tool/carbonationCalculator/entry.ts +1 -0
- package/src/tool/carbonationCalculator/i18n/de.ts +1 -12
- package/src/tool/carbonationCalculator/i18n/en.ts +1 -12
- package/src/tool/carbonationCalculator/i18n/es.ts +1 -12
- package/src/tool/carbonationCalculator/i18n/fr.ts +1 -12
- package/src/tool/carbonationCalculator/i18n/id.ts +1 -12
- package/src/tool/carbonationCalculator/i18n/it.ts +1 -12
- package/src/tool/carbonationCalculator/i18n/ja.ts +1 -12
- package/src/tool/carbonationCalculator/i18n/ko.ts +1 -12
- package/src/tool/carbonationCalculator/i18n/nl.ts +1 -12
- package/src/tool/carbonationCalculator/i18n/pl.ts +1 -12
- package/src/tool/carbonationCalculator/i18n/pt.ts +1 -12
- package/src/tool/carbonationCalculator/i18n/ru.ts +1 -12
- package/src/tool/carbonationCalculator/i18n/sv.ts +1 -12
- package/src/tool/carbonationCalculator/i18n/tr.ts +1 -12
- package/src/tool/carbonationCalculator/i18n/zh.ts +1 -12
- package/src/tool/cocktailBalancer/bibliography.ts +7 -0
- package/src/tool/cocktailBalancer/entry.ts +1 -0
- package/src/tool/cocktailBalancer/i18n/de.ts +1 -16
- package/src/tool/cocktailBalancer/i18n/en.ts +1 -16
- package/src/tool/cocktailBalancer/i18n/es.ts +1 -16
- package/src/tool/cocktailBalancer/i18n/fr.ts +1 -16
- package/src/tool/cocktailBalancer/i18n/id.ts +1 -16
- package/src/tool/cocktailBalancer/i18n/it.ts +1 -16
- package/src/tool/cocktailBalancer/i18n/ja.ts +1 -16
- package/src/tool/cocktailBalancer/i18n/ko.ts +1 -16
- package/src/tool/cocktailBalancer/i18n/nl.ts +1 -16
- package/src/tool/cocktailBalancer/i18n/pl.ts +1 -16
- package/src/tool/cocktailBalancer/i18n/pt.ts +1 -16
- package/src/tool/cocktailBalancer/i18n/ru.ts +1 -16
- package/src/tool/cocktailBalancer/i18n/sv.ts +1 -16
- package/src/tool/cocktailBalancer/i18n/tr.ts +1 -16
- package/src/tool/cocktailBalancer/i18n/zh.ts +1 -16
- package/src/tool/fortifiedWine/bibliography.astro +14 -0
- package/src/tool/fortifiedWine/bibliography.ts +7 -0
- package/src/tool/fortifiedWine/component.astro +331 -0
- package/src/tool/fortifiedWine/entry.ts +62 -0
- package/src/tool/fortifiedWine/fortified-wine-builder.css +534 -0
- package/src/tool/fortifiedWine/i18n/de.ts +66 -0
- package/src/tool/fortifiedWine/i18n/en.ts +140 -0
- package/src/tool/fortifiedWine/i18n/es.ts +140 -0
- package/src/tool/fortifiedWine/i18n/fr.ts +91 -0
- package/src/tool/fortifiedWine/i18n/id.ts +91 -0
- package/src/tool/fortifiedWine/i18n/it.ts +91 -0
- package/src/tool/fortifiedWine/i18n/ja.ts +91 -0
- package/src/tool/fortifiedWine/i18n/ko.ts +91 -0
- package/src/tool/fortifiedWine/i18n/nl.ts +91 -0
- package/src/tool/fortifiedWine/i18n/pl.ts +91 -0
- package/src/tool/fortifiedWine/i18n/pt.ts +91 -0
- package/src/tool/fortifiedWine/i18n/ru.ts +91 -0
- package/src/tool/fortifiedWine/i18n/sv.ts +91 -0
- package/src/tool/fortifiedWine/i18n/tr.ts +91 -0
- package/src/tool/fortifiedWine/i18n/zh.ts +91 -0
- package/src/tool/fortifiedWine/index.ts +8 -0
- package/src/tool/fortifiedWine/logic.ts +46 -0
- package/src/tool/fortifiedWine/seo.astro +41 -0
- package/src/tool/jelloShotLab/bibliography.astro +14 -0
- package/src/tool/jelloShotLab/bibliography.ts +8 -0
- package/src/tool/jelloShotLab/component.astro +183 -0
- package/src/tool/jelloShotLab/entry.ts +62 -0
- package/src/tool/jelloShotLab/i18n/de.ts +156 -0
- package/src/tool/jelloShotLab/i18n/en.ts +156 -0
- package/src/tool/jelloShotLab/i18n/es.ts +156 -0
- package/src/tool/jelloShotLab/i18n/fr.ts +156 -0
- package/src/tool/jelloShotLab/i18n/id.ts +156 -0
- package/src/tool/jelloShotLab/i18n/it.ts +156 -0
- package/src/tool/jelloShotLab/i18n/ja.ts +156 -0
- package/src/tool/jelloShotLab/i18n/ko.ts +156 -0
- package/src/tool/jelloShotLab/i18n/nl.ts +156 -0
- package/src/tool/jelloShotLab/i18n/pl.ts +156 -0
- package/src/tool/jelloShotLab/i18n/pt.ts +156 -0
- package/src/tool/jelloShotLab/i18n/ru.ts +156 -0
- package/src/tool/jelloShotLab/i18n/sv.ts +156 -0
- package/src/tool/jelloShotLab/i18n/tr.ts +156 -0
- package/src/tool/jelloShotLab/i18n/zh.ts +156 -0
- package/src/tool/jelloShotLab/index.ts +11 -0
- package/src/tool/jelloShotLab/jello-shot-lab.css +229 -0
- package/src/tool/jelloShotLab/logic.ts +29 -0
- package/src/tool/jelloShotLab/seo.astro +53 -0
- package/src/tool/partyKeg/bibliography.ts +6 -0
- package/src/tool/partyKeg/entry.ts +1 -0
- package/src/tool/partyKeg/i18n/de.ts +1 -12
- package/src/tool/partyKeg/i18n/en.ts +1 -12
- package/src/tool/partyKeg/i18n/es.ts +1 -12
- package/src/tool/partyKeg/i18n/fr.ts +1 -12
- package/src/tool/partyKeg/i18n/id.ts +1 -12
- package/src/tool/partyKeg/i18n/it.ts +1 -12
- package/src/tool/partyKeg/i18n/ja.ts +1 -12
- package/src/tool/partyKeg/i18n/ko.ts +1 -12
- package/src/tool/partyKeg/i18n/nl.ts +1 -12
- package/src/tool/partyKeg/i18n/pl.ts +1 -12
- package/src/tool/partyKeg/i18n/pt.ts +1 -12
- package/src/tool/partyKeg/i18n/ru.ts +1 -12
- package/src/tool/partyKeg/i18n/sv.ts +1 -12
- package/src/tool/partyKeg/i18n/tr.ts +1 -12
- package/src/tool/partyKeg/i18n/zh.ts +1 -12
- package/src/tools.ts +5 -0
- package/src/types.ts +1 -1
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { bibliography } from '../bibliography';
|
|
1
2
|
import type { WithContext, SoftwareApplication, FAQPage, HowTo } from 'schema-dts';
|
|
2
3
|
import type { CocktailBalancerUI, CocktailBalancerLocaleContent } from '../index';
|
|
3
4
|
|
|
@@ -45,7 +46,6 @@ const ui: CocktailBalancerUI = {
|
|
|
45
46
|
};
|
|
46
47
|
|
|
47
48
|
const faqTitle = 'Foire Aux Questions';
|
|
48
|
-
const bibliographyTitle = 'Bibliographie & Sources';
|
|
49
49
|
|
|
50
50
|
const faq: CocktailBalancerLocaleContent['faq'] = [
|
|
51
51
|
{
|
|
@@ -85,20 +85,6 @@ const howTo: CocktailBalancerLocaleContent['howTo'] = [
|
|
|
85
85
|
},
|
|
86
86
|
];
|
|
87
87
|
|
|
88
|
-
const bibliography: CocktailBalancerLocaleContent['bibliography'] = [
|
|
89
|
-
{
|
|
90
|
-
name: "Liquid Intelligence: The Art and Science of the Perfect Cocktail",
|
|
91
|
-
url: "https://www.indigo.ca/en-ca/liquid-intelligence-the-art-and-science-of-the-perfect-cocktail/9780393089035.html",
|
|
92
|
-
},
|
|
93
|
-
{
|
|
94
|
-
name: "Cocktails: The Science of Shaking",
|
|
95
|
-
url: "https://cookingissues.com/2009/07/22/cocktails-the-science-of-shaking/",
|
|
96
|
-
},
|
|
97
|
-
{
|
|
98
|
-
name: "Cocktail Balance - Difford's Guide",
|
|
99
|
-
url: "https://www.diffordsguide.com/encyclopedia/1066/cocktails/cocktail-balance",
|
|
100
|
-
},
|
|
101
|
-
];
|
|
102
88
|
|
|
103
89
|
const seo: CocktailBalancerLocaleContent['seo'] = [
|
|
104
90
|
{
|
|
@@ -215,7 +201,6 @@ export const content: CocktailBalancerLocaleContent = {
|
|
|
215
201
|
seo,
|
|
216
202
|
faqTitle,
|
|
217
203
|
faq,
|
|
218
|
-
bibliographyTitle,
|
|
219
204
|
bibliography,
|
|
220
205
|
howTo,
|
|
221
206
|
schemas,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { bibliography } from '../bibliography';
|
|
1
2
|
import type { WithContext, SoftwareApplication, FAQPage, HowTo } from 'schema-dts';
|
|
2
3
|
import type { CocktailBalancerUI, CocktailBalancerLocaleContent } from '../index';
|
|
3
4
|
|
|
@@ -45,7 +46,6 @@ const ui: CocktailBalancerUI = {
|
|
|
45
46
|
};
|
|
46
47
|
|
|
47
48
|
const faqTitle = 'Pertanyaan yang Sering Diajukan';
|
|
48
|
-
const bibliographyTitle = 'Bibliografi & Sumber';
|
|
49
49
|
|
|
50
50
|
const faq: CocktailBalancerLocaleContent['faq'] = [
|
|
51
51
|
{
|
|
@@ -85,20 +85,6 @@ const howTo: CocktailBalancerLocaleContent['howTo'] = [
|
|
|
85
85
|
},
|
|
86
86
|
];
|
|
87
87
|
|
|
88
|
-
const bibliography: CocktailBalancerLocaleContent['bibliography'] = [
|
|
89
|
-
{
|
|
90
|
-
name: "Liquid Intelligence: The Art and Science of the Perfect Cocktail",
|
|
91
|
-
url: "https://www.indigo.ca/en-ca/liquid-intelligence-the-art-and-science-of-the-perfect-cocktail/9780393089035.html",
|
|
92
|
-
},
|
|
93
|
-
{
|
|
94
|
-
name: "Cocktails: The Science of Shaking",
|
|
95
|
-
url: "https://cookingissues.com/2009/07/22/cocktails-the-science-of-shaking/",
|
|
96
|
-
},
|
|
97
|
-
{
|
|
98
|
-
name: "Cocktail Balance - Difford's Guide",
|
|
99
|
-
url: "https://www.diffordsguide.com/encyclopedia/1066/cocktails/cocktail-balance",
|
|
100
|
-
},
|
|
101
|
-
];
|
|
102
88
|
|
|
103
89
|
const seo: CocktailBalancerLocaleContent['seo'] = [
|
|
104
90
|
{
|
|
@@ -215,7 +201,6 @@ export const content: CocktailBalancerLocaleContent = {
|
|
|
215
201
|
seo,
|
|
216
202
|
faqTitle,
|
|
217
203
|
faq,
|
|
218
|
-
bibliographyTitle,
|
|
219
204
|
bibliography,
|
|
220
205
|
howTo,
|
|
221
206
|
schemas,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { bibliography } from '../bibliography';
|
|
1
2
|
import type { WithContext, SoftwareApplication, FAQPage, HowTo } from 'schema-dts';
|
|
2
3
|
import type { CocktailBalancerUI, CocktailBalancerLocaleContent } from '../index';
|
|
3
4
|
|
|
@@ -45,7 +46,6 @@ const ui: CocktailBalancerUI = {
|
|
|
45
46
|
};
|
|
46
47
|
|
|
47
48
|
const faqTitle = 'Domande Frequenti';
|
|
48
|
-
const bibliographyTitle = 'Bibliografia e Fonti';
|
|
49
49
|
|
|
50
50
|
const faq: CocktailBalancerLocaleContent['faq'] = [
|
|
51
51
|
{
|
|
@@ -85,20 +85,6 @@ const howTo: CocktailBalancerLocaleContent['howTo'] = [
|
|
|
85
85
|
},
|
|
86
86
|
];
|
|
87
87
|
|
|
88
|
-
const bibliography: CocktailBalancerLocaleContent['bibliography'] = [
|
|
89
|
-
{
|
|
90
|
-
name: "Liquid Intelligence: The Art and Science of the Perfect Cocktail",
|
|
91
|
-
url: "https://www.indigo.ca/en-ca/liquid-intelligence-the-art-and-science-of-the-perfect-cocktail/9780393089035.html",
|
|
92
|
-
},
|
|
93
|
-
{
|
|
94
|
-
name: "Cocktails: The Science of Shaking",
|
|
95
|
-
url: "https://cookingissues.com/2009/07/22/cocktails-the-science-of-shaking/",
|
|
96
|
-
},
|
|
97
|
-
{
|
|
98
|
-
name: "Cocktail Balance - Difford's Guide",
|
|
99
|
-
url: "https://www.diffordsguide.com/encyclopedia/1066/cocktails/cocktail-balance",
|
|
100
|
-
},
|
|
101
|
-
];
|
|
102
88
|
|
|
103
89
|
const seo: CocktailBalancerLocaleContent['seo'] = [
|
|
104
90
|
{
|
|
@@ -215,7 +201,6 @@ export const content: CocktailBalancerLocaleContent = {
|
|
|
215
201
|
seo,
|
|
216
202
|
faqTitle,
|
|
217
203
|
faq,
|
|
218
|
-
bibliographyTitle,
|
|
219
204
|
bibliography,
|
|
220
205
|
howTo,
|
|
221
206
|
schemas,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { bibliography } from '../bibliography';
|
|
1
2
|
import type { WithContext, SoftwareApplication, FAQPage, HowTo } from 'schema-dts';
|
|
2
3
|
import type { CocktailBalancerUI, CocktailBalancerLocaleContent } from '../index';
|
|
3
4
|
|
|
@@ -45,7 +46,6 @@ const ui: CocktailBalancerUI = {
|
|
|
45
46
|
};
|
|
46
47
|
|
|
47
48
|
const faqTitle = 'よくある質問';
|
|
48
|
-
const bibliographyTitle = '参考文献とソース';
|
|
49
49
|
|
|
50
50
|
const faq: CocktailBalancerLocaleContent['faq'] = [
|
|
51
51
|
{
|
|
@@ -85,20 +85,6 @@ const howTo: CocktailBalancerLocaleContent['howTo'] = [
|
|
|
85
85
|
},
|
|
86
86
|
];
|
|
87
87
|
|
|
88
|
-
const bibliography: CocktailBalancerLocaleContent['bibliography'] = [
|
|
89
|
-
{
|
|
90
|
-
name: "Liquid Intelligence: The Art and Science of the Perfect Cocktail",
|
|
91
|
-
url: "https://www.indigo.ca/en-ca/liquid-intelligence-the-art-and-science-of-the-perfect-cocktail/9780393089035.html",
|
|
92
|
-
},
|
|
93
|
-
{
|
|
94
|
-
name: "Cocktails: The Science of Shaking",
|
|
95
|
-
url: "https://cookingissues.com/2009/07/22/cocktails-the-science-of-shaking/",
|
|
96
|
-
},
|
|
97
|
-
{
|
|
98
|
-
name: "Cocktail Balance - Difford's Guide",
|
|
99
|
-
url: "https://www.diffordsguide.com/encyclopedia/1066/cocktails/cocktail-balance",
|
|
100
|
-
},
|
|
101
|
-
];
|
|
102
88
|
|
|
103
89
|
const seo: CocktailBalancerLocaleContent['seo'] = [
|
|
104
90
|
{
|
|
@@ -215,7 +201,6 @@ export const content: CocktailBalancerLocaleContent = {
|
|
|
215
201
|
seo,
|
|
216
202
|
faqTitle,
|
|
217
203
|
faq,
|
|
218
|
-
bibliographyTitle,
|
|
219
204
|
bibliography,
|
|
220
205
|
howTo,
|
|
221
206
|
schemas,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { bibliography } from '../bibliography';
|
|
1
2
|
import type { WithContext, SoftwareApplication, FAQPage, HowTo } from 'schema-dts';
|
|
2
3
|
import type { CocktailBalancerUI, CocktailBalancerLocaleContent } from '../index';
|
|
3
4
|
|
|
@@ -45,7 +46,6 @@ const ui: CocktailBalancerUI = {
|
|
|
45
46
|
};
|
|
46
47
|
|
|
47
48
|
const faqTitle = '자주 묻는 질문';
|
|
48
|
-
const bibliographyTitle = '참고문헌 & 출처';
|
|
49
49
|
|
|
50
50
|
const faq: CocktailBalancerLocaleContent['faq'] = [
|
|
51
51
|
{
|
|
@@ -85,20 +85,6 @@ const howTo: CocktailBalancerLocaleContent['howTo'] = [
|
|
|
85
85
|
},
|
|
86
86
|
];
|
|
87
87
|
|
|
88
|
-
const bibliography: CocktailBalancerLocaleContent['bibliography'] = [
|
|
89
|
-
{
|
|
90
|
-
name: "Liquid Intelligence: The Art and Science of the Perfect Cocktail",
|
|
91
|
-
url: "https://www.indigo.ca/en-ca/liquid-intelligence-the-art-and-science-of-the-perfect-cocktail/9780393089035.html",
|
|
92
|
-
},
|
|
93
|
-
{
|
|
94
|
-
name: "Cocktails: The Science of Shaking",
|
|
95
|
-
url: "https://cookingissues.com/2009/07/22/cocktails-the-science-of-shaking/",
|
|
96
|
-
},
|
|
97
|
-
{
|
|
98
|
-
name: "Cocktail Balance - Difford's Guide",
|
|
99
|
-
url: "https://www.diffordsguide.com/encyclopedia/1066/cocktails/cocktail-balance",
|
|
100
|
-
},
|
|
101
|
-
];
|
|
102
88
|
|
|
103
89
|
const seo: CocktailBalancerLocaleContent['seo'] = [
|
|
104
90
|
{
|
|
@@ -215,7 +201,6 @@ export const content: CocktailBalancerLocaleContent = {
|
|
|
215
201
|
seo,
|
|
216
202
|
faqTitle,
|
|
217
203
|
faq,
|
|
218
|
-
bibliographyTitle,
|
|
219
204
|
bibliography,
|
|
220
205
|
howTo,
|
|
221
206
|
schemas,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { bibliography } from '../bibliography';
|
|
1
2
|
import type { WithContext, SoftwareApplication, FAQPage, HowTo } from 'schema-dts';
|
|
2
3
|
import type { CocktailBalancerUI, CocktailBalancerLocaleContent } from '../index';
|
|
3
4
|
|
|
@@ -45,7 +46,6 @@ const ui: CocktailBalancerUI = {
|
|
|
45
46
|
};
|
|
46
47
|
|
|
47
48
|
const faqTitle = 'Veelgestelde vragen';
|
|
48
|
-
const bibliographyTitle = 'Bibliografie & Bronnen';
|
|
49
49
|
|
|
50
50
|
const faq: CocktailBalancerLocaleContent['faq'] = [
|
|
51
51
|
{
|
|
@@ -85,20 +85,6 @@ const howTo: CocktailBalancerLocaleContent['howTo'] = [
|
|
|
85
85
|
},
|
|
86
86
|
];
|
|
87
87
|
|
|
88
|
-
const bibliography: CocktailBalancerLocaleContent['bibliography'] = [
|
|
89
|
-
{
|
|
90
|
-
name: "Liquid Intelligence: The Art and Science of the Perfect Cocktail",
|
|
91
|
-
url: "https://www.indigo.ca/en-ca/liquid-intelligence-the-art-and-science-of-the-perfect-cocktail/9780393089035.html",
|
|
92
|
-
},
|
|
93
|
-
{
|
|
94
|
-
name: "Cocktails: The Science of Shaking",
|
|
95
|
-
url: "https://cookingissues.com/2009/07/22/cocktails-the-science-of-shaking/",
|
|
96
|
-
},
|
|
97
|
-
{
|
|
98
|
-
name: "Cocktail Balance - Difford's Guide",
|
|
99
|
-
url: "https://www.diffordsguide.com/encyclopedia/1066/cocktails/cocktail-balance",
|
|
100
|
-
},
|
|
101
|
-
];
|
|
102
88
|
|
|
103
89
|
const seo: CocktailBalancerLocaleContent['seo'] = [
|
|
104
90
|
{
|
|
@@ -215,7 +201,6 @@ export const content: CocktailBalancerLocaleContent = {
|
|
|
215
201
|
seo,
|
|
216
202
|
faqTitle,
|
|
217
203
|
faq,
|
|
218
|
-
bibliographyTitle,
|
|
219
204
|
bibliography,
|
|
220
205
|
howTo,
|
|
221
206
|
schemas,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { bibliography } from '../bibliography';
|
|
1
2
|
import type { WithContext, SoftwareApplication, FAQPage, HowTo } from 'schema-dts';
|
|
2
3
|
import type { CocktailBalancerUI, CocktailBalancerLocaleContent } from '../index';
|
|
3
4
|
|
|
@@ -45,7 +46,6 @@ const ui: CocktailBalancerUI = {
|
|
|
45
46
|
};
|
|
46
47
|
|
|
47
48
|
const faqTitle = 'Często Zadawane Pytania';
|
|
48
|
-
const bibliographyTitle = 'Bibliografia i Źródła';
|
|
49
49
|
|
|
50
50
|
const faq: CocktailBalancerLocaleContent['faq'] = [
|
|
51
51
|
{
|
|
@@ -85,20 +85,6 @@ const howTo: CocktailBalancerLocaleContent['howTo'] = [
|
|
|
85
85
|
},
|
|
86
86
|
];
|
|
87
87
|
|
|
88
|
-
const bibliography: CocktailBalancerLocaleContent['bibliography'] = [
|
|
89
|
-
{
|
|
90
|
-
name: "Liquid Intelligence: The Art and Science of the Perfect Cocktail",
|
|
91
|
-
url: "https://www.indigo.ca/en-ca/liquid-intelligence-the-art-and-science-of-the-perfect-cocktail/9780393089035.html",
|
|
92
|
-
},
|
|
93
|
-
{
|
|
94
|
-
name: "Cocktails: The Science of Shaking",
|
|
95
|
-
url: "https://cookingissues.com/2009/07/22/cocktails-the-science-of-shaking/",
|
|
96
|
-
},
|
|
97
|
-
{
|
|
98
|
-
name: "Cocktail Balance - Difford's Guide",
|
|
99
|
-
url: "https://www.diffordsguide.com/encyclopedia/1066/cocktails/cocktail-balance",
|
|
100
|
-
},
|
|
101
|
-
];
|
|
102
88
|
|
|
103
89
|
const seo: CocktailBalancerLocaleContent['seo'] = [
|
|
104
90
|
{
|
|
@@ -215,7 +201,6 @@ export const content: CocktailBalancerLocaleContent = {
|
|
|
215
201
|
seo,
|
|
216
202
|
faqTitle,
|
|
217
203
|
faq,
|
|
218
|
-
bibliographyTitle,
|
|
219
204
|
bibliography,
|
|
220
205
|
howTo,
|
|
221
206
|
schemas,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { bibliography } from '../bibliography';
|
|
1
2
|
import type { WithContext, SoftwareApplication, FAQPage, HowTo } from 'schema-dts';
|
|
2
3
|
import type { CocktailBalancerUI, CocktailBalancerLocaleContent } from '../index';
|
|
3
4
|
|
|
@@ -45,7 +46,6 @@ const ui: CocktailBalancerUI = {
|
|
|
45
46
|
};
|
|
46
47
|
|
|
47
48
|
const faqTitle = 'Perguntas Frequentes';
|
|
48
|
-
const bibliographyTitle = 'Bibliografia e Fontes';
|
|
49
49
|
|
|
50
50
|
const faq: CocktailBalancerLocaleContent['faq'] = [
|
|
51
51
|
{
|
|
@@ -85,20 +85,6 @@ const howTo: CocktailBalancerLocaleContent['howTo'] = [
|
|
|
85
85
|
},
|
|
86
86
|
];
|
|
87
87
|
|
|
88
|
-
const bibliography: CocktailBalancerLocaleContent['bibliography'] = [
|
|
89
|
-
{
|
|
90
|
-
name: "Liquid Intelligence: The Art and Science of the Perfect Cocktail",
|
|
91
|
-
url: "https://www.indigo.ca/en-ca/liquid-intelligence-the-art-and-science-of-the-perfect-cocktail/9780393089035.html",
|
|
92
|
-
},
|
|
93
|
-
{
|
|
94
|
-
name: "Cocktails: The Science of Shaking",
|
|
95
|
-
url: "https://cookingissues.com/2009/07/22/cocktails-the-science-of-shaking/",
|
|
96
|
-
},
|
|
97
|
-
{
|
|
98
|
-
name: "Cocktail Balance - Difford's Guide",
|
|
99
|
-
url: "https://www.diffordsguide.com/encyclopedia/1066/cocktails/cocktail-balance",
|
|
100
|
-
},
|
|
101
|
-
];
|
|
102
88
|
|
|
103
89
|
const seo: CocktailBalancerLocaleContent['seo'] = [
|
|
104
90
|
{
|
|
@@ -215,7 +201,6 @@ export const content: CocktailBalancerLocaleContent = {
|
|
|
215
201
|
seo,
|
|
216
202
|
faqTitle,
|
|
217
203
|
faq,
|
|
218
|
-
bibliographyTitle,
|
|
219
204
|
bibliography,
|
|
220
205
|
howTo,
|
|
221
206
|
schemas,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { bibliography } from '../bibliography';
|
|
1
2
|
import type { WithContext, SoftwareApplication, FAQPage, HowTo } from 'schema-dts';
|
|
2
3
|
import type { CocktailBalancerUI, CocktailBalancerLocaleContent } from '../index';
|
|
3
4
|
|
|
@@ -45,7 +46,6 @@ const ui: CocktailBalancerUI = {
|
|
|
45
46
|
};
|
|
46
47
|
|
|
47
48
|
const faqTitle = 'Часто Задаваемые Вопросы';
|
|
48
|
-
const bibliographyTitle = 'Библиография и Источники';
|
|
49
49
|
|
|
50
50
|
const faq: CocktailBalancerLocaleContent['faq'] = [
|
|
51
51
|
{
|
|
@@ -85,20 +85,6 @@ const howTo: CocktailBalancerLocaleContent['howTo'] = [
|
|
|
85
85
|
},
|
|
86
86
|
];
|
|
87
87
|
|
|
88
|
-
const bibliography: CocktailBalancerLocaleContent['bibliography'] = [
|
|
89
|
-
{
|
|
90
|
-
name: "Liquid Intelligence: The Art and Science of the Perfect Cocktail",
|
|
91
|
-
url: "https://www.indigo.ca/en-ca/liquid-intelligence-the-art-and-science-of-the-perfect-cocktail/9780393089035.html",
|
|
92
|
-
},
|
|
93
|
-
{
|
|
94
|
-
name: "Cocktails: The Science of Shaking",
|
|
95
|
-
url: "https://cookingissues.com/2009/07/22/cocktails-the-science-of-shaking/",
|
|
96
|
-
},
|
|
97
|
-
{
|
|
98
|
-
name: "Cocktail Balance - Difford's Guide",
|
|
99
|
-
url: "https://www.diffordsguide.com/encyclopedia/1066/cocktails/cocktail-balance",
|
|
100
|
-
},
|
|
101
|
-
];
|
|
102
88
|
|
|
103
89
|
const seo: CocktailBalancerLocaleContent['seo'] = [
|
|
104
90
|
{
|
|
@@ -215,7 +201,6 @@ export const content: CocktailBalancerLocaleContent = {
|
|
|
215
201
|
seo,
|
|
216
202
|
faqTitle,
|
|
217
203
|
faq,
|
|
218
|
-
bibliographyTitle,
|
|
219
204
|
bibliography,
|
|
220
205
|
howTo,
|
|
221
206
|
schemas,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { bibliography } from '../bibliography';
|
|
1
2
|
import type { WithContext, SoftwareApplication, FAQPage, HowTo } from 'schema-dts';
|
|
2
3
|
import type { CocktailBalancerUI, CocktailBalancerLocaleContent } from '../index';
|
|
3
4
|
|
|
@@ -45,7 +46,6 @@ const ui: CocktailBalancerUI = {
|
|
|
45
46
|
};
|
|
46
47
|
|
|
47
48
|
const faqTitle = 'Vanliga Frågor';
|
|
48
|
-
const bibliographyTitle = 'Bibliografi & Källor';
|
|
49
49
|
|
|
50
50
|
const faq: CocktailBalancerLocaleContent['faq'] = [
|
|
51
51
|
{
|
|
@@ -85,20 +85,6 @@ const howTo: CocktailBalancerLocaleContent['howTo'] = [
|
|
|
85
85
|
},
|
|
86
86
|
];
|
|
87
87
|
|
|
88
|
-
const bibliography: CocktailBalancerLocaleContent['bibliography'] = [
|
|
89
|
-
{
|
|
90
|
-
name: "Liquid Intelligence: The Art and Science of the Perfect Cocktail",
|
|
91
|
-
url: "https://www.indigo.ca/en-ca/liquid-intelligence-the-art-and-science-of-the-perfect-cocktail/9780393089035.html",
|
|
92
|
-
},
|
|
93
|
-
{
|
|
94
|
-
name: "Cocktails: The Science of Shaking",
|
|
95
|
-
url: "https://cookingissues.com/2009/07/22/cocktails-the-science-of-shaking/",
|
|
96
|
-
},
|
|
97
|
-
{
|
|
98
|
-
name: "Cocktail Balance - Difford's Guide",
|
|
99
|
-
url: "https://www.diffordsguide.com/encyclopedia/1066/cocktails/cocktail-balance",
|
|
100
|
-
},
|
|
101
|
-
];
|
|
102
88
|
|
|
103
89
|
const seo: CocktailBalancerLocaleContent['seo'] = [
|
|
104
90
|
{
|
|
@@ -215,7 +201,6 @@ export const content: CocktailBalancerLocaleContent = {
|
|
|
215
201
|
seo,
|
|
216
202
|
faqTitle,
|
|
217
203
|
faq,
|
|
218
|
-
bibliographyTitle,
|
|
219
204
|
bibliography,
|
|
220
205
|
howTo,
|
|
221
206
|
schemas,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { bibliography } from '../bibliography';
|
|
1
2
|
import type { WithContext, SoftwareApplication, FAQPage, HowTo } from 'schema-dts';
|
|
2
3
|
import type { CocktailBalancerUI, CocktailBalancerLocaleContent } from '../index';
|
|
3
4
|
|
|
@@ -45,7 +46,6 @@ const ui: CocktailBalancerUI = {
|
|
|
45
46
|
};
|
|
46
47
|
|
|
47
48
|
const faqTitle = 'Sıkça Sorulan Sorular';
|
|
48
|
-
const bibliographyTitle = 'Kaynakça ve Kaynaklar';
|
|
49
49
|
|
|
50
50
|
const faq: CocktailBalancerLocaleContent['faq'] = [
|
|
51
51
|
{
|
|
@@ -85,20 +85,6 @@ const howTo: CocktailBalancerLocaleContent['howTo'] = [
|
|
|
85
85
|
},
|
|
86
86
|
];
|
|
87
87
|
|
|
88
|
-
const bibliography: CocktailBalancerLocaleContent['bibliography'] = [
|
|
89
|
-
{
|
|
90
|
-
name: "Liquid Intelligence: The Art and Science of the Perfect Cocktail",
|
|
91
|
-
url: "https://www.indigo.ca/en-ca/liquid-intelligence-the-art-and-science-of-the-perfect-cocktail/9780393089035.html",
|
|
92
|
-
},
|
|
93
|
-
{
|
|
94
|
-
name: "Cocktails: The Science of Shaking",
|
|
95
|
-
url: "https://cookingissues.com/2009/07/22/cocktails-the-science-of-shaking/",
|
|
96
|
-
},
|
|
97
|
-
{
|
|
98
|
-
name: "Cocktail Balance - Difford's Guide",
|
|
99
|
-
url: "https://www.diffordsguide.com/encyclopedia/1066/cocktails/cocktail-balance",
|
|
100
|
-
},
|
|
101
|
-
];
|
|
102
88
|
|
|
103
89
|
const seo: CocktailBalancerLocaleContent['seo'] = [
|
|
104
90
|
{
|
|
@@ -215,7 +201,6 @@ export const content: CocktailBalancerLocaleContent = {
|
|
|
215
201
|
seo,
|
|
216
202
|
faqTitle,
|
|
217
203
|
faq,
|
|
218
|
-
bibliographyTitle,
|
|
219
204
|
bibliography,
|
|
220
205
|
howTo,
|
|
221
206
|
schemas,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { bibliography } from '../bibliography';
|
|
1
2
|
import type { WithContext, SoftwareApplication, FAQPage, HowTo } from 'schema-dts';
|
|
2
3
|
import type { CocktailBalancerUI, CocktailBalancerLocaleContent } from '../index';
|
|
3
4
|
|
|
@@ -45,7 +46,6 @@ const ui: CocktailBalancerUI = {
|
|
|
45
46
|
};
|
|
46
47
|
|
|
47
48
|
const faqTitle = '常见问题';
|
|
48
|
-
const bibliographyTitle = '参考文献和来源';
|
|
49
49
|
|
|
50
50
|
const faq: CocktailBalancerLocaleContent['faq'] = [
|
|
51
51
|
{
|
|
@@ -85,20 +85,6 @@ const howTo: CocktailBalancerLocaleContent['howTo'] = [
|
|
|
85
85
|
},
|
|
86
86
|
];
|
|
87
87
|
|
|
88
|
-
const bibliography: CocktailBalancerLocaleContent['bibliography'] = [
|
|
89
|
-
{
|
|
90
|
-
name: "Liquid Intelligence: The Art and Science of the Perfect Cocktail",
|
|
91
|
-
url: "https://www.indigo.ca/en-ca/liquid-intelligence-the-art-and-science-of-the-perfect-cocktail/9780393089035.html",
|
|
92
|
-
},
|
|
93
|
-
{
|
|
94
|
-
name: "Cocktails: The Science of Shaking",
|
|
95
|
-
url: "https://cookingissues.com/2009/07/22/cocktails-the-science-of-shaking/",
|
|
96
|
-
},
|
|
97
|
-
{
|
|
98
|
-
name: "Cocktail Balance - Difford's Guide",
|
|
99
|
-
url: "https://www.diffordsguide.com/encyclopedia/1066/cocktails/cocktail-balance",
|
|
100
|
-
},
|
|
101
|
-
];
|
|
102
88
|
|
|
103
89
|
const seo: CocktailBalancerLocaleContent['seo'] = [
|
|
104
90
|
{
|
|
@@ -215,7 +201,6 @@ export const content: CocktailBalancerLocaleContent = {
|
|
|
215
201
|
seo,
|
|
216
202
|
faqTitle,
|
|
217
203
|
faq,
|
|
218
|
-
bibliographyTitle,
|
|
219
204
|
bibliography,
|
|
220
205
|
howTo,
|
|
221
206
|
schemas,
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
---
|
|
2
|
+
import { Bibliography as SharedBibliography } from '@jjlmoya/utils-shared';
|
|
3
|
+
import { fortifiedWine } from './index';
|
|
4
|
+
import type { KnownLocale } from '../../types';
|
|
5
|
+
|
|
6
|
+
interface Props {
|
|
7
|
+
locale?: KnownLocale;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
const { locale = 'es' } = Astro.props;
|
|
11
|
+
const content = await fortifiedWine.i18n[locale]?.();
|
|
12
|
+
---
|
|
13
|
+
|
|
14
|
+
{content && <SharedBibliography links={content.bibliography} />}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { BibliographyEntry } from '../../types';
|
|
2
|
+
|
|
3
|
+
export const bibliography: BibliographyEntry[] = [
|
|
4
|
+
{ name: 'Jackisch, P. — Modern Winemaking (Cornell University Press)', url: 'https://www.cornellpress.cornell.edu/book/9780801493355/modern-winemaking/' },
|
|
5
|
+
{ name: 'Goode, J. — The Science of Wine (University of California Press)', url: 'https://www.iberlibro.com/9780520379503/Science-Wine-Vine-Glass-3rd-0520379500/plp' },
|
|
6
|
+
{ name: 'Pearson Square — University of California ANR', url: 'https://www.studocu.com/en-us/document/pennsylvania-western-university-california/counseling-across-the-life-span-prevention-and-treatment-in/bcm-agricultural-sciences-pearson-square-revision-notes/153048617' },
|
|
7
|
+
];
|