@jjlmoya/utils-diy 1.10.0 → 1.12.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/category/index.ts +2 -1
- package/src/entries.ts +3 -1
- package/src/index.ts +2 -0
- package/src/pages/[locale]/[slug].astro +28 -12
- package/src/tests/locale_completeness.test.ts +7 -9
- package/src/tests/shared-test-helpers.ts +56 -0
- package/src/tests/tool_exports.test.ts +34 -0
- package/src/tests/tool_validation.test.ts +2 -2
- package/src/tool/balusterCalculator/baluster-calculator.css +9 -9
- package/src/tool/balusterCalculator/bibliography.astro +2 -10
- package/src/tool/balusterCalculator/bibliography.ts +16 -0
- package/src/tool/balusterCalculator/i18n/de.ts +2 -15
- package/src/tool/balusterCalculator/i18n/en.ts +2 -15
- package/src/tool/balusterCalculator/i18n/es.ts +2 -15
- package/src/tool/balusterCalculator/i18n/fr.ts +2 -15
- package/src/tool/balusterCalculator/i18n/id.ts +2 -15
- package/src/tool/balusterCalculator/i18n/it.ts +2 -15
- package/src/tool/balusterCalculator/i18n/ja.ts +2 -15
- package/src/tool/balusterCalculator/i18n/ko.ts +2 -15
- package/src/tool/balusterCalculator/i18n/nl.ts +2 -15
- package/src/tool/balusterCalculator/i18n/pl.ts +2 -15
- package/src/tool/balusterCalculator/i18n/pt.ts +2 -15
- package/src/tool/balusterCalculator/i18n/ru.ts +2 -15
- package/src/tool/balusterCalculator/i18n/sv.ts +2 -15
- package/src/tool/balusterCalculator/i18n/tr.ts +2 -15
- package/src/tool/balusterCalculator/i18n/zh.ts +2 -15
- package/src/tool/balusterCalculator/seo.astro +1 -1
- package/src/tool/clayCalculator/bibliography.astro +2 -10
- package/src/tool/clayCalculator/bibliography.ts +12 -0
- package/src/tool/clayCalculator/clay-shrinkage-calculator.css +30 -30
- package/src/tool/clayCalculator/i18n/de.ts +2 -11
- package/src/tool/clayCalculator/i18n/en.ts +2 -11
- package/src/tool/clayCalculator/i18n/es.ts +2 -11
- package/src/tool/clayCalculator/i18n/fr.ts +2 -11
- package/src/tool/clayCalculator/i18n/id.ts +2 -11
- package/src/tool/clayCalculator/i18n/it.ts +2 -11
- package/src/tool/clayCalculator/i18n/ja.ts +2 -11
- package/src/tool/clayCalculator/i18n/ko.ts +2 -11
- package/src/tool/clayCalculator/i18n/nl.ts +2 -11
- package/src/tool/clayCalculator/i18n/pl.ts +2 -11
- package/src/tool/clayCalculator/i18n/pt.ts +2 -11
- package/src/tool/clayCalculator/i18n/ru.ts +2 -11
- package/src/tool/clayCalculator/i18n/sv.ts +2 -11
- package/src/tool/clayCalculator/i18n/tr.ts +2 -11
- package/src/tool/clayCalculator/i18n/zh.ts +2 -11
- package/src/tool/clayCalculator/seo.astro +1 -1
- package/src/tool/concreteCalculator/bibliography.astro +2 -9
- package/src/tool/concreteCalculator/bibliography.ts +7 -0
- package/src/tool/concreteCalculator/concrete-mortar-calculator.css +18 -18
- package/src/tool/concreteCalculator/i18n/de.ts +2 -15
- package/src/tool/concreteCalculator/i18n/en.ts +2 -15
- package/src/tool/concreteCalculator/i18n/es.ts +2 -15
- package/src/tool/concreteCalculator/i18n/fr.ts +2 -15
- package/src/tool/concreteCalculator/i18n/id.ts +2 -15
- package/src/tool/concreteCalculator/i18n/it.ts +2 -15
- package/src/tool/concreteCalculator/i18n/ja.ts +2 -15
- package/src/tool/concreteCalculator/i18n/ko.ts +2 -15
- package/src/tool/concreteCalculator/i18n/nl.ts +2 -15
- package/src/tool/concreteCalculator/i18n/pl.ts +2 -15
- package/src/tool/concreteCalculator/i18n/pt.ts +2 -15
- package/src/tool/concreteCalculator/i18n/ru.ts +2 -15
- package/src/tool/concreteCalculator/i18n/sv.ts +2 -15
- package/src/tool/concreteCalculator/i18n/tr.ts +2 -15
- package/src/tool/concreteCalculator/i18n/zh.ts +2 -15
- package/src/tool/concreteCalculator/seo.astro +2 -1
- package/src/tool/cutOptimizer/bibliography.astro +2 -9
- package/src/tool/cutOptimizer/bibliography.ts +12 -0
- package/src/tool/cutOptimizer/cut-optimizer.css +25 -25
- package/src/tool/cutOptimizer/i18n/de.ts +2 -11
- package/src/tool/cutOptimizer/i18n/en.ts +2 -11
- package/src/tool/cutOptimizer/i18n/es.ts +2 -11
- package/src/tool/cutOptimizer/i18n/fr.ts +2 -11
- package/src/tool/cutOptimizer/i18n/id.ts +2 -11
- package/src/tool/cutOptimizer/i18n/it.ts +2 -11
- package/src/tool/cutOptimizer/i18n/ja.ts +2 -11
- package/src/tool/cutOptimizer/i18n/ko.ts +2 -11
- package/src/tool/cutOptimizer/i18n/nl.ts +2 -11
- package/src/tool/cutOptimizer/i18n/pl.ts +2 -11
- package/src/tool/cutOptimizer/i18n/pt.ts +2 -11
- package/src/tool/cutOptimizer/i18n/ru.ts +2 -11
- package/src/tool/cutOptimizer/i18n/sv.ts +2 -11
- package/src/tool/cutOptimizer/i18n/tr.ts +2 -11
- package/src/tool/cutOptimizer/i18n/zh.ts +2 -11
- package/src/tool/cutOptimizer/seo.astro +2 -1
- package/src/tool/drillCalculator/bibliography.astro +2 -9
- package/src/tool/drillCalculator/bibliography.ts +12 -0
- package/src/tool/drillCalculator/drill-rpm-calculator.css +57 -57
- package/src/tool/drillCalculator/i18n/de.ts +2 -5
- package/src/tool/drillCalculator/i18n/en.ts +2 -5
- package/src/tool/drillCalculator/i18n/es.ts +2 -5
- package/src/tool/drillCalculator/i18n/fr.ts +2 -5
- package/src/tool/drillCalculator/i18n/id.ts +2 -5
- package/src/tool/drillCalculator/i18n/it.ts +2 -5
- package/src/tool/drillCalculator/i18n/ja.ts +2 -5
- package/src/tool/drillCalculator/i18n/ko.ts +2 -5
- package/src/tool/drillCalculator/i18n/nl.ts +2 -5
- package/src/tool/drillCalculator/i18n/pl.ts +2 -5
- package/src/tool/drillCalculator/i18n/pt.ts +2 -5
- package/src/tool/drillCalculator/i18n/ru.ts +2 -5
- package/src/tool/drillCalculator/i18n/sv.ts +2 -5
- package/src/tool/drillCalculator/i18n/tr.ts +2 -5
- package/src/tool/drillCalculator/i18n/zh.ts +2 -5
- package/src/tool/drillCalculator/seo.astro +2 -1
- package/src/tool/drillSharpener/bibliography.astro +2 -9
- package/src/tool/drillSharpener/bibliography.ts +16 -0
- package/src/tool/drillSharpener/drill-sharpening-master.css +1 -1
- package/src/tool/drillSharpener/i18n/de.ts +2 -5
- package/src/tool/drillSharpener/i18n/en.ts +2 -6
- package/src/tool/drillSharpener/i18n/es.ts +2 -6
- package/src/tool/drillSharpener/i18n/fr.ts +2 -6
- package/src/tool/drillSharpener/i18n/id.ts +2 -5
- package/src/tool/drillSharpener/i18n/it.ts +2 -5
- package/src/tool/drillSharpener/i18n/ja.ts +2 -5
- package/src/tool/drillSharpener/i18n/ko.ts +2 -5
- package/src/tool/drillSharpener/i18n/nl.ts +2 -5
- package/src/tool/drillSharpener/i18n/pl.ts +2 -5
- package/src/tool/drillSharpener/i18n/pt.ts +2 -5
- package/src/tool/drillSharpener/i18n/ru.ts +2 -5
- package/src/tool/drillSharpener/i18n/sv.ts +2 -5
- package/src/tool/drillSharpener/i18n/tr.ts +2 -5
- package/src/tool/drillSharpener/i18n/zh.ts +2 -5
- package/src/tool/drillSharpener/seo.astro +2 -1
- package/src/tool/epoxyCalculator/bibliography.astro +2 -10
- package/src/tool/epoxyCalculator/bibliography.ts +20 -0
- package/src/tool/epoxyCalculator/epoxy-resin-calculator.css +13 -13
- package/src/tool/epoxyCalculator/i18n/de.ts +2 -5
- package/src/tool/epoxyCalculator/i18n/en.ts +2 -19
- package/src/tool/epoxyCalculator/i18n/es.ts +2 -19
- package/src/tool/epoxyCalculator/i18n/fr.ts +2 -19
- package/src/tool/epoxyCalculator/i18n/id.ts +2 -5
- package/src/tool/epoxyCalculator/i18n/it.ts +2 -5
- package/src/tool/epoxyCalculator/i18n/ja.ts +2 -5
- package/src/tool/epoxyCalculator/i18n/ko.ts +2 -5
- package/src/tool/epoxyCalculator/i18n/nl.ts +2 -5
- package/src/tool/epoxyCalculator/i18n/pl.ts +2 -5
- package/src/tool/epoxyCalculator/i18n/pt.ts +2 -5
- package/src/tool/epoxyCalculator/i18n/ru.ts +2 -5
- package/src/tool/epoxyCalculator/i18n/sv.ts +2 -5
- package/src/tool/epoxyCalculator/i18n/tr.ts +2 -5
- package/src/tool/epoxyCalculator/i18n/zh.ts +2 -5
- package/src/tool/epoxyCalculator/seo.astro +1 -1
- package/src/tool/furnitureFit/bibliography.astro +2 -9
- package/src/tool/furnitureFit/bibliography.ts +12 -0
- package/src/tool/furnitureFit/furniture-fit-calculator.css +7 -7
- package/src/tool/furnitureFit/i18n/de.ts +2 -5
- package/src/tool/furnitureFit/i18n/en.ts +2 -5
- package/src/tool/furnitureFit/i18n/es.ts +2 -5
- package/src/tool/furnitureFit/i18n/fr.ts +2 -5
- package/src/tool/furnitureFit/i18n/id.ts +2 -5
- package/src/tool/furnitureFit/i18n/it.ts +2 -5
- package/src/tool/furnitureFit/i18n/ja.ts +2 -5
- package/src/tool/furnitureFit/i18n/ko.ts +2 -5
- package/src/tool/furnitureFit/i18n/nl.ts +2 -5
- package/src/tool/furnitureFit/i18n/pl.ts +2 -5
- package/src/tool/furnitureFit/i18n/pt.ts +2 -5
- package/src/tool/furnitureFit/i18n/ru.ts +2 -5
- package/src/tool/furnitureFit/i18n/sv.ts +2 -5
- package/src/tool/furnitureFit/i18n/tr.ts +2 -5
- package/src/tool/furnitureFit/i18n/zh.ts +2 -5
- package/src/tool/furnitureFit/seo.astro +2 -1
- package/src/tool/mortarCalculator/bibliography.astro +2 -9
- package/src/tool/mortarCalculator/bibliography.ts +20 -0
- package/src/tool/mortarCalculator/i18n/de.ts +2 -5
- package/src/tool/mortarCalculator/i18n/en.ts +2 -19
- package/src/tool/mortarCalculator/i18n/es.ts +2 -19
- package/src/tool/mortarCalculator/i18n/fr.ts +2 -19
- package/src/tool/mortarCalculator/i18n/id.ts +2 -5
- package/src/tool/mortarCalculator/i18n/it.ts +2 -5
- package/src/tool/mortarCalculator/i18n/ja.ts +2 -5
- package/src/tool/mortarCalculator/i18n/ko.ts +2 -5
- package/src/tool/mortarCalculator/i18n/nl.ts +2 -5
- package/src/tool/mortarCalculator/i18n/pl.ts +2 -5
- package/src/tool/mortarCalculator/i18n/pt.ts +2 -5
- package/src/tool/mortarCalculator/i18n/ru.ts +2 -5
- package/src/tool/mortarCalculator/i18n/sv.ts +2 -5
- package/src/tool/mortarCalculator/i18n/tr.ts +2 -5
- package/src/tool/mortarCalculator/i18n/zh.ts +2 -5
- package/src/tool/mortarCalculator/lime-mortar-calculator.css +30 -30
- package/src/tool/mortarCalculator/seo.astro +2 -1
- package/src/tool/passepartoutCalculator/bibliography.astro +2 -9
- package/src/tool/passepartoutCalculator/bibliography.ts +16 -0
- package/src/tool/passepartoutCalculator/i18n/de.ts +2 -6
- package/src/tool/passepartoutCalculator/i18n/en.ts +2 -15
- package/src/tool/passepartoutCalculator/i18n/es.ts +2 -15
- package/src/tool/passepartoutCalculator/i18n/fr.ts +2 -15
- package/src/tool/passepartoutCalculator/i18n/id.ts +2 -6
- package/src/tool/passepartoutCalculator/i18n/it.ts +2 -6
- package/src/tool/passepartoutCalculator/i18n/ja.ts +2 -6
- package/src/tool/passepartoutCalculator/i18n/ko.ts +2 -6
- package/src/tool/passepartoutCalculator/i18n/nl.ts +2 -6
- package/src/tool/passepartoutCalculator/i18n/pl.ts +2 -6
- package/src/tool/passepartoutCalculator/i18n/pt.ts +2 -6
- package/src/tool/passepartoutCalculator/i18n/ru.ts +2 -6
- package/src/tool/passepartoutCalculator/i18n/sv.ts +2 -6
- package/src/tool/passepartoutCalculator/i18n/tr.ts +2 -6
- package/src/tool/passepartoutCalculator/i18n/zh.ts +2 -6
- package/src/tool/passepartoutCalculator/passepartout-calculator.css +26 -26
- package/src/tool/passepartoutCalculator/seo.astro +2 -1
- package/src/tool/stairCalculator/bibliography.astro +2 -9
- package/src/tool/stairCalculator/bibliography.ts +16 -0
- package/src/tool/stairCalculator/i18n/de.ts +2 -5
- package/src/tool/stairCalculator/i18n/en.ts +2 -6
- package/src/tool/stairCalculator/i18n/es.ts +2 -6
- package/src/tool/stairCalculator/i18n/fr.ts +2 -6
- package/src/tool/stairCalculator/i18n/id.ts +2 -5
- package/src/tool/stairCalculator/i18n/it.ts +2 -5
- package/src/tool/stairCalculator/i18n/ja.ts +2 -5
- package/src/tool/stairCalculator/i18n/ko.ts +2 -5
- package/src/tool/stairCalculator/i18n/nl.ts +2 -5
- package/src/tool/stairCalculator/i18n/pl.ts +2 -5
- package/src/tool/stairCalculator/i18n/pt.ts +2 -5
- package/src/tool/stairCalculator/i18n/ru.ts +2 -5
- package/src/tool/stairCalculator/i18n/sv.ts +2 -5
- package/src/tool/stairCalculator/i18n/tr.ts +2 -5
- package/src/tool/stairCalculator/i18n/zh.ts +2 -5
- package/src/tool/stairCalculator/seo.astro +2 -1
- package/src/tool/stairCalculator/stair-calculator.css +10 -10
- package/src/tool/thermalExpansionCalculator/bibliography.astro +2 -9
- package/src/tool/thermalExpansionCalculator/bibliography.ts +16 -0
- package/src/tool/thermalExpansionCalculator/i18n/de.ts +2 -6
- package/src/tool/thermalExpansionCalculator/i18n/en.ts +2 -6
- package/src/tool/thermalExpansionCalculator/i18n/es.ts +2 -6
- package/src/tool/thermalExpansionCalculator/i18n/fr.ts +2 -6
- package/src/tool/thermalExpansionCalculator/i18n/id.ts +2 -6
- package/src/tool/thermalExpansionCalculator/i18n/it.ts +2 -6
- package/src/tool/thermalExpansionCalculator/i18n/ja.ts +2 -6
- package/src/tool/thermalExpansionCalculator/i18n/ko.ts +2 -6
- package/src/tool/thermalExpansionCalculator/i18n/nl.ts +2 -6
- package/src/tool/thermalExpansionCalculator/i18n/pl.ts +2 -6
- package/src/tool/thermalExpansionCalculator/i18n/pt.ts +2 -6
- package/src/tool/thermalExpansionCalculator/i18n/ru.ts +2 -6
- package/src/tool/thermalExpansionCalculator/i18n/sv.ts +2 -6
- package/src/tool/thermalExpansionCalculator/i18n/tr.ts +2 -6
- package/src/tool/thermalExpansionCalculator/i18n/zh.ts +2 -6
- package/src/tool/thermalExpansionCalculator/seo.astro +2 -1
- package/src/tool/thermalExpansionCalculator/thermal-expansion-calculator.css +19 -19
- package/src/tool/voltageDropCalculator/bibliography.astro +2 -9
- package/src/tool/voltageDropCalculator/bibliography.ts +16 -0
- package/src/tool/voltageDropCalculator/i18n/de.ts +2 -5
- package/src/tool/voltageDropCalculator/i18n/en.ts +2 -6
- package/src/tool/voltageDropCalculator/i18n/es.ts +2 -6
- package/src/tool/voltageDropCalculator/i18n/fr.ts +2 -6
- package/src/tool/voltageDropCalculator/i18n/id.ts +2 -5
- package/src/tool/voltageDropCalculator/i18n/it.ts +2 -5
- package/src/tool/voltageDropCalculator/i18n/ja.ts +2 -5
- package/src/tool/voltageDropCalculator/i18n/ko.ts +2 -5
- package/src/tool/voltageDropCalculator/i18n/nl.ts +2 -5
- package/src/tool/voltageDropCalculator/i18n/pl.ts +2 -5
- package/src/tool/voltageDropCalculator/i18n/pt.ts +2 -5
- package/src/tool/voltageDropCalculator/i18n/ru.ts +2 -5
- package/src/tool/voltageDropCalculator/i18n/sv.ts +2 -5
- package/src/tool/voltageDropCalculator/i18n/tr.ts +2 -5
- package/src/tool/voltageDropCalculator/i18n/zh.ts +2 -5
- package/src/tool/voltageDropCalculator/seo.astro +2 -1
- package/src/tool/voltageDropCalculator/voltage-drop-calculator.css +24 -24
- package/src/tool/workshopFractionConverter/bibliography.astro +6 -0
- package/src/tool/workshopFractionConverter/bibliography.ts +12 -0
- package/src/tool/workshopFractionConverter/client.ts +183 -0
- package/src/tool/workshopFractionConverter/component.astro +226 -0
- package/src/tool/workshopFractionConverter/converter.ts +110 -0
- package/src/tool/workshopFractionConverter/engine.ts +223 -0
- package/src/tool/workshopFractionConverter/entry.ts +24 -0
- package/src/tool/workshopFractionConverter/i18n/de.ts +141 -0
- package/src/tool/workshopFractionConverter/i18n/en.ts +141 -0
- package/src/tool/workshopFractionConverter/i18n/es.ts +141 -0
- package/src/tool/workshopFractionConverter/i18n/fr.ts +141 -0
- package/src/tool/workshopFractionConverter/i18n/id.ts +141 -0
- package/src/tool/workshopFractionConverter/i18n/it.ts +141 -0
- package/src/tool/workshopFractionConverter/i18n/ja.ts +141 -0
- package/src/tool/workshopFractionConverter/i18n/ko.ts +141 -0
- package/src/tool/workshopFractionConverter/i18n/nl.ts +141 -0
- package/src/tool/workshopFractionConverter/i18n/pl.ts +141 -0
- package/src/tool/workshopFractionConverter/i18n/pt.ts +141 -0
- package/src/tool/workshopFractionConverter/i18n/ru.ts +141 -0
- package/src/tool/workshopFractionConverter/i18n/sv.ts +141 -0
- package/src/tool/workshopFractionConverter/i18n/tr.ts +141 -0
- package/src/tool/workshopFractionConverter/i18n/zh.ts +141 -0
- package/src/tool/workshopFractionConverter/index.ts +11 -0
- package/src/tool/workshopFractionConverter/seo.astro +15 -0
- package/src/tool/workshopFractionConverter/types-client.ts +89 -0
- package/src/tool/workshopFractionConverter/ui-updater.ts +94 -0
- package/src/tool/workshopFractionConverter/ui.ts +38 -0
- package/src/tool/workshopFractionConverter/workshop-fraction-converter.css +563 -0
- package/src/tools.ts +2 -1
- package/src/types.ts +1 -1
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowToThing, SoftwareApplication } from 'schema-dts';
|
|
2
2
|
import type { ToolLocaleContent } from '../../../types';
|
|
3
3
|
import type { BalusterCalculatorUI } from '../ui';
|
|
4
|
+
import { bibliography } from '../bibliography';
|
|
4
5
|
|
|
5
6
|
const slug = 'calculadora-balaustres';
|
|
6
7
|
const title = 'Calculadora de Balaústres: Espaçamento Exato para Guardas';
|
|
@@ -89,21 +90,7 @@ export const content: ToolLocaleContent<BalusterCalculatorUI> = {
|
|
|
89
90
|
description,
|
|
90
91
|
faqTitle: 'Perguntas Frequentes',
|
|
91
92
|
faq: faqData,
|
|
92
|
-
|
|
93
|
-
bibliography: [
|
|
94
|
-
{
|
|
95
|
-
name: 'RGEU - Regulamento Geral das Edificações Urbanas (Portugal)',
|
|
96
|
-
url: 'https://DiariodaRepublica.pt/',
|
|
97
|
-
},
|
|
98
|
-
{
|
|
99
|
-
name: 'IRC - International Residential Code (EUA)',
|
|
100
|
-
url: 'https://codes.iccsafe.org/content/IRC2021',
|
|
101
|
-
},
|
|
102
|
-
{
|
|
103
|
-
name: 'IBC - International Building Code',
|
|
104
|
-
url: 'https://codes.iccsafe.org/content/IBC2021',
|
|
105
|
-
},
|
|
106
|
-
],
|
|
93
|
+
bibliography,
|
|
107
94
|
howTo: howToData,
|
|
108
95
|
schemas: [faqSchema, howToSchema, appSchema],
|
|
109
96
|
seo: [
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowToThing, SoftwareApplication } from 'schema-dts';
|
|
2
2
|
import type { ToolLocaleContent } from '../../../types';
|
|
3
3
|
import type { BalusterCalculatorUI } from '../ui';
|
|
4
|
+
import { bibliography } from '../bibliography';
|
|
4
5
|
|
|
5
6
|
const slug = 'kalkulyator-balyasin';
|
|
6
7
|
const title = 'Калькулятор балясин: Точный расчет расстояния для ограждений';
|
|
@@ -89,21 +90,7 @@ export const content: ToolLocaleContent<BalusterCalculatorUI> = {
|
|
|
89
90
|
description,
|
|
90
91
|
faqTitle: 'Часто задаваемые вопросы',
|
|
91
92
|
faq: faqData,
|
|
92
|
-
|
|
93
|
-
bibliography: [
|
|
94
|
-
{
|
|
95
|
-
name: 'ГОСТ 25772-2021 Ограждения лестниц, балконов и крыш стальные',
|
|
96
|
-
url: 'https://docs.cntd.ru/',
|
|
97
|
-
},
|
|
98
|
-
{
|
|
99
|
-
name: 'IRC - International Residential Code (США)',
|
|
100
|
-
url: 'https://codes.iccsafe.org/content/IRC2021',
|
|
101
|
-
},
|
|
102
|
-
{
|
|
103
|
-
name: 'IBC - International Building Code',
|
|
104
|
-
url: 'https://codes.iccsafe.org/content/IBC2021',
|
|
105
|
-
},
|
|
106
|
-
],
|
|
93
|
+
bibliography,
|
|
107
94
|
howTo: howToData,
|
|
108
95
|
schemas: [faqSchema, howToSchema, appSchema],
|
|
109
96
|
seo: [
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowToThing, SoftwareApplication } from 'schema-dts';
|
|
2
2
|
import type { ToolLocaleContent } from '../../../types';
|
|
3
3
|
import type { BalusterCalculatorUI } from '../ui';
|
|
4
|
+
import { bibliography } from '../bibliography';
|
|
4
5
|
|
|
5
6
|
const slug = 'baluster-kalkylator';
|
|
6
7
|
const title = 'Baluster kalkylator: Exakt avstånd för räcken';
|
|
@@ -89,21 +90,7 @@ export const content: ToolLocaleContent<BalusterCalculatorUI> = {
|
|
|
89
90
|
description,
|
|
90
91
|
faqTitle: 'Vanliga frågor',
|
|
91
92
|
faq: faqData,
|
|
92
|
-
|
|
93
|
-
bibliography: [
|
|
94
|
-
{
|
|
95
|
-
name: 'Boverket - Regler för räcken (Sverige)',
|
|
96
|
-
url: 'https://www.boverket.se/',
|
|
97
|
-
},
|
|
98
|
-
{
|
|
99
|
-
name: 'IRC - International Residential Code (USA)',
|
|
100
|
-
url: 'https://codes.iccsafe.org/content/IRC2021',
|
|
101
|
-
},
|
|
102
|
-
{
|
|
103
|
-
name: 'IBC - International Building Code',
|
|
104
|
-
url: 'https://codes.iccsafe.org/content/IBC2021',
|
|
105
|
-
},
|
|
106
|
-
],
|
|
93
|
+
bibliography,
|
|
107
94
|
howTo: howToData,
|
|
108
95
|
schemas: [faqSchema, howToSchema, appSchema],
|
|
109
96
|
seo: [
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowToThing, SoftwareApplication } from 'schema-dts';
|
|
2
2
|
import type { ToolLocaleContent } from '../../../types';
|
|
3
3
|
import type { BalusterCalculatorUI } from '../ui';
|
|
4
|
+
import { bibliography } from '../bibliography';
|
|
4
5
|
|
|
5
6
|
const slug = 'korkuluk-hesaplama';
|
|
6
7
|
const title = 'Korkuluk Hesaplayıcı: Korkuluklar İçin Tam Boşluk Hesabı';
|
|
@@ -89,21 +90,7 @@ export const content: ToolLocaleContent<BalusterCalculatorUI> = {
|
|
|
89
90
|
description,
|
|
90
91
|
faqTitle: 'Sıkça Sorulan Sorular',
|
|
91
92
|
faq: faqData,
|
|
92
|
-
|
|
93
|
-
bibliography: [
|
|
94
|
-
{
|
|
95
|
-
name: 'TS 9111 - Özürlülerin İkamet Edeceği Binaların Düzenlenmesi Kuralları (Türkiye)',
|
|
96
|
-
url: 'https://www.tse.org.tr/',
|
|
97
|
-
},
|
|
98
|
-
{
|
|
99
|
-
name: 'IRC - International Residential Code (ABD)',
|
|
100
|
-
url: 'https://codes.iccsafe.org/content/IRC2021',
|
|
101
|
-
},
|
|
102
|
-
{
|
|
103
|
-
name: 'IBC - International Building Code',
|
|
104
|
-
url: 'https://codes.iccsafe.org/content/IBC2021',
|
|
105
|
-
},
|
|
106
|
-
],
|
|
93
|
+
bibliography,
|
|
107
94
|
howTo: howToData,
|
|
108
95
|
schemas: [faqSchema, howToSchema, appSchema],
|
|
109
96
|
seo: [
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowToThing, SoftwareApplication } from 'schema-dts';
|
|
2
2
|
import type { ToolLocaleContent } from '../../../types';
|
|
3
3
|
import type { BalusterCalculatorUI } from '../ui';
|
|
4
|
+
import { bibliography } from '../bibliography';
|
|
4
5
|
|
|
5
6
|
const slug = 'baluster-calculator';
|
|
6
7
|
const title = '楼梯护栏子柱计算器:精确间距计算';
|
|
@@ -89,21 +90,7 @@ export const content: ToolLocaleContent<BalusterCalculatorUI> = {
|
|
|
89
90
|
description,
|
|
90
91
|
faqTitle: '常见问题',
|
|
91
92
|
faq: faqData,
|
|
92
|
-
|
|
93
|
-
bibliography: [
|
|
94
|
-
{
|
|
95
|
-
name: '住宅建筑规范 (中国)',
|
|
96
|
-
url: 'https://www.mohurd.gov.cn/',
|
|
97
|
-
},
|
|
98
|
-
{
|
|
99
|
-
name: 'IRC - 国际住宅规范 (美国)',
|
|
100
|
-
url: 'https://codes.iccsafe.org/content/IRC2021',
|
|
101
|
-
},
|
|
102
|
-
{
|
|
103
|
-
name: 'IBC - 国际建筑规范',
|
|
104
|
-
url: 'https://codes.iccsafe.org/content/IBC2021',
|
|
105
|
-
},
|
|
106
|
-
],
|
|
93
|
+
bibliography,
|
|
107
94
|
howTo: howToData,
|
|
108
95
|
schemas: [faqSchema, howToSchema, appSchema],
|
|
109
96
|
seo: [
|
|
@@ -12,4 +12,4 @@ const content = await balusterCalculator.i18n[locale]?.();
|
|
|
12
12
|
if (!content) return null;
|
|
13
13
|
---
|
|
14
14
|
|
|
15
|
-
<SEORenderer content={{ locale
|
|
15
|
+
{content.seo?.length > 0 && <SEORenderer content={{ locale, sections: content.seo }} />}
|
|
@@ -1,14 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
import { Bibliography as SharedBibliography } from '@jjlmoya/utils-shared';
|
|
3
|
-
import {
|
|
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 clayCalculator.i18n[locale]?.();
|
|
3
|
+
import { bibliography } from './bibliography';
|
|
12
4
|
---
|
|
13
5
|
|
|
14
|
-
|
|
6
|
+
<SharedBibliography links={bibliography} />
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import type { BibliographyEntry } from '../../types';
|
|
2
|
+
|
|
3
|
+
export const bibliography: BibliographyEntry[] = [
|
|
4
|
+
{
|
|
5
|
+
name: "The Potter's Dictionary - Clay Shrinkage",
|
|
6
|
+
url: 'https://digitalfire.com/glossary/firing+shrinkage',
|
|
7
|
+
},
|
|
8
|
+
{
|
|
9
|
+
name: 'Ceramic Arts Network - Understanding Shrinkage',
|
|
10
|
+
url: 'https://ceramicartsnetwork.org/daily/article/How-to-Determine-Clay-Shrinkage-and-Make-a-Shrink-Rule',
|
|
11
|
+
},
|
|
12
|
+
];
|
|
@@ -394,137 +394,137 @@
|
|
|
394
394
|
color: #047857;
|
|
395
395
|
}
|
|
396
396
|
|
|
397
|
-
|
|
397
|
+
.theme-dark .cc-root {
|
|
398
398
|
background: linear-gradient(135deg, #0f172a, #1e293b);
|
|
399
399
|
border-color: #334155;
|
|
400
400
|
}
|
|
401
401
|
|
|
402
|
-
|
|
402
|
+
.theme-dark .cc-label {
|
|
403
403
|
color: #fbbf24;
|
|
404
404
|
}
|
|
405
405
|
|
|
406
|
-
|
|
406
|
+
.theme-dark .cc-input {
|
|
407
407
|
background: #1e293b;
|
|
408
408
|
border-color: #b45309;
|
|
409
409
|
color: #f8fafc;
|
|
410
410
|
}
|
|
411
411
|
|
|
412
|
-
|
|
412
|
+
.theme-dark .cc-input:focus {
|
|
413
413
|
border-color: #f59e0b;
|
|
414
414
|
box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
|
|
415
415
|
}
|
|
416
416
|
|
|
417
|
-
|
|
417
|
+
.theme-dark .cc-slider {
|
|
418
418
|
background: rgba(180, 83, 9, 0.3);
|
|
419
419
|
}
|
|
420
420
|
|
|
421
|
-
|
|
421
|
+
.theme-dark .cc-slider-val {
|
|
422
422
|
color: #fbbf24;
|
|
423
423
|
}
|
|
424
424
|
|
|
425
|
-
|
|
425
|
+
.theme-dark .cc-slider-labels {
|
|
426
426
|
color: #d97706;
|
|
427
427
|
}
|
|
428
428
|
|
|
429
|
-
|
|
429
|
+
.theme-dark .cc-preset-terracota {
|
|
430
430
|
background: rgba(249, 115, 22, 0.15);
|
|
431
431
|
border-color: #c2410c;
|
|
432
432
|
color: #fb923c;
|
|
433
433
|
}
|
|
434
434
|
|
|
435
|
-
|
|
435
|
+
.theme-dark .cc-preset-terracota:hover {
|
|
436
436
|
background: rgba(249, 115, 22, 0.25);
|
|
437
437
|
}
|
|
438
438
|
|
|
439
|
-
|
|
439
|
+
.theme-dark .cc-preset-gres {
|
|
440
440
|
background: rgba(245, 158, 11, 0.15);
|
|
441
441
|
border-color: #b45309;
|
|
442
442
|
color: #fbbf24;
|
|
443
443
|
}
|
|
444
444
|
|
|
445
|
-
|
|
445
|
+
.theme-dark .cc-preset-gres:hover {
|
|
446
446
|
background: rgba(245, 158, 11, 0.25);
|
|
447
447
|
}
|
|
448
448
|
|
|
449
|
-
|
|
449
|
+
.theme-dark .cc-preset-porcelana {
|
|
450
450
|
background: rgba(220, 38, 38, 0.15);
|
|
451
451
|
border-color: #991b1b;
|
|
452
452
|
color: #f87171;
|
|
453
453
|
}
|
|
454
454
|
|
|
455
|
-
|
|
455
|
+
.theme-dark .cc-preset-porcelana:hover {
|
|
456
456
|
background: rgba(220, 38, 38, 0.25);
|
|
457
457
|
}
|
|
458
458
|
|
|
459
|
-
|
|
459
|
+
.theme-dark .cc-result-box {
|
|
460
460
|
background: #1e293b;
|
|
461
461
|
border-color: #b45309;
|
|
462
462
|
}
|
|
463
463
|
|
|
464
|
-
|
|
464
|
+
.theme-dark .cc-result-title {
|
|
465
465
|
color: #fbbf24;
|
|
466
466
|
}
|
|
467
467
|
|
|
468
|
-
|
|
468
|
+
.theme-dark .cc-result-label {
|
|
469
469
|
color: #94a3b8;
|
|
470
470
|
}
|
|
471
471
|
|
|
472
|
-
|
|
472
|
+
.theme-dark .cc-value-final {
|
|
473
473
|
color: #34d399;
|
|
474
474
|
}
|
|
475
475
|
|
|
476
|
-
|
|
476
|
+
.theme-dark .cc-value-loss {
|
|
477
477
|
color: #f87171;
|
|
478
478
|
}
|
|
479
479
|
|
|
480
|
-
|
|
480
|
+
.theme-dark .cc-tip {
|
|
481
481
|
background: rgba(180, 83, 9, 0.15);
|
|
482
482
|
border-color: rgba(180, 83, 9, 0.4);
|
|
483
483
|
color: #fbbf24;
|
|
484
484
|
}
|
|
485
485
|
|
|
486
|
-
|
|
486
|
+
.theme-dark .cc-panel-right {
|
|
487
487
|
background: linear-gradient(135deg, #1e293b, #0f172a);
|
|
488
488
|
}
|
|
489
489
|
|
|
490
|
-
|
|
490
|
+
.theme-dark .cc-circle-initial {
|
|
491
491
|
border-color: #b45309;
|
|
492
492
|
background: rgba(180, 83, 9, 0.1);
|
|
493
493
|
}
|
|
494
494
|
|
|
495
|
-
|
|
495
|
+
.theme-dark .cc-badge-initial {
|
|
496
496
|
background: #d97706;
|
|
497
497
|
}
|
|
498
498
|
|
|
499
|
-
|
|
499
|
+
.theme-dark .cc-circle-final {
|
|
500
500
|
border-color: #10b981;
|
|
501
501
|
background: rgba(16, 185, 129, 0.2);
|
|
502
502
|
}
|
|
503
503
|
|
|
504
|
-
|
|
504
|
+
.theme-dark .cc-viz-number {
|
|
505
505
|
color: #6ee7b7;
|
|
506
506
|
}
|
|
507
507
|
|
|
508
|
-
|
|
508
|
+
.theme-dark .cc-viz-unit {
|
|
509
509
|
color: #34d399;
|
|
510
510
|
}
|
|
511
511
|
|
|
512
|
-
|
|
512
|
+
.theme-dark .cc-badge-loss {
|
|
513
513
|
background: #ef4444;
|
|
514
514
|
}
|
|
515
515
|
|
|
516
|
-
|
|
516
|
+
.theme-dark .cc-area-item {
|
|
517
517
|
background: rgba(30, 41, 59, 0.6);
|
|
518
518
|
}
|
|
519
519
|
|
|
520
|
-
|
|
520
|
+
.theme-dark .cc-area-label {
|
|
521
521
|
color: #94a3b8;
|
|
522
522
|
}
|
|
523
523
|
|
|
524
|
-
|
|
524
|
+
.theme-dark .cc-area-initial {
|
|
525
525
|
color: #fbbf24;
|
|
526
526
|
}
|
|
527
527
|
|
|
528
|
-
|
|
528
|
+
.theme-dark .cc-area-final {
|
|
529
529
|
color: #34d399;
|
|
530
530
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowToThing, SoftwareApplication } from 'schema-dts';
|
|
2
2
|
import type { ToolLocaleContent } from '../../../types';
|
|
3
3
|
import type { ClayCalculatorUI } from '../ui';
|
|
4
|
+
import { bibliography } from '../bibliography';
|
|
4
5
|
|
|
5
6
|
const slug = 'ton-schwindungsrechner';
|
|
6
7
|
const title = 'Ton Schwindungsrechner: Exakte Maße für Keramik';
|
|
@@ -89,17 +90,7 @@ export const content: ToolLocaleContent<ClayCalculatorUI> = {
|
|
|
89
90
|
description,
|
|
90
91
|
faqTitle: 'Häufig gestellte Fragen',
|
|
91
92
|
faq: faqData,
|
|
92
|
-
|
|
93
|
-
bibliography: [
|
|
94
|
-
{
|
|
95
|
-
name: 'The Potter\'s Dictionary - Clay Shrinkage',
|
|
96
|
-
url: 'https://digitalfire.com/glossary/firing+shrinkage',
|
|
97
|
-
},
|
|
98
|
-
{
|
|
99
|
-
name: 'Ceramic Arts Network - Understanding Shrinkage',
|
|
100
|
-
url: 'https://ceramicartsnetwork.org/daily/article/How-to-Determine-Clay-Shrinkage-and-Make-a-Shrink-Rule',
|
|
101
|
-
},
|
|
102
|
-
],
|
|
93
|
+
bibliography,
|
|
103
94
|
howTo: howToData,
|
|
104
95
|
schemas: [faqSchema, howToSchema, appSchema],
|
|
105
96
|
seo: [
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowToThing, SoftwareApplication } from 'schema-dts';
|
|
2
2
|
import type { ToolLocaleContent } from '../../../types';
|
|
3
3
|
import type { ClayCalculatorUI } from '../ui';
|
|
4
|
+
import { bibliography } from '../bibliography';
|
|
4
5
|
|
|
5
6
|
const slug = 'clay-shrinkage-calculator';
|
|
6
7
|
const title = 'Clay Shrinkage Calculator: Exact Dimensions for Ceramics';
|
|
@@ -89,17 +90,7 @@ export const content: ToolLocaleContent<ClayCalculatorUI> = {
|
|
|
89
90
|
description,
|
|
90
91
|
faqTitle: 'Frequently Asked Questions',
|
|
91
92
|
faq: faqData,
|
|
92
|
-
|
|
93
|
-
bibliography: [
|
|
94
|
-
{
|
|
95
|
-
name: "The Potter's Dictionary - Clay Shrinkage",
|
|
96
|
-
url: 'https://digitalfire.com/glossary/firing+shrinkage',
|
|
97
|
-
},
|
|
98
|
-
{
|
|
99
|
-
name: 'Ceramic Arts Network - Understanding Shrinkage',
|
|
100
|
-
url: 'https://ceramicartsnetwork.org/daily/article/How-to-Determine-Clay-Shrinkage-and-Make-a-Shrink-Rule',
|
|
101
|
-
},
|
|
102
|
-
],
|
|
93
|
+
bibliography,
|
|
103
94
|
howTo: howToData,
|
|
104
95
|
schemas: [faqSchema, howToSchema, appSchema],
|
|
105
96
|
seo: [
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowToThing, SoftwareApplication } from 'schema-dts';
|
|
2
2
|
import type { ToolLocaleContent } from '../../../types';
|
|
3
3
|
import type { ClayCalculatorUI } from '../ui';
|
|
4
|
+
import { bibliography } from '../bibliography';
|
|
4
5
|
|
|
5
6
|
const slug = 'calculadora-arcilla';
|
|
6
7
|
const title = 'Calculadora de Contracción de Arcilla: Dimensiones Exactas para Cerámica';
|
|
@@ -89,17 +90,7 @@ export const content: ToolLocaleContent<ClayCalculatorUI> = {
|
|
|
89
90
|
description,
|
|
90
91
|
faqTitle: 'Preguntas Frecuentes',
|
|
91
92
|
faq: faqData,
|
|
92
|
-
|
|
93
|
-
bibliography: [
|
|
94
|
-
{
|
|
95
|
-
name: 'The Potter\'s Dictionary - Clay Shrinkage',
|
|
96
|
-
url: 'https://digitalfire.com/glossary/firing+shrinkage',
|
|
97
|
-
},
|
|
98
|
-
{
|
|
99
|
-
name: 'Ceramic Arts Network - Understanding Shrinkage',
|
|
100
|
-
url: 'https://ceramicartsnetwork.org/daily/article/How-to-Determine-Clay-Shrinkage-and-Make-a-Shrink-Rule',
|
|
101
|
-
},
|
|
102
|
-
],
|
|
93
|
+
bibliography,
|
|
103
94
|
howTo: howToData,
|
|
104
95
|
schemas: [faqSchema, howToSchema, appSchema],
|
|
105
96
|
seo: [
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowToThing, SoftwareApplication } from 'schema-dts';
|
|
2
2
|
import type { ToolLocaleContent } from '../../../types';
|
|
3
3
|
import type { ClayCalculatorUI } from '../ui';
|
|
4
|
+
import { bibliography } from '../bibliography';
|
|
4
5
|
|
|
5
6
|
const slug = 'calculateur-retrait-argile';
|
|
6
7
|
const title = "Calculateur de Retrait d'Argile : Dimensions Exactes pour la Céramique";
|
|
@@ -89,17 +90,7 @@ export const content: ToolLocaleContent<ClayCalculatorUI> = {
|
|
|
89
90
|
description,
|
|
90
91
|
faqTitle: 'Questions Fréquentes',
|
|
91
92
|
faq: faqData,
|
|
92
|
-
|
|
93
|
-
bibliography: [
|
|
94
|
-
{
|
|
95
|
-
name: "The Potter's Dictionary - Clay Shrinkage",
|
|
96
|
-
url: 'https://digitalfire.com/glossary/firing+shrinkage',
|
|
97
|
-
},
|
|
98
|
-
{
|
|
99
|
-
name: 'Ceramic Arts Network - Understanding Shrinkage',
|
|
100
|
-
url: 'https://ceramicartsnetwork.org/daily/article/How-to-Determine-Clay-Shrinkage-and-Make-a-Shrink-Rule',
|
|
101
|
-
},
|
|
102
|
-
],
|
|
93
|
+
bibliography,
|
|
103
94
|
howTo: howToData,
|
|
104
95
|
schemas: [faqSchema, howToSchema, appSchema],
|
|
105
96
|
seo: [
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowToThing, SoftwareApplication } from 'schema-dts';
|
|
2
2
|
import type { ToolLocaleContent } from '../../../types';
|
|
3
3
|
import type { ClayCalculatorUI } from '../ui';
|
|
4
|
+
import { bibliography } from '../bibliography';
|
|
4
5
|
|
|
5
6
|
const slug = 'kalkulator-penyusutan-tanah-liat';
|
|
6
7
|
const title = 'Kalkulator Penyusutan Tanah Liat: Dimensi Tepat untuk Keramik';
|
|
@@ -89,17 +90,7 @@ export const content: ToolLocaleContent<ClayCalculatorUI> = {
|
|
|
89
90
|
description,
|
|
90
91
|
faqTitle: 'Pertanyaan Umum',
|
|
91
92
|
faq: faqData,
|
|
92
|
-
|
|
93
|
-
bibliography: [
|
|
94
|
-
{
|
|
95
|
-
name: 'The Potter\'s Dictionary - Clay Shrinkage',
|
|
96
|
-
url: 'https://digitalfire.com/glossary/firing+shrinkage',
|
|
97
|
-
},
|
|
98
|
-
{
|
|
99
|
-
name: 'Ceramic Arts Network - Understanding Shrinkage',
|
|
100
|
-
url: 'https://ceramicartsnetwork.org/daily/article/How-to-Determine-Clay-Shrinkage-and-Make-a-Shrink-Rule',
|
|
101
|
-
},
|
|
102
|
-
],
|
|
93
|
+
bibliography,
|
|
103
94
|
howTo: howToData,
|
|
104
95
|
schemas: [faqSchema, howToSchema, appSchema],
|
|
105
96
|
seo: [
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowToThing, SoftwareApplication } from 'schema-dts';
|
|
2
2
|
import type { ToolLocaleContent } from '../../../types';
|
|
3
3
|
import type { ClayCalculatorUI } from '../ui';
|
|
4
|
+
import { bibliography } from '../bibliography';
|
|
4
5
|
|
|
5
6
|
const slug = 'calcolatrice-argilla';
|
|
6
7
|
const title = 'Calcolatrice Restringimento Argilla: Dimensioni Esatte per Ceramica';
|
|
@@ -89,17 +90,7 @@ export const content: ToolLocaleContent<ClayCalculatorUI> = {
|
|
|
89
90
|
description,
|
|
90
91
|
faqTitle: 'Domande Frequenti',
|
|
91
92
|
faq: faqData,
|
|
92
|
-
|
|
93
|
-
bibliography: [
|
|
94
|
-
{
|
|
95
|
-
name: 'The Potter\'s Dictionary - Clay Shrinkage',
|
|
96
|
-
url: 'https://digitalfire.com/glossary/firing+shrinkage',
|
|
97
|
-
},
|
|
98
|
-
{
|
|
99
|
-
name: 'Ceramic Arts Network - Understanding Shrinkage',
|
|
100
|
-
url: 'https://ceramicartsnetwork.org/daily/article/How-to-Determine-Clay-Shrinkage-and-Make-a-Shrink-Rule',
|
|
101
|
-
},
|
|
102
|
-
],
|
|
93
|
+
bibliography,
|
|
103
94
|
howTo: howToData,
|
|
104
95
|
schemas: [faqSchema, howToSchema, appSchema],
|
|
105
96
|
seo: [
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowToThing, SoftwareApplication } from 'schema-dts';
|
|
2
2
|
import type { ToolLocaleContent } from '../../../types';
|
|
3
3
|
import type { ClayCalculatorUI } from '../ui';
|
|
4
|
+
import { bibliography } from '../bibliography';
|
|
4
5
|
|
|
5
6
|
const slug = 'clay-shrinkage-calculator';
|
|
6
7
|
const title = '粘土収縮計算機:陶芸のための正確な寸法設計';
|
|
@@ -89,17 +90,7 @@ export const content: ToolLocaleContent<ClayCalculatorUI> = {
|
|
|
89
90
|
description,
|
|
90
91
|
faqTitle: 'よくある質問',
|
|
91
92
|
faq: faqData,
|
|
92
|
-
|
|
93
|
-
bibliography: [
|
|
94
|
-
{
|
|
95
|
-
name: 'The Potter\'s Dictionary - Clay Shrinkage',
|
|
96
|
-
url: 'https://digitalfire.com/glossary/firing+shrinkage',
|
|
97
|
-
},
|
|
98
|
-
{
|
|
99
|
-
name: 'Ceramic Arts Network - Understanding Shrinkage',
|
|
100
|
-
url: 'https://ceramicartsnetwork.org/daily/article/How-to-Determine-Clay-Shrinkage-and-Make-a-Shrink-Rule',
|
|
101
|
-
},
|
|
102
|
-
],
|
|
93
|
+
bibliography,
|
|
103
94
|
howTo: howToData,
|
|
104
95
|
schemas: [faqSchema, howToSchema, appSchema],
|
|
105
96
|
seo: [
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowToThing, SoftwareApplication } from 'schema-dts';
|
|
2
2
|
import type { ToolLocaleContent } from '../../../types';
|
|
3
3
|
import type { ClayCalculatorUI } from '../ui';
|
|
4
|
+
import { bibliography } from '../bibliography';
|
|
4
5
|
|
|
5
6
|
const slug = 'clay-shrinkage-calculator';
|
|
6
7
|
const title = '점토 수축 계산기: 도예를 위한 정확한 치수 설계';
|
|
@@ -89,17 +90,7 @@ export const content: ToolLocaleContent<ClayCalculatorUI> = {
|
|
|
89
90
|
description,
|
|
90
91
|
faqTitle: '자주 묻는 질문',
|
|
91
92
|
faq: faqData,
|
|
92
|
-
|
|
93
|
-
bibliography: [
|
|
94
|
-
{
|
|
95
|
-
name: 'The Potter\'s Dictionary - Clay Shrinkage',
|
|
96
|
-
url: 'https://digitalfire.com/glossary/firing+shrinkage',
|
|
97
|
-
},
|
|
98
|
-
{
|
|
99
|
-
name: 'Ceramic Arts Network - Understanding Shrinkage',
|
|
100
|
-
url: 'https://ceramicartsnetwork.org/daily/article/How-to-Determine-Clay-Shrinkage-and-Make-a-Shrink-Rule',
|
|
101
|
-
},
|
|
102
|
-
],
|
|
93
|
+
bibliography,
|
|
103
94
|
howTo: howToData,
|
|
104
95
|
schemas: [faqSchema, howToSchema, appSchema],
|
|
105
96
|
seo: [
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowToThing, SoftwareApplication } from 'schema-dts';
|
|
2
2
|
import type { ToolLocaleContent } from '../../../types';
|
|
3
3
|
import type { ClayCalculatorUI } from '../ui';
|
|
4
|
+
import { bibliography } from '../bibliography';
|
|
4
5
|
|
|
5
6
|
const slug = 'klei-krimp-calculator';
|
|
6
7
|
const title = 'Klei Krimp Calculator: Exacte Afmetingen voor Keramiek';
|
|
@@ -89,17 +90,7 @@ export const content: ToolLocaleContent<ClayCalculatorUI> = {
|
|
|
89
90
|
description,
|
|
90
91
|
faqTitle: 'Veelgestelde Vragen',
|
|
91
92
|
faq: faqData,
|
|
92
|
-
|
|
93
|
-
bibliography: [
|
|
94
|
-
{
|
|
95
|
-
name: 'The Potter\'s Dictionary - Clay Shrinkage',
|
|
96
|
-
url: 'https://digitalfire.com/glossary/firing+shrinkage',
|
|
97
|
-
},
|
|
98
|
-
{
|
|
99
|
-
name: 'Ceramic Arts Network - Understanding Shrinkage',
|
|
100
|
-
url: 'https://ceramicartsnetwork.org/daily/article/How-to-Determine-Clay-Shrinkage-and-Make-a-Shrink-Rule',
|
|
101
|
-
},
|
|
102
|
-
],
|
|
93
|
+
bibliography,
|
|
103
94
|
howTo: howToData,
|
|
104
95
|
schemas: [faqSchema, howToSchema, appSchema],
|
|
105
96
|
seo: [
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowToThing, SoftwareApplication } from 'schema-dts';
|
|
2
2
|
import type { ToolLocaleContent } from '../../../types';
|
|
3
3
|
import type { ClayCalculatorUI } from '../ui';
|
|
4
|
+
import { bibliography } from '../bibliography';
|
|
4
5
|
|
|
5
6
|
const slug = 'kalkulator-kurczliwosci-gliny';
|
|
6
7
|
const title = 'Kalkulator Kurczliwości Gliny: Dokładne Wymiary dla Ceramiki';
|
|
@@ -89,17 +90,7 @@ export const content: ToolLocaleContent<ClayCalculatorUI> = {
|
|
|
89
90
|
description,
|
|
90
91
|
faqTitle: 'Często Zadawane Pytania',
|
|
91
92
|
faq: faqData,
|
|
92
|
-
|
|
93
|
-
bibliography: [
|
|
94
|
-
{
|
|
95
|
-
name: 'The Potter\'s Dictionary - Clay Shrinkage',
|
|
96
|
-
url: 'https://digitalfire.com/glossary/firing+shrinkage',
|
|
97
|
-
},
|
|
98
|
-
{
|
|
99
|
-
name: 'Ceramic Arts Network - Understanding Shrinkage',
|
|
100
|
-
url: 'https://ceramicartsnetwork.org/daily/article/How-to-Determine-Clay-Shrinkage-and-Make-a-Shrink-Rule',
|
|
101
|
-
},
|
|
102
|
-
],
|
|
93
|
+
bibliography,
|
|
103
94
|
howTo: howToData,
|
|
104
95
|
schemas: [faqSchema, howToSchema, appSchema],
|
|
105
96
|
seo: [
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import type { WithContext, FAQPage, HowToThing, SoftwareApplication } from 'schema-dts';
|
|
2
2
|
import type { ToolLocaleContent } from '../../../types';
|
|
3
3
|
import type { ClayCalculatorUI } from '../ui';
|
|
4
|
+
import { bibliography } from '../bibliography';
|
|
4
5
|
|
|
5
6
|
const slug = 'calculadora-argila';
|
|
6
7
|
const title = 'Calculadora de Contração de Argila: Dimensões Exatas para Cerâmica';
|
|
@@ -89,17 +90,7 @@ export const content: ToolLocaleContent<ClayCalculatorUI> = {
|
|
|
89
90
|
description,
|
|
90
91
|
faqTitle: 'Perguntas Frequentes',
|
|
91
92
|
faq: faqData,
|
|
92
|
-
|
|
93
|
-
bibliography: [
|
|
94
|
-
{
|
|
95
|
-
name: 'The Potter\'s Dictionary - Clay Shrinkage',
|
|
96
|
-
url: 'https://digitalfire.com/glossary/firing+shrinkage',
|
|
97
|
-
},
|
|
98
|
-
{
|
|
99
|
-
name: 'Ceramic Arts Network - Understanding Shrinkage',
|
|
100
|
-
url: 'https://ceramicartsnetwork.org/daily/article/How-to-Determine-Clay-Shrinkage-and-Make-a-Shrink-Rule',
|
|
101
|
-
},
|
|
102
|
-
],
|
|
93
|
+
bibliography,
|
|
103
94
|
howTo: howToData,
|
|
104
95
|
schemas: [faqSchema, howToSchema, appSchema],
|
|
105
96
|
seo: [
|