@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
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
transition: transform 0.3s, box-shadow 0.3s;
|
|
27
27
|
}
|
|
28
28
|
|
|
29
|
-
|
|
29
|
+
.theme-dark .mc-panel {
|
|
30
30
|
background: rgba(26, 26, 26, 0.8);
|
|
31
31
|
border-color: rgba(255, 255, 255, 0.1);
|
|
32
32
|
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
text-align: center;
|
|
46
46
|
}
|
|
47
47
|
|
|
48
|
-
|
|
48
|
+
.theme-dark .mc-panel-title {
|
|
49
49
|
color: #f5f1e8;
|
|
50
50
|
}
|
|
51
51
|
|
|
@@ -77,7 +77,7 @@
|
|
|
77
77
|
pointer-events: none;
|
|
78
78
|
}
|
|
79
79
|
|
|
80
|
-
|
|
80
|
+
.theme-dark .mc-column-label {
|
|
81
81
|
fill: #f5f1e8;
|
|
82
82
|
}
|
|
83
83
|
|
|
@@ -96,7 +96,7 @@
|
|
|
96
96
|
border: 1px solid #e7e5e4;
|
|
97
97
|
}
|
|
98
98
|
|
|
99
|
-
|
|
99
|
+
.theme-dark .mc-phase-info {
|
|
100
100
|
background: rgba(40, 35, 30, 0.5);
|
|
101
101
|
border-color: rgba(255, 255, 255, 0.05);
|
|
102
102
|
}
|
|
@@ -114,7 +114,7 @@
|
|
|
114
114
|
line-height: 1.6;
|
|
115
115
|
}
|
|
116
116
|
|
|
117
|
-
|
|
117
|
+
.theme-dark .mc-phase-info p {
|
|
118
118
|
color: #a8a29e;
|
|
119
119
|
}
|
|
120
120
|
|
|
@@ -140,7 +140,7 @@
|
|
|
140
140
|
transition: all 0.3s;
|
|
141
141
|
}
|
|
142
142
|
|
|
143
|
-
|
|
143
|
+
.theme-dark .mc-material-btn {
|
|
144
144
|
background: rgba(40, 35, 30, 0.5);
|
|
145
145
|
border-color: rgba(255, 255, 255, 0.1);
|
|
146
146
|
color: #a8a29e;
|
|
@@ -165,7 +165,7 @@
|
|
|
165
165
|
border: 1px solid #e7e5e4;
|
|
166
166
|
}
|
|
167
167
|
|
|
168
|
-
|
|
168
|
+
.theme-dark .mc-cal-toggle {
|
|
169
169
|
background: rgba(40, 35, 30, 0.5);
|
|
170
170
|
border-color: rgba(255, 255, 255, 0.1);
|
|
171
171
|
}
|
|
@@ -217,7 +217,7 @@
|
|
|
217
217
|
gap: 0.125rem;
|
|
218
218
|
}
|
|
219
219
|
|
|
220
|
-
|
|
220
|
+
.theme-dark .mc-toggle-text {
|
|
221
221
|
color: #a8a29e;
|
|
222
222
|
}
|
|
223
223
|
|
|
@@ -226,7 +226,7 @@
|
|
|
226
226
|
color: #292524;
|
|
227
227
|
}
|
|
228
228
|
|
|
229
|
-
|
|
229
|
+
.theme-dark .mc-type-pasta {
|
|
230
230
|
color: #f5f1e8;
|
|
231
231
|
}
|
|
232
232
|
|
|
@@ -244,7 +244,7 @@
|
|
|
244
244
|
margin-bottom: 1rem;
|
|
245
245
|
}
|
|
246
246
|
|
|
247
|
-
|
|
247
|
+
.theme-dark .mc-bodegon-svg {
|
|
248
248
|
border-color: rgba(255, 255, 255, 0.1);
|
|
249
249
|
background: rgba(10, 10, 10, 0.3);
|
|
250
250
|
}
|
|
@@ -275,7 +275,7 @@
|
|
|
275
275
|
color: #57534e;
|
|
276
276
|
}
|
|
277
277
|
|
|
278
|
-
|
|
278
|
+
.theme-dark .mc-quantity-display {
|
|
279
279
|
color: #a8a29e;
|
|
280
280
|
}
|
|
281
281
|
|
|
@@ -297,7 +297,7 @@
|
|
|
297
297
|
border: 1px solid #e7e5e4;
|
|
298
298
|
}
|
|
299
299
|
|
|
300
|
-
|
|
300
|
+
.theme-dark .mc-complementary {
|
|
301
301
|
background: rgba(40, 35, 30, 0.5);
|
|
302
302
|
border-color: rgba(255, 255, 255, 0.1);
|
|
303
303
|
}
|
|
@@ -312,7 +312,7 @@
|
|
|
312
312
|
margin-bottom: 0.75rem;
|
|
313
313
|
}
|
|
314
314
|
|
|
315
|
-
|
|
315
|
+
.theme-dark .mc-complementary-header {
|
|
316
316
|
color: #a8a29e;
|
|
317
317
|
}
|
|
318
318
|
|
|
@@ -340,7 +340,7 @@
|
|
|
340
340
|
min-width: 4rem;
|
|
341
341
|
}
|
|
342
342
|
|
|
343
|
-
|
|
343
|
+
.theme-dark .mc-comp-label {
|
|
344
344
|
color: #f5f1e8;
|
|
345
345
|
}
|
|
346
346
|
|
|
@@ -359,7 +359,7 @@
|
|
|
359
359
|
color: #78716c;
|
|
360
360
|
}
|
|
361
361
|
|
|
362
|
-
|
|
362
|
+
.theme-dark .mc-ratio-row {
|
|
363
363
|
color: #a8a29e;
|
|
364
364
|
}
|
|
365
365
|
|
|
@@ -368,7 +368,7 @@
|
|
|
368
368
|
color: #292524;
|
|
369
369
|
}
|
|
370
370
|
|
|
371
|
-
|
|
371
|
+
.theme-dark .mc-ratio-value {
|
|
372
372
|
color: #f5f1e8;
|
|
373
373
|
}
|
|
374
374
|
|
|
@@ -381,7 +381,7 @@
|
|
|
381
381
|
margin-bottom: 1.5rem;
|
|
382
382
|
}
|
|
383
383
|
|
|
384
|
-
|
|
384
|
+
.theme-dark .mc-wall-svg {
|
|
385
385
|
border-color: rgba(255, 255, 255, 0.1);
|
|
386
386
|
background: #0a0a0a;
|
|
387
387
|
}
|
|
@@ -404,7 +404,7 @@
|
|
|
404
404
|
font-weight: 600;
|
|
405
405
|
}
|
|
406
406
|
|
|
407
|
-
|
|
407
|
+
.theme-dark .mc-coverage-label {
|
|
408
408
|
color: #a8a29e;
|
|
409
409
|
}
|
|
410
410
|
|
|
@@ -436,7 +436,7 @@
|
|
|
436
436
|
font-size: 0.875rem;
|
|
437
437
|
}
|
|
438
438
|
|
|
439
|
-
|
|
439
|
+
.theme-dark .mc-detail-row {
|
|
440
440
|
border-bottom-color: rgba(255, 255, 255, 0.05);
|
|
441
441
|
}
|
|
442
442
|
|
|
@@ -449,7 +449,7 @@
|
|
|
449
449
|
font-weight: 500;
|
|
450
450
|
}
|
|
451
451
|
|
|
452
|
-
|
|
452
|
+
.theme-dark .mc-detail-label {
|
|
453
453
|
color: #a8a29e;
|
|
454
454
|
}
|
|
455
455
|
|
|
@@ -458,7 +458,7 @@
|
|
|
458
458
|
color: #292524;
|
|
459
459
|
}
|
|
460
460
|
|
|
461
|
-
|
|
461
|
+
.theme-dark .mc-detail-value {
|
|
462
462
|
color: #f5f1e8;
|
|
463
463
|
}
|
|
464
464
|
|
|
@@ -476,7 +476,7 @@
|
|
|
476
476
|
position: relative;
|
|
477
477
|
}
|
|
478
478
|
|
|
479
|
-
|
|
479
|
+
.theme-dark .mc-section-title {
|
|
480
480
|
color: #f5f1e8;
|
|
481
481
|
}
|
|
482
482
|
|
|
@@ -506,7 +506,7 @@
|
|
|
506
506
|
transform: scale(0.98);
|
|
507
507
|
}
|
|
508
508
|
|
|
509
|
-
|
|
509
|
+
.theme-dark .mc-grain-card {
|
|
510
510
|
background: #1c1917;
|
|
511
511
|
border-color: rgba(255, 255, 255, 0.1);
|
|
512
512
|
}
|
|
@@ -524,7 +524,7 @@
|
|
|
524
524
|
background: #fff;
|
|
525
525
|
}
|
|
526
526
|
|
|
527
|
-
|
|
527
|
+
.theme-dark .mc-grain-card.mc-active {
|
|
528
528
|
background: #292524;
|
|
529
529
|
border-color: #c1694f;
|
|
530
530
|
box-shadow: 0 8px 32px rgba(193, 105, 79, 0.3);
|
|
@@ -542,7 +542,7 @@
|
|
|
542
542
|
margin: 0 0 0.5rem;
|
|
543
543
|
}
|
|
544
544
|
|
|
545
|
-
|
|
545
|
+
.theme-dark .mc-grain-title {
|
|
546
546
|
color: #f5f1e8;
|
|
547
547
|
}
|
|
548
548
|
|
|
@@ -552,7 +552,7 @@
|
|
|
552
552
|
font-weight: 500;
|
|
553
553
|
}
|
|
554
554
|
|
|
555
|
-
|
|
555
|
+
.theme-dark .mc-grain-subtitle {
|
|
556
556
|
color: #a8a29e;
|
|
557
557
|
}
|
|
558
558
|
|
|
@@ -564,7 +564,7 @@
|
|
|
564
564
|
border: 1px solid #e7e5e4;
|
|
565
565
|
}
|
|
566
566
|
|
|
567
|
-
|
|
567
|
+
.theme-dark .mc-grain-visual {
|
|
568
568
|
background: #0a0a0a;
|
|
569
569
|
border-color: rgba(255, 255, 255, 0.05);
|
|
570
570
|
}
|
|
@@ -589,7 +589,7 @@
|
|
|
589
589
|
border-bottom: 1px solid #e7e5e4;
|
|
590
590
|
}
|
|
591
591
|
|
|
592
|
-
|
|
592
|
+
.theme-dark .mc-spec-item {
|
|
593
593
|
border-bottom-color: rgba(255, 255, 255, 0.05);
|
|
594
594
|
}
|
|
595
595
|
|
|
@@ -603,7 +603,7 @@
|
|
|
603
603
|
font-weight: 500;
|
|
604
604
|
}
|
|
605
605
|
|
|
606
|
-
|
|
606
|
+
.theme-dark .mc-spec-label {
|
|
607
607
|
color: #a8a29e;
|
|
608
608
|
}
|
|
609
609
|
|
|
@@ -613,6 +613,6 @@
|
|
|
613
613
|
font-weight: 600;
|
|
614
614
|
}
|
|
615
615
|
|
|
616
|
-
|
|
616
|
+
.theme-dark .mc-spec-value {
|
|
617
617
|
color: #f5f1e8;
|
|
618
618
|
}
|
|
@@ -6,9 +6,10 @@ import type { KnownLocale } from '../../types';
|
|
|
6
6
|
interface Props {
|
|
7
7
|
locale?: KnownLocale;
|
|
8
8
|
}
|
|
9
|
+
|
|
9
10
|
const { locale = 'es' } = Astro.props;
|
|
10
11
|
const content = await mortarCalculator.i18n[locale]?.();
|
|
11
12
|
if (!content) return null;
|
|
12
13
|
---
|
|
13
14
|
|
|
14
|
-
<SEORenderer content={{ locale
|
|
15
|
+
{content.seo?.length > 0 && <SEORenderer content={{ locale, sections: content.seo }} />}
|
|
@@ -1,13 +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
|
-
const { locale = 'es' } = Astro.props;
|
|
10
|
-
const content = await passepartoutCalculator.i18n[locale]?.();
|
|
3
|
+
import { bibliography } from './bibliography';
|
|
11
4
|
---
|
|
12
5
|
|
|
13
|
-
|
|
6
|
+
<SharedBibliography links={bibliography} />
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import type { BibliographyEntry } from '../../types';
|
|
2
|
+
|
|
3
|
+
export const bibliography: BibliographyEntry[] = [
|
|
4
|
+
{
|
|
5
|
+
name: 'ISO 9706: Permanence of Paper for Documents',
|
|
6
|
+
url: 'https://www.iso.org/standard/22495.html',
|
|
7
|
+
},
|
|
8
|
+
{
|
|
9
|
+
name: 'PPFA: Professional Picture Framers Association',
|
|
10
|
+
url: 'https://ppfa.com/',
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
name: 'Fine Art Trade Guild: Framing Standards',
|
|
14
|
+
url: 'https://www.fineart.co.uk/',
|
|
15
|
+
},
|
|
16
|
+
];
|
|
@@ -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 { PassepartoutCalculatorUI } from '../ui';
|
|
4
|
+
import { bibliography } from '../bibliography';
|
|
4
5
|
|
|
5
6
|
const slug = 'passepartout-rechner';
|
|
6
7
|
const title = 'Passepartout Rechner: Ränder mit optischer Korrektur für Einrahmungen';
|
|
@@ -72,12 +73,7 @@ export const content: ToolLocaleContent<PassepartoutCalculatorUI> = {
|
|
|
72
73
|
description,
|
|
73
74
|
faqTitle: 'Häufig gestellte Fragen',
|
|
74
75
|
faq: faqData,
|
|
75
|
-
|
|
76
|
-
bibliography: [
|
|
77
|
-
{ name: 'ISO 9706: Permanentes Papier für Dokumente', url: 'https://www.iso.org/standard/22495.html' },
|
|
78
|
-
{ name: 'PPFA: Professional Picture Framers Association', url: 'https://ppfa.com/' },
|
|
79
|
-
{ name: 'Fine Art Trade Guild: Framing Standards', url: 'https://www.fineart.co.uk/' },
|
|
80
|
-
],
|
|
76
|
+
bibliography,
|
|
81
77
|
howTo: howToData,
|
|
82
78
|
schemas: [faqSchema, howToSchema, appSchema],
|
|
83
79
|
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 { PassepartoutCalculatorUI } from '../ui';
|
|
4
|
+
import { bibliography } from '../bibliography';
|
|
4
5
|
|
|
5
6
|
const slug = 'passepartout-calculator';
|
|
6
7
|
const title = 'Passepartout Calculator: Mat Board Margins with Optical Center Correction';
|
|
@@ -89,21 +90,7 @@ export const content: ToolLocaleContent<PassepartoutCalculatorUI> = {
|
|
|
89
90
|
description,
|
|
90
91
|
faqTitle: 'Frequently Asked Questions',
|
|
91
92
|
faq: faqData,
|
|
92
|
-
|
|
93
|
-
bibliography: [
|
|
94
|
-
{
|
|
95
|
-
name: 'ISO 9706: Permanence of Paper for Documents',
|
|
96
|
-
url: 'https://www.iso.org/standard/22495.html',
|
|
97
|
-
},
|
|
98
|
-
{
|
|
99
|
-
name: 'PPFA: Professional Picture Framers Association',
|
|
100
|
-
url: 'https://ppfa.com/',
|
|
101
|
-
},
|
|
102
|
-
{
|
|
103
|
-
name: 'Fine Art Trade Guild: Framing Standards',
|
|
104
|
-
url: 'https://www.fineart.co.uk/',
|
|
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 { PassepartoutCalculatorUI } from '../ui';
|
|
4
|
+
import { bibliography } from '../bibliography';
|
|
4
5
|
|
|
5
6
|
const slug = 'calculadora-passepartout';
|
|
6
7
|
const title = 'Calculadora Passepartout: Márgenes con Corrección Óptica para Enmarcado';
|
|
@@ -89,21 +90,7 @@ export const content: ToolLocaleContent<PassepartoutCalculatorUI> = {
|
|
|
89
90
|
description,
|
|
90
91
|
faqTitle: 'Preguntas Frecuentes',
|
|
91
92
|
faq: faqData,
|
|
92
|
-
|
|
93
|
-
bibliography: [
|
|
94
|
-
{
|
|
95
|
-
name: 'ISO 9706: Papel permanente para documentos',
|
|
96
|
-
url: 'https://www.iso.org/standard/22495.html',
|
|
97
|
-
},
|
|
98
|
-
{
|
|
99
|
-
name: 'PPFA: Professional Picture Framers Association',
|
|
100
|
-
url: 'https://ppfa.com/',
|
|
101
|
-
},
|
|
102
|
-
{
|
|
103
|
-
name: 'Fine Art Trade Guild: Framing Standards',
|
|
104
|
-
url: 'https://www.fineart.co.uk/',
|
|
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 { PassepartoutCalculatorUI } from '../ui';
|
|
4
|
+
import { bibliography } from '../bibliography';
|
|
4
5
|
|
|
5
6
|
const slug = 'calculateur-passe-partout';
|
|
6
7
|
const title = 'Calculateur Passepartout: Marges avec Correction Optique pour Encadrement';
|
|
@@ -89,21 +90,7 @@ export const content: ToolLocaleContent<PassepartoutCalculatorUI> = {
|
|
|
89
90
|
description,
|
|
90
91
|
faqTitle: 'Questions Fréquentes',
|
|
91
92
|
faq: faqData,
|
|
92
|
-
|
|
93
|
-
bibliography: [
|
|
94
|
-
{
|
|
95
|
-
name: 'ISO 9706: Permanence du papier pour documents',
|
|
96
|
-
url: 'https://www.iso.org/standard/22495.html',
|
|
97
|
-
},
|
|
98
|
-
{
|
|
99
|
-
name: 'PPFA: Professional Picture Framers Association',
|
|
100
|
-
url: 'https://ppfa.com/',
|
|
101
|
-
},
|
|
102
|
-
{
|
|
103
|
-
name: 'Fine Art Trade Guild: Normes d\'encadrement',
|
|
104
|
-
url: 'https://www.fineart.co.uk/',
|
|
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 { PassepartoutCalculatorUI } from '../ui';
|
|
4
|
+
import { bibliography } from '../bibliography';
|
|
4
5
|
|
|
5
6
|
const slug = 'kalkulator-passepartout';
|
|
6
7
|
const title = 'Kalkulator Passepartout: Margin dengan Koreksi Optik untuk Pembingkaian';
|
|
@@ -72,12 +73,7 @@ export const content: ToolLocaleContent<PassepartoutCalculatorUI> = {
|
|
|
72
73
|
description,
|
|
73
74
|
faqTitle: 'Pertanyaan Umum',
|
|
74
75
|
faq: faqData,
|
|
75
|
-
|
|
76
|
-
bibliography: [
|
|
77
|
-
{ name: 'ISO 9706: Kertas permanen untuk dokumen', url: 'https://www.iso.org/standard/22495.html' },
|
|
78
|
-
{ name: 'PPFA: Professional Picture Framers Association', url: 'https://ppfa.com/' },
|
|
79
|
-
{ name: 'Fine Art Trade Guild: Standar Pembingkaian', url: 'https://www.fineart.co.uk/' },
|
|
80
|
-
],
|
|
76
|
+
bibliography,
|
|
81
77
|
howTo: howToData,
|
|
82
78
|
schemas: [faqSchema, howToSchema, appSchema],
|
|
83
79
|
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 { PassepartoutCalculatorUI } from '../ui';
|
|
4
|
+
import { bibliography } from '../bibliography';
|
|
4
5
|
|
|
5
6
|
const slug = 'calcolatore-passepartout';
|
|
6
7
|
const title = 'Calcolatore Passepartout: Margini con Correzione Ottica per Incorniciatura';
|
|
@@ -72,12 +73,7 @@ export const content: ToolLocaleContent<PassepartoutCalculatorUI> = {
|
|
|
72
73
|
description,
|
|
73
74
|
faqTitle: 'Domande Frequenti',
|
|
74
75
|
faq: faqData,
|
|
75
|
-
|
|
76
|
-
bibliography: [
|
|
77
|
-
{ name: 'ISO 9706: Carta permanente per documenti', url: 'https://www.iso.org/standard/22495.html' },
|
|
78
|
-
{ name: 'PPFA: Professional Picture Framers Association', url: 'https://ppfa.com/' },
|
|
79
|
-
{ name: 'Fine Art Trade Guild: Framing Standards', url: 'https://www.fineart.co.uk/' },
|
|
80
|
-
],
|
|
76
|
+
bibliography,
|
|
81
77
|
howTo: howToData,
|
|
82
78
|
schemas: [faqSchema, howToSchema, appSchema],
|
|
83
79
|
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 { PassepartoutCalculatorUI } from '../ui';
|
|
4
|
+
import { bibliography } from '../bibliography';
|
|
4
5
|
|
|
5
6
|
const slug = 'passepartout-calculator';
|
|
6
7
|
const title = 'マット紙計算機:額装用視覚補正マージン';
|
|
@@ -72,12 +73,7 @@ export const content: ToolLocaleContent<PassepartoutCalculatorUI> = {
|
|
|
72
73
|
description,
|
|
73
74
|
faqTitle: 'よくある質問',
|
|
74
75
|
faq: faqData,
|
|
75
|
-
|
|
76
|
-
bibliography: [
|
|
77
|
-
{ name: 'ISO 9706: 文書用長期保存紙', url: 'https://www.iso.org/standard/22495.html' },
|
|
78
|
-
{ name: 'PPFA: Professional Picture Framers Association', url: 'https://ppfa.com/' },
|
|
79
|
-
{ name: 'Fine Art Trade Guild: 額装基準', url: 'https://www.fineart.co.uk/' },
|
|
80
|
-
],
|
|
76
|
+
bibliography,
|
|
81
77
|
howTo: howToData,
|
|
82
78
|
schemas: [faqSchema, howToSchema, appSchema],
|
|
83
79
|
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 { PassepartoutCalculatorUI } from '../ui';
|
|
4
|
+
import { bibliography } from '../bibliography';
|
|
4
5
|
|
|
5
6
|
const slug = 'passepartout-calculator';
|
|
6
7
|
const title = '매트지 계산기: 액자 제작을 위한 시각 보정 여백';
|
|
@@ -72,12 +73,7 @@ export const content: ToolLocaleContent<PassepartoutCalculatorUI> = {
|
|
|
72
73
|
description,
|
|
73
74
|
faqTitle: '자주 묻는 질문',
|
|
74
75
|
faq: faqData,
|
|
75
|
-
|
|
76
|
-
bibliography: [
|
|
77
|
-
{ name: 'ISO 9706: 문서용 보존지 표준', url: 'https://www.iso.org/standard/22495.html' },
|
|
78
|
-
{ name: 'PPFA: 전문 액자 제작자 협회', url: 'https://ppfa.com/' },
|
|
79
|
-
{ name: 'Fine Art Trade Guild: 액자 제작 표준', url: 'https://www.fineart.co.uk/' },
|
|
80
|
-
],
|
|
76
|
+
bibliography,
|
|
81
77
|
howTo: howToData,
|
|
82
78
|
schemas: [faqSchema, howToSchema, appSchema],
|
|
83
79
|
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 { PassepartoutCalculatorUI } from '../ui';
|
|
4
|
+
import { bibliography } from '../bibliography';
|
|
4
5
|
|
|
5
6
|
const slug = 'passepartout-rekenmachine';
|
|
6
7
|
const title = 'Passepartout Calculator: Marges met Optische Correctie voor Inlijsten';
|
|
@@ -72,12 +73,7 @@ export const content: ToolLocaleContent<PassepartoutCalculatorUI> = {
|
|
|
72
73
|
description,
|
|
73
74
|
faqTitle: 'Veelgestelde Vragen',
|
|
74
75
|
faq: faqData,
|
|
75
|
-
|
|
76
|
-
bibliography: [
|
|
77
|
-
{ name: 'ISO 9706: Permanent papier voor documenten', url: 'https://www.iso.org/standard/22495.html' },
|
|
78
|
-
{ name: 'PPFA: Professional Picture Framers Association', url: 'https://ppfa.com/' },
|
|
79
|
-
{ name: 'Fine Art Trade Guild: Framing Standards', url: 'https://www.fineart.co.uk/' },
|
|
80
|
-
],
|
|
76
|
+
bibliography,
|
|
81
77
|
howTo: howToData,
|
|
82
78
|
schemas: [faqSchema, howToSchema, appSchema],
|
|
83
79
|
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 { PassepartoutCalculatorUI } from '../ui';
|
|
4
|
+
import { bibliography } from '../bibliography';
|
|
4
5
|
|
|
5
6
|
const slug = 'kalkulator-passe-partout';
|
|
6
7
|
const title = 'Kalkulator Passepartout: Marginesy z Korekcją Optyczną do Oprawiania';
|
|
@@ -72,12 +73,7 @@ export const content: ToolLocaleContent<PassepartoutCalculatorUI> = {
|
|
|
72
73
|
description,
|
|
73
74
|
faqTitle: 'Często Zadawane Pytania',
|
|
74
75
|
faq: faqData,
|
|
75
|
-
|
|
76
|
-
bibliography: [
|
|
77
|
-
{ name: 'ISO 9706: Trwały papier do dokumentów', url: 'https://www.iso.org/standard/22495.html' },
|
|
78
|
-
{ name: 'PPFA: Professional Picture Framers Association', url: 'https://ppfa.com/' },
|
|
79
|
-
{ name: 'Fine Art Trade Guild: Standardy Oprawiania', url: 'https://www.fineart.co.uk/' },
|
|
80
|
-
],
|
|
76
|
+
bibliography,
|
|
81
77
|
howTo: howToData,
|
|
82
78
|
schemas: [faqSchema, howToSchema, appSchema],
|
|
83
79
|
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 { PassepartoutCalculatorUI } from '../ui';
|
|
4
|
+
import { bibliography } from '../bibliography';
|
|
4
5
|
|
|
5
6
|
const slug = 'calculadora-de-passepartout';
|
|
6
7
|
const title = 'Calculadora Passepartout: Margens com Correção Ótica para Emolduramento';
|
|
@@ -72,12 +73,7 @@ export const content: ToolLocaleContent<PassepartoutCalculatorUI> = {
|
|
|
72
73
|
description,
|
|
73
74
|
faqTitle: 'Perguntas Frequentes',
|
|
74
75
|
faq: faqData,
|
|
75
|
-
|
|
76
|
-
bibliography: [
|
|
77
|
-
{ name: 'ISO 9706: Papel permanente para documentos', url: 'https://www.iso.org/standard/22495.html' },
|
|
78
|
-
{ name: 'PPFA: Professional Picture Framers Association', url: 'https://ppfa.com/' },
|
|
79
|
-
{ name: 'Fine Art Trade Guild: Framing Standards', url: 'https://www.fineart.co.uk/' },
|
|
80
|
-
],
|
|
76
|
+
bibliography,
|
|
81
77
|
howTo: howToData,
|
|
82
78
|
schemas: [faqSchema, howToSchema, appSchema],
|
|
83
79
|
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 { PassepartoutCalculatorUI } from '../ui';
|
|
4
|
+
import { bibliography } from '../bibliography';
|
|
4
5
|
|
|
5
6
|
const slug = 'kalkulyator-passepartu';
|
|
6
7
|
const title = 'Калькулятор паспарту: поля с оптической коррекцией для оформления';
|
|
@@ -72,12 +73,7 @@ export const content: ToolLocaleContent<PassepartoutCalculatorUI> = {
|
|
|
72
73
|
description,
|
|
73
74
|
faqTitle: 'Часто задаваемые вопросы',
|
|
74
75
|
faq: faqData,
|
|
75
|
-
|
|
76
|
-
bibliography: [
|
|
77
|
-
{ name: 'ISO 9706: Долговечная бумага для документов', url: 'https://www.iso.org/standard/22495.html' },
|
|
78
|
-
{ name: 'PPFA: Профессиональная ассоциация оформителей картин', url: 'https://ppfa.com/' },
|
|
79
|
-
{ name: 'Fine Art Trade Guild: Стандарты оформления', url: 'https://www.fineart.co.uk/' },
|
|
80
|
-
],
|
|
76
|
+
bibliography,
|
|
81
77
|
howTo: howToData,
|
|
82
78
|
schemas: [faqSchema, howToSchema, appSchema],
|
|
83
79
|
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 { PassepartoutCalculatorUI } from '../ui';
|
|
4
|
+
import { bibliography } from '../bibliography';
|
|
4
5
|
|
|
5
6
|
const slug = 'passepartout-kalkylator';
|
|
6
7
|
const title = 'Passepartout kalkylator: Marginaler med optisk korrektion för inramning';
|
|
@@ -72,12 +73,7 @@ export const content: ToolLocaleContent<PassepartoutCalculatorUI> = {
|
|
|
72
73
|
description,
|
|
73
74
|
faqTitle: 'Vanliga frågor',
|
|
74
75
|
faq: faqData,
|
|
75
|
-
|
|
76
|
-
bibliography: [
|
|
77
|
-
{ name: 'ISO 9706: Permanent papper för dokument', url: 'https://www.iso.org/standard/22495.html' },
|
|
78
|
-
{ name: 'PPFA: Professional Picture Framers Association', url: 'https://ppfa.com/' },
|
|
79
|
-
{ name: 'Fine Art Trade Guild: Inramningsstandarder', url: 'https://www.fineart.co.uk/' },
|
|
80
|
-
],
|
|
76
|
+
bibliography,
|
|
81
77
|
howTo: howToData,
|
|
82
78
|
schemas: [faqSchema, howToSchema, appSchema],
|
|
83
79
|
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 { PassepartoutCalculatorUI } from '../ui';
|
|
4
|
+
import { bibliography } from '../bibliography';
|
|
4
5
|
|
|
5
6
|
const slug = 'paspartu-hesaplayici';
|
|
6
7
|
const title = 'Paspartu Hesaplayıcı: Çerçeveleme İçin Optik Gözetimli Kenar Boşlukları';
|
|
@@ -72,12 +73,7 @@ export const content: ToolLocaleContent<PassepartoutCalculatorUI> = {
|
|
|
72
73
|
description,
|
|
73
74
|
faqTitle: 'Sıkça Sorulan Sorular',
|
|
74
75
|
faq: faqData,
|
|
75
|
-
|
|
76
|
-
bibliography: [
|
|
77
|
-
{ name: 'ISO 9706: Belgeler için kalıcı kağıt', url: 'https://www.iso.org/standard/22495.html' },
|
|
78
|
-
{ name: 'PPFA: Professional Picture Framers Association', url: 'https://ppfa.com/' },
|
|
79
|
-
{ name: 'Fine Art Trade Guild: Çerçeveleme Standartları', url: 'https://www.fineart.co.uk/' },
|
|
80
|
-
],
|
|
76
|
+
bibliography,
|
|
81
77
|
howTo: howToData,
|
|
82
78
|
schemas: [faqSchema, howToSchema, appSchema],
|
|
83
79
|
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 { PassepartoutCalculatorUI } from '../ui';
|
|
4
|
+
import { bibliography } from '../bibliography';
|
|
4
5
|
|
|
5
6
|
const slug = 'passepartout-calculator';
|
|
6
7
|
const title = '卡纸计算器:具有视觉偏差补偿的装裱边距';
|
|
@@ -72,12 +73,7 @@ export const content: ToolLocaleContent<PassepartoutCalculatorUI> = {
|
|
|
72
73
|
description,
|
|
73
74
|
faqTitle: '常见问题',
|
|
74
75
|
faq: faqData,
|
|
75
|
-
|
|
76
|
-
bibliography: [
|
|
77
|
-
{ name: 'ISO 9706:文档用永久性纸张', url: 'https://www.iso.org/standard/22495.html' },
|
|
78
|
-
{ name: 'PPFA:专业画框装裱师协会', url: 'https://ppfa.com/' },
|
|
79
|
-
{ name: '艺术贸易公会:装裱标准', url: 'https://www.fineart.co.uk/' },
|
|
80
|
-
],
|
|
76
|
+
bibliography,
|
|
81
77
|
howTo: howToData,
|
|
82
78
|
schemas: [faqSchema, howToSchema, appSchema],
|
|
83
79
|
seo: [
|